thrift/test/ThriftTest.thrift
Mark Slee dafa3cf710 Thrift C++ code generation improvements
Summary: Generate classes instead of structs, and put read/write methods inside the class definition. Separate services into uniquely generated files. Separate types header file from types implementation file (read/write methods)


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664777 13f79535-47bb-0310-9956-ffa450edef68
2006-09-02 23:56:49 +00:00

89 lines
1.7 KiB
Thrift

namespace thrift.test
enum Numberz
{
ONE = 1,
TWO,
THREE,
FIVE = 5,
SIX,
EIGHT = 8
}
typedef i64 UserId
struct Xtruct
{
string string_thing = 1,
byte byte_thing = 4,
i32 i32_thing = 9,
i64 i64_thing = 11
}
struct Xtruct2
{
byte byte_thing,
Xtruct struct_thing,
i32 i32_thing
}
struct Insanity
{
map<Numberz, UserId> userMap = 0,
list<Xtruct> xtructs = 1
}
exception Xception {
i32 errorCode,
string message
}
exception Xception2 {
i32 errorCode,
Xtruct struct_thing
}
struct EmptyStruct {}
struct OneField {
EmptyStruct field
}
service ThriftTest
{
void testVoid(),
string testString(string thing = 1),
byte testByte(byte thing = 1),
i32 testI32(i32 thing = 1),
i64 testI64(i64 thing = 1),
Xtruct testStruct(Xtruct thing = 1),
Xtruct2 testNest(Xtruct2 thing = 1),
map<i32,i32> testMap(map<i32,i32> thing = 1),
set<i32> testSet(set<i32> thing = 1),
list<i32> testList(list<i32> thing = 1),
Numberz testEnum(Numberz thing = 1),
UserId testTypedef(UserId thing = 1),
map<i32,map<i32,i32>> testMapMap(i32 hello = 1),
/* So you think you've got this all worked, out eh? */
map<UserId, map<Numberz,Insanity>> testInsanity(Insanity argument = 1),
/* Multiple parameters */
Xtruct testMulti(byte arg0, i32 arg1, i64 arg2, map<i16, string> arg3, Numberz arg4, UserId arg5),
/* Exception specifier */
void testException(string arg) throws(Xception err1),
/* Multiple exceptions specifier */
Xtruct testMultiException(string arg0, string arg1) throws(Xception err1=1, Xception2 err2)
}
service SecondService
{
void blahBlah()
}