gorealis v2 refactor (#5)

* Changing default timeout for start maintenance.

* Upgrading dependencies to gorealis v2 and thrift  0.12.0

* Refactored to update to gorealis v2.
This commit is contained in:
Renan DelValle 2018-12-27 11:31:51 -08:00 committed by GitHub
parent ad4dd9606e
commit 6ab5c9334d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1335 changed files with 137431 additions and 61530 deletions

View file

@ -0,0 +1,84 @@
/*
* 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.
*
* Contains some contributions under the Thrift Software License.
* Please see doc/old-thrift-license.txt in the Thrift distribution for
* details.
*/
typedef i64 Temperature
typedef i8 Size
typedef string Location
const i32 BoilingPoint = 100
const list<Temperature> Temperatures = [10, 11, 22, 33]
// IMPORTANT: temps should end with ".0" because this tests
// that we don't have a problem with const float list generation
const list<double> CommonTemperatures = [300.0, 450.0]
const double MealsPerDay = 2.5;
const string DefaultRecipeName = "Soup-rise of the Day"
const binary DefaultRecipeBinary = "Soup-rise of the 01010101"
struct Noodle {
1: string flourType
2: Temperature cookTemp
}
struct Spaghetti {
1: optional list<Noodle> noodles
}
const Noodle SpeltNoodle = { "flourType": "spelt", "cookTemp": 110 }
struct MeasuringSpoon {
1: Size size
}
struct MeasuringCup {
1: double millis
}
union MeasuringAids {
1: MeasuringSpoon spoon
2: MeasuringCup cup
}
struct CookingTemperatures {
1: set<double> commonTemperatures
2: list<double> usedTemperatures
3: map<double, double> fahrenheitToCentigradeConversions
}
struct Recipe {
1: string recipeName
2: string cuisine
3: i8 page
}
union CookingTools {
1: set<MeasuringSpoon> measuringSpoons
2: map<Size, Location> measuringCups,
3: list<Recipe> recipes
}

View file

@ -0,0 +1,50 @@
/*
* 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.
*
* Contains some contributions under the Thrift Software License.
* Please see doc/old-thrift-license.txt in the Thrift distribution for
* details.
*/
const i32 WaterWeight = 200
enum brothType {
Miso,
shouyu,
}
struct Ramen {
1: optional string ramenType
2: required i32 noodleCount
3: brothType broth
}
struct Napkin {
// empty
}
service NapkinService {
Napkin napkin()
}
service RamenService extends NapkinService {
Ramen ramen(1: i32 requestedNoodleCount)
}
/* const struct CookedRamen = { "bar": 10 } */

View file

@ -0,0 +1,71 @@
/*
* 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.
*
* Contains some contributions under the Thrift Software License.
* Please see doc/old-thrift-license.txt in the Thrift distribution for
* details.
*/
include "Base_One.thrift"
include "Base_Two.thrift"
const i32 WaterBoilingPoint = Base_One.BoilingPoint
const map<string, Base_One.Temperature> TemperatureNames = { "freezing": 0, "boiling": 100 }
const map<set<i32>, map<list<string>, string>> MyConstNestedMap = {
[0, 1, 2, 3]: { ["foo"]: "bar" },
[20]: { ["nut", "ton"] : "bar" },
[30, 40]: { ["bouncy", "tinkly"]: "castle" }
}
const list<list<i32>> MyConstNestedList = [
[0, 1, 2],
[3, 4, 5],
[6, 7, 8]
]
const set<set<i32>> MyConstNestedSet = [
[0, 1, 2],
[3, 4, 5],
[6, 7, 8]
]
enum Pie {
PUMPKIN,
apple, // intentionally poorly cased
STRAWBERRY_RHUBARB,
Key_Lime, // intentionally poorly cased
coconut_Cream, // intentionally poorly cased
mississippi_mud, // intentionally poorly cased
}
struct Meal {
1: Base_One.Noodle noodle
2: Base_Two.Ramen ramen
}
union Dessert {
1: string port
2: string iceWine
}
service MealService extends Base_Two.RamenService {
Meal meal()
}

View file

@ -0,0 +1,66 @@
/*
* 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.
*
* Contains some contributions under the Thrift Software License.
* Please see doc/old-thrift-license.txt in the Thrift distribution for
* details.
*/
include "Midlayer.thrift"
enum Drink {
WATER,
WHISKEY,
WINE,
scotch, // intentionally poorly cased
LATE_HARVEST_WINE,
India_Pale_Ale, // intentionally poorly cased
apple_cider, // intentially poorly cased
belgian_Ale, // intentionally poorly cased
Canadian_whisky, // intentionally poorly cased
}
const map<i8, Midlayer.Pie> RankedPies = {
1: Midlayer.Pie.PUMPKIN,
2: Midlayer.Pie.STRAWBERRY_RHUBARB,
3: Midlayer.Pie.apple,
4: Midlayer.Pie.mississippi_mud,
5: Midlayer.Pie.coconut_Cream,
6: Midlayer.Pie.Key_Lime,
}
struct FullMeal {
1: required Midlayer.Meal meal
2: required Midlayer.Dessert dessert
}
struct FullMealAndDrinks {
1: required FullMeal fullMeal
2: optional Drink drink
}
service FullMealService extends Midlayer.MealService {
FullMeal fullMeal()
}
service FullMealAndDrinksService extends FullMealService {
FullMealAndDrinks fullMealAndDrinks()
Midlayer.Pie bestPie()
}