You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2015/06/05 22:18:04 UTC

[11/26] incubator-tinkerpop git commit: Merge branch 'master' into preprocessor

Merge branch 'master' into preprocessor


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/38a07335
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/38a07335
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/38a07335

Branch: refs/heads/master
Commit: 38a073356f66a551d18d6092bfebdde1754307ee
Parents: bb7d249 15d8da0
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Mon Jun 1 19:38:42 2015 +0200
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Mon Jun 1 19:38:42 2015 +0200

----------------------------------------------------------------------
 CHANGELOG.asciidoc                              |   8 +-
 README.asciidoc                                 |   3 +
 docs/src/gremlin-applications.asciidoc          |   2 +
 docs/src/implementations.asciidoc               | 171 ++++-
 docs/src/the-graph.asciidoc                     |  30 +-
 gremlin-console/src/assembly/distribution.xml   |   3 +-
 gremlin-console/src/assembly/standalone.xml     |   4 +
 gremlin-console/src/main/bin/gremlin.sh         |   2 +
 .../gremlin/console/GremlinGroovysh.groovy      |   2 +
 .../plugin/gremlin-server-integration.yaml      |   4 +-
 gremlin-core/pom.xml                            |   7 +
 .../traversal/dsl/graph/GraphTraversal.java     | 185 +++--
 .../traversal/lambda/FilterTraversal.java       |  52 --
 .../lambda/FilterTraverserTraversal.java        |  52 --
 .../traversal/lambda/FunctionTraverser.java     |  44 ++
 .../process/traversal/lambda/MapTraversal.java  |  52 --
 .../traversal/lambda/MapTraverserTraversal.java |  52 --
 .../traversal/lambda/PredicateTraverser.java    |  44 ++
 .../tinkerpop/gremlin/structure/Graph.java      |  53 ++
 .../tinkerpop/gremlin/structure/Vertex.java     |   6 +-
 .../structure/io/graphml/GraphMLReader.java     |  18 +-
 .../structure/io/graphson/GraphSONReader.java   |   4 +-
 .../io/graphson/LegacyGraphSONReader.java       |  21 +-
 .../gremlin/structure/io/gryo/GryoReader.java   |   4 +-
 .../gremlin/structure/util/Attachable.java      |  31 +-
 .../gremlin/structure/util/Comparators.java     |  26 +-
 .../gremlin/structure/util/ElementHelper.java   |  74 +-
 .../gremlin/structure/util/GraphFactory.java    |  14 +-
 .../structure/util/GraphVariableHelper.java     |   4 +-
 .../gremlin/structure/util/star/StarGraph.java  | 111 +++
 .../gremlin/util/iterator/IteratorUtils.java    |  13 +-
 .../apache/tinkerpop/gremlin/TestHelper.java    |  20 +
 .../gremlin/structure/util/ComparatorsTest.java | 111 +++
 .../structure/util/ElementHelperTest.java       |  83 ++-
 .../structure/util/GraphFactoryTest.java        | 323 +++++++++
 .../structure/util/GraphVariableHelperTest.java |  72 ++
 .../structure/util/StringFactoryTest.java       |  32 +
 .../structure/util/mockgraph-busted.yaml        |  20 +
 .../gremlin/structure/util/mockgraph.properties |  18 +
 .../gremlin/structure/util/mockgraph.xml        |  22 +
 .../gremlin/structure/util/mockgraph.yaml       |  19 +
 gremlin-driver/pom.xml                          |   6 -
 ...raphSONMessageSerializerGremlinV1d0Test.java | 267 ++++++++
 .../ser/GraphSONMessageSerializerV1d0Test.java  | 357 ++++++++++
 .../JsonMessageSerializerGremlinV1d0Test.java   | 267 --------
 .../ser/JsonMessageSerializerV1d0Test.java      | 354 ----------
 .../step/branch/GroovyChooseTest.groovy         |   9 +-
 .../gremlin/groovy/engine/GremlinExecutor.java  |  44 +-
 .../groovy/engine/GremlinExecutorTest.java      | 113 +++-
 .../groovy/engine/GremlinExecutorInit.groovy    |   5 +-
 .../apache/tinkerpop/gremlin/GraphProvider.java |   4 +-
 .../traversal/step/branch/ChooseTest.java       |  18 +-
 .../gremlin/structure/FeatureSupportTest.java   | 177 ++++-
 .../structure/GraphConstructionTest.java        |   4 +-
 .../tinkerpop/gremlin/structure/io/IoTest.java  |  18 +-
 .../process/computer/spark/SparkExecutor.java   |   9 +-
 .../gremlin/hadoop/structure/HadoopGraph.java   |   5 +
 .../groovy/plugin/HadoopGremlinPluginTest.java  |   5 +-
 neo4j-gremlin/pom.xml                           | 171 +++++
 .../neo4j/groovy/plugin/Neo4jGremlinPlugin.java |  58 ++
 .../step/sideEffect/CypherStartStep.java        |  54 ++
 .../step/sideEffect/Neo4jGraphStep.java         |  69 ++
 .../optimization/Neo4jGraphStepStrategy.java    |  70 ++
 .../neo4j/process/util/Neo4jCypherIterator.java |  64 ++
 .../gremlin/neo4j/structure/Neo4jEdge.java      | 132 ++++
 .../gremlin/neo4j/structure/Neo4jElement.java   |  79 +++
 .../gremlin/neo4j/structure/Neo4jGraph.java     | 549 +++++++++++++++
 .../neo4j/structure/Neo4jGraphVariables.java    | 176 +++++
 .../gremlin/neo4j/structure/Neo4jHelper.java    |  64 ++
 .../gremlin/neo4j/structure/Neo4jProperty.java  |  94 +++
 .../gremlin/neo4j/structure/Neo4jVertex.java    | 177 +++++
 .../neo4j/structure/Neo4jVertexProperty.java    | 121 ++++
 .../structure/trait/MultiMetaNeo4jTrait.java    | 282 ++++++++
 .../neo4j/structure/trait/Neo4jTrait.java       |  75 +++
 .../trait/NoMultiNoMetaNeo4jTrait.java          | 201 ++++++
 ...inkerpop.gremlin.groovy.plugin.GremlinPlugin |   1 +
 .../neo4j/AbstractNeo4jGraphProvider.java       | 158 +++++
 .../gremlin/neo4j/AbstractNeo4jGremlinTest.java |  50 ++
 .../neo4j/MultiMetaNeo4jGraphProvider.java      |  44 ++
 .../gremlin/neo4j/NativeNeo4jSuite.java         |  52 ++
 .../neo4j/NoMultiNoMetaNeo4jGraphProvider.java  |  47 ++
 .../MultiMetaNeo4jGraphProcessStandardTest.java |  36 +
 .../neo4j/process/NativeNeo4jCypherTest.java    | 125 ++++
 ...ultiNoMetaNeo4jGraphProcessStandardTest.java |  36 +
 ...MetaNeo4jGraphGroovyProcessStandardTest.java |  33 +
 ...MetaNeo4jGraphGroovyProcessStandardTest.java |  37 +
 .../MultiMetaNeo4jGraphNativeNeo4jTest.java     |  35 +
 ...ultiMetaNeo4jGraphStructureStandardTest.java |  35 +
 .../neo4j/structure/NativeNeo4jIndexTest.java   |  60 ++
 .../structure/NativeNeo4jStructureTest.java     | 669 +++++++++++++++++++
 .../NoMultiNoMetaNeo4jGraphNativeNeo4jTest.java |  35 +
 ...tiNoMetaNeo4jGraphStructureStandardTest.java |  35 +
 pom.xml                                         |  66 +-
 .../tinkergraph/structure/TinkerFactory.java    |   4 +-
 .../tinkergraph/structure/TinkerGraph.java      | 100 ++-
 .../tinkergraph/structure/TinkerVertex.java     |   5 -
 .../tinkergraph/TinkerGraphProvider.java        |  15 +
 97 files changed, 6494 insertions(+), 1098 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/38a07335/docs/src/implementations.asciidoc
----------------------------------------------------------------------