blob: c9eb5287f32b0bcc950fd5460c6cb5d2d9ff8c79 [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.
#
# @author Daniel Kuppitz (http://gremlin.guru)
#
function capitalize(string) {
return toupper(substr(string, 1, 1)) substr(string, 2)
}
BEGIN {
delimiter = 0
}
/^pb\([0-9]*\); '\[gremlin-/ {
delimiter = 1
split($0, a, "-")
b = gensub(/]'/, "", "g", a[2])
split(b, c, ",")
split(a[1], d, ";")
lang = c[1]
graph = c[2]
print d[1] "; '[source," lang "]'"
print "'+EVALUATED'"
print "'+IGNORE'"
if (graph != "existing") {
if (graph) {
print "graph = TinkerFactory.create" capitalize(graph) "()"
} else {
print "graph = TinkerGraph.open()"
}
print "g = graph.traversal()"
print "marko = g.V().has('name', 'marko').tryNext().orElse(null)"
print "f = new File('/tmp/neo4j')"
print "if (f.exists()) f.deleteDir()"
print "f = new File('/tmp/tinkergraph.kryo')"
print "if (f.exists()) f.deleteDir()"
print ":set max-iteration 100"
}
print "'-IGNORE'"
}
!/^pb\([0-9]*\); '\[gremlin-/ {
if (delimiter == 2 && !($0 ~ /^pb\([0-9]*\); '----'/)) {
switch (lang) {
default:
print
break
}
} else print
}
/^pb\([0-9]*\); '----'/ {
if (delimiter == 1) delimiter = 2
else if (delimiter == 2) {
print "'-EVALUATED'"
delimiter = 0
}
}