Add Smalltalk support to Thrift

Summary: Submitted by Patrick Collison


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665358 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/compiler/cpp/Makefile.am b/compiler/cpp/Makefile.am
index b65dbb1..254f9b5 100644
--- a/compiler/cpp/Makefile.am
+++ b/compiler/cpp/Makefile.am
@@ -20,40 +20,42 @@
                  src/generate/t_erl_generator.cc \
                  src/generate/t_hs_generator.cc \
                  src/generate/t_cocoa_generator.cc \
-								 src/globals.h \
-								 src/main.h \
-								 src/md5.h \
-								 src/parse/t_doc.h \
-								 src/parse/t_type.h \
-								 src/parse/t_base_type.h \
-								 src/parse/t_enum.h \
-								 src/parse/t_enum_value.h \
-								 src/parse/t_typedef.h \
-								 src/parse/t_container.h \
-								 src/parse/t_list.h \
-								 src/parse/t_set.h \
-								 src/parse/t_map.h \
-								 src/parse/t_struct.h \
-								 src/parse/t_field.h \
-								 src/parse/t_service.h \
-								 src/parse/t_function.h \
-								 src/parse/t_program.h \
-								 src/parse/t_scope.h \
-								 src/parse/t_const.h \
-								 src/parse/t_const_value.h \
-								 src/generate/t_generator.h \
-								 src/generate/t_oop_generator.h \
-								 src/generate/t_cpp_generator.h \
-								 src/generate/t_java_generator.h \
-								 src/generate/t_php_generator.h \
-								 src/generate/t_py_generator.h \
-								 src/generate/t_rb_generator.h \
-								 src/generate/t_xsd_generator.h \
-								 src/generate/t_perl_generator.h \
-								 src/generate/t_ocaml_generator.h \
-								 src/generate/t_erl_generator.h \
-								 src/generate/t_hs_generator.h \
-								 src/generate/t_cocoa_generator.h
+                 src/generate/t_st_generator.cc	\
+                 src/globals.h \
+                 src/main.h \
+                 src/md5.h \
+                 src/parse/t_doc.h \
+                 src/parse/t_type.h \
+                 src/parse/t_base_type.h \
+                 src/parse/t_enum.h \
+                 src/parse/t_enum_value.h \
+                 src/parse/t_typedef.h \
+                 src/parse/t_container.h \
+                 src/parse/t_list.h \
+                 src/parse/t_set.h \
+                 src/parse/t_map.h \
+                 src/parse/t_struct.h \
+                 src/parse/t_field.h \
+                 src/parse/t_service.h \
+                 src/parse/t_function.h \
+                 src/parse/t_program.h \
+                 src/parse/t_scope.h \
+                 src/parse/t_const.h \
+                 src/parse/t_const_value.h \
+                 src/generate/t_generator.h \
+                 src/generate/t_oop_generator.h \
+                 src/generate/t_cpp_generator.h \
+                 src/generate/t_java_generator.h \
+                 src/generate/t_php_generator.h \
+                 src/generate/t_py_generator.h \
+                 src/generate/t_rb_generator.h \
+                 src/generate/t_xsd_generator.h \
+                 src/generate/t_perl_generator.h \
+                 src/generate/t_ocaml_generator.h \
+                 src/generate/t_erl_generator.h \
+                 src/generate/t_hs_generator.h \
+                 src/generate/t_cocoa_generator.h \
+                 src/generate/t_st_generator.h
 
 thrift_CXXFLAGS = -Wall -Isrc $(BOOST_CPPFLAGS)
 thrift_LDFLAGS = -Wall $(BOOST_LDFLAGS)
