blob: eb000371a20c54ba8f84846235c08dfabf857c70 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.tinkerpop.gremlin.structure.io.graphbinary;
import org.apache.commons.io.IOUtils;
import org.apache.tinkerpop.gremlin.process.traversal.Path;
import org.apache.tinkerpop.gremlin.process.traversal.Traverser;
import org.apache.tinkerpop.gremlin.process.traversal.traverser.B_O_Traverser;
import org.apache.tinkerpop.gremlin.process.traversal.util.DefaultTraversalMetrics;
import org.apache.tinkerpop.gremlin.process.traversal.util.Metrics;
import org.apache.tinkerpop.gremlin.process.traversal.util.MutableMetrics;
import org.apache.tinkerpop.gremlin.process.traversal.util.TraversalMetrics;
import org.apache.tinkerpop.gremlin.structure.Edge;
import org.apache.tinkerpop.gremlin.structure.Property;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import org.apache.tinkerpop.gremlin.structure.VertexProperty;
import org.apache.tinkerpop.gremlin.structure.io.Compatibility;
import org.apache.tinkerpop.gremlin.structure.util.detached.DetachedEdge;
import org.apache.tinkerpop.gremlin.structure.util.detached.DetachedPath;
import org.apache.tinkerpop.gremlin.structure.util.detached.DetachedProperty;
import org.apache.tinkerpop.gremlin.structure.util.detached.DetachedVertex;
import org.apache.tinkerpop.gremlin.structure.util.detached.DetachedVertexProperty;
import java.io.File;
import java.io.IOException;
/**
* @author Stephen Mallette (http://stephen.genoprime.com)
*/
public enum GraphBinaryCompatibility implements Compatibility {
V1_3_4_3("3.4.3", "1.0", "v1"),
V1_3_4_4("3.4.4", "1.0", "v1"),
V1_3_4_5("3.4.5", "1.0", "v1"),
V1_3_4_6("3.4.6", "1.0", "v1"),
V1_3_4_7("3.4.7", "1.0", "v1"),
V1_3_4_8("3.4.8", "1.0", "v1"),
V1_3_4_9("3.4.9", "1.0", "v1"),
V1_3_4_10("3.4.10", "1.0", "v1"),
V1_3_4_11("3.4.11", "1.0", "v1"),
V1_3_4_12("3.4.12", "1.0", "v1"),
V1_3_5_0("3.5.0", "1.0", "v1"),
V1_3_5_1("3.5.1", "1.0", "v1");
private static final String SEP = File.separator;
private final String graphBinaryVersion;
private final String tinkerpopVersion;
private final String configuration;
GraphBinaryCompatibility(final String tinkerpopVersion, final String graphBinaryVersion, final String configuration) {
this.tinkerpopVersion = tinkerpopVersion;
this.graphBinaryVersion = graphBinaryVersion;
this.configuration = configuration;
}
@Override
public byte[] readFromResource(final String resource) throws IOException {
final String testResource = "_" + tinkerpopVersion.replace(".", "_") + SEP + resource + "-" + configuration + ".gbin";
return IOUtils.toByteArray(getClass().getResourceAsStream(testResource));
}
@Override
public String getReleaseVersion() {
return tinkerpopVersion;
}
@Override
public String getVersion() {
return graphBinaryVersion;
}
@Override
public String getConfiguration() {
return configuration;
}
@Override
public String toString() {
return tinkerpopVersion + "-" + configuration;
}
}