blob: 73917771c4e147364d2a10c507b7c77f67357840 [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.*;
import org.eclipse.core.internal.localstore.SafeChunkyInputStream;
import org.eclipse.core.tools.metadata.*;
/**
* A dumper for .syncinfo.snap files.
*
* @see org.eclipse.core.tools.resources.metadata.SyncInfoSnapshotDumpingStrategy_3
*/
public class SyncInfoSnapshotDumper extends MultiStrategyDumper {
static final byte INDEX = 1;
static final byte QNAME = 2;
@Override
protected IStringDumpingStrategy getStringDumpingStrategy(DataInputStream dataInput) throws Exception {
int versionId = dataInput.readInt();
if (versionId != 3)
throw new DumpException("Unknown sync info's snapshot file version: " + versionId); //$NON-NLS-1$
return new SyncInfoSnapshotDumpingStrategy_3();
}
@Override
protected InputStream openInputStream(File file) throws IOException {
return new SafeChunkyInputStream(file);
}
}