diff --git a/compiler/cpp/src/generate/t_st_generator.cc b/compiler/cpp/src/generate/t_st_generator.cc
new file mode 100644
index 0000000..0ac02d4
--- /dev/null
+++ b/compiler/cpp/src/generate/t_st_generator.cc
@@ -0,0 +1,908 @@
+// Copyright (c) 2007- Patrick Collison <patrick@collison.ie>
+// Copyright (c) 2006- Facebook
+//
+// Distributed under the Thrift Software License
+//
+// See accompanying file LICENSE or visit the Thrift site at:
+// http://developers.facebook.com/thrift/
+
+#include <stdlib.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <sstream>
+#include "t_st_generator.h"
+using namespace std;
+
+/**
+ * Prepares for file generation by opening up the necessary file output
+ * streams.
+ *
+ * @param tprogram The program to generate
+ */
+void t_st_generator::init_generator() {
+  // Make output directory
+  mkdir(T_ST_DIR, S_IREAD | S_IWRITE | S_IEXEC);
+
+  temporary_var = 0;
+
+  // Make output file
+  string f_name = string(T_ST_DIR)+"/"+program_name_+".st";
+  f_.open(f_name.c_str());
+
+  // Print header
+  f_ << st_autogen_comment() << endl;
+
+  st_class_def(f_, program_name_);
+  generate_class_side_definition();
+
+  //Generate enums
+  vector<t_enum*> enums = program_->get_enums();
+  vector<t_enum*>::iterator en_iter;
+  for (en_iter = enums.begin(); en_iter != enums.end(); ++en_iter) {
+    generate_enum(*en_iter);
+  }
+}
+
+string t_st_generator::class_name() {
+  return capitalize(program_name_);
+}
+
+string t_st_generator::client_class_name() {
+  return capitalize(service_name_) + "Client";
+}
+
+/**
+ * Autogen'd comment
+ */
+string t_st_generator::st_autogen_comment() {
+  return
+    std::string("'") +
+    "Autogenerated by Thrift\n" +
+    "\n" +
+    "DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING\n" +
+    "'!\n";
+}
+
+void t_st_generator::generate_force_consts() {
+  f_ << class_name() << " enums keysAndValuesDo: [:k :v | " <<
+    class_name() << " enums at: k put: v value].!" << endl;
+
+  f_ << class_name() << " constants keysAndValuesDo: [:k :v | " <<
+    class_name() << " constants at: k put: v value].!" << endl;
+
+}
+
+void t_st_generator::close_generator() {
+  generate_force_consts();
+
+  f_.close();
+}
+
+/**
+ * Generates a typedef. This is not done in Smalltalk, types are all implicit.
+ *
+ * @param ttypedef The type definition
+ */
+void t_st_generator::generate_typedef(t_typedef* ttypedef) {}
+
+void t_st_generator::st_class_def(std::ofstream &out, string name) {
+  out << "Object subclass: #" << capitalize(name) << endl;
+  indent_up();
+  out << indent() << "instanceVariableNames: ''" << endl <<
+    indent() << "classVariableNames: ''" << endl <<
+    indent() << "poolDictionaries: ''" << endl <<
+    indent() << "category: 'Thrift-Generated-" << class_name() << "'!" << endl << endl;
+}
+
+void t_st_generator::st_method(std::ofstream &out, string cls, string name) {
+  st_method(out, cls, name, "as yet uncategorized");
+}
+
+void t_st_generator::st_class_method(std::ofstream &out, string cls, string name) {
+  st_method(out, cls + " class", name);
+}
+
+void t_st_generator::st_class_method(std::ofstream &out, string cls, string name, string category) {
+  st_method(out, cls, name, category);
+}
+
+void t_st_generator::st_method(std::ofstream &out, string cls, string name, string category) {
+  char timestr[50];
+  time_t rawtime;
+  struct tm *tinfo;
+
+  time(&rawtime);
+  tinfo = localtime(&rawtime);
+  strftime(timestr, 50, "%m/%d/%Y %H:%M", tinfo);
+
+  out << "!" << capitalize(cls) <<
+    " methodsFor: '"+category+"' stamp: 'thrift " << timestr << "'!\n" <<
+    name << endl;
+
+  indent_up();
+  out << indent();
+}
+
+void t_st_generator::st_close_method(std::ofstream &out) {
+  out << "! !" << endl << endl;
+  indent_down();
+}
+
+void t_st_generator::st_setter(std::ofstream &out, string cls, string name, string type = "anObject") {
+  st_method(out, cls, name + ": " + type);
+  out << name << " := " + type;
+  st_close_method(out);
+}
+
+void t_st_generator::st_getter(std::ofstream &out, string cls, string name) {
+  st_method(out, cls, name + "");
+  out << "^ " << name;
+  st_close_method(out);
+}
+
+void t_st_generator::st_accessors(std::ofstream &out, string cls, string name, string type = "anObject") {
+  st_setter(out, cls, name, type);
+  st_getter(out, cls, name);
+}
+
+void t_st_generator::generate_class_side_definition() {
+  f_ << class_name() << " class" << endl <<
+    "\tinstanceVariableNames: 'constants enums'!" << endl << endl;
+
+  st_accessors(f_, class_name() + " class", "enums");
+  st_accessors(f_, class_name() + " class", "constants");
+
+  f_ << class_name() << " enums: Dictionary new!" << endl;
+  f_ << class_name() << " constants: Dictionary new!" << endl;
+
+  f_ << endl;
+}
+
+/**
+ * Generates code for an enumerated type. Done using a class to scope
+ * the values.
+ *
+ * @param tenum The enumeration
+ */
+void t_st_generator::generate_enum(t_enum* tenum) {
+  string cls_name = program_name_ + capitalize(tenum->get_name());
+
+  f_ << class_name() << " enums at: '" << tenum->get_name() << "' put: [" <<
+    "(Dictionary new " << endl;
+
+  vector<t_enum_value*> constants = tenum->get_constants();
+  vector<t_enum_value*>::iterator c_iter;
+  int value = -1;
+  for (c_iter = constants.begin(); c_iter != constants.end(); ++c_iter) {
+    if ((*c_iter)->has_value()) {
+      value = (*c_iter)->get_value();
+    } else {
+      ++value;
+    }
+
+    f_ << "\tat: '" << (*c_iter)->get_name() << "' put: " << value << ";" << endl;
+  }
+
+  f_ << "\tyourself)]!" << endl << endl;
+}
+
+/**
+ * Generate a constant value
+ */
+void t_st_generator::generate_const(t_const* tconst) {
+  t_type* type = tconst->get_type();
+  string name = tconst->get_name();
+  t_const_value* value = tconst->get_value();
+
+  f_ << class_name() << " constants at: '" << name << "' put: [" <<
+    render_const_value(type, value) << "]!" << endl << endl;
+}
+
+/**
+ * Prints the value of a constant with the given type. Note that type checking
+ * is NOT performed in this function as it is always run beforehand using the
+ * validate_types method in main.cc
+ */
+string t_st_generator::render_const_value(t_type* type, t_const_value* value) {
+  std::ostringstream out;
+  if (type->is_base_type()) {
+    t_base_type::t_base tbase = ((t_base_type*)type)->get_base();
+    switch (tbase) {
+    case t_base_type::TYPE_STRING:
+      out << "'" << value->get_string() << "'";
+      break;
+    case t_base_type::TYPE_BOOL:
+      out << (value->get_integer() > 0 ? "true" : "false");
+      break;
+    case t_base_type::TYPE_BYTE:
+    case t_base_type::TYPE_I16:
+    case t_base_type::TYPE_I32:
+    case t_base_type::TYPE_I64:
+      out << value->get_integer();
+      break;
+    case t_base_type::TYPE_DOUBLE:
+      if (value->get_type() == t_const_value::CV_INTEGER) {
+        out << value->get_integer();
+      } else {
+        out << value->get_double();
+      }
+      break;
+    default:
+      throw "compiler error: no const of base type " + t_base_type::t_base_name(tbase);
+    }
+  } else if (type->is_enum()) {
+    indent(out) << value->get_integer();
+  } else if (type->is_struct() || type->is_xception()) {
+    out << "(" << capitalize(type->get_name()) << " new " << endl;
+    indent_up();
+
+    const vector<t_field*>& fields = ((t_struct*)type)->get_members();
+    vector<t_field*>::const_iterator f_iter;
+    const map<t_const_value*, t_const_value*>& val = value->get_map();
+    map<t_const_value*, t_const_value*>::const_iterator v_iter;
+
+    for (v_iter = val.begin(); v_iter != val.end(); ++v_iter) {
+      t_type* field_type = NULL;
+      for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter) {
+        if ((*f_iter)->get_name() == v_iter->first->get_string()) {
+          field_type = (*f_iter)->get_type();
+        }
+      }
+      if (field_type == NULL) {
+        throw "type error: " + type->get_name() + " has no field " + v_iter->first->get_string();
+      }
+
+      out << indent() << v_iter->first->get_string() << ": " <<
+        render_const_value(field_type, v_iter->second) << ";" << endl;
+    }
+    out << indent() << "yourself)";
+
+    indent_down();
+  } else if (type->is_map()) {
+    t_type* ktype = ((t_map*)type)->get_key_type();
+    t_type* vtype = ((t_map*)type)->get_val_type();
+    out << "(Dictionary new" << endl;
+    indent_up();
+    indent_up();
+    const map<t_const_value*, t_const_value*>& val = value->get_map();
+    map<t_const_value*, t_const_value*>::const_iterator v_iter;
+    for (v_iter = val.begin(); v_iter != val.end(); ++v_iter) {
+      out << indent() << indent();
+      out << "at: " << render_const_value(ktype, v_iter->first);
+      out << " put: ";
+      out << render_const_value(vtype, v_iter->second);
+      out << ";" << endl;
+    }
+    out << indent() << indent() << "yourself)";
+    indent_down();
+    indent_down();
+  } else if (type->is_list() || type->is_set()) {
+    t_type* etype;
+    if (type->is_list()) {
+      etype = ((t_list*)type)->get_elem_type();
+    } else {
+      etype = ((t_set*)type)->get_elem_type();
+    }
+    if (type->is_set()) {
+      out << "(Set new" << endl;
+    } else {
+      out << "(OrderedCollection new" << endl;
+    }
+    indent_up();
+    indent_up();
+    const vector<t_const_value*>& val = value->get_list();
+    vector<t_const_value*>::const_iterator v_iter;
+    for (v_iter = val.begin(); v_iter != val.end(); ++v_iter) {
+      out << indent() << indent();
+      out << "add: " << render_const_value(etype, *v_iter);
+      out << ";" << endl;
+    }
+    out << indent() << indent() << "yourself)";
+    indent_down();
+    indent_down();
+  }
+  return out.str();
+}
+
+/**
+ * Generates a Smalltalk struct
+ */
+void t_st_generator::generate_struct(t_struct* tstruct) {
+  generate_st_struct(f_, tstruct, false);
+}
+
+/**
+ * Generates a struct definition for a thrift exception. Basically the same
+ * as a struct but extends the Exception class.
+ *
+ * @param txception The struct definition
+ */
+void t_st_generator::generate_xception(t_struct* txception) {
+  generate_st_struct(f_, txception, true);
+}
+
+/**
+ * Generates a smalltalk class to represent a struct
+ */
+void t_st_generator::generate_st_struct(std::ofstream& out, t_struct* tstruct, bool is_exception = false) {
+  const vector<t_field*>& members = tstruct->get_members();
+  vector<t_field*>::const_iterator m_iter;
+
+  if (is_exception)
+    out << "Error";
+  else
+    out << "Object";
+
+  out << " subclass: #" << capitalize(type_name(tstruct)) << endl <<
+    "\tinstanceVariableNames: '";
+
+  if (members.size() > 0) {
+    for (m_iter = members.begin(); m_iter != members.end(); ++m_iter) {
+      if (m_iter != members.begin()) out << " ";
+      out << sanitize((*m_iter)->get_name());
+    }
+  }
+
+  out << "'\n" <<
+    "\tclassVariableNames: ''\n" <<
+    "\tpoolDictionaries: ''\n" <<
+    "\tcategory: 'Thrift-Generated-" << class_name() << "'!\n\n";
+
+  generate_accessors(out, tstruct);
+}
+
+bool t_st_generator::is_vowel(char c) {
+  switch(tolower(c)) {
+    case 'a': case 'e': case 'i': case 'o': case 'u':
+    return true;
+  }
+  return false;
+}
+
+string t_st_generator::a_type(t_type* type) {
+	string prefix;
+
+	if (is_vowel(type_name(type)[0]))
+    prefix = "an";
+  else
+    prefix = "a";
+
+	return prefix + capitalize(type_name(type));
+}
+
+void t_st_generator::generate_accessors(std::ofstream& out, t_struct* tstruct) {
+  const vector<t_field*>& members = tstruct->get_members();
+  vector<t_field*>::const_iterator m_iter;
+  string type;
+  string prefix;
+
+  if (members.size() > 0) {
+    for (m_iter = members.begin(); m_iter != members.end(); ++m_iter) {
+			st_accessors(out, capitalize(type_name(tstruct)), sanitize((*m_iter)->get_name()),
+									 a_type((*m_iter)->get_type()));
+    }
+    out << endl;
+  }
+}
+
+/**
+ * Generates a thrift service.
+ *
+ * @param tservice The service definition
+ */
+void t_st_generator::generate_service(t_service* tservice) {
+  generate_service_client(tservice);
+  // generate_service_server(tservice);
+}
+
+string t_st_generator::temp_name() {
+  std::ostringstream out;
+  out << "temp" << temporary_var++;
+  return out.str();
+}
+
+string t_st_generator::map_writer(t_map *tmap, string fname) {
+  std::ostringstream out;
+  string key = temp_name();
+  string val = temp_name();
+
+  out << "[oprot writeMapBegin: (TMap new keyType: " << type_to_enum(tmap->get_key_type()) <<
+    "; valueType: " << type_to_enum(tmap->get_val_type()) << "; size: " << fname << " size)." << endl;
+  indent_up();
+
+  out << indent() << fname << " keysAndValuesDo: [:" << key << " :" << val << " |" << endl;
+  indent_up();
+
+  out << indent() << write_val(tmap->get_key_type(), key) << "." << endl <<
+    indent() << write_val(tmap->get_val_type(), val);
+  indent_down();
+
+  out << "]." << endl <<
+    indent() << "oprot writeMapEnd] value";
+  indent_down();
+
+  return out.str();
+}
+
+string t_st_generator::map_reader(t_map *tmap) {
+  std::ostringstream out;
+  string desc = temp_name();
+  string val = temp_name();
+
+  out << "[|" << desc << " " << val << "| " << endl;
+  indent_up();
+
+  out << indent() << desc << " := iprot readMapBegin." << endl <<
+    indent() << val << " := Dictionary new." << endl <<
+    indent() << desc << " size timesRepeat: [" << endl;
+
+  indent_up();
+  out << indent() << val << " at: " << read_val(tmap->get_key_type()) <<
+    " put: " << read_val(tmap->get_val_type());
+  indent_down();
+
+  out << "]." << endl <<
+    indent() << "iprot readMapEnd." << endl <<
+	indent() << val << "] value";
+  indent_down();
+
+  return out.str();
+}
+
+string t_st_generator::list_writer(t_list *tlist, string fname) {
+  std::ostringstream out;
+  string val = temp_name();
+
+  out << "[oprot writeListBegin: (TList new elemType: " <<
+    type_to_enum(tlist->get_elem_type()) << "; size: " << fname << " size)." << endl;
+  indent_up();
+
+  out << indent() << fname << " do: [:" << val << "|" << endl;
+  indent_up();
+
+  out << indent() << write_val(tlist->get_elem_type(), val) << endl;
+  indent_down();
+
+  out << "]." << endl <<
+    indent() << "oprot writeListEnd] value";
+  indent_down();
+
+  return out.str();
+}
+
+string t_st_generator::list_reader(t_list *tlist) {
+  std::ostringstream out;
+  string desc = temp_name();
+  string val = temp_name();
+
+  out << "[|" << desc << " " << val << "| " << desc << " := iprot readListBegin." << endl;
+  indent_up();
+
+  out << indent() << val << " := OrderedCollection new." << endl <<
+    indent() << desc << " size timesRepeat: [" << endl;
+
+  indent_up();
+  out << indent() << val << " add: " << read_val(tlist->get_elem_type());
+  indent_down();
+
+  out << "]." << endl <<
+    indent() << "iprot readListEnd." << endl <<
+	indent() << val << "] value";
+  indent_down();
+
+  return out.str();
+}
+
+string t_st_generator::set_writer(t_set *tset, string fname) {
+  std::ostringstream out;
+  string val = temp_name();
+
+  out << "[oprot writeSetBegin: (TSet new elemType: " << type_to_enum(tset->get_elem_type()) <<
+    "; size: " << fname << " size)." << endl;
+  indent_up();
+
+  out << indent() << fname << " do: [:" << val << "|" << endl;
+  indent_up();
+
+  out << indent() << write_val(tset->get_elem_type(), val) << endl;
+  indent_down();
+
+  out << "]." << endl <<
+    indent() << "oprot writeSetEnd] value";
+  indent_down();
+
+  return out.str();
+}
+
+string t_st_generator::set_reader(t_set *tset) {
+  std::ostringstream out;
+  string desc = temp_name();
+  string val = temp_name();
+
+  out << "[|" << desc << " " << val << "| " << desc << " := iprot readSetBegin." << endl;
+  indent_up();
+
+  out << indent() << val << " := Set new." << endl <<
+    indent() << desc << " size timesRepeat: [" << endl;
+
+  indent_up();
+  out << indent() << val << " add: " << read_val(tset->get_elem_type());
+  indent_down();
+
+  out << "]." << endl <<
+    indent() << "iprot readSetEnd." << endl <<
+	indent() << val << "] value";
+  indent_down();
+
+  return out.str();
+}
+
+string t_st_generator::struct_writer(t_struct *tstruct, string sname) {
+  std::ostringstream out;
+  const vector<t_field*>& fields = tstruct->get_members();
+  vector<t_field*>::const_iterator fld_iter;
+
+  out << "[oprot writeStructBegin: " <<
+    "(TStruct new name: '" + tstruct->get_name() +"')." << endl;
+  indent_up();
+
+  for (fld_iter = fields.begin(); fld_iter != fields.end(); ++fld_iter) {
+		bool optional = (*fld_iter)->get_req() == t_field::OPTIONAL;
+    string fname = (*fld_iter)->get_name();
+		string accessor = sname + " " + sanitize(fname);
+
+		if (optional) {
+			out << indent() << accessor << " ifNotNil: [" << endl;
+			indent_up();
+		}
+
+    out << indent() << "oprot writeFieldBegin: (TField new name: '" << fname <<
+      "'; type: " << type_to_enum((*fld_iter)->get_type()) <<
+      "; id: " << (*fld_iter)->get_key() << ")." << endl;
+
+    out << indent() << write_val((*fld_iter)->get_type(), accessor) << "." << endl <<
+      indent() << "oprot writeFieldEnd";
+
+		if(optional) {
+			out << "]";
+			indent_down();
+		}
+
+		out << "." << endl;
+  }
+
+	out << indent() << "oprot writeFieldStop; writeStructEnd] value";
+  indent_down();
+
+  return out.str();
+}
+
+string t_st_generator::struct_reader(t_struct *tstruct, string clsName = "") {
+  std::ostringstream out;
+  const vector<t_field*>& fields = tstruct->get_members();
+  vector<t_field*>::const_iterator fld_iter;
+  string val = temp_name();
+  string desc = temp_name();
+  string found = temp_name();
+
+  if(clsName.size() == 0)
+    clsName = tstruct->get_name();
+
+  out << "[|" << desc << " " << val << "|" << endl;
+  indent_up();
+
+  out << indent() << val << " := " <<
+    capitalize(clsName) << " new." << endl;
+
+  out << indent() << "iprot readStructBegin." << endl <<
+    indent() << "[" << desc << " := iprot readFieldBegin." << endl <<
+    indent() << desc << " type = TType stop] whileFalse: [|" << found << "|" << endl;
+  indent_up();
+
+  for (fld_iter = fields.begin(); fld_iter != fields.end(); ++fld_iter) {
+    out << indent() << desc << " id = " << (*fld_iter)->get_key() <<
+      " ifTrue: [" << endl;
+    indent_up();
+
+    out << indent() << found << " := true." << endl <<
+      indent() << val << " " << sanitize((*fld_iter)->get_name()) << ": " <<
+        read_val((*fld_iter)->get_type());
+    indent_down();
+
+		out << "]." << endl;
+  }
+
+  out << indent() << found << " ifNil: [iprot skip: " << desc << " type]]." << endl;
+  indent_down();
+
+  out << indent() << "oprot readStructEnd." << endl <<
+		indent() << val << "] value";
+  indent_down();
+
+  return out.str();
+}
+
+string t_st_generator::write_val(t_type *t, string fname) {
+	t = get_true_type(t);
+
+  if(t->is_base_type()) {
+	  t_base_type::t_base tbase = ((t_base_type*) t)->get_base();
+		switch(tbase) {
+	    case t_base_type::TYPE_DOUBLE:
+				return "iprot writeDouble: " + fname + " asFloat";
+				break;
+			case t_base_type::TYPE_BYTE:
+	    case t_base_type::TYPE_I16:
+	    case t_base_type::TYPE_I32:
+	    case t_base_type::TYPE_I64:
+				return "iprot write" + capitalize(type_name(t)) + ": " + fname + " asInteger";
+			default:
+				return "iprot write" + capitalize(type_name(t)) + ": " + fname;
+		}
+  } else if(t->is_map()) {
+    return map_writer((t_map*) t, fname);
+  } else if(t->is_struct() || t->is_xception()) {
+    return struct_writer((t_struct*) t, fname);
+  } else if(t->is_list()) {
+    return list_writer((t_list*) t, fname);
+  } else if(t->is_set()) {
+    return set_writer((t_set*) t, fname);
+  } else if(t->is_enum()) {
+    return "iprot writeI32: " + fname;
+  } else {
+    throw "Sorry, I don't know how to write this: " + type_name(t);
+  }
+}
+
+string t_st_generator::read_val(t_type *t) {
+	t = get_true_type(t);
+
+  if(t->is_base_type()) {
+    return "iprot read" + capitalize(type_name(t));
+  } else if(t->is_map()) {
+    return map_reader((t_map*) t);
+  } else if(t->is_struct() || t->is_xception()) {
+    return struct_reader((t_struct*) t);
+  } else if(t->is_list()) {
+    return list_reader((t_list*) t);
+  } else if(t->is_set()) {
+    return set_reader((t_set*) t);
+  } else if(t->is_enum()) {
+    return "iprot readI32";
+  } else {
+    throw "Sorry, I don't know how to read this: " + type_name(t);
+  }
+}
+
+void t_st_generator::generate_send_method(t_function* function) {
+  string funname = function->get_name();
+  string signature = function_signature(function);
+  t_struct* arg_struct = function->get_arglist();
+  const vector<t_field*>& fields = arg_struct->get_members();
+  vector<t_field*>::const_iterator fld_iter;
+
+  st_method(f_, client_class_name(), "send" + capitalize(signature));
+  f_ << "oprot writeMessageBegin:" << endl;
+  indent_up();
+
+  f_ << indent() << "(TCallMessage new" << endl;
+  indent_up();
+
+  f_ << indent() << "name: '" << funname << "'; " << endl <<
+    indent() << "seqid: self nextSeqid)." << endl;
+  indent_down();
+  indent_down();
+
+  f_ << indent() << "oprot writeStructBegin: " <<
+    "(TStruct new name: '" + capitalize(function->get_name()) + "_args')." << endl;
+
+  for (fld_iter = fields.begin(); fld_iter != fields.end(); ++fld_iter) {
+    string fname = (*fld_iter)->get_name();
+
+    f_ << indent() << "oprot writeFieldBegin: (TField new name: '" << fname <<
+      "'; type: " << type_to_enum((*fld_iter)->get_type()) <<
+      "; id: " << (*fld_iter)->get_key() << ")." << endl;
+
+    f_ << indent() << write_val((*fld_iter)->get_type(), fname) << "." << endl <<
+      indent() << "oprot writeFieldEnd." << endl;
+  }
+
+  f_ << indent() << "oprot writeFieldStop; writeStructEnd; writeMessageEnd." << endl;
+  f_ << indent() << "oprot transport flush";
+
+  st_close_method(f_);
+}
+
+// We only support receiving TResult structures (so this won't work on the server side)
+void t_st_generator::generate_recv_method(t_function* function) {
+  string funname = function->get_name();
+  string signature = function_signature(function);
+
+  t_struct result(program_, "TResult");
+  t_field success(function->get_returntype(), "success", 0);
+  result.append(&success);
+
+  t_struct* xs = function->get_xceptions();
+  const vector<t_field*>& fields = xs->get_members();
+  vector<t_field*>::const_iterator f_iter;
+  for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter) {
+    // duplicate the field, but call it "exception"... we don't need a dynamic name
+    t_field *exception = new t_field((*f_iter)->get_type(), "exception", (*f_iter)->get_key());
+    result.append(exception);
+  }
+
+  st_method(f_, client_class_name(), "recv" + capitalize(funname));
+  f_ << "| f msg res | " << endl <<
+    indent() << "msg := oprot readMessageBegin." << endl <<
+		indent() << "self validateRemoteMessage: msg." << endl <<
+    indent() << "res := " << struct_reader(&result) << "." << endl <<
+    indent() << "oprot readMessageEnd." << endl <<
+    indent() << "oprot transport flush." << endl <<
+    indent() << "res exception ifNotNil: [res exception signal]." << endl <<
+    indent() << "^ res";
+  st_close_method(f_);
+}
+
+string t_st_generator::function_types_comment(t_function* fn) {
+	std::ostringstream out;
+  const vector<t_field*>& fields = fn->get_arglist()->get_members();
+  vector<t_field*>::const_iterator f_iter;
+
+	out << "\"";
+
+  for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter) {
+		out << (*f_iter)->get_name() << ": " << type_name((*f_iter)->get_type());
+		if((f_iter + 1) != fields.end())
+			out << ", ";
+	}
+
+	out << "\"";
+
+	return out.str();
+}
+
+/**
+ * Generates a service client definition.
+ *
+ * @param tservice The service to generate a server for.
+ */
+void t_st_generator::generate_service_client(t_service* tservice) {
+  string extends = "";
+  string extends_client = "TClient";
+  vector<t_function*> functions = tservice->get_functions();
+  vector<t_function*>::iterator f_iter;
+
+  if (tservice->get_extends() != NULL) {
+    extends = type_name(tservice->get_extends());
+    extends_client = extends + "Client";
+  }
+
+  f_ << extends_client << " subclass: #" << client_class_name() << endl <<
+    "\tinstanceVariableNames: ''\n" <<
+    "\tclassVariableNames: ''\n" <<
+    "\tpoolDictionaries: ''\n" <<
+    "\tcategory: 'ThriftGenerated-" << class_name() << "'!\n\n";
+
+  for (f_iter = functions.begin(); f_iter != functions.end(); ++f_iter) {
+    string funname = (*f_iter)->get_name();
+    string signature = function_signature(*f_iter);
+
+    st_method(f_, client_class_name(), signature);
+		f_ << function_types_comment(*f_iter) << endl <<
+   		indent() << "self send" << capitalize(signature) << "." << endl;
+
+    if(!(*f_iter)->is_async())
+      f_ << indent() << "^ self recv" << capitalize(funname) << " success " << endl;
+
+    st_close_method(f_);
+
+    generate_send_method(*f_iter);
+    if(!(*f_iter)->is_async()) generate_recv_method(*f_iter);
+  }
+}
+
+string t_st_generator::sanitize(string s) {
+	std::ostringstream out;
+	bool underscore = false;
+
+	for(unsigned int i = 0; i < s.size(); i++) {
+		if(s[i] == '_') {
+			underscore = true;
+			continue;
+		}
+		if(underscore) {
+			out << (char) toupper(s[i]);
+			underscore = false;
+			continue;
+		}
+		out << s[i];
+	}
+
+	return out.str();
+}
+
+/**
+ * Renders a function signature of the form 'type name(args)'
+ *
+ * @param tfunction Function definition
+ * @return String of rendered function definition
+ */
+string t_st_generator::function_signature(t_function* tfunction) {
+  return tfunction->get_name() + capitalize(argument_list(tfunction->get_arglist()));
+}
+
+/**
+ * Renders a field list
+ */
+string t_st_generator::argument_list(t_struct* tstruct) {
+  string result = "";
+
+  const vector<t_field*>& fields = tstruct->get_members();
+  vector<t_field*>::const_iterator f_iter;
+  bool first = true;
+  for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter) {
+    if (first) {
+      first = false;
+    } else {
+      result += " ";
+    }
+    result += (*f_iter)->get_name() + ": " + (*f_iter)->get_name();
+  }
+  return result;
+}
+
+string t_st_generator::type_name(t_type* ttype) {
+  string prefix = "";
+  t_program* program = ttype->get_program();
+  if (program != NULL && program != program_) {
+    if (!ttype->is_service()) {
+      prefix = program->get_name() + "_types.";
+    }
+  }
+
+  string name = ttype->get_name();
+  if (ttype->is_struct() || ttype->is_xception()) {
+    name = capitalize(ttype->get_name());
+  }
+
+  return prefix + name;
+}
+
+/* Convert t_type to Smalltalk type code */
+string t_st_generator::type_to_enum(t_type* type) {
+  type = get_true_type(type);
+
+  if (type->is_base_type()) {
+    t_base_type::t_base tbase = ((t_base_type*)type)->get_base();
+    switch (tbase) {
+    case t_base_type::TYPE_VOID:
+      throw "NO T_VOID CONSTRUCT";
+    case t_base_type::TYPE_STRING:
+        return "TType string";
+    case t_base_type::TYPE_BOOL:
+      return "TType bool";
+    case t_base_type::TYPE_BYTE:
+      return "TType byte";
+    case t_base_type::TYPE_I16:
+      return "TType i16";
+    case t_base_type::TYPE_I32:
+      return "TType i32";
+    case t_base_type::TYPE_I64:
+      return "TType i64";
+    case t_base_type::TYPE_DOUBLE:
+      return "TType double";
+    }
+  } else if (type->is_enum()) {
+    return "TType i32";
+  } else if (type->is_struct() || type->is_xception()) {
+    return "TType struct";
+  } else if (type->is_map()) {
+    return "TType map";
+  } else if (type->is_set()) {
+    return "TType set";
+  } else if (type->is_list()) {
+    return "TType list";
+  }
+
+  throw "INVALID TYPE IN type_to_enum: " + type->get_name();
+}
diff --git a/compiler/cpp/src/generate/t_st_generator.h b/compiler/cpp/src/generate/t_st_generator.h
new file mode 100644
index 0000000..141555f
--- /dev/null
+++ b/compiler/cpp/src/generate/t_st_generator.h
@@ -0,0 +1,125 @@
+// Copyright (c) 2007- Patrick Collison <patrick@collison.ie>
+// Copyright (c) 2006- Facebook
+//
+// Distributed under the Thrift Software License
+//
+// See accompanying file LICENSE or visit the Thrift site at:
+// http://developers.facebook.com/thrift/
+
+#ifndef T_ST_GENERATOR_H
+#define T_ST_GENERATOR_H
+
+#include <string>
+#include <fstream>
+#include <iostream>
+#include <vector>
+#include <boost/tokenizer.hpp>
+
+#include "t_oop_generator.h"
+
+#define T_ST_DIR "gen-st"
+
+/**
+ * Smalltalk code generator.
+ *
+ * @author Patrick Collison <patrick@collison.ie>
+ */
+class t_st_generator : public t_oop_generator {
+ public:
+  t_st_generator(t_program* program) :
+    t_oop_generator(program) {}
+
+  /**
+   * Init and close methods
+   */
+
+  void init_generator();
+  void close_generator();
+
+  /**
+   * Program-level generation functions
+   */
+
+  void generate_typedef     (t_typedef*  ttypedef);
+  void generate_enum        (t_enum*     tenum);
+  void generate_const       (t_const*    tconst);
+  void generate_struct      (t_struct*   tstruct);
+  void generate_xception    (t_struct*   txception);
+  void generate_service     (t_service*  tservice);
+  void generate_class_side_definition ();
+  void generate_force_consts ();
+
+
+  std::string render_const_value(t_type* type, t_const_value* value);
+
+  /**
+   * Struct generation code
+   */
+
+  void generate_st_struct (std::ofstream& out, t_struct* tstruct, bool is_exception);
+  void generate_accessors   (std::ofstream& out, t_struct* tstruct);
+
+  /**
+   * Service-level generation functions
+   */
+
+  void generate_service_client    (t_service* tservice);
+
+  void generate_send_method (t_function* tfunction);
+  void generate_recv_method (t_function* tfunction);
+
+  std::string map_reader (t_map *tmap);
+  std::string list_reader (t_list *tlist);
+  std::string set_reader (t_set *tset);
+  std::string struct_reader (t_struct *tstruct, std::string clsName);
+
+  std::string map_writer (t_map *tmap, std::string name);
+  std::string list_writer (t_list *tlist, std::string name);
+  std::string set_writer (t_set *tset, std::string name);
+  std::string struct_writer (t_struct *tstruct, std::string fname);
+
+  std::string write_val (t_type *t, std::string fname);
+  std::string read_val (t_type *t);
+
+  /**
+   * Helper rendering functions
+   */
+
+  std::string st_autogen_comment();
+
+  void st_class_def(std::ofstream &out, std::string name);
+  void st_method(std::ofstream &out, std::string cls, std::string name);
+  void st_method(std::ofstream &out, std::string cls, std::string name, std::string category);
+  void st_close_method(std::ofstream &out);
+  void st_class_method(std::ofstream &out, std::string cls, std::string name);
+  void st_class_method(std::ofstream &out, std::string cls, std::string name, std::string category);
+  void st_setter(std::ofstream &out, std::string cls, std::string name, std::string type);
+  void st_getter(std::ofstream &out, std::string cls, std::string name);
+  void st_accessors(std::ofstream &out, std::string cls, std::string name, std::string type);
+
+  std::string class_name();
+  std::string client_class_name();
+  std::string declare_field(t_field* tfield);
+	std::string sanitize(std::string s);
+  std::string type_name(t_type* ttype);
+
+	std::string function_signature(t_function* tfunction);
+  std::string argument_list(t_struct* tstruct);
+	std::string function_types_comment(t_function* fn);
+
+  std::string type_to_enum(t_type* ttype);
+	std::string a_type(t_type* type);
+  bool is_vowel(char c);
+  std::string temp_name();
+
+ private:
+
+  /**
+   * File streams
+   */
+  int temporary_var;
+  std::ofstream f_;
+
+};
+
+#endif
diff --git a/compiler/cpp/src/main.cc b/compiler/cpp/src/main.cc
index 0b904ea..da4ce16 100644
--- a/compiler/cpp/src/main.cc
+++ b/compiler/cpp/src/main.cc
@@ -40,6 +40,7 @@
 #include "generate/t_ocaml_generator.h"
 #include "generate/t_hs_generator.h"
 #include "generate/t_cocoa_generator.h"
