add schemas for benchmark
This commit is contained in:
parent
b39b352dc6
commit
c505849f3d
4 changed files with 202 additions and 0 deletions
86
benchmark/src/main/schema/carsales.capnp
Normal file
86
benchmark/src/main/schema/carsales.capnp
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
# Copyright (c) 2013, Kenton Varda <temporal@gmail.com>
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
# modification, are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# 1. Redistributions of source code must retain the above copyright notice, this
|
||||||
|
# list of conditions and the following disclaimer.
|
||||||
|
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer in the documentation
|
||||||
|
# and/or other materials provided with the distribution.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||||
|
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
using Cxx = import "/capnp/c++.capnp";
|
||||||
|
|
||||||
|
@0xff75ddc6a36723c9;
|
||||||
|
$Cxx.namespace("capnp::benchmark::capnp");
|
||||||
|
|
||||||
|
using Java = import "/java_support/java.capnp";
|
||||||
|
$Java.package("org.capnproto.benchmark");
|
||||||
|
$Java.outerClassname("Carsales");
|
||||||
|
|
||||||
|
struct ParkingLot {
|
||||||
|
cars@0: List(Car);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TotalValue {
|
||||||
|
amount@0: UInt64;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Car {
|
||||||
|
make@0: Text;
|
||||||
|
model@1: Text;
|
||||||
|
color@2: Color;
|
||||||
|
seats@3: UInt8;
|
||||||
|
doors@4: UInt8;
|
||||||
|
wheels@5: List(Wheel);
|
||||||
|
length@6: UInt16;
|
||||||
|
width@7: UInt16;
|
||||||
|
height@8: UInt16;
|
||||||
|
weight@9: UInt32;
|
||||||
|
engine@10: Engine;
|
||||||
|
fuelCapacity@11: Float32;
|
||||||
|
fuelLevel@12: Float32;
|
||||||
|
hasPowerWindows@13: Bool;
|
||||||
|
hasPowerSteering@14: Bool;
|
||||||
|
hasCruiseControl@15: Bool;
|
||||||
|
cupHolders@16: UInt8;
|
||||||
|
hasNavSystem@17: Bool;
|
||||||
|
}
|
||||||
|
|
||||||
|
enum Color {
|
||||||
|
black @0;
|
||||||
|
white @1;
|
||||||
|
red @2;
|
||||||
|
green @3;
|
||||||
|
blue @4;
|
||||||
|
cyan @5;
|
||||||
|
magenta @6;
|
||||||
|
yellow @7;
|
||||||
|
silver @8;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Wheel {
|
||||||
|
diameter@0: UInt16;
|
||||||
|
airPressure@1: Float32;
|
||||||
|
snowTires@2: Bool;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Engine {
|
||||||
|
horsepower@0: UInt16;
|
||||||
|
cylinders@1: UInt8;
|
||||||
|
cc@2: UInt32;
|
||||||
|
usesGas@3: Bool;
|
||||||
|
usesElectric@4: Bool;
|
||||||
|
}
|
41
benchmark/src/main/schema/catrank.capnp
Normal file
41
benchmark/src/main/schema/catrank.capnp
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
# Copyright (c) 2013, Kenton Varda <temporal@gmail.com>
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
# modification, are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# 1. Redistributions of source code must retain the above copyright notice, this
|
||||||
|
# list of conditions and the following disclaimer.
|
||||||
|
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer in the documentation
|
||||||
|
# and/or other materials provided with the distribution.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||||
|
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
using Cxx = import "/capnp/c++.capnp";
|
||||||
|
|
||||||
|
@0x82beb8e37ff79aba;
|
||||||
|
$Cxx.namespace("capnp::benchmark::capnp");
|
||||||
|
|
||||||
|
using Java = import "/java_support/java.capnp";
|
||||||
|
$Java.package("org.capnproto.benchmark");
|
||||||
|
$Java.outerClassname("Catrank");
|
||||||
|
|
||||||
|
struct SearchResultList {
|
||||||
|
results@0: List(SearchResult);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct SearchResult {
|
||||||
|
url@0: Text;
|
||||||
|
score@1: Float64;
|
||||||
|
snippet@2: Text;
|
||||||
|
}
|
57
benchmark/src/main/schema/eval.capnp
Normal file
57
benchmark/src/main/schema/eval.capnp
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
# Copyright (c) 2013, Kenton Varda <temporal@gmail.com>
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
# modification, are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# 1. Redistributions of source code must retain the above copyright notice, this
|
||||||
|
# list of conditions and the following disclaimer.
|
||||||
|
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer in the documentation
|
||||||
|
# and/or other materials provided with the distribution.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||||
|
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
using Cxx = import "/capnp/c++.capnp";
|
||||||
|
|
||||||
|
@0xe12dc4c3e70e9eda;
|
||||||
|
$Cxx.namespace("capnp::benchmark::capnp");
|
||||||
|
|
||||||
|
using Java = import "/java_support/java.capnp";
|
||||||
|
$Java.package("org.capnproto.benchmark");
|
||||||
|
$Java.outerClassname("Eval");
|
||||||
|
|
||||||
|
enum Operation {
|
||||||
|
add @0;
|
||||||
|
subtract @1;
|
||||||
|
multiply @2;
|
||||||
|
divide @3;
|
||||||
|
modulus @4;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Expression {
|
||||||
|
op@0: Operation;
|
||||||
|
|
||||||
|
left :union {
|
||||||
|
value@1: Int32;
|
||||||
|
expression@2: Expression;
|
||||||
|
}
|
||||||
|
|
||||||
|
right :union {
|
||||||
|
value@3: Int32;
|
||||||
|
expression@4: Expression;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct EvaluationResult {
|
||||||
|
value@0: Int32;
|
||||||
|
}
|
|
@ -39,6 +39,16 @@ object Build extends sbt.Build {
|
||||||
.settings(unmanagedSourceDirectories in Compile += sourceDirectory.value / "main" / "generated")
|
.settings(unmanagedSourceDirectories in Compile += sourceDirectory.value / "main" / "generated")
|
||||||
.settings(cleanFiles += sourceDirectory.value / "main" / "generated")
|
.settings(cleanFiles += sourceDirectory.value / "main" / "generated")
|
||||||
|
|
||||||
|
lazy val benchmark =
|
||||||
|
project(
|
||||||
|
id = "benchmark",
|
||||||
|
base = file("benchmark")
|
||||||
|
).dependsOn(runtime, compiler)
|
||||||
|
.settings(compileBenchmarkSchemaTask)
|
||||||
|
.settings(compile <<= compile in Compile dependsOn compileBenchmarkSchema)
|
||||||
|
.settings(unmanagedSourceDirectories in Compile += sourceDirectory.value / "main" / "generated")
|
||||||
|
.settings(cleanFiles += sourceDirectory.value / "main" / "generated")
|
||||||
|
|
||||||
def project(id: String, base: File) =
|
def project(id: String, base: File) =
|
||||||
Project(
|
Project(
|
||||||
id = id,
|
id = id,
|
||||||
|
@ -68,6 +78,14 @@ object Build extends sbt.Build {
|
||||||
val makeResult = "make addressbook".!!
|
val makeResult = "make addressbook".!!
|
||||||
println(s"**** CodeGen for Addressbook Started\n$makeResult\n**** CodeGen for Addressbook Complete")
|
println(s"**** CodeGen for Addressbook Started\n$makeResult\n**** CodeGen for Addressbook Complete")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val compileBenchmarkSchema = taskKey[Unit]("Run capnpc-java on benchmark schema")
|
||||||
|
val compileBenchmarkSchemaTask = compileBenchmarkSchema := {
|
||||||
|
val result0 = "mkdir -p benchmark/src/main/generated".!!
|
||||||
|
val result = "capnp compile -I compiler/src/main/cpp/ --src-prefix=benchmark/src/main/schema/ -o./capnpc-java:benchmark/src/main/generated benchmark/src/main/schema/eval.capnp benchmark/src/main/schema/carsales.capnp benchmark/src/main/schema/catrank.capnp".!!
|
||||||
|
println(s"**** CodeGen for benchmark started\n$result\n**** CodeGen complete.");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
object Shared {
|
object Shared {
|
||||||
|
|
Loading…
Reference in a new issue