blob: 4b1acb30691582ad7dd15a576c5a8204aa16ea0b [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.
*/
// An example of an initialization script that can be configured to run in Gremlin Server.
// Functions defined here will go into global cache and will not be removed from there
// unless there is a reset of the ScriptEngine.
def addItUp(x, y) { x + y }
// an init script that returns a Map allows explicit setting of global bindings.
def globals = [:]
// Generates the modern graph into an "empty" TinkerGraph via LifeCycleHook.
// Note that the name of the key in the "global" map is unimportant.
globals << [hook : [
onStartUp: { ctx ->
// a wild bit of trickery here. the process tests use an INTEGER id manager when LoadGraphWith is used. this
// closure provides a way to to manually override the various id managers for TinkerGraph - the graph on which
// all of these remote tests are executed - so that the tests will pass nicely. an alternative might have been
// to have a special test TinkerGraph config for setting up the id manager properly, but based on how we do
// things now, that test config would have been mixed in with release artifacts and there would have been ugly
// exclusions to make packaging work properly.
allowSetOfIdManager = { graph, idManagerFieldName ->
java.lang.reflect.Field idManagerField = graph.class.getDeclaredField(idManagerFieldName)
idManagerField.setAccessible(true)
java.lang.reflect.Field modifiersField = java.lang.reflect.Field.class.getDeclaredField("modifiers")
modifiersField.setAccessible(true)
modifiersField.setInt(idManagerField, modifiersField.getModifiers() & ~java.lang.reflect.Modifier.FINAL)
idManagerField.set(graph, TinkerGraph.DefaultIdManager.INTEGER)
}
[classic, modern, crew, sink, grateful].each{
allowSetOfIdManager(it, "vertexIdManager")
allowSetOfIdManager(it, "edgeIdManager")
allowSetOfIdManager(it, "vertexPropertyIdManager")
}
TinkerFactory.generateClassic(classic)
TinkerFactory.generateModern(modern)
TinkerFactory.generateTheCrew(crew)
TinkerFactory.generateGratefulDead(grateful)
TinkerFactory.generateKitchenSink(sink)
}
] as LifeCycleHook]
// add default TraversalSource instances for each graph instance
globals << [gclassic : classic.traversal().withStrategies(ReferenceElementStrategy.instance())]
globals << [gmodern : modern.traversal().withStrategies(ReferenceElementStrategy.instance())]
globals << [g : graph.traversal().withStrategies(ReferenceElementStrategy.instance())]
globals << [gcrew : crew.traversal().withStrategies(ReferenceElementStrategy.instance())]
globals << [ggraph : graph.traversal().withStrategies(ReferenceElementStrategy.instance())]
globals << [ggrateful : grateful.traversal().withStrategies(ReferenceElementStrategy.instance())]
globals << [gsink : sink.traversal().withStrategies(ReferenceElementStrategy.instance())]