+#include "generate/t_st_generator.h"
 
 using namespace std;
 
@@ -147,6 +148,7 @@
 bool gen_ocaml = false;
 bool gen_hs = false;
 bool gen_cocoa = false;
+bool gen_st = false;
 bool gen_dense = false;
 bool gen_recurse = false;
 
@@ -572,6 +574,7 @@
   fprintf(stderr, "  -ocaml      Generate OCaml output files\n");
   fprintf(stderr, "  -hs         Generate Haskell output files\n");
   fprintf(stderr, "  -cocoa      Generate Cocoa/Objective-C output files\n");
+  fprintf(stderr, "  -st         Generate Squeak/Smalltalk output files\n");
   fprintf(stderr, "  -o dir      Set the output directory for gen-* packages\n");
   fprintf(stderr, "               (default: current directory)\n");
   fprintf(stderr, "  -I dir      Add a directory to the list of directories\n");
@@ -883,6 +886,13 @@
       delete cocoa;
     }
 
+    if (gen_st) {
+      pverbose("Generating Smalltalk/Squeak\n");
+      t_st_generator* st = new t_st_generator(program);
+      st->generate_program();
+      delete st;
+    }
+
     if (dump_docs) {
       dump_docstrings(program);
     }
@@ -979,6 +989,8 @@
         gen_hs = true;
       } else if (strcmp(arg, "-cocoa") == 0) {
         gen_cocoa = true;
+      } else if (strcmp(arg, "-st") == 0) {
+        gen_st = true;
       } else if (strcmp(arg, "-I") == 0) {
         // An argument of "-I\ asdf" is invalid and has unknown results
         arg = argv[++i];
@@ -1015,7 +1027,7 @@
   }
 
   // You gotta generate something!
