David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [diff] [blame] | 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. |
Todd Lipcon | 53ae9f3 | 2009-12-07 00:42:38 +0000 | [diff] [blame] | 18 | * |
| 19 | * Contains some contributions under the Thrift Software License. |
| 20 | * Please see doc/old-thrift-license.txt in the Thrift distribution for |
| 21 | * details. |
David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [diff] [blame] | 22 | */ |
| 23 | |
David Reiss | 771f8c7 | 2008-02-27 01:55:25 +0000 | [diff] [blame] | 24 | namespace java thrift.test |
David Reiss | 9a08dc6 | 2008-02-27 01:55:17 +0000 | [diff] [blame] | 25 | namespace cpp thrift.test |
David Reiss | 6a4b82c | 2008-03-27 21:42:16 +0000 | [diff] [blame] | 26 | namespace rb Thrift.Test |
David Reiss | 07ef3a9 | 2008-03-27 21:42:39 +0000 | [diff] [blame] | 27 | namespace perl ThriftTest |
David Reiss | 9d65bf0 | 2008-03-27 21:41:37 +0000 | [diff] [blame] | 28 | namespace csharp Thrift.Test |
T Jake Luciani | 322caa2 | 2010-02-15 03:24:55 +0000 | [diff] [blame] | 29 | namespace js ThriftTest |
Bryan Duxbury | 4d8a9cd | 2010-08-30 17:09:58 +0000 | [diff] [blame] | 30 | namespace st ThriftTest |
Marc Slemko | 1785985 | 2006-08-15 00:21:31 +0000 | [diff] [blame] | 31 | |
Bryan Duxbury | 9af23d9 | 2009-11-19 17:26:38 +0000 | [diff] [blame] | 32 | /** |
| 33 | * Docstring! |
| 34 | */ |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 35 | enum Numberz |
| 36 | { |
| 37 | ONE = 1, |
| 38 | TWO, |
| 39 | THREE, |
| 40 | FIVE = 5, |
| 41 | SIX, |
| 42 | EIGHT = 8 |
| 43 | } |
| 44 | |
Mark Slee | 6e53644 | 2006-06-30 18:28:50 +0000 | [diff] [blame] | 45 | typedef i64 UserId |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 46 | |
Mark Slee | e129a2d | 2007-02-21 05:17:48 +0000 | [diff] [blame] | 47 | struct Bonk |
| 48 | { |
| 49 | 1: string message, |
| 50 | 2: i32 type |
| 51 | } |
| 52 | |
Kevin Clark | 9a863ee | 2009-03-24 16:04:36 +0000 | [diff] [blame] | 53 | struct Bools { |
| 54 | 1: bool im_true, |
| 55 | 2: bool im_false, |
| 56 | } |
| 57 | |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 58 | struct Xtruct |
| 59 | { |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 60 | 1: string string_thing, |
| 61 | 4: byte byte_thing, |
| 62 | 9: i32 i32_thing, |
| 63 | 11: i64 i64_thing |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | struct Xtruct2 |
| 67 | { |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 68 | 1: byte byte_thing, |
| 69 | 2: Xtruct struct_thing, |
| 70 | 3: i32 i32_thing |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 71 | } |
| 72 | |
David Reiss | 233ace5 | 2009-03-30 20:46:47 +0000 | [diff] [blame] | 73 | struct Xtruct3 |
| 74 | { |
| 75 | 1: string string_thing, |
| 76 | 4: i32 changed, |
| 77 | 9: i32 i32_thing, |
| 78 | 11: i64 i64_thing |
| 79 | } |
| 80 | |
| 81 | |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 82 | struct Insanity |
| 83 | { |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 84 | 1: map<Numberz, UserId> userMap, |
| 85 | 2: list<Xtruct> xtructs |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Bryan Duxbury | 986d705 | 2009-01-29 01:51:08 +0000 | [diff] [blame] | 88 | struct CrazyNesting { |
| 89 | 1: string string_field, |
| 90 | 2: optional set<Insanity> set_field, |
| 91 | 3: required list< map<set<i32>,map<i32,set<list<map<Insanity,string>>>>>> list_field |
| 92 | } |
| 93 | |
Marc Slemko | bf4fd19 | 2006-08-15 21:29:39 +0000 | [diff] [blame] | 94 | exception Xception { |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 95 | 1: i32 errorCode, |
| 96 | 2: string message |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 97 | } |
| 98 | |
Marc Slemko | bf4fd19 | 2006-08-15 21:29:39 +0000 | [diff] [blame] | 99 | exception Xception2 { |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 100 | 1: i32 errorCode, |
| 101 | 2: Xtruct struct_thing |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 102 | } |
Mark Slee | 27ed6ec | 2007-08-16 01:26:31 +0000 | [diff] [blame] | 103 | |
Mark Slee | d3d733a | 2006-09-01 22:19:06 +0000 | [diff] [blame] | 104 | struct EmptyStruct {} |
| 105 | |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 106 | struct OneField { |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 107 | 1: EmptyStruct field |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 108 | } |
Marc Slemko | 5b126d6 | 2006-08-11 23:03:42 +0000 | [diff] [blame] | 109 | |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 110 | service ThriftTest |
| 111 | { |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 112 | void testVoid(), |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 113 | string testString(1: string thing), |
| 114 | byte testByte(1: byte thing), |
| 115 | i32 testI32(1: i32 thing), |
| 116 | i64 testI64(1: i64 thing), |
| 117 | double testDouble(1: double thing), |
| 118 | Xtruct testStruct(1: Xtruct thing), |
| 119 | Xtruct2 testNest(1: Xtruct2 thing), |
| 120 | map<i32,i32> testMap(1: map<i32,i32> thing), |
| 121 | set<i32> testSet(1: set<i32> thing), |
| 122 | list<i32> testList(1: list<i32> thing), |
| 123 | Numberz testEnum(1: Numberz thing), |
| 124 | UserId testTypedef(1: UserId thing), |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 125 | |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 126 | map<i32,map<i32,i32>> testMapMap(1: i32 hello), |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 127 | |
| 128 | /* So you think you've got this all worked, out eh? */ |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 129 | map<UserId, map<Numberz,Insanity>> testInsanity(1: Insanity argument), |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 130 | |
| 131 | /* Multiple parameters */ |
David Reiss | 689c9ad | 2009-04-02 19:24:02 +0000 | [diff] [blame] | 132 | Xtruct testMulti(1: byte arg0, 2: i32 arg1, 3: i64 arg2, 4: map<i16, string> arg3, 5: Numberz arg4, 6: UserId arg5), |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 133 | |
| 134 | /* Exception specifier */ |
| 135 | |
David Reiss | 689c9ad | 2009-04-02 19:24:02 +0000 | [diff] [blame] | 136 | void testException(1: string arg) throws(1: Xception err1), |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 137 | |
| 138 | /* Multiple exceptions specifier */ |
| 139 | |
David Reiss | 689c9ad | 2009-04-02 19:24:02 +0000 | [diff] [blame] | 140 | Xtruct testMultiException(1: string arg0, 2: string arg1) throws(1: Xception err1, 2: Xception2 err2) |
David Reiss | 2ab6fe8 | 2008-02-18 02:11:44 +0000 | [diff] [blame] | 141 | |
David Reiss | c51986f | 2009-03-24 20:01:25 +0000 | [diff] [blame] | 142 | /* Test oneway void */ |
David Reiss | cecbed8 | 2009-03-24 20:02:22 +0000 | [diff] [blame] | 143 | oneway void testOneway(1:i32 secondsToSleep) |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 144 | } |
Mark Slee | dafa3cf | 2006-09-02 23:56:49 +0000 | [diff] [blame] | 145 | |
| 146 | service SecondService |
| 147 | { |
| 148 | void blahBlah() |
| 149 | } |
David Reiss | 9ff3b9d | 2008-02-15 01:10:23 +0000 | [diff] [blame] | 150 | |
| 151 | struct VersioningTestV1 { |
| 152 | 1: i32 begin_in_both, |
David Reiss | a528f54 | 2009-03-24 22:48:40 +0000 | [diff] [blame] | 153 | 3: string old_string, |
David Reiss | 9ff3b9d | 2008-02-15 01:10:23 +0000 | [diff] [blame] | 154 | 12: i32 end_in_both |
| 155 | } |
| 156 | |
| 157 | struct VersioningTestV2 { |
| 158 | 1: i32 begin_in_both, |
| 159 | |
| 160 | 2: i32 newint, |
| 161 | 3: byte newbyte, |
| 162 | 4: i16 newshort, |
| 163 | 5: i64 newlong, |
| 164 | 6: double newdouble |
| 165 | 7: Bonk newstruct, |
| 166 | 8: list<i32> newlist, |
| 167 | 9: set<i32> newset, |
| 168 | 10: map<i32, i32> newmap, |
| 169 | 11: string newstring, |
| 170 | 12: i32 end_in_both |
David Reiss | 9a08dc6 | 2008-02-27 01:55:17 +0000 | [diff] [blame] | 171 | } |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 172 | |
| 173 | struct ListTypeVersioningV1 { |
| 174 | 1: list<i32> myints; |
| 175 | 2: string hello; |
| 176 | } |
| 177 | |
| 178 | struct ListTypeVersioningV2 { |
| 179 | 1: list<string> strings; |
| 180 | 2: string hello; |
Bryan Duxbury | 986d705 | 2009-01-29 01:51:08 +0000 | [diff] [blame] | 181 | } |