Added: hadoop/core/trunk/src/contrib/thriftfs/gen-java/org/apache/hadoop/thriftfs/api/ThriftHandle.java URL: http://svn.apache.org/viewvc/hadoop/core/trunk/src/contrib/thriftfs/gen-java/org/apache/hadoop/thriftfs/api/ThriftHandle.java?rev=690096&view=auto ============================================================================== --- hadoop/core/trunk/src/contrib/thriftfs/gen-java/org/apache/hadoop/thriftfs/api/ThriftHandle.java (added) +++ hadoop/core/trunk/src/contrib/thriftfs/gen-java/org/apache/hadoop/thriftfs/api/ThriftHandle.java Thu Aug 28 21:31:57 2008 @@ -0,0 +1,117 @@ +/** + * Autogenerated by Thrift + * + * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING + */ +package org.apache.hadoop.thriftfs.api; + +import java.util.List; +import java.util.ArrayList; +import java.util.Map; +import java.util.HashMap; +import java.util.Set; +import java.util.HashSet; +import com.facebook.thrift.*; + +import com.facebook.thrift.protocol.*; +import com.facebook.thrift.transport.*; + +public class ThriftHandle implements TBase, java.io.Serializable { + public long id; + + public final Isset __isset = new Isset(); + public static final class Isset implements java.io.Serializable { + public boolean id = false; + } + + public ThriftHandle() { + } + + public ThriftHandle( + long id) + { + this(); + this.id = id; + this.__isset.id = true; + } + + public boolean equals(Object that) { + if (that == null) + return false; + if (that instanceof ThriftHandle) + return this.equals((ThriftHandle)that); + return false; + } + + public boolean equals(ThriftHandle that) { + if (that == null) + return false; + + boolean this_present_id = true; + boolean that_present_id = true; + if (this_present_id || that_present_id) { + if (!(this_present_id && that_present_id)) + return false; + if (this.id != that.id) + return false; + } + + return true; + } + + public int hashCode() { + return 0; + } + + public void read(TProtocol iprot) throws TException { + TField field; + iprot.readStructBegin(); + while (true) + { + field = iprot.readFieldBegin(); + if (field.type == TType.STOP) { + break; + } + switch (field.id) + { + case -1: + if (field.type == TType.I64) { + this.id = iprot.readI64(); + this.__isset.id = true; + } else { + TProtocolUtil.skip(iprot, field.type); + } + break; + default: + TProtocolUtil.skip(iprot, field.type); + break; + } + iprot.readFieldEnd(); + } + iprot.readStructEnd(); + } + + public void write(TProtocol oprot) throws TException { + TStruct struct = new TStruct("ThriftHandle"); + oprot.writeStructBegin(struct); + TField field = new TField(); + field.name = "id"; + field.type = TType.I64; + field.id = -1; + oprot.writeFieldBegin(field); + oprot.writeI64(this.id); + oprot.writeFieldEnd(); + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + public String toString() { + StringBuilder sb = new StringBuilder("ThriftHandle("); + sb.append("id:"); + sb.append(this.id); + sb.append(")"); + return sb.toString(); + } + +} +
Added: hadoop/core/trunk/src/contrib/thriftfs/gen-java/org/apache/hadoop/thriftfs/api/ThriftIOException.java URL: http://svn.apache.org/viewvc/hadoop/core/trunk/src/contrib/thriftfs/gen-java/org/apache/hadoop/thriftfs/api/ThriftIOException.java?rev=690096&view=auto ============================================================================== --- hadoop/core/trunk/src/contrib/thriftfs/gen-java/org/apache/hadoop/thriftfs/api/ThriftIOException.java (added) +++ hadoop/core/trunk/src/contrib/thriftfs/gen-java/org/apache/hadoop/thriftfs/api/ThriftIOException.java Thu Aug 28 21:31:57 2008 @@ -0,0 +1,119 @@ +/** + * Autogenerated by Thrift + * + * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING + */ +package org.apache.hadoop.thriftfs.api; + +import java.util.List; +import java.util.ArrayList; +import java.util.Map; +import java.util.HashMap; +import java.util.Set; +import java.util.HashSet; +import com.facebook.thrift.*; + +import com.facebook.thrift.protocol.*; +import com.facebook.thrift.transport.*; + +public class ThriftIOException extends Exception implements TBase, java.io.Serializable { + public String message; + + public final Isset __isset = new Isset(); + public static final class Isset implements java.io.Serializable { + public boolean message = false; + } + + public ThriftIOException() { + } + + public ThriftIOException( + String message) + { + this(); + this.message = message; + this.__isset.message = true; + } + + public boolean equals(Object that) { + if (that == null) + return false; + if (that instanceof ThriftIOException) + return this.equals((ThriftIOException)that); + return false; + } + + public boolean equals(ThriftIOException that) { + if (that == null) + return false; + + boolean this_present_message = true && (this.message != null); + boolean that_present_message = true && (that.message != null); + if (this_present_message || that_present_message) { + if (!(this_present_message && that_present_message)) + return false; + if (!this.message.equals(that.message)) + return false; + } + + return true; + } + + public int hashCode() { + return 0; + } + + public void read(TProtocol iprot) throws TException { + TField field; + iprot.readStructBegin(); + while (true) + { + field = iprot.readFieldBegin(); + if (field.type == TType.STOP) { + break; + } + switch (field.id) + { + case -1: + if (field.type == TType.STRING) { + this.message = iprot.readString(); + this.__isset.message = true; + } else { + TProtocolUtil.skip(iprot, field.type); + } + break; + default: + TProtocolUtil.skip(iprot, field.type); + break; + } + iprot.readFieldEnd(); + } + iprot.readStructEnd(); + } + + public void write(TProtocol oprot) throws TException { + TStruct struct = new TStruct("ThriftIOException"); + oprot.writeStructBegin(struct); + TField field = new TField(); + if (this.message != null) { + field.name = "message"; + field.type = TType.STRING; + field.id = -1; + oprot.writeFieldBegin(field); + oprot.writeString(this.message); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + public String toString() { + StringBuilder sb = new StringBuilder("ThriftIOException("); + sb.append("message:"); + sb.append(this.message); + sb.append(")"); + return sb.toString(); + } + +} + Added: hadoop/core/trunk/src/contrib/thriftfs/gen-perl/Constants.pm URL: http://svn.apache.org/viewvc/hadoop/core/trunk/src/contrib/thriftfs/gen-perl/Constants.pm?rev=690096&view=auto ============================================================================== --- hadoop/core/trunk/src/contrib/thriftfs/gen-perl/Constants.pm (added) +++ hadoop/core/trunk/src/contrib/thriftfs/gen-perl/Constants.pm Thu Aug 28 21:31:57 2008 @@ -0,0 +1,13 @@ +# +# Autogenerated by Thrift +# +# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING +# +package Constants; +require 5.6.0; +use strict; +use warnings; +use Thrift; + + +1;