-  if (!gen_cpp && !gen_java && !gen_javabean && !gen_php && !gen_phpi && !gen_py && !gen_rb && !gen_xsd && !gen_perl && !gen_erl && !gen_ocaml && !gen_hs && !gen_cocoa) {
+  if (!gen_cpp && !gen_java && !gen_javabean && !gen_php && !gen_phpi && !gen_py && !gen_rb && !gen_xsd && !gen_perl && !gen_erl && !gen_ocaml && !gen_hs && !gen_cocoa && !gen_st) {
     fprintf(stderr, "!!! No output language(s) specified\n\n");
     usage();
   }
diff --git a/lib/st/README b/lib/st/README
new file mode 100644
index 0000000..14c72db
--- /dev/null
+++ b/lib/st/README
@@ -0,0 +1,11 @@
+Author: Patrick Collison <patrick@collison.ie>
+Last updated Nov 2007
+
+To get started, just file in thrift.st with Squeak, and run something like:
+
+sock := TSocket new host: 'localhost'; port: 9090; open.
+prot := TBinaryProtocol new transport: sock.
+calc := CalculatorClient new inProtocol: prot.
+calc addNum1: 10 num2: 15
+
+Tested in Squeak 3.7, but should work fine with anything later.
\ No newline at end of file
diff --git a/lib/st/thrift.st b/lib/st/thrift.st
new file mode 100644
index 0000000..c24f616
--- /dev/null
+++ b/lib/st/thrift.st
@@ -0,0 +1,2147 @@
+SystemOrganization addCategory: #Thrift!
+SystemOrganization addCategory: #'Thrift-Protocol'!
+SystemOrganization addCategory: #'Thrift-Test'!
+SystemOrganization addCategory: #'Thrift-Transport'!
+
+Error subclass: #TError
+	instanceVariableNames: 'code'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift'!
+
+!TError class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:28'!
+signalWithCode: anInteger
+	self new code: anInteger; signal! !
+
+!TError methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:28'!
+code
+	^ code! !
+
+!TError methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:28'!
+code: anInteger
+	code := anInteger! !
+
+TError subclass: #TProtocolError
+	instanceVariableNames: ''
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Protocol'!
+
+!TProtocolError class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 18:39'!
+badVersion
+	^ 4! !
+
+!TProtocolError class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 18:39'!
+invalidData
+	^ 1! !
+
+!TProtocolError class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 18:39'!
+negativeSize
+	^ 2! !
+
+!TProtocolError class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 18:40'!
+sizeLimit
+	^ 3! !
+
+!TProtocolError class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 18:40'!
+unknown
+	^ 0! !
+
+TError subclass: #TTransportError
+	instanceVariableNames: ''
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Transport'!
+
+TTransportError subclass: #TTransportClosedError
+	instanceVariableNames: ''
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Transport'!
+
+Error subclass: #Xception
+	instanceVariableNames: 'errorCode message'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Test'!
+
+!Xception methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+errorCode
+    ^ errorCode! !
+
+!Xception methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+errorCode: anI32
+    errorCode := anI32! !
+
+!Xception methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+message
+    ^ message! !
+
+!Xception methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+message: aString
+    message := aString! !
+
+Error subclass: #Xception2
+	instanceVariableNames: 'errorCode structThing'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Test'!
+
+!Xception2 methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+errorCode
+    ^ errorCode! !
+
+!Xception2 methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+errorCode: anI32
+    errorCode := anI32! !
+
+!Xception2 methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+structThing
+    ^ structThing! !
+
+!Xception2 methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+structThing: aXtruct
+    structThing := aXtruct! !
+
+Object subclass: #Bonk
+	instanceVariableNames: 'message type'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Test'!
+
+!Bonk methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+message
+    ^ message! !
+
+!Bonk methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+message: aString
+    message := aString! !
+
+!Bonk methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+type
+    ^ type! !
+
+!Bonk methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+type: anI32
+    type := anI32! !
+
+Object subclass: #EmptyStruct
+	instanceVariableNames: ''
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Test'!
+
+Object subclass: #Insanity
+	instanceVariableNames: 'userMap xtructs'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Test'!
+
+!Insanity methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+userMap
+    ^ userMap! !
+
+!Insanity methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+userMap: a
+    userMap := a! !
+
+!Insanity methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+xtructs
+    ^ xtructs! !
+
+!Insanity methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+xtructs: a
+    xtructs := a! !
+
+Object subclass: #TClient
+	instanceVariableNames: 'iprot oprot seqid remoteSeqid'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift'!
+
+TClient subclass: #SecondServiceClient
+	instanceVariableNames: ''
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Test'!
+
+!SecondServiceClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+blahBlah
+    ""
+    self sendBlahBlah.
+    ^ self recvBlahBlah success 
+! !
+
+!SecondServiceClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvBlahBlah
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp118 temp117|
+      temp117 := TResult new.
+      iprot readStructBegin.
+      [temp118 := iprot readFieldBegin.
+      temp118 type = TType stop] whileFalse: [|temp119|
+        temp118 id = 0 ifTrue: [
+          temp119 := true.
+          temp117 success: iprot readVoid].
+        temp119 ifNil: [iprot skip: temp118 type]].
+      oprot readStructEnd.
+      temp117] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!SecondServiceClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendBlahBlah
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'blahBlah'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'BlahBlah_args').
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!TClient methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 23:03'!
+inProtocol: aProtocol
+	iprot := aProtocol.
+	oprot ifNil: [oprot := aProtocol]! !
+
+!TClient methodsFor: 'as yet unclassified' stamp: 'pc 10/26/2007 04:28'!
+nextSeqid
+	^ seqid
+		ifNil: [seqid := 0]
+		ifNotNil: [seqid := seqid + 1]! !
+
+!TClient methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 22:51'!
+outProtocol: aProtocol
+	oprot := aProtocol! !
+
+!TClient methodsFor: 'as yet unclassified' stamp: 'pc 10/28/2007 15:32'!
+validateRemoteMessage: aMsg
+	remoteSeqid
+		ifNil: [remoteSeqid := aMsg seqid]
+		ifNotNil: 
+			[(remoteSeqid + 1) = aMsg seqid ifFalse:
+				[TProtocolError signal: 'Bad seqid: ', aMsg seqid asString,
+							'; wanted: ', remoteSeqid asString].
+			remoteSeqid := aMsg seqid]! !
+
+TClient subclass: #ThriftTestClient
+	instanceVariableNames: ''
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Test'!
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestByte
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp7 temp6|
+      temp6 := TResult new.
+      iprot readStructBegin.
+      [temp7 := iprot readFieldBegin.
+      temp7 type = TType stop] whileFalse: [|temp8|
+        temp7 id = 0 ifTrue: [
+          temp8 := true.
+          temp6 success: iprot readByte].
+        temp8 ifNil: [iprot skip: temp7 type]].
+      oprot readStructEnd.
+      temp6] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestDouble
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp19 temp18|
+      temp18 := TResult new.
+      iprot readStructBegin.
+      [temp19 := iprot readFieldBegin.
+      temp19 type = TType stop] whileFalse: [|temp20|
+        temp19 id = 0 ifTrue: [
+          temp20 := true.
+          temp18 success: iprot readDouble].
+        temp20 ifNil: [iprot skip: temp19 type]].
+      oprot readStructEnd.
+      temp18] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestEnum
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp56 temp55|
+      temp55 := TResult new.
+      iprot readStructBegin.
+      [temp56 := iprot readFieldBegin.
+      temp56 type = TType stop] whileFalse: [|temp57|
+        temp56 id = 0 ifTrue: [
+          temp57 := true.
+          temp55 success: iprot readI32].
+        temp57 ifNil: [iprot skip: temp56 type]].
+      oprot readStructEnd.
+      temp55] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestException
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp97 temp96|
+      temp96 := TResult new.
+      iprot readStructBegin.
+      [temp97 := iprot readFieldBegin.
+      temp97 type = TType stop] whileFalse: [|temp98|
+        temp97 id = 0 ifTrue: [
+          temp98 := true.
+          temp96 success: iprot readVoid].
+        temp97 id = -2 ifTrue: [
+          temp98 := true.
+          temp96 exception: [|temp100 temp99|
+            temp99 := Xception new.
+            iprot readStructBegin.
+            [temp100 := iprot readFieldBegin.
+            temp100 type = TType stop] whileFalse: [|temp101|
+              temp100 id = 1 ifTrue: [
+                temp101 := true.
+                temp99 errorCode: iprot readI32].
+              temp100 id = 2 ifTrue: [
+                temp101 := true.
+                temp99 message: iprot readString].
+              temp101 ifNil: [iprot skip: temp100 type]].
+            oprot readStructEnd.
+            temp99] value].
+        temp98 ifNil: [iprot skip: temp97 type]].
+      oprot readStructEnd.
+      temp96] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestI16
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp10 temp9|
+      temp9 := TResult new.
+      iprot readStructBegin.
+      [temp10 := iprot readFieldBegin.
+      temp10 type = TType stop] whileFalse: [|temp11|
+        temp10 id = 0 ifTrue: [
+          temp11 := true.
+          temp9 success: iprot readI16].
+        temp11 ifNil: [iprot skip: temp10 type]].
+      oprot readStructEnd.
+      temp9] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestI32
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp13 temp12|
+      temp12 := TResult new.
+      iprot readStructBegin.
+      [temp13 := iprot readFieldBegin.
+      temp13 type = TType stop] whileFalse: [|temp14|
+        temp13 id = 0 ifTrue: [
+          temp14 := true.
+          temp12 success: iprot readI32].
+        temp14 ifNil: [iprot skip: temp13 type]].
+      oprot readStructEnd.
+      temp12] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestI64
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp16 temp15|
+      temp15 := TResult new.
+      iprot readStructBegin.
+      [temp16 := iprot readFieldBegin.
+      temp16 type = TType stop] whileFalse: [|temp17|
+        temp16 id = 0 ifTrue: [
+          temp17 := true.
+          temp15 success: iprot readI64].
+        temp17 ifNil: [iprot skip: temp16 type]].
+      oprot readStructEnd.
+      temp15] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestInsanity
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp72 temp71|
+      temp71 := TResult new.
+      iprot readStructBegin.
+      [temp72 := iprot readFieldBegin.
+      temp72 type = TType stop] whileFalse: [|temp73|
+        temp72 id = 0 ifTrue: [
+          temp73 := true.
+          temp71 success: [|temp74 temp75| 
+            temp74 := iprot readMapBegin.
+            temp75 := Dictionary new.
+            temp74 size timesRepeat: [
+              temp75 at: iprot readI64 put: [|temp76 temp77| 
+                temp76 := iprot readMapBegin.
+                temp77 := Dictionary new.
+                temp76 size timesRepeat: [
+                  temp77 at: iprot readI32 put: [|temp79 temp78|
+                    temp78 := Insanity new.
+                    iprot readStructBegin.
+                    [temp79 := iprot readFieldBegin.
+                    temp79 type = TType stop] whileFalse: [|temp80|
+                      temp79 id = 1 ifTrue: [
+                        temp80 := true.
+                        temp78 userMap: [|temp81 temp82| 
+                          temp81 := iprot readMapBegin.
+                          temp82 := Dictionary new.
+                          temp81 size timesRepeat: [
+                            temp82 at: iprot readI32 put: iprot readI64].
+                          iprot readMapEnd.
+                          temp82] value].
+                      temp79 id = 2 ifTrue: [
+                        temp80 := true.
+                        temp78 xtructs: [|temp83 temp84| temp83 := iprot readListBegin.
+                          temp84 := OrderedCollection new.
+                          temp83 size timesRepeat: [
+                            temp84 add: [|temp86 temp85|
+                              temp85 := Xtruct new.
+                              iprot readStructBegin.
+                              [temp86 := iprot readFieldBegin.
+                              temp86 type = TType stop] whileFalse: [|temp87|
+                                temp86 id = 1 ifTrue: [
+                                  temp87 := true.
+                                  temp85 stringThing: iprot readString].
+                                temp86 id = 4 ifTrue: [
+                                  temp87 := true.
+                                  temp85 byteThing: iprot readByte].
+                                temp86 id = 9 ifTrue: [
+                                  temp87 := true.
+                                  temp85 i32Thing: iprot readI32].
+                                temp86 id = 11 ifTrue: [
+                                  temp87 := true.
+                                  temp85 i64Thing: iprot readI64].
+                                temp87 ifNil: [iprot skip: temp86 type]].
+                              oprot readStructEnd.
+                              temp85] value].
+                          iprot readListEnd.
+                          temp84] value].
+                      temp80 ifNil: [iprot skip: temp79 type]].
+                    oprot readStructEnd.
+                    temp78] value].
+                iprot readMapEnd.
+                temp77] value].
+            iprot readMapEnd.
+            temp75] value].
+        temp73 ifNil: [iprot skip: temp72 type]].
+      oprot readStructEnd.
+      temp71] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestList
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp51 temp50|
+      temp50 := TResult new.
+      iprot readStructBegin.
+      [temp51 := iprot readFieldBegin.
+      temp51 type = TType stop] whileFalse: [|temp52|
+        temp51 id = 0 ifTrue: [
+          temp52 := true.
+          temp50 success: [|temp53 temp54| temp53 := iprot readListBegin.
+            temp54 := OrderedCollection new.
+            temp53 size timesRepeat: [
+              temp54 add: iprot readI32].
+            iprot readListEnd.
+            temp54] value].
+        temp52 ifNil: [iprot skip: temp51 type]].
+      oprot readStructEnd.
+      temp50] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestMap
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp39 temp38|
+      temp38 := TResult new.
+      iprot readStructBegin.
+      [temp39 := iprot readFieldBegin.
+      temp39 type = TType stop] whileFalse: [|temp40|
+        temp39 id = 0 ifTrue: [
+          temp40 := true.
+          temp38 success: [|temp41 temp42| 
+            temp41 := iprot readMapBegin.
+            temp42 := Dictionary new.
+            temp41 size timesRepeat: [
+              temp42 at: iprot readI32 put: iprot readI32].
+            iprot readMapEnd.
+            temp42] value].
+        temp40 ifNil: [iprot skip: temp39 type]].
+      oprot readStructEnd.
+      temp38] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestMapMap
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp62 temp61|
+      temp61 := TResult new.
+      iprot readStructBegin.
+      [temp62 := iprot readFieldBegin.
+      temp62 type = TType stop] whileFalse: [|temp63|
+        temp62 id = 0 ifTrue: [
+          temp63 := true.
+          temp61 success: [|temp64 temp65| 
+            temp64 := iprot readMapBegin.
+            temp65 := Dictionary new.
+            temp64 size timesRepeat: [
+              temp65 at: iprot readI32 put: [|temp66 temp67| 
+                temp66 := iprot readMapBegin.
+                temp67 := Dictionary new.
+                temp66 size timesRepeat: [
+                  temp67 at: iprot readI32 put: iprot readI32].
+                iprot readMapEnd.
+                temp67] value].
+            iprot readMapEnd.
+            temp65] value].
+        temp63 ifNil: [iprot skip: temp62 type]].
+      oprot readStructEnd.
+      temp61] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestMulti
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp91 temp90|
+      temp90 := TResult new.
+      iprot readStructBegin.
+      [temp91 := iprot readFieldBegin.
+      temp91 type = TType stop] whileFalse: [|temp92|
+        temp91 id = 0 ifTrue: [
+          temp92 := true.
+          temp90 success: [|temp94 temp93|
+            temp93 := Xtruct new.
+            iprot readStructBegin.
+            [temp94 := iprot readFieldBegin.
+            temp94 type = TType stop] whileFalse: [|temp95|
+              temp94 id = 1 ifTrue: [
+                temp95 := true.
+                temp93 stringThing: iprot readString].
+              temp94 id = 4 ifTrue: [
+                temp95 := true.
+                temp93 byteThing: iprot readByte].
+              temp94 id = 9 ifTrue: [
+                temp95 := true.
+                temp93 i32Thing: iprot readI32].
+              temp94 id = 11 ifTrue: [
+                temp95 := true.
+                temp93 i64Thing: iprot readI64].
+              temp95 ifNil: [iprot skip: temp94 type]].
+            oprot readStructEnd.
+            temp93] value].
+        temp92 ifNil: [iprot skip: temp91 type]].
+      oprot readStructEnd.
+      temp90] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestMultiException
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp103 temp102|
+      temp102 := TResult new.
+      iprot readStructBegin.
+      [temp103 := iprot readFieldBegin.
+      temp103 type = TType stop] whileFalse: [|temp104|
+        temp103 id = 0 ifTrue: [
+          temp104 := true.
+          temp102 success: [|temp106 temp105|
+            temp105 := Xtruct new.
+            iprot readStructBegin.
+            [temp106 := iprot readFieldBegin.
+            temp106 type = TType stop] whileFalse: [|temp107|
+              temp106 id = 1 ifTrue: [
+                temp107 := true.
+                temp105 stringThing: iprot readString].
+              temp106 id = 4 ifTrue: [
+                temp107 := true.
+                temp105 byteThing: iprot readByte].
+              temp106 id = 9 ifTrue: [
+                temp107 := true.
+                temp105 i32Thing: iprot readI32].
+              temp106 id = 11 ifTrue: [
+                temp107 := true.
+                temp105 i64Thing: iprot readI64].
+              temp107 ifNil: [iprot skip: temp106 type]].
+            oprot readStructEnd.
+            temp105] value].
+        temp103 id = -3 ifTrue: [
+          temp104 := true.
+          temp102 exception: [|temp109 temp108|
+            temp108 := Xception new.
+            iprot readStructBegin.
+            [temp109 := iprot readFieldBegin.
+            temp109 type = TType stop] whileFalse: [|temp110|
+              temp109 id = 1 ifTrue: [
+                temp110 := true.
+                temp108 errorCode: iprot readI32].
+              temp109 id = 2 ifTrue: [
+                temp110 := true.
+                temp108 message: iprot readString].
+              temp110 ifNil: [iprot skip: temp109 type]].
+            oprot readStructEnd.
+            temp108] value].
+        temp103 id = -4 ifTrue: [
+          temp104 := true.
+          temp102 exception: [|temp112 temp111|
+            temp111 := Xception2 new.
+            iprot readStructBegin.
+            [temp112 := iprot readFieldBegin.
+            temp112 type = TType stop] whileFalse: [|temp113|
+              temp112 id = 1 ifTrue: [
+                temp113 := true.
+                temp111 errorCode: iprot readI32].
+              temp112 id = 2 ifTrue: [
+                temp113 := true.
+                temp111 structThing: [|temp115 temp114|
+                  temp114 := Xtruct new.
+                  iprot readStructBegin.
+                  [temp115 := iprot readFieldBegin.
+                  temp115 type = TType stop] whileFalse: [|temp116|
+                    temp115 id = 1 ifTrue: [
+                      temp116 := true.
+                      temp114 stringThing: iprot readString].
+                    temp115 id = 4 ifTrue: [
+                      temp116 := true.
+                      temp114 byteThing: iprot readByte].
+                    temp115 id = 9 ifTrue: [
+                      temp116 := true.
+                      temp114 i32Thing: iprot readI32].
+                    temp115 id = 11 ifTrue: [
+                      temp116 := true.
+                      temp114 i64Thing: iprot readI64].
+                    temp116 ifNil: [iprot skip: temp115 type]].
+                  oprot readStructEnd.
+                  temp114] value].
+              temp113 ifNil: [iprot skip: temp112 type]].
+            oprot readStructEnd.
+            temp111] value].
+        temp104 ifNil: [iprot skip: temp103 type]].
+      oprot readStructEnd.
+      temp102] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestNest
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp28 temp27|
+      temp27 := TResult new.
+      iprot readStructBegin.
+      [temp28 := iprot readFieldBegin.
+      temp28 type = TType stop] whileFalse: [|temp29|
+        temp28 id = 0 ifTrue: [
+          temp29 := true.
+          temp27 success: [|temp31 temp30|
+            temp30 := Xtruct2 new.
+            iprot readStructBegin.
+            [temp31 := iprot readFieldBegin.
+            temp31 type = TType stop] whileFalse: [|temp32|
+              temp31 id = 1 ifTrue: [
+                temp32 := true.
+                temp30 byteThing: iprot readByte].
+              temp31 id = 2 ifTrue: [
+                temp32 := true.
+                temp30 structThing: [|temp34 temp33|
+                  temp33 := Xtruct new.
+                  iprot readStructBegin.
+                  [temp34 := iprot readFieldBegin.
+                  temp34 type = TType stop] whileFalse: [|temp35|
+                    temp34 id = 1 ifTrue: [
+                      temp35 := true.
+                      temp33 stringThing: iprot readString].
+                    temp34 id = 4 ifTrue: [
+                      temp35 := true.
+                      temp33 byteThing: iprot readByte].
+                    temp34 id = 9 ifTrue: [
+                      temp35 := true.
+                      temp33 i32Thing: iprot readI32].
+                    temp34 id = 11 ifTrue: [
+                      temp35 := true.
+                      temp33 i64Thing: iprot readI64].
+                    temp35 ifNil: [iprot skip: temp34 type]].
+                  oprot readStructEnd.
+                  temp33] value].
+              temp31 id = 3 ifTrue: [
+                temp32 := true.
+                temp30 i32Thing: iprot readI32].
+              temp32 ifNil: [iprot skip: temp31 type]].
+            oprot readStructEnd.
+            temp30] value].
+        temp29 ifNil: [iprot skip: temp28 type]].
+      oprot readStructEnd.
+      temp27] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestSet
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp45 temp44|
+      temp44 := TResult new.
+      iprot readStructBegin.
+      [temp45 := iprot readFieldBegin.
+      temp45 type = TType stop] whileFalse: [|temp46|
+        temp45 id = 0 ifTrue: [
+          temp46 := true.
+          temp44 success: [|temp47 temp48| temp47 := iprot readSetBegin.
+            temp48 := Set new.
+            temp47 size timesRepeat: [
+              temp48 add: iprot readI32].
+            iprot readSetEnd.
+            temp48] value].
+        temp46 ifNil: [iprot skip: temp45 type]].
+      oprot readStructEnd.
+      temp44] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestString
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp4 temp3|
+      temp3 := TResult new.
+      iprot readStructBegin.
+      [temp4 := iprot readFieldBegin.
+      temp4 type = TType stop] whileFalse: [|temp5|
+        temp4 id = 0 ifTrue: [
+          temp5 := true.
+          temp3 success: iprot readString].
+        temp5 ifNil: [iprot skip: temp4 type]].
+      oprot readStructEnd.
+      temp3] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestStruct
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp22 temp21|
+      temp21 := TResult new.
+      iprot readStructBegin.
+      [temp22 := iprot readFieldBegin.
+      temp22 type = TType stop] whileFalse: [|temp23|
+        temp22 id = 0 ifTrue: [
+          temp23 := true.
+          temp21 success: [|temp25 temp24|
+            temp24 := Xtruct new.
+            iprot readStructBegin.
+            [temp25 := iprot readFieldBegin.
+            temp25 type = TType stop] whileFalse: [|temp26|
+              temp25 id = 1 ifTrue: [
+                temp26 := true.
+                temp24 stringThing: iprot readString].
+              temp25 id = 4 ifTrue: [
+                temp26 := true.
+                temp24 byteThing: iprot readByte].
+              temp25 id = 9 ifTrue: [
+                temp26 := true.
+                temp24 i32Thing: iprot readI32].
+              temp25 id = 11 ifTrue: [
+                temp26 := true.
+                temp24 i64Thing: iprot readI64].
+              temp26 ifNil: [iprot skip: temp25 type]].
+            oprot readStructEnd.
+            temp24] value].
+        temp23 ifNil: [iprot skip: temp22 type]].
+      oprot readStructEnd.
+      temp21] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestTypedef
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp59 temp58|
+      temp58 := TResult new.
+      iprot readStructBegin.
+      [temp59 := iprot readFieldBegin.
+      temp59 type = TType stop] whileFalse: [|temp60|
+        temp59 id = 0 ifTrue: [
+          temp60 := true.
+          temp58 success: iprot readI64].
+        temp60 ifNil: [iprot skip: temp59 type]].
+      oprot readStructEnd.
+      temp58] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+recvTestVoid
+    | f msg res | 
+    msg := oprot readMessageBegin.
+    self validateRemoteMessage: msg.
+    res := [|temp1 temp0|
+      temp0 := TResult new.
+      iprot readStructBegin.
+      [temp1 := iprot readFieldBegin.
+      temp1 type = TType stop] whileFalse: [|temp2|
+        temp1 id = 0 ifTrue: [
+          temp2 := true.
+          temp0 success: iprot readVoid].
+        temp2 ifNil: [iprot skip: temp1 type]].
+      oprot readStructEnd.
+      temp0] value.
+    oprot readMessageEnd.
+    oprot transport flush.
+    res exception ifNotNil: [res exception signal].
+    ^ res! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestByteThing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testByte'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestByte_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType byte; id: 1).
+    iprot writeByte: thing asInteger.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestDoubleThing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testDouble'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestDouble_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType double; id: 1).
+    iprot writeDouble: thing asFloat.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestEnumThing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testEnum'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestEnum_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType i32; id: 1).
+    iprot writeI32: thing.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestExceptionArg: arg
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testException'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestException_args').
+    oprot writeFieldBegin: (TField new name: 'arg'; type: TType string; id: -1).
+    iprot writeString: arg.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestI16Thing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testI16'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestI16_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType i16; id: 1).
+    iprot writeI16: thing asInteger.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestI32Thing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testI32'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestI32_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType i32; id: 1).
+    iprot writeI32: thing asInteger.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestI64Thing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testI64'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestI64_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType i64; id: 1).
+    iprot writeI64: thing asInteger.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestInsanityArgument: argument
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testInsanity'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestInsanity_args').
+    oprot writeFieldBegin: (TField new name: 'argument'; type: TType struct; id: 1).
+    [oprot writeStructBegin: (TStruct new name: 'Insanity').
+      oprot writeFieldBegin: (TField new name: 'userMap'; type: TType map; id: 1).
+      [oprot writeMapBegin: (TMap new keyType: TType i32; valueType: TType i64; size: argument userMap size).
+        argument userMap keysAndValuesDo: [:temp68 :temp69 |
+          iprot writeI32: temp68.
+          iprot writeI64: temp69 asInteger].
+        oprot writeMapEnd] value.
+      oprot writeFieldEnd.
+      oprot writeFieldBegin: (TField new name: 'xtructs'; type: TType list; id: 2).
+      [oprot writeListBegin: (TList new elemType: TType struct; size: argument xtructs size).
+        argument xtructs do: [:temp70|
+          [oprot writeStructBegin: (TStruct new name: 'Xtruct').
+            oprot writeFieldBegin: (TField new name: 'string_thing'; type: TType string; id: 1).
+            iprot writeString: temp70 stringThing.
+            oprot writeFieldEnd.
+            oprot writeFieldBegin: (TField new name: 'byte_thing'; type: TType byte; id: 4).
+            iprot writeByte: temp70 byteThing asInteger.
+            oprot writeFieldEnd.
+            oprot writeFieldBegin: (TField new name: 'i32_thing'; type: TType i32; id: 9).
+            iprot writeI32: temp70 i32Thing asInteger.
+            oprot writeFieldEnd.
+            oprot writeFieldBegin: (TField new name: 'i64_thing'; type: TType i64; id: 11).
+            iprot writeI64: temp70 i64Thing asInteger.
+            oprot writeFieldEnd.
+            oprot writeFieldStop; writeStructEnd] value
+].
+        oprot writeListEnd] value.
+      oprot writeFieldEnd.
+      oprot writeFieldStop; writeStructEnd] value.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestListThing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testList'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestList_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType list; id: 1).
+    [oprot writeListBegin: (TList new elemType: TType i32; size: thing size).
+      thing do: [:temp49|
+        iprot writeI32: temp49 asInteger
+].
+      oprot writeListEnd] value.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestMapMapHello: hello
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testMapMap'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestMapMap_args').
+    oprot writeFieldBegin: (TField new name: 'hello'; type: TType i32; id: 1).
+    iprot writeI32: hello asInteger.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestMapThing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testMap'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestMap_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType map; id: 1).
+    [oprot writeMapBegin: (TMap new keyType: TType i32; valueType: TType i32; size: thing size).
+      thing keysAndValuesDo: [:temp36 :temp37 |
+        iprot writeI32: temp36 asInteger.
+        iprot writeI32: temp37 asInteger].
+      oprot writeMapEnd] value.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestMultiArg0: arg0 arg1: arg1 arg2: arg2 arg3: arg3 arg4: arg4 arg5: arg5
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testMulti'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestMulti_args').
+    oprot writeFieldBegin: (TField new name: 'arg0'; type: TType byte; id: -1).
+    iprot writeByte: arg0 asInteger.
+    oprot writeFieldEnd.
+    oprot writeFieldBegin: (TField new name: 'arg1'; type: TType i32; id: -2).
+    iprot writeI32: arg1 asInteger.
+    oprot writeFieldEnd.
+    oprot writeFieldBegin: (TField new name: 'arg2'; type: TType i64; id: -3).
+    iprot writeI64: arg2 asInteger.
+    oprot writeFieldEnd.
+    oprot writeFieldBegin: (TField new name: 'arg3'; type: TType map; id: -4).
+    [oprot writeMapBegin: (TMap new keyType: TType i16; valueType: TType string; size: arg3 size).
+      arg3 keysAndValuesDo: [:temp88 :temp89 |
+        iprot writeI16: temp88 asInteger.
+        iprot writeString: temp89].
+      oprot writeMapEnd] value.
+    oprot writeFieldEnd.
+    oprot writeFieldBegin: (TField new name: 'arg4'; type: TType i32; id: -5).
+    iprot writeI32: arg4.
+    oprot writeFieldEnd.
+    oprot writeFieldBegin: (TField new name: 'arg5'; type: TType i64; id: -6).
+    iprot writeI64: arg5 asInteger.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestMultiExceptionArg0: arg0 arg1: arg1
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testMultiException'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestMultiException_args').
+    oprot writeFieldBegin: (TField new name: 'arg0'; type: TType string; id: -1).
+    iprot writeString: arg0.
+    oprot writeFieldEnd.
+    oprot writeFieldBegin: (TField new name: 'arg1'; type: TType string; id: -2).
+    iprot writeString: arg1.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestNestThing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testNest'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestNest_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType struct; id: 1).
+    [oprot writeStructBegin: (TStruct new name: 'Xtruct2').
+      oprot writeFieldBegin: (TField new name: 'byte_thing'; type: TType byte; id: 1).
+      iprot writeByte: thing byteThing asInteger.
+      oprot writeFieldEnd.
+      oprot writeFieldBegin: (TField new name: 'struct_thing'; type: TType struct; id: 2).
+      [oprot writeStructBegin: (TStruct new name: 'Xtruct').
+        oprot writeFieldBegin: (TField new name: 'string_thing'; type: TType string; id: 1).
+        iprot writeString: thing structThing stringThing.
+        oprot writeFieldEnd.
+        oprot writeFieldBegin: (TField new name: 'byte_thing'; type: TType byte; id: 4).
+        iprot writeByte: thing structThing byteThing asInteger.
+        oprot writeFieldEnd.
+        oprot writeFieldBegin: (TField new name: 'i32_thing'; type: TType i32; id: 9).
+        iprot writeI32: thing structThing i32Thing asInteger.
+        oprot writeFieldEnd.
+        oprot writeFieldBegin: (TField new name: 'i64_thing'; type: TType i64; id: 11).
+        iprot writeI64: thing structThing i64Thing asInteger.
+        oprot writeFieldEnd.
+        oprot writeFieldStop; writeStructEnd] value.
+      oprot writeFieldEnd.
+      oprot writeFieldBegin: (TField new name: 'i32_thing'; type: TType i32; id: 3).
+      iprot writeI32: thing i32Thing asInteger.
+      oprot writeFieldEnd.
+      oprot writeFieldStop; writeStructEnd] value.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestSetThing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testSet'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestSet_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType set; id: 1).
+    [oprot writeSetBegin: (TSet new elemType: TType i32; size: thing size).
+      thing do: [:temp43|
+        iprot writeI32: temp43 asInteger
+].
+      oprot writeSetEnd] value.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestStringThing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testString'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestString_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType string; id: 1).
+    iprot writeString: thing.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestStructThing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testStruct'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestStruct_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType struct; id: 1).
+    [oprot writeStructBegin: (TStruct new name: 'Xtruct').
+      oprot writeFieldBegin: (TField new name: 'string_thing'; type: TType string; id: 1).
+      iprot writeString: thing stringThing.
+      oprot writeFieldEnd.
+      oprot writeFieldBegin: (TField new name: 'byte_thing'; type: TType byte; id: 4).
+      iprot writeByte: thing byteThing asInteger.
+      oprot writeFieldEnd.
+      oprot writeFieldBegin: (TField new name: 'i32_thing'; type: TType i32; id: 9).
+      iprot writeI32: thing i32Thing asInteger.
+      oprot writeFieldEnd.
+      oprot writeFieldBegin: (TField new name: 'i64_thing'; type: TType i64; id: 11).
+      iprot writeI64: thing i64Thing asInteger.
+      oprot writeFieldEnd.
+      oprot writeFieldStop; writeStructEnd] value.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestTypedefThing: thing
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testTypedef'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestTypedef_args').
+    oprot writeFieldBegin: (TField new name: 'thing'; type: TType i64; id: 1).
+    iprot writeI64: thing asInteger.
+    oprot writeFieldEnd.
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+sendTestVoid
+    oprot writeMessageBegin:
+      (TCallMessage new
+        name: 'testVoid'; 
+        seqid: self nextSeqid).
+    oprot writeStructBegin: (TStruct new name: 'TestVoid_args').
+    oprot writeFieldStop; writeStructEnd; writeMessageEnd.
+    oprot transport flush! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testByteThing: thing
+    "thing: byte"
+    self sendTestByteThing: thing.
+    ^ self recvTestByte success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testDoubleThing: thing
+    "thing: double"
+    self sendTestDoubleThing: thing.
+    ^ self recvTestDouble success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testEnumThing: thing
+    "thing: Numberz"
+    self sendTestEnumThing: thing.
+    ^ self recvTestEnum success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testExceptionArg: arg
+    "arg: string"
+    self sendTestExceptionArg: arg.
+    ^ self recvTestException success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testI16Thing: thing
+    "thing: i16"
+    self sendTestI16Thing: thing.
+    ^ self recvTestI16 success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testI32Thing: thing
+    "thing: i32"
+    self sendTestI32Thing: thing.
+    ^ self recvTestI32 success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testI64Thing: thing
+    "thing: i64"
+    self sendTestI64Thing: thing.
+    ^ self recvTestI64 success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testInsanityArgument: argument
+    "argument: Insanity"
+    self sendTestInsanityArgument: argument.
+    ^ self recvTestInsanity success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testListThing: thing
+    "thing: "
+    self sendTestListThing: thing.
+    ^ self recvTestList success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testMapMapHello: hello
+    "hello: i32"
+    self sendTestMapMapHello: hello.
+    ^ self recvTestMapMap success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testMapThing: thing
+    "thing: "
+    self sendTestMapThing: thing.
+    ^ self recvTestMap success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testMultiArg0: arg0 arg1: arg1 arg2: arg2 arg3: arg3 arg4: arg4 arg5: arg5
+    "arg0: byte, arg1: i32, arg2: i64, arg3: , arg4: Numberz, arg5: UserId"
+    self sendTestMultiArg0: arg0 arg1: arg1 arg2: arg2 arg3: arg3 arg4: arg4 arg5: arg5.
+    ^ self recvTestMulti success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testMultiExceptionArg0: arg0 arg1: arg1
+    "arg0: string, arg1: string"
+    self sendTestMultiExceptionArg0: arg0 arg1: arg1.
+    ^ self recvTestMultiException success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testNestThing: thing
+    "thing: Xtruct2"
+    self sendTestNestThing: thing.
+    ^ self recvTestNest success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testSetThing: thing
+    "thing: "
+    self sendTestSetThing: thing.
+    ^ self recvTestSet success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testStringThing: thing
+    "thing: string"
+    self sendTestStringThing: thing.
+    ^ self recvTestString success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testStructThing: thing
+    "thing: Xtruct"
+    self sendTestStructThing: thing.
+    ^ self recvTestStruct success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testTypedefThing: thing
+    "thing: UserId"
+    self sendTestTypedefThing: thing.
+    ^ self recvTestTypedef success 
+! !
+
+!ThriftTestClient methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+testVoid
+    ""
+    self sendTestVoid.
+    ^ self recvTestVoid success 
+! !
+
+Object subclass: #TField
+	instanceVariableNames: 'name type id'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Protocol'!
+
+!TField methodsFor: 'accessing' stamp: 'pc 10/24/2007 20:05'!
+id
+	^ id ifNil: [0]! !
+
+!TField methodsFor: 'accessing' stamp: 'pc 10/24/2007 19:44'!
+id: anInteger
+	id := anInteger! !
+
+!TField methodsFor: 'accessing' stamp: 'pc 10/24/2007 20:04'!
+name
+	^ name ifNil: ['']! !
+
+!TField methodsFor: 'accessing' stamp: 'pc 10/24/2007 19:44'!
+name: anObject
+	name := anObject! !
+
+!TField methodsFor: 'accessing' stamp: 'pc 10/24/2007 20:05'!
+type
+	^ type ifNil: [TType stop]! !
+
+!TField methodsFor: 'accessing' stamp: 'pc 10/24/2007 19:44'!
+type: anInteger
+	type := anInteger! !
+
+Object subclass: #TMessage
+	instanceVariableNames: 'name seqid type'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Protocol'!
+
+TMessage subclass: #TCallMessage
+	instanceVariableNames: ''
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Protocol'!
+
+!TCallMessage methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 22:53'!
+type
+	^ 1! !
+
+!TMessage methodsFor: 'accessing' stamp: 'pc 10/24/2007 20:05'!
+name
+	^ name ifNil: ['']! !
+
+!TMessage methodsFor: 'accessing' stamp: 'pc 10/24/2007 19:35'!
+name: aString
+	name := aString! !
+
+!TMessage methodsFor: 'accessing' stamp: 'pc 10/24/2007 20:05'!
+seqid
+	^ seqid ifNil: [0]! !
+
+!TMessage methodsFor: 'accessing' stamp: 'pc 10/24/2007 19:35'!
+seqid: anInteger
+	seqid := anInteger! !
+
+!TMessage methodsFor: 'accessing' stamp: 'pc 10/24/2007 20:06'!
+type
+	^ type ifNil: [0]! !
+
+!TMessage methodsFor: 'accessing' stamp: 'pc 10/24/2007 19:35'!
+type: anInteger
+	type := anInteger! !
+
+Object subclass: #TProtocol
+	instanceVariableNames: 'transport'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Protocol'!
+
+TProtocol subclass: #TBinaryProtocol
+	instanceVariableNames: ''
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Protocol'!
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 11/1/2007 04:24'!
+intFromByteArray: buf
+	| vals |
+	vals := Array new: buf size.
+	1 to: buf size do: [:n | vals at: n put: ((buf at: n) bitShift: (buf size - n) * 8)].
+	^ vals sum! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 18:46'!
+readBool
+	^ self readByte isZero not! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 10/25/2007 00:02'!
+readByte
+	^ (self transport read: 1) first! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 10/28/2007 16:24'!
+readDouble
+	| val |
+	val := Float new: 2.
+	^ val basicAt: 1 put: (self readRawInt: 4);
+		basicAt: 2 put: (self readRawInt: 4);
+		yourself! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 20:02'!
+readFieldBegin
+	| field |
+	field := TField new type: self readByte.
+	
+	^ field type = TType stop
+		ifTrue: [field]
+		ifFalse: [field id: self readI16; yourself]! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:15'!
+readI16
+	^ self readInt: 2! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:20'!
+readI32
+	^ self readInt: 4! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:20'!
+readI64
+	^ self readInt: 8! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 11/1/2007 02:35'!
+readInt: size
+	| buf val |
+	buf := transport read: size.
+	val := self intFromByteArray: buf.
+	^ buf first > 16r7F
+		ifTrue: [self unsignedInt: val size: size]
+		ifFalse: [val]! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:57'!
+readListBegin
+	^ TList new
+		elemType: self readByte;
+		size: self readI32! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:58'!
+readMapBegin
+	^ TMap new
+		keyType: self readByte;
+		valueType: self readByte;
+		size: self readI32! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 11/1/2007 04:22'!
+readMessageBegin
+	| version |
+	version := self readI32.
+	
+	(version bitAnd: self versionMask) = self version1
+		ifFalse: [TProtocolError signalWithCode: TProtocolError badVersion].
+		
+	^ TMessage new
+		type: (version bitAnd: 16r000000FF);
+		name: self readString;
+		seqid: self readI32! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 10/28/2007 16:24'!
+readRawInt: size
+	^ self intFromByteArray: (transport read: size)! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 11/1/2007 00:59'!
+readSetBegin
+	"element type, size"
+	^ TSet new
+		elemType: self readByte;
+		size: self readI32! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 10/26/2007 04:48'!
+readString
+	^ (transport read: self readI32) asString! !
+
+!TBinaryProtocol methodsFor: 'reading' stamp: 'pc 11/1/2007 04:22'!
+unsignedInt: val size: size
+	^ 0 - ((val - 1) bitXor: ((2 raisedTo: (size * 8)) - 1))! !
+
+!TBinaryProtocol methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 22:13'!
+version1
+	^ 16r80010000 ! !
+
+!TBinaryProtocol methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 18:01'!
+versionMask
+	^ 16rFFFF0000! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 18:35'!
+write: aString
+	transport write: aString! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:23'!
+writeBool: bool
+	bool ifTrue: [self writeByte: 1]
+		ifFalse: [self writeByte: 0]! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 10/26/2007 09:31'!
+writeByte: aNumber
+	aNumber > 16rFF ifTrue: [TError signal: 'writeByte too big'].
+	transport write: (Array with: aNumber)! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 10/28/2007 16:16'!
+writeDouble: aDouble
+	self writeI32: (aDouble basicAt: 1);
+		writeI32: (aDouble basicAt: 2)! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:56'!
+writeField: aField
+	self writeByte: aField type;
+		writeI16: aField id! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 10/25/2007 00:01'!
+writeFieldBegin: aField
+	self writeByte: aField type.
+	self writeI16: aField id! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 18:04'!
+writeFieldStop
+	self writeByte: TType stop! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 11/1/2007 02:06'!
+writeI16: i16
+	self writeInt: i16 size: 2! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 11/1/2007 02:06'!
+writeI32: i32
+	self writeInt: i32 size: 4! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 11/1/2007 02:06'!
+writeI64: i64
+	self writeInt: i64 size: 8! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 11/1/2007 04:23'!
+writeInt: val size: size
+	1 to: size do: [:n | self writeByte: ((val bitShift: (size negated + n) * 8) bitAnd: 16rFF)]! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 11/1/2007 00:48'!
+writeListBegin: aList
+	self writeByte: aList elemType; writeI32: aList size! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:55'!
+writeMapBegin: aMap
+	self writeByte: aMap keyType;
+		writeByte: aMap valueType;
+		writeI32: aMap size! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 20:36'!
+writeMessageBegin: msg
+	self writeI32: (self version1 bitOr: msg type);
+		writeString: msg name;
+		writeI32: msg seqid! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 11/1/2007 00:56'!
+writeSetBegin: aSet
+	self writeByte: aSet elemType; writeI32: aSet size! !
+
+!TBinaryProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 18:35'!
+writeString: aString
+	self writeI32: aString size;
+		write: aString! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readBool! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readByte! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readDouble! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readFieldBegin! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readFieldEnd! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readI16! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readI32! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readI64! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readListBegin! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readListEnd! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readMapBegin! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readMapEnd! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:39'!
+readMessageBegin! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:39'!
+readMessageEnd! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readSetBegin! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readSetEnd! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/25/2007 16:10'!
+readSimpleType: aType
+	aType = TType bool ifTrue: [^ self readBool].
+	aType = TType byte ifTrue: [^ self readByte].
+	aType = TType double ifTrue: [^ self readDouble].
+	aType = TType i16 ifTrue: [^ self readI16].
+	aType = TType i32 ifTrue: [^ self readI32].
+	aType = TType i64 ifTrue: [^ self readI64].
+	aType = TType list ifTrue: [^ self readBool].! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readString! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readStructBegin
+	! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/24/2007 19:40'!
+readStructEnd! !
+
+!TProtocol methodsFor: 'reading' stamp: 'pc 10/26/2007 21:34'!
+skip: aType
+	aType = TType stop ifTrue: [^ self].
+	aType = TType bool ifTrue: [^ self readBool].
+	aType = TType byte ifTrue: [^ self readByte].
+	aType = TType i16 ifTrue: [^ self readI16].
+	aType = TType i32 ifTrue: [^ self readI32].
+	aType = TType i64 ifTrue: [^ self readI64].
+	aType = TType string ifTrue: [^ self readString].
+	aType = TType double ifTrue: [^ self readDouble].
+	aType = TType struct ifTrue:
+		[| field |
+		self readStructBegin.
+		[(field := self readFieldBegin) type = TType stop] whileFalse:
+			[self skip: field type. self readFieldEnd].
+		^ self readStructEnd].
+	aType = TType map ifTrue:
+		[| map |
+		map := self readMapBegin.
+		map size timesRepeat: [self skip: map keyType. self skip: map valueType].
+		^ self readMapEnd].
+	aType = TType list ifTrue:
+		[| list |
+		list := self readListBegin.
+		list size timesRepeat: [self skip: list elemType].
+		^ self readListEnd].
+	aType = TType set ifTrue:
+		[| set |
+		set := self readSetBegin.
+		set size timesRepeat: [self skip: set elemType].
+		^ self readSetEnd].
+	
+	self error: 'Unknown type'! !
+
+!TProtocol methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 23:02'!
+transport
+	^ transport! !
+
+!TProtocol methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:28'!
+transport: aTransport
+	transport := aTransport! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:37'!
+writeBool: aBool! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:37'!
+writeByte: aByte! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:38'!
+writeDouble: aFloat! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:38'!
+writeFieldBegin: aField! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:37'!
+writeFieldEnd! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:37'!
+writeFieldStop! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:37'!
+writeI16: i16! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:37'!
+writeI32: i32! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:37'!
+writeI64: i64! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:39'!
+writeListBegin: aList! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:37'!
+writeListEnd! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:39'!
+writeMapBegin: aMap! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:37'!
+writeMapEnd! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:36'!
+writeMessageBegin! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:36'!
+writeMessageEnd! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:39'!
+writeSetBegin: aSet! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:37'!
+writeSetEnd! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:38'!
+writeString: aString! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:38'!
+writeStructBegin: aStruct! !
+
+!TProtocol methodsFor: 'writing' stamp: 'pc 10/24/2007 19:37'!
+writeStructEnd! !
+
+Object subclass: #TResult
+	instanceVariableNames: 'success oprot iprot exception'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift'!
+
+!TResult methodsFor: 'as yet unclassified' stamp: 'pc 10/26/2007 21:35'!
+exception
+	^ exception! !
+
+!TResult methodsFor: 'as yet unclassified' stamp: 'pc 10/26/2007 21:35'!
+exception: anError
+	exception := anError! !
+
+!TResult methodsFor: 'as yet unclassified' stamp: 'pc 10/26/2007 14:43'!
+success
+	^ success! !
+
+!TResult methodsFor: 'as yet unclassified' stamp: 'pc 10/26/2007 14:43'!
+success: anObject
+	success := anObject! !
+
+Object subclass: #TSizedObject
+	instanceVariableNames: 'size'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Protocol'!
+
+TSizedObject subclass: #TList
+	instanceVariableNames: 'elemType'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Protocol'!
+
+!TList methodsFor: 'accessing' stamp: 'pc 10/24/2007 20:04'!
+elemType
+	^ elemType ifNil: [TType stop]! !
+
+!TList methodsFor: 'accessing' stamp: 'pc 10/24/2007 19:42'!
+elemType: anInteger
+	elemType := anInteger! !
+
+TList subclass: #TSet
+	instanceVariableNames: ''
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Protocol'!
+
+TSizedObject subclass: #TMap
+	instanceVariableNames: 'keyType valueType'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Protocol'!
+
+!TMap methodsFor: 'accessing' stamp: 'pc 10/24/2007 20:04'!
+keyType
+	^ keyType ifNil: [TType stop]! !
+
+!TMap methodsFor: 'accessing' stamp: 'pc 10/24/2007 19:45'!
+keyType: anInteger
+	keyType := anInteger! !
+
+!TMap methodsFor: 'accessing' stamp: 'pc 10/24/2007 20:04'!
+valueType
+	^ valueType ifNil: [TType stop]! !
+
+!TMap methodsFor: 'accessing' stamp: 'pc 10/24/2007 19:45'!
+valueType: anInteger
+	valueType := anInteger! !
+
+!TSizedObject methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 20:03'!
+size
+	^ size ifNil: [0]! !
+
+!TSizedObject methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 20:06'!
+size: anInteger
+	size := anInteger! !
+
+Object subclass: #TSocket
+	instanceVariableNames: 'host port stream'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Transport'!
+
+!TSocket methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 22:34'!
+close
+	self isOpen ifTrue: [stream close]! !
+
+!TSocket methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 22:23'!
+connect
+	^ (self socketStream openConnectionToHost:
+		(NetNameResolver addressForName: host) port: port)
+			timeout: 180;
+			binary;
+			yourself! !
+
+!TSocket methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 20:35'!
+flush
+	stream flush! !
+
+!TSocket methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:08'!
+host: aString
+	host := aString! !
+
+!TSocket methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 20:34'!
+isOpen
+	^ stream isNil not
+		and: [stream socket isConnected]
+		and: [stream socket isOtherEndClosed not]! !
+
+!TSocket methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 22:22'!
+open
+	stream := self connect! !
+
+!TSocket methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:09'!
+port: anInteger
+	port := anInteger! !
+
+!TSocket methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:17'!
+read: size
+	| data |
+	[data := stream next: size.
+	data isEmpty ifTrue: [TTransportError signal: 'Could not read ', size asString, ' bytes'].
+	^ data]
+		on: ConnectionClosed
+		do: [TTransportClosedError signal]! !
+
+!TSocket methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 22:18'!
+socketStream
+	^ Smalltalk at: #FastSocketStream ifAbsent: [SocketStream] ! !
+
+!TSocket methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 22:17'!
+write: aCollection
+	[stream nextPutAll: aCollection]
+		on: ConnectionClosed
+		do: [TTransportClosedError signal]! !
+
+Object subclass: #TStruct
+	instanceVariableNames: 'name'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Protocol'!
+
+!TStruct methodsFor: 'accessing' stamp: 'pc 10/24/2007 19:47'!
+name
+	^ name! !
+
+!TStruct methodsFor: 'accessing' stamp: 'pc 10/24/2007 19:47'!
+name: aString
+	name := aString! !
+
+Object subclass: #TTest
+	instanceVariableNames: 'prot'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Test'!
+
+!TTest methodsFor: 'as yet unclassified' stamp: 'pc 11/1/2007 04:47'!
+protocol: aProtocol
+	prot := aProtocol! !
+
+!TTest methodsFor: 'as yet unclassified' stamp: 'pc 11/1/2007 04:49'!
+runAll
+	| c |
+	c := ThriftTestClient new inProtocol: prot.
+	c testByteThing: 32.
+	c testDoubleThing: -1.0.
+	c testEnumThing: 1.
+	c testExceptionArg: 'foo'.
+	c testI16Thing: 16.
+	c testI16Thing: -16.
+	c testI32Thing: 32.
+	c testI32Thing: -32.
+	c testI64Thing: 123.
+	c testDoubleThing: 1.2.
+	c testStructThing: (Xtruct new byteThing: 1; i32Thing: 2; i64Thing: 3; stringThing: 'foo').
+	c testSetThing: (Set new).
+	c testListThing: (OrderedCollection new).
+	c testEnumThing: 1.
+	c testInsanityArgument:
+		(Insanity new
+			userMap: (Dictionary new at: 1 put: 2; yourself);
+		xtructs: (OrderedCollection new)).
+	c testMultiArg0: 1 arg1: 2 arg2: 3 arg3: (Dictionary new) arg4: ((ThriftTest enums at: 	'Numberz') at: 'FIVE') arg5: 6. 
+	c testExceptionArg: 'Xception'.
+	c testMultiExceptionArg0: 'Xception' arg1: 'Xception2'! !
+
+Object subclass: #TTransport
+	instanceVariableNames: ''
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Transport'!
+
+!TTransport methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:18'!
+close
+	self subclassResponsibility! !
+
+!TTransport methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:22'!
+flush
+	self subclassResponsibility! !
+
+!TTransport methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:18'!
+isOpen
+	self subclassResponsibility! !
+
+!TTransport methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:18'!
+open
+	self subclassResponsibility! !
+
+!TTransport methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:18'!
+read: anInteger
+	self subclassResponsibility! !
+
+!TTransport methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:22'!
+readAll: anInteger
+	^ String streamContents: [:str |
+		[str size < anInteger] whileTrue:
+			[str nextPutAll: (self read: anInteger - str size)]]! !
+
+!TTransport methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:22'!
+write: aString
+	self subclassResponsibility! !
+
+Object subclass: #TType
+	instanceVariableNames: ''
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift'!
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:03'!
+bool
+	^ 2! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:03'!
+byte
+	^ 3! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/25/2007 15:55'!
+codeOf: aTypeName
+	self typeMap do: [:each | each first = aTypeName ifTrue: [^ each second]].
+	^ nil! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:03'!
+double
+	^ 4! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:04'!
+i16
+	^ 6! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:04'!
+i32
+	^ 8! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:04'!
+i64
+	^ 10! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:04'!
+list
+	^ 15! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:04'!
+map
+	^ 13! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/25/2007 15:56'!
+nameOf: aTypeCode
+	self typeMap do: [:each | each second = aTypeCode ifTrue: [^ each first]].
+	^ nil! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:04'!
+set
+	^ 14! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:03'!
+stop
+	^ 0! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:04'!
+string
+	^ 11! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:04'!
+struct
+	^ 12! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/25/2007 15:51'!
+typeMap
+	^ #((bool 2) (byte 3) (double 4) (i16 6) (i32 8) (i64 10) (list 15)
+	   (map 13) (set 15) (stop 0) (string 11) (struct 12) (void 1))! !
+
+!TType class methodsFor: 'as yet unclassified' stamp: 'pc 10/24/2007 17:03'!
+void
+	^ 1! !
+
+Object subclass: #Xtruct
+	instanceVariableNames: 'stringThing byteThing i32Thing i64Thing'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Test'!
+
+!Xtruct methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+byteThing
+    ^ byteThing! !
+
+!Xtruct methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+byteThing: aByte
+    byteThing := aByte! !
+
+!Xtruct methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+i32Thing
+    ^ i32Thing! !
+
+!Xtruct methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+i32Thing: anI32
+    i32Thing := anI32! !
+
+!Xtruct methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+i64Thing
+    ^ i64Thing! !
+
+!Xtruct methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+i64Thing: anI64
+    i64Thing := anI64! !
+
+!Xtruct methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+stringThing
+    ^ stringThing! !
+
+!Xtruct methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+stringThing: aString
+    stringThing := aString! !
+
+Object subclass: #Xtruct2
+	instanceVariableNames: 'byteThing structThing i32Thing'
+	classVariableNames: ''
+	poolDictionaries: ''
+	category: 'Thrift-Test'!
+
+!Xtruct2 methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+byteThing
+    ^ byteThing! !
+
+!Xtruct2 methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+byteThing: aByte
+    byteThing := aByte! !
+
+!Xtruct2 methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+i32Thing
+    ^ i32Thing! !
+
+!Xtruct2 methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+i32Thing: anI32
+    i32Thing := anI32! !
+
+!Xtruct2 methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+structThing
+    ^ structThing! !
+
+!Xtruct2 methodsFor: 'as yet uncategorized' stamp: 'thrift 11/01/2007 04:43'!
+structThing: aXtruct
+    structThing := aXtruct! !