blob: 017be2f6533014fd5edb98df2beb0602a4523901 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM - Initial API and implementation
*******************************************************************************/
package org.eclipse.core.tools.resources.metadata;
import java.io.DataInputStream;
import org.eclipse.core.tools.metadata.*;
/**
* A dumper for .syncinfo files.
*
* @see org.eclipse.core.tools.metadata.AbstractDumper
* @see org.eclipse.core.tools.resources.metadata.SyncInfoDumpingStrategy_2
* @see org.eclipse.core.tools.resources.metadata.SyncInfoDumpingStrategy_3
*/
public class SyncInfoDumper extends MultiStrategyDumper {
// type constants
static final byte INDEX = 1;
static final byte QNAME = 2;
@Override
protected IStringDumpingStrategy getStringDumpingStrategy(DataInputStream dataInput) throws Exception {
int versionId = dataInput.readInt();
IStringDumpingStrategy strategy;
switch (versionId) {
case 2 :
strategy = new SyncInfoDumpingStrategy_2();
break;
case 3 :
strategy = new SyncInfoDumpingStrategy_3();
break;
default :
throw new DumpException("Unknown sync info file version: " + versionId); //$NON-NLS-1$
}
return strategy;
}
}