blob: e787ca7e0428927a841049f47963971e1b9c1e3e [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.driver;
import org.apache.tinkerpop.benchmark.util.AbstractBenchmarkBase;
import org.apache.tinkerpop.gremlin.process.traversal.Bytecode;
import org.apache.tinkerpop.gremlin.structure.Graph;
import org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONMapper;
import org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONVersion;
import org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONXModuleV3d0;
import org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph;
import org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.Level;
import org.openjdk.jmh.annotations.Scope;
import org.openjdk.jmh.annotations.Setup;
import org.openjdk.jmh.annotations.State;
import org.openjdk.jmh.annotations.TearDown;
import org.openjdk.jmh.annotations.Warmup;
import java.io.IOException;
import java.math.BigInteger;
import java.net.InetAddress;
import java.time.Instant;
import java.util.UUID;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
@Warmup(time = 200, timeUnit = MILLISECONDS)
public class GraphSONMapperBenchmark extends AbstractBenchmarkBase {
private static final ObjectMapper mapper = GraphSONMapper.build()
.version(GraphSONVersion.V3_0)
.addCustomModule(GraphSONXModuleV3d0.build().create(false))
.create().createMapper();
@State(Scope.Thread)
public static class BenchmarkState {
public byte[] bytecodeBytes1;
private byte[] bytecodeBytes2;
private final Bytecode bytecode1 = new Bytecode();
private Bytecode bytecode2;
@Setup(Level.Trial)
public void doSetup() throws IOException {
bytecode1.addStep("V");
bytecode1.addStep("values", "name");
bytecode1.addStep("tail", 5);
Graph g = TinkerGraph.open();
bytecode2 = g.traversal()
.addV("person")
.property("name1", 1)
.property("name2", UUID.randomUUID())
.property("name3", InetAddress.getByAddress(new byte[] { 127, 0, 0, 1}))
.property("name4", BigInteger.valueOf(33343455342245L))
.property("name5", "kjlkdnvlkdrnvldnvndlrkvnlhkjdkgkrtnlkndblknlknonboirnlkbnrtbonrobinokbnrklnbkrnblktengotrngotkrnglkt")
.property("name6", Instant.now())
.asAdmin().getBytecode();
bytecodeBytes1 = mapper.writeValueAsBytes(bytecode1);
bytecodeBytes2 = mapper.writeValueAsBytes(bytecode2);
}
@TearDown(Level.Trial)
public void doTearDown() {
}
}
@Benchmark
public void readBytecode1(BenchmarkState state) throws IOException {
mapper.readValue(state.bytecodeBytes1, Bytecode.class);
}
@Benchmark
public void readBytecode2(BenchmarkState state) throws IOException {
mapper.readValue(state.bytecodeBytes2, Bytecode.class);
}
@Benchmark
public void writeBytecode1(BenchmarkState state) throws IOException {
mapper.writeValueAsString(state.bytecode1);
}
@Benchmark
public void writeBytecode2(BenchmarkState state) throws IOException {
mapper.writeValueAsBytes(state.bytecode2);
}
}