]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/thrift/test/ConstantsDemo.thrift
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / thrift / test / ConstantsDemo.thrift
1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20 namespace cpp yozone
21 namespace erl consts_
22
23 struct thing {
24 1: i32 hello,
25 2: i32 goodbye
26 }
27
28 enum enumconstants {
29 ONE = 1,
30 TWO = 2
31 }
32
33 // struct thing2 {
34 // /** standard docstring */
35 // 1: enumconstants val = TWO
36 // }
37
38 typedef i32 myIntType
39 const myIntType myInt = 3
40
41 //const map<enumconstants,string> GEN_ENUM_NAMES = {ONE : "HOWDY", TWO: "PARTNER"}
42
43 const i32 hex_const = 0x0001F
44 const i32 negative_hex_constant = -0x0001F
45
46 const i32 GEN_ME = -3523553
47 const double GEn_DUB = 325.532
48 const double GEn_DU = 085.2355
49 const string GEN_STRING = "asldkjasfd"
50
51 const double e10 = 1e10 // fails with 0.9.3 and earlier
52 const double e11 = -1e10
53
54 const map<i32,i32> GEN_MAP = { 35532 : 233, 43523 : 853 }
55 const list<i32> GEN_LIST = [ 235235, 23598352, 3253523 ]
56
57 const map<i32, map<i32, i32>> GEN_MAPMAP = { 235 : { 532 : 53255, 235:235}}
58
59 const map<string,i32> GEN_MAP2 = { "hello" : 233, "lkj98d" : 853, 'lkjsdf' : 098325 }
60
61 const thing GEN_THING = { 'hello' : 325, 'goodbye' : 325352 }
62
63 const map<i32,thing> GEN_WHAT = { 35 : { 'hello' : 325, 'goodbye' : 325352 } }
64
65 const set<i32> GEN_SET = [ 235, 235, 53235 ]
66
67 exception Blah {
68 1: i32 bing }
69
70 exception Gak {}
71
72 service yowza {
73 void blingity(),
74 i32 blangity() throws (1: Blah hoot )
75 }