ThriftHadoopFileSystem.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:166k
- /**
- * 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 ThriftHadoopFileSystem {
- public interface Iface {
- public void setInactivityTimeoutPeriod(long periodInSeconds) throws TException;
- public void shutdown(int status) throws TException;
- public ThriftHandle create(Pathname path) throws ThriftIOException, TException;
- public ThriftHandle createFile(Pathname path, short mode, boolean overwrite, int bufferSize, short block_replication, long blocksize) throws ThriftIOException, TException;
- public ThriftHandle open(Pathname path) throws ThriftIOException, TException;
- public ThriftHandle append(Pathname path) throws ThriftIOException, TException;
- public boolean write(ThriftHandle handle, String data) throws ThriftIOException, TException;
- public String read(ThriftHandle handle, long offset, int size) throws ThriftIOException, TException;
- public boolean close(ThriftHandle out) throws ThriftIOException, TException;
- public boolean rm(Pathname path, boolean recursive) throws ThriftIOException, TException;
- public boolean rename(Pathname path, Pathname dest) throws ThriftIOException, TException;
- public boolean mkdirs(Pathname path) throws ThriftIOException, TException;
- public boolean exists(Pathname path) throws ThriftIOException, TException;
- public FileStatus stat(Pathname path) throws ThriftIOException, TException;
- public List<FileStatus> listStatus(Pathname path) throws ThriftIOException, TException;
- public void chmod(Pathname path, short mode) throws ThriftIOException, TException;
- public void chown(Pathname path, String owner, String group) throws ThriftIOException, TException;
- public void setReplication(Pathname path, short replication) throws ThriftIOException, TException;
- public List<BlockLocation> getFileBlockLocations(Pathname path, long start, long length) throws ThriftIOException, TException;
- }
- public static class Client implements Iface {
- public Client(TProtocol prot)
- {
- this(prot, prot);
- }
- public Client(TProtocol iprot, TProtocol oprot)
- {
- iprot_ = iprot;
- oprot_ = oprot;
- }
- protected TProtocol iprot_;
- protected TProtocol oprot_;
- protected int seqid_;
- public TProtocol getInputProtocol()
- {
- return this.iprot_;
- }
- public TProtocol getOutputProtocol()
- {
- return this.oprot_;
- }
- public void setInactivityTimeoutPeriod(long periodInSeconds) throws TException
- {
- send_setInactivityTimeoutPeriod(periodInSeconds);
- recv_setInactivityTimeoutPeriod();
- }
- public void send_setInactivityTimeoutPeriod(long periodInSeconds) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("setInactivityTimeoutPeriod", TMessageType.CALL, seqid_));
- setInactivityTimeoutPeriod_args args = new setInactivityTimeoutPeriod_args();
- args.periodInSeconds = periodInSeconds;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public void recv_setInactivityTimeoutPeriod() throws TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- setInactivityTimeoutPeriod_result result = new setInactivityTimeoutPeriod_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- return;
- }
- public void shutdown(int status) throws TException
- {
- send_shutdown(status);
- recv_shutdown();
- }
- public void send_shutdown(int status) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("shutdown", TMessageType.CALL, seqid_));
- shutdown_args args = new shutdown_args();
- args.status = status;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public void recv_shutdown() throws TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- shutdown_result result = new shutdown_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- return;
- }
- public ThriftHandle create(Pathname path) throws ThriftIOException, TException
- {
- send_create(path);
- return recv_create();
- }
- public void send_create(Pathname path) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("create", TMessageType.CALL, seqid_));
- create_args args = new create_args();
- args.path = path;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public ThriftHandle recv_create() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- create_result result = new create_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "create failed: unknown result");
- }
- public ThriftHandle createFile(Pathname path, short mode, boolean overwrite, int bufferSize, short block_replication, long blocksize) throws ThriftIOException, TException
- {
- send_createFile(path, mode, overwrite, bufferSize, block_replication, blocksize);
- return recv_createFile();
- }
- public void send_createFile(Pathname path, short mode, boolean overwrite, int bufferSize, short block_replication, long blocksize) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("createFile", TMessageType.CALL, seqid_));
- createFile_args args = new createFile_args();
- args.path = path;
- args.mode = mode;
- args.overwrite = overwrite;
- args.bufferSize = bufferSize;
- args.block_replication = block_replication;
- args.blocksize = blocksize;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public ThriftHandle recv_createFile() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- createFile_result result = new createFile_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "createFile failed: unknown result");
- }
- public ThriftHandle open(Pathname path) throws ThriftIOException, TException
- {
- send_open(path);
- return recv_open();
- }
- public void send_open(Pathname path) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("open", TMessageType.CALL, seqid_));
- open_args args = new open_args();
- args.path = path;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public ThriftHandle recv_open() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- open_result result = new open_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "open failed: unknown result");
- }
- public ThriftHandle append(Pathname path) throws ThriftIOException, TException
- {
- send_append(path);
- return recv_append();
- }
- public void send_append(Pathname path) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("append", TMessageType.CALL, seqid_));
- append_args args = new append_args();
- args.path = path;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public ThriftHandle recv_append() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- append_result result = new append_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "append failed: unknown result");
- }
- public boolean write(ThriftHandle handle, String data) throws ThriftIOException, TException
- {
- send_write(handle, data);
- return recv_write();
- }
- public void send_write(ThriftHandle handle, String data) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("write", TMessageType.CALL, seqid_));
- write_args args = new write_args();
- args.handle = handle;
- args.data = data;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public boolean recv_write() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- write_result result = new write_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "write failed: unknown result");
- }
- public String read(ThriftHandle handle, long offset, int size) throws ThriftIOException, TException
- {
- send_read(handle, offset, size);
- return recv_read();
- }
- public void send_read(ThriftHandle handle, long offset, int size) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("read", TMessageType.CALL, seqid_));
- read_args args = new read_args();
- args.handle = handle;
- args.offset = offset;
- args.size = size;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public String recv_read() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- read_result result = new read_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "read failed: unknown result");
- }
- public boolean close(ThriftHandle out) throws ThriftIOException, TException
- {
- send_close(out);
- return recv_close();
- }
- public void send_close(ThriftHandle out) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("close", TMessageType.CALL, seqid_));
- close_args args = new close_args();
- args.out = out;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public boolean recv_close() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- close_result result = new close_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "close failed: unknown result");
- }
- public boolean rm(Pathname path, boolean recursive) throws ThriftIOException, TException
- {
- send_rm(path, recursive);
- return recv_rm();
- }
- public void send_rm(Pathname path, boolean recursive) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("rm", TMessageType.CALL, seqid_));
- rm_args args = new rm_args();
- args.path = path;
- args.recursive = recursive;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public boolean recv_rm() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- rm_result result = new rm_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "rm failed: unknown result");
- }
- public boolean rename(Pathname path, Pathname dest) throws ThriftIOException, TException
- {
- send_rename(path, dest);
- return recv_rename();
- }
- public void send_rename(Pathname path, Pathname dest) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("rename", TMessageType.CALL, seqid_));
- rename_args args = new rename_args();
- args.path = path;
- args.dest = dest;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public boolean recv_rename() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- rename_result result = new rename_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "rename failed: unknown result");
- }
- public boolean mkdirs(Pathname path) throws ThriftIOException, TException
- {
- send_mkdirs(path);
- return recv_mkdirs();
- }
- public void send_mkdirs(Pathname path) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("mkdirs", TMessageType.CALL, seqid_));
- mkdirs_args args = new mkdirs_args();
- args.path = path;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public boolean recv_mkdirs() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- mkdirs_result result = new mkdirs_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "mkdirs failed: unknown result");
- }
- public boolean exists(Pathname path) throws ThriftIOException, TException
- {
- send_exists(path);
- return recv_exists();
- }
- public void send_exists(Pathname path) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("exists", TMessageType.CALL, seqid_));
- exists_args args = new exists_args();
- args.path = path;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public boolean recv_exists() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- exists_result result = new exists_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "exists failed: unknown result");
- }
- public FileStatus stat(Pathname path) throws ThriftIOException, TException
- {
- send_stat(path);
- return recv_stat();
- }
- public void send_stat(Pathname path) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("stat", TMessageType.CALL, seqid_));
- stat_args args = new stat_args();
- args.path = path;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public FileStatus recv_stat() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- stat_result result = new stat_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "stat failed: unknown result");
- }
- public List<FileStatus> listStatus(Pathname path) throws ThriftIOException, TException
- {
- send_listStatus(path);
- return recv_listStatus();
- }
- public void send_listStatus(Pathname path) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("listStatus", TMessageType.CALL, seqid_));
- listStatus_args args = new listStatus_args();
- args.path = path;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public List<FileStatus> recv_listStatus() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- listStatus_result result = new listStatus_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "listStatus failed: unknown result");
- }
- public void chmod(Pathname path, short mode) throws ThriftIOException, TException
- {
- send_chmod(path, mode);
- recv_chmod();
- }
- public void send_chmod(Pathname path, short mode) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("chmod", TMessageType.CALL, seqid_));
- chmod_args args = new chmod_args();
- args.path = path;
- args.mode = mode;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public void recv_chmod() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- chmod_result result = new chmod_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- return;
- }
- public void chown(Pathname path, String owner, String group) throws ThriftIOException, TException
- {
- send_chown(path, owner, group);
- recv_chown();
- }
- public void send_chown(Pathname path, String owner, String group) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("chown", TMessageType.CALL, seqid_));
- chown_args args = new chown_args();
- args.path = path;
- args.owner = owner;
- args.group = group;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public void recv_chown() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- chown_result result = new chown_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- return;
- }
- public void setReplication(Pathname path, short replication) throws ThriftIOException, TException
- {
- send_setReplication(path, replication);
- recv_setReplication();
- }
- public void send_setReplication(Pathname path, short replication) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("setReplication", TMessageType.CALL, seqid_));
- setReplication_args args = new setReplication_args();
- args.path = path;
- args.replication = replication;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public void recv_setReplication() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- setReplication_result result = new setReplication_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- return;
- }
- public List<BlockLocation> getFileBlockLocations(Pathname path, long start, long length) throws ThriftIOException, TException
- {
- send_getFileBlockLocations(path, start, length);
- return recv_getFileBlockLocations();
- }
- public void send_getFileBlockLocations(Pathname path, long start, long length) throws TException
- {
- oprot_.writeMessageBegin(new TMessage("getFileBlockLocations", TMessageType.CALL, seqid_));
- getFileBlockLocations_args args = new getFileBlockLocations_args();
- args.path = path;
- args.start = start;
- args.length = length;
- args.write(oprot_);
- oprot_.writeMessageEnd();
- oprot_.getTransport().flush();
- }
- public List<BlockLocation> recv_getFileBlockLocations() throws ThriftIOException, TException
- {
- TMessage msg = iprot_.readMessageBegin();
- if (msg.type == TMessageType.EXCEPTION) {
- TApplicationException x = TApplicationException.read(iprot_);
- iprot_.readMessageEnd();
- throw x;
- }
- getFileBlockLocations_result result = new getFileBlockLocations_result();
- result.read(iprot_);
- iprot_.readMessageEnd();
- if (result.__isset.success) {
- return result.success;
- }
- if (result.__isset.ouch) {
- throw result.ouch;
- }
- throw new TApplicationException(TApplicationException.MISSING_RESULT, "getFileBlockLocations failed: unknown result");
- }
- }
- public static class Processor implements TProcessor {
- public Processor(Iface iface)
- {
- iface_ = iface;
- processMap_.put("setInactivityTimeoutPeriod", new setInactivityTimeoutPeriod());
- processMap_.put("shutdown", new shutdown());
- processMap_.put("create", new create());
- processMap_.put("createFile", new createFile());
- processMap_.put("open", new open());
- processMap_.put("append", new append());
- processMap_.put("write", new write());
- processMap_.put("read", new read());
- processMap_.put("close", new close());
- processMap_.put("rm", new rm());
- processMap_.put("rename", new rename());
- processMap_.put("mkdirs", new mkdirs());
- processMap_.put("exists", new exists());
- processMap_.put("stat", new stat());
- processMap_.put("listStatus", new listStatus());
- processMap_.put("chmod", new chmod());
- processMap_.put("chown", new chown());
- processMap_.put("setReplication", new setReplication());
- processMap_.put("getFileBlockLocations", new getFileBlockLocations());
- }
- protected static interface ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException;
- }
- private Iface iface_;
- protected final HashMap<String,ProcessFunction> processMap_ = new HashMap<String,ProcessFunction>();
- public boolean process(TProtocol iprot, TProtocol oprot) throws TException
- {
- TMessage msg = iprot.readMessageBegin();
- ProcessFunction fn = processMap_.get(msg.name);
- if (fn == null) {
- TProtocolUtil.skip(iprot, TType.STRUCT);
- iprot.readMessageEnd();
- TApplicationException x = new TApplicationException(TApplicationException.UNKNOWN_METHOD, "Invalid method name: '"+msg.name+"'");
- oprot.writeMessageBegin(new TMessage(msg.name, TMessageType.EXCEPTION, msg.seqid));
- x.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- return true;
- }
- fn.process(msg.seqid, iprot, oprot);
- return true;
- }
- private class setInactivityTimeoutPeriod implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- setInactivityTimeoutPeriod_args args = new setInactivityTimeoutPeriod_args();
- args.read(iprot);
- iprot.readMessageEnd();
- setInactivityTimeoutPeriod_result result = new setInactivityTimeoutPeriod_result();
- iface_.setInactivityTimeoutPeriod(args.periodInSeconds);
- oprot.writeMessageBegin(new TMessage("setInactivityTimeoutPeriod", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class shutdown implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- shutdown_args args = new shutdown_args();
- args.read(iprot);
- iprot.readMessageEnd();
- shutdown_result result = new shutdown_result();
- iface_.shutdown(args.status);
- oprot.writeMessageBegin(new TMessage("shutdown", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class create implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- create_args args = new create_args();
- args.read(iprot);
- iprot.readMessageEnd();
- create_result result = new create_result();
- try {
- result.success = iface_.create(args.path);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("create", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class createFile implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- createFile_args args = new createFile_args();
- args.read(iprot);
- iprot.readMessageEnd();
- createFile_result result = new createFile_result();
- try {
- result.success = iface_.createFile(args.path, args.mode, args.overwrite, args.bufferSize, args.block_replication, args.blocksize);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("createFile", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class open implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- open_args args = new open_args();
- args.read(iprot);
- iprot.readMessageEnd();
- open_result result = new open_result();
- try {
- result.success = iface_.open(args.path);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("open", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class append implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- append_args args = new append_args();
- args.read(iprot);
- iprot.readMessageEnd();
- append_result result = new append_result();
- try {
- result.success = iface_.append(args.path);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("append", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class write implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- write_args args = new write_args();
- args.read(iprot);
- iprot.readMessageEnd();
- write_result result = new write_result();
- try {
- result.success = iface_.write(args.handle, args.data);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("write", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class read implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- read_args args = new read_args();
- args.read(iprot);
- iprot.readMessageEnd();
- read_result result = new read_result();
- try {
- result.success = iface_.read(args.handle, args.offset, args.size);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("read", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class close implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- close_args args = new close_args();
- args.read(iprot);
- iprot.readMessageEnd();
- close_result result = new close_result();
- try {
- result.success = iface_.close(args.out);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("close", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class rm implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- rm_args args = new rm_args();
- args.read(iprot);
- iprot.readMessageEnd();
- rm_result result = new rm_result();
- try {
- result.success = iface_.rm(args.path, args.recursive);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("rm", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class rename implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- rename_args args = new rename_args();
- args.read(iprot);
- iprot.readMessageEnd();
- rename_result result = new rename_result();
- try {
- result.success = iface_.rename(args.path, args.dest);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("rename", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class mkdirs implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- mkdirs_args args = new mkdirs_args();
- args.read(iprot);
- iprot.readMessageEnd();
- mkdirs_result result = new mkdirs_result();
- try {
- result.success = iface_.mkdirs(args.path);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("mkdirs", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class exists implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- exists_args args = new exists_args();
- args.read(iprot);
- iprot.readMessageEnd();
- exists_result result = new exists_result();
- try {
- result.success = iface_.exists(args.path);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("exists", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class stat implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- stat_args args = new stat_args();
- args.read(iprot);
- iprot.readMessageEnd();
- stat_result result = new stat_result();
- try {
- result.success = iface_.stat(args.path);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("stat", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class listStatus implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- listStatus_args args = new listStatus_args();
- args.read(iprot);
- iprot.readMessageEnd();
- listStatus_result result = new listStatus_result();
- try {
- result.success = iface_.listStatus(args.path);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("listStatus", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class chmod implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- chmod_args args = new chmod_args();
- args.read(iprot);
- iprot.readMessageEnd();
- chmod_result result = new chmod_result();
- try {
- iface_.chmod(args.path, args.mode);
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("chmod", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class chown implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- chown_args args = new chown_args();
- args.read(iprot);
- iprot.readMessageEnd();
- chown_result result = new chown_result();
- try {
- iface_.chown(args.path, args.owner, args.group);
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("chown", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class setReplication implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- setReplication_args args = new setReplication_args();
- args.read(iprot);
- iprot.readMessageEnd();
- setReplication_result result = new setReplication_result();
- try {
- iface_.setReplication(args.path, args.replication);
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("setReplication", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- private class getFileBlockLocations implements ProcessFunction {
- public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
- {
- getFileBlockLocations_args args = new getFileBlockLocations_args();
- args.read(iprot);
- iprot.readMessageEnd();
- getFileBlockLocations_result result = new getFileBlockLocations_result();
- try {
- result.success = iface_.getFileBlockLocations(args.path, args.start, args.length);
- result.__isset.success = true;
- } catch (ThriftIOException ouch) {
- result.ouch = ouch;
- result.__isset.ouch = true;
- }
- oprot.writeMessageBegin(new TMessage("getFileBlockLocations", TMessageType.REPLY, seqid));
- result.write(oprot);
- oprot.writeMessageEnd();
- oprot.getTransport().flush();
- }
- }
- }
- public static class setInactivityTimeoutPeriod_args implements TBase, java.io.Serializable {
- public long periodInSeconds;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean periodInSeconds = false;
- }
- public setInactivityTimeoutPeriod_args() {
- }
- public setInactivityTimeoutPeriod_args(
- long periodInSeconds)
- {
- this();
- this.periodInSeconds = periodInSeconds;
- this.__isset.periodInSeconds = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof setInactivityTimeoutPeriod_args)
- return this.equals((setInactivityTimeoutPeriod_args)that);
- return false;
- }
- public boolean equals(setInactivityTimeoutPeriod_args that) {
- if (that == null)
- return false;
- boolean this_present_periodInSeconds = true;
- boolean that_present_periodInSeconds = true;
- if (this_present_periodInSeconds || that_present_periodInSeconds) {
- if (!(this_present_periodInSeconds && that_present_periodInSeconds))
- return false;
- if (this.periodInSeconds != that.periodInSeconds)
- 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.periodInSeconds = iprot.readI64();
- this.__isset.periodInSeconds = 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("setInactivityTimeoutPeriod_args");
- oprot.writeStructBegin(struct);
- TField field = new TField();
- field.name = "periodInSeconds";
- field.type = TType.I64;
- field.id = 1;
- oprot.writeFieldBegin(field);
- oprot.writeI64(this.periodInSeconds);
- oprot.writeFieldEnd();
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("setInactivityTimeoutPeriod_args(");
- sb.append("periodInSeconds:");
- sb.append(this.periodInSeconds);
- sb.append(")");
- return sb.toString();
- }
- }
- public static class setInactivityTimeoutPeriod_result implements TBase, java.io.Serializable {
- public setInactivityTimeoutPeriod_result() {
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof setInactivityTimeoutPeriod_result)
- return this.equals((setInactivityTimeoutPeriod_result)that);
- return false;
- }
- public boolean equals(setInactivityTimeoutPeriod_result that) {
- if (that == null)
- 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)
- {
- default:
- TProtocolUtil.skip(iprot, field.type);
- break;
- }
- iprot.readFieldEnd();
- }
- iprot.readStructEnd();
- }
- public void write(TProtocol oprot) throws TException {
- TStruct struct = new TStruct("setInactivityTimeoutPeriod_result");
- oprot.writeStructBegin(struct);
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("setInactivityTimeoutPeriod_result(");
- sb.append(")");
- return sb.toString();
- }
- }
- public static class shutdown_args implements TBase, java.io.Serializable {
- public int status;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean status = false;
- }
- public shutdown_args() {
- }
- public shutdown_args(
- int status)
- {
- this();
- this.status = status;
- this.__isset.status = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof shutdown_args)
- return this.equals((shutdown_args)that);
- return false;
- }
- public boolean equals(shutdown_args that) {
- if (that == null)
- return false;
- boolean this_present_status = true;
- boolean that_present_status = true;
- if (this_present_status || that_present_status) {
- if (!(this_present_status && that_present_status))
- return false;
- if (this.status != that.status)
- 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.I32) {
- this.status = iprot.readI32();
- this.__isset.status = 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("shutdown_args");
- oprot.writeStructBegin(struct);
- TField field = new TField();
- field.name = "status";
- field.type = TType.I32;
- field.id = 1;
- oprot.writeFieldBegin(field);
- oprot.writeI32(this.status);
- oprot.writeFieldEnd();
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("shutdown_args(");
- sb.append("status:");
- sb.append(this.status);
- sb.append(")");
- return sb.toString();
- }
- }
- public static class shutdown_result implements TBase, java.io.Serializable {
- public shutdown_result() {
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof shutdown_result)
- return this.equals((shutdown_result)that);
- return false;
- }
- public boolean equals(shutdown_result that) {
- if (that == null)
- 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)
- {
- default:
- TProtocolUtil.skip(iprot, field.type);
- break;
- }
- iprot.readFieldEnd();
- }
- iprot.readStructEnd();
- }
- public void write(TProtocol oprot) throws TException {
- TStruct struct = new TStruct("shutdown_result");
- oprot.writeStructBegin(struct);
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("shutdown_result(");
- sb.append(")");
- return sb.toString();
- }
- }
- public static class create_args implements TBase, java.io.Serializable {
- public Pathname path;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean path = false;
- }
- public create_args() {
- }
- public create_args(
- Pathname path)
- {
- this();
- this.path = path;
- this.__isset.path = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof create_args)
- return this.equals((create_args)that);
- return false;
- }
- public boolean equals(create_args that) {
- if (that == null)
- return false;
- boolean this_present_path = true && (this.path != null);
- boolean that_present_path = true && (that.path != null);
- if (this_present_path || that_present_path) {
- if (!(this_present_path && that_present_path))
- return false;
- if (!this.path.equals(that.path))
- 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.STRUCT) {
- this.path = new Pathname();
- this.path.read(iprot);
- this.__isset.path = 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("create_args");
- oprot.writeStructBegin(struct);
- TField field = new TField();
- if (this.path != null) {
- field.name = "path";
- field.type = TType.STRUCT;
- field.id = 1;
- oprot.writeFieldBegin(field);
- this.path.write(oprot);
- oprot.writeFieldEnd();
- }
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("create_args(");
- sb.append("path:");
- sb.append(this.path);
- sb.append(")");
- return sb.toString();
- }
- }
- public static class create_result implements TBase, java.io.Serializable {
- public ThriftHandle success;
- public ThriftIOException ouch;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean success = false;
- public boolean ouch = false;
- }
- public create_result() {
- }
- public create_result(
- ThriftHandle success,
- ThriftIOException ouch)
- {
- this();
- this.success = success;
- this.__isset.success = true;
- this.ouch = ouch;
- this.__isset.ouch = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof create_result)
- return this.equals((create_result)that);
- return false;
- }
- public boolean equals(create_result that) {
- if (that == null)
- return false;
- boolean this_present_success = true && (this.success != null);
- boolean that_present_success = true && (that.success != null);
- if (this_present_success || that_present_success) {
- if (!(this_present_success && that_present_success))
- return false;
- if (!this.success.equals(that.success))
- return false;
- }
- boolean this_present_ouch = true && (this.ouch != null);
- boolean that_present_ouch = true && (that.ouch != null);
- if (this_present_ouch || that_present_ouch) {
- if (!(this_present_ouch && that_present_ouch))
- return false;
- if (!this.ouch.equals(that.ouch))
- 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 0:
- if (field.type == TType.STRUCT) {
- this.success = new ThriftHandle();
- this.success.read(iprot);
- this.__isset.success = true;
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case 1:
- if (field.type == TType.STRUCT) {
- this.ouch = new ThriftIOException();
- this.ouch.read(iprot);
- this.__isset.ouch = 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("create_result");
- oprot.writeStructBegin(struct);
- TField field = new TField();
- if (this.__isset.success) {
- if (this.success != null) {
- field.name = "success";
- field.type = TType.STRUCT;
- field.id = 0;
- oprot.writeFieldBegin(field);
- this.success.write(oprot);
- oprot.writeFieldEnd();
- }
- } else if (this.__isset.ouch) {
- if (this.ouch != null) {
- field.name = "ouch";
- field.type = TType.STRUCT;
- field.id = 1;
- oprot.writeFieldBegin(field);
- this.ouch.write(oprot);
- oprot.writeFieldEnd();
- }
- }
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("create_result(");
- sb.append("success:");
- sb.append(this.success);
- sb.append(",ouch:");
- sb.append(this.ouch);
- sb.append(")");
- return sb.toString();
- }
- }
- public static class createFile_args implements TBase, java.io.Serializable {
- public Pathname path;
- public short mode;
- public boolean overwrite;
- public int bufferSize;
- public short block_replication;
- public long blocksize;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean path = false;
- public boolean mode = false;
- public boolean overwrite = false;
- public boolean bufferSize = false;
- public boolean block_replication = false;
- public boolean blocksize = false;
- }
- public createFile_args() {
- }
- public createFile_args(
- Pathname path,
- short mode,
- boolean overwrite,
- int bufferSize,
- short block_replication,
- long blocksize)
- {
- this();
- this.path = path;
- this.__isset.path = true;
- this.mode = mode;
- this.__isset.mode = true;
- this.overwrite = overwrite;
- this.__isset.overwrite = true;
- this.bufferSize = bufferSize;
- this.__isset.bufferSize = true;
- this.block_replication = block_replication;
- this.__isset.block_replication = true;
- this.blocksize = blocksize;
- this.__isset.blocksize = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof createFile_args)
- return this.equals((createFile_args)that);
- return false;
- }
- public boolean equals(createFile_args that) {
- if (that == null)
- return false;
- boolean this_present_path = true && (this.path != null);
- boolean that_present_path = true && (that.path != null);
- if (this_present_path || that_present_path) {
- if (!(this_present_path && that_present_path))
- return false;
- if (!this.path.equals(that.path))
- return false;
- }
- boolean this_present_mode = true;
- boolean that_present_mode = true;
- if (this_present_mode || that_present_mode) {
- if (!(this_present_mode && that_present_mode))
- return false;
- if (this.mode != that.mode)
- return false;
- }
- boolean this_present_overwrite = true;
- boolean that_present_overwrite = true;
- if (this_present_overwrite || that_present_overwrite) {
- if (!(this_present_overwrite && that_present_overwrite))
- return false;
- if (this.overwrite != that.overwrite)
- return false;
- }
- boolean this_present_bufferSize = true;
- boolean that_present_bufferSize = true;
- if (this_present_bufferSize || that_present_bufferSize) {
- if (!(this_present_bufferSize && that_present_bufferSize))
- return false;
- if (this.bufferSize != that.bufferSize)
- return false;
- }
- boolean this_present_block_replication = true;
- boolean that_present_block_replication = true;
- if (this_present_block_replication || that_present_block_replication) {
- if (!(this_present_block_replication && that_present_block_replication))
- return false;
- if (this.block_replication != that.block_replication)
- return false;
- }
- boolean this_present_blocksize = true;
- boolean that_present_blocksize = true;
- if (this_present_blocksize || that_present_blocksize) {
- if (!(this_present_blocksize && that_present_blocksize))
- return false;
- if (this.blocksize != that.blocksize)
- 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.STRUCT) {
- this.path = new Pathname();
- this.path.read(iprot);
- this.__isset.path = true;
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case 2:
- if (field.type == TType.I16) {
- this.mode = iprot.readI16();
- this.__isset.mode = true;
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case 3:
- if (field.type == TType.BOOL) {
- this.overwrite = iprot.readBool();
- this.__isset.overwrite = true;
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case 4:
- if (field.type == TType.I32) {
- this.bufferSize = iprot.readI32();
- this.__isset.bufferSize = true;
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case 5:
- if (field.type == TType.I16) {
- this.block_replication = iprot.readI16();
- this.__isset.block_replication = true;
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case 6:
- if (field.type == TType.I64) {
- this.blocksize = iprot.readI64();
- this.__isset.blocksize = 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("createFile_args");
- oprot.writeStructBegin(struct);
- TField field = new TField();
- if (this.path != null) {
- field.name = "path";
- field.type = TType.STRUCT;
- field.id = 1;
- oprot.writeFieldBegin(field);
- this.path.write(oprot);
- oprot.writeFieldEnd();
- }
- field.name = "mode";
- field.type = TType.I16;
- field.id = 2;
- oprot.writeFieldBegin(field);
- oprot.writeI16(this.mode);
- oprot.writeFieldEnd();
- field.name = "overwrite";
- field.type = TType.BOOL;
- field.id = 3;
- oprot.writeFieldBegin(field);
- oprot.writeBool(this.overwrite);
- oprot.writeFieldEnd();
- field.name = "bufferSize";
- field.type = TType.I32;
- field.id = 4;
- oprot.writeFieldBegin(field);
- oprot.writeI32(this.bufferSize);
- oprot.writeFieldEnd();
- field.name = "block_replication";
- field.type = TType.I16;
- field.id = 5;
- oprot.writeFieldBegin(field);
- oprot.writeI16(this.block_replication);
- oprot.writeFieldEnd();
- field.name = "blocksize";
- field.type = TType.I64;
- field.id = 6;
- oprot.writeFieldBegin(field);
- oprot.writeI64(this.blocksize);
- oprot.writeFieldEnd();
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("createFile_args(");
- sb.append("path:");
- sb.append(this.path);
- sb.append(",mode:");
- sb.append(this.mode);
- sb.append(",overwrite:");
- sb.append(this.overwrite);
- sb.append(",bufferSize:");
- sb.append(this.bufferSize);
- sb.append(",block_replication:");
- sb.append(this.block_replication);
- sb.append(",blocksize:");
- sb.append(this.blocksize);
- sb.append(")");
- return sb.toString();
- }
- }
- public static class createFile_result implements TBase, java.io.Serializable {
- public ThriftHandle success;
- public ThriftIOException ouch;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean success = false;
- public boolean ouch = false;
- }
- public createFile_result() {
- }
- public createFile_result(
- ThriftHandle success,
- ThriftIOException ouch)
- {
- this();
- this.success = success;
- this.__isset.success = true;
- this.ouch = ouch;
- this.__isset.ouch = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof createFile_result)
- return this.equals((createFile_result)that);
- return false;
- }
- public boolean equals(createFile_result that) {
- if (that == null)
- return false;
- boolean this_present_success = true && (this.success != null);
- boolean that_present_success = true && (that.success != null);
- if (this_present_success || that_present_success) {
- if (!(this_present_success && that_present_success))
- return false;
- if (!this.success.equals(that.success))
- return false;
- }
- boolean this_present_ouch = true && (this.ouch != null);
- boolean that_present_ouch = true && (that.ouch != null);
- if (this_present_ouch || that_present_ouch) {
- if (!(this_present_ouch && that_present_ouch))
- return false;
- if (!this.ouch.equals(that.ouch))
- 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 0:
- if (field.type == TType.STRUCT) {
- this.success = new ThriftHandle();
- this.success.read(iprot);
- this.__isset.success = true;
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case 1:
- if (field.type == TType.STRUCT) {
- this.ouch = new ThriftIOException();
- this.ouch.read(iprot);
- this.__isset.ouch = 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("createFile_result");
- oprot.writeStructBegin(struct);
- TField field = new TField();
- if (this.__isset.success) {
- if (this.success != null) {
- field.name = "success";
- field.type = TType.STRUCT;
- field.id = 0;
- oprot.writeFieldBegin(field);
- this.success.write(oprot);
- oprot.writeFieldEnd();
- }
- } else if (this.__isset.ouch) {
- if (this.ouch != null) {
- field.name = "ouch";
- field.type = TType.STRUCT;
- field.id = 1;
- oprot.writeFieldBegin(field);
- this.ouch.write(oprot);
- oprot.writeFieldEnd();
- }
- }
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("createFile_result(");
- sb.append("success:");
- sb.append(this.success);
- sb.append(",ouch:");
- sb.append(this.ouch);
- sb.append(")");
- return sb.toString();
- }
- }
- public static class open_args implements TBase, java.io.Serializable {
- public Pathname path;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean path = false;
- }
- public open_args() {
- }
- public open_args(
- Pathname path)
- {
- this();
- this.path = path;
- this.__isset.path = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof open_args)
- return this.equals((open_args)that);
- return false;
- }
- public boolean equals(open_args that) {
- if (that == null)
- return false;
- boolean this_present_path = true && (this.path != null);
- boolean that_present_path = true && (that.path != null);
- if (this_present_path || that_present_path) {
- if (!(this_present_path && that_present_path))
- return false;
- if (!this.path.equals(that.path))
- 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.STRUCT) {
- this.path = new Pathname();
- this.path.read(iprot);
- this.__isset.path = 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("open_args");
- oprot.writeStructBegin(struct);
- TField field = new TField();
- if (this.path != null) {
- field.name = "path";
- field.type = TType.STRUCT;
- field.id = 1;
- oprot.writeFieldBegin(field);
- this.path.write(oprot);
- oprot.writeFieldEnd();
- }
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("open_args(");
- sb.append("path:");
- sb.append(this.path);
- sb.append(")");
- return sb.toString();
- }
- }
- public static class open_result implements TBase, java.io.Serializable {
- public ThriftHandle success;
- public ThriftIOException ouch;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean success = false;
- public boolean ouch = false;
- }
- public open_result() {
- }
- public open_result(
- ThriftHandle success,
- ThriftIOException ouch)
- {
- this();
- this.success = success;
- this.__isset.success = true;
- this.ouch = ouch;
- this.__isset.ouch = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof open_result)
- return this.equals((open_result)that);
- return false;
- }
- public boolean equals(open_result that) {
- if (that == null)
- return false;
- boolean this_present_success = true && (this.success != null);
- boolean that_present_success = true && (that.success != null);
- if (this_present_success || that_present_success) {
- if (!(this_present_success && that_present_success))
- return false;
- if (!this.success.equals(that.success))
- return false;
- }
- boolean this_present_ouch = true && (this.ouch != null);
- boolean that_present_ouch = true && (that.ouch != null);
- if (this_present_ouch || that_present_ouch) {
- if (!(this_present_ouch && that_present_ouch))
- return false;
- if (!this.ouch.equals(that.ouch))
- 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 0:
- if (field.type == TType.STRUCT) {
- this.success = new ThriftHandle();
- this.success.read(iprot);
- this.__isset.success = true;
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case 1:
- if (field.type == TType.STRUCT) {
- this.ouch = new ThriftIOException();
- this.ouch.read(iprot);
- this.__isset.ouch = 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("open_result");
- oprot.writeStructBegin(struct);
- TField field = new TField();
- if (this.__isset.success) {
- if (this.success != null) {
- field.name = "success";
- field.type = TType.STRUCT;
- field.id = 0;
- oprot.writeFieldBegin(field);
- this.success.write(oprot);
- oprot.writeFieldEnd();
- }
- } else if (this.__isset.ouch) {
- if (this.ouch != null) {
- field.name = "ouch";
- field.type = TType.STRUCT;
- field.id = 1;
- oprot.writeFieldBegin(field);
- this.ouch.write(oprot);
- oprot.writeFieldEnd();
- }
- }
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("open_result(");
- sb.append("success:");
- sb.append(this.success);
- sb.append(",ouch:");
- sb.append(this.ouch);
- sb.append(")");
- return sb.toString();
- }
- }
- public static class append_args implements TBase, java.io.Serializable {
- public Pathname path;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean path = false;
- }
- public append_args() {
- }
- public append_args(
- Pathname path)
- {
- this();
- this.path = path;
- this.__isset.path = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof append_args)
- return this.equals((append_args)that);
- return false;
- }
- public boolean equals(append_args that) {
- if (that == null)
- return false;
- boolean this_present_path = true && (this.path != null);
- boolean that_present_path = true && (that.path != null);
- if (this_present_path || that_present_path) {
- if (!(this_present_path && that_present_path))
- return false;
- if (!this.path.equals(that.path))
- 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.STRUCT) {
- this.path = new Pathname();
- this.path.read(iprot);
- this.__isset.path = 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("append_args");
- oprot.writeStructBegin(struct);
- TField field = new TField();
- if (this.path != null) {
- field.name = "path";
- field.type = TType.STRUCT;
- field.id = 1;
- oprot.writeFieldBegin(field);
- this.path.write(oprot);
- oprot.writeFieldEnd();
- }
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("append_args(");
- sb.append("path:");
- sb.append(this.path);
- sb.append(")");
- return sb.toString();
- }
- }
- public static class append_result implements TBase, java.io.Serializable {
- public ThriftHandle success;
- public ThriftIOException ouch;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean success = false;
- public boolean ouch = false;
- }
- public append_result() {
- }
- public append_result(
- ThriftHandle success,
- ThriftIOException ouch)
- {
- this();
- this.success = success;
- this.__isset.success = true;
- this.ouch = ouch;
- this.__isset.ouch = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof append_result)
- return this.equals((append_result)that);
- return false;
- }
- public boolean equals(append_result that) {
- if (that == null)
- return false;
- boolean this_present_success = true && (this.success != null);
- boolean that_present_success = true && (that.success != null);
- if (this_present_success || that_present_success) {
- if (!(this_present_success && that_present_success))
- return false;
- if (!this.success.equals(that.success))
- return false;
- }
- boolean this_present_ouch = true && (this.ouch != null);
- boolean that_present_ouch = true && (that.ouch != null);
- if (this_present_ouch || that_present_ouch) {
- if (!(this_present_ouch && that_present_ouch))
- return false;
- if (!this.ouch.equals(that.ouch))
- 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 0:
- if (field.type == TType.STRUCT) {
- this.success = new ThriftHandle();
- this.success.read(iprot);
- this.__isset.success = true;
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case 1:
- if (field.type == TType.STRUCT) {
- this.ouch = new ThriftIOException();
- this.ouch.read(iprot);
- this.__isset.ouch = 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("append_result");
- oprot.writeStructBegin(struct);
- TField field = new TField();
- if (this.__isset.success) {
- if (this.success != null) {
- field.name = "success";
- field.type = TType.STRUCT;
- field.id = 0;
- oprot.writeFieldBegin(field);
- this.success.write(oprot);
- oprot.writeFieldEnd();
- }
- } else if (this.__isset.ouch) {
- if (this.ouch != null) {
- field.name = "ouch";
- field.type = TType.STRUCT;
- field.id = 1;
- oprot.writeFieldBegin(field);
- this.ouch.write(oprot);
- oprot.writeFieldEnd();
- }
- }
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("append_result(");
- sb.append("success:");
- sb.append(this.success);
- sb.append(",ouch:");
- sb.append(this.ouch);
- sb.append(")");
- return sb.toString();
- }
- }
- public static class write_args implements TBase, java.io.Serializable {
- public ThriftHandle handle;
- public String data;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean handle = false;
- public boolean data = false;
- }
- public write_args() {
- }
- public write_args(
- ThriftHandle handle,
- String data)
- {
- this();
- this.handle = handle;
- this.__isset.handle = true;
- this.data = data;
- this.__isset.data = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof write_args)
- return this.equals((write_args)that);
- return false;
- }
- public boolean equals(write_args that) {
- if (that == null)
- return false;
- boolean this_present_handle = true && (this.handle != null);
- boolean that_present_handle = true && (that.handle != null);
- if (this_present_handle || that_present_handle) {
- if (!(this_present_handle && that_present_handle))
- return false;
- if (!this.handle.equals(that.handle))
- return false;
- }
- boolean this_present_data = true && (this.data != null);
- boolean that_present_data = true && (that.data != null);
- if (this_present_data || that_present_data) {
- if (!(this_present_data && that_present_data))
- return false;
- if (!this.data.equals(that.data))
- 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.STRUCT) {
- this.handle = new ThriftHandle();
- this.handle.read(iprot);
- this.__isset.handle = true;
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case -1:
- if (field.type == TType.STRING) {
- this.data = iprot.readString();
- this.__isset.data = 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("write_args");
- oprot.writeStructBegin(struct);
- TField field = new TField();
- if (this.handle != null) {
- field.name = "handle";
- field.type = TType.STRUCT;
- field.id = 1;
- oprot.writeFieldBegin(field);
- this.handle.write(oprot);
- oprot.writeFieldEnd();
- }
- if (this.data != null) {
- field.name = "data";
- field.type = TType.STRING;
- field.id = -1;
- oprot.writeFieldBegin(field);
- oprot.writeString(this.data);
- oprot.writeFieldEnd();
- }
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("write_args(");
- sb.append("handle:");
- sb.append(this.handle);
- sb.append(",data:");
- sb.append(this.data);
- sb.append(")");
- return sb.toString();
- }
- }
- public static class write_result implements TBase, java.io.Serializable {
- public boolean success;
- public ThriftIOException ouch;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean success = false;
- public boolean ouch = false;
- }
- public write_result() {
- }
- public write_result(
- boolean success,
- ThriftIOException ouch)
- {
- this();
- this.success = success;
- this.__isset.success = true;
- this.ouch = ouch;
- this.__isset.ouch = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof write_result)
- return this.equals((write_result)that);
- return false;
- }
- public boolean equals(write_result that) {
- if (that == null)
- return false;
- boolean this_present_success = true;
- boolean that_present_success = true;
- if (this_present_success || that_present_success) {
- if (!(this_present_success && that_present_success))
- return false;
- if (this.success != that.success)
- return false;
- }
- boolean this_present_ouch = true && (this.ouch != null);
- boolean that_present_ouch = true && (that.ouch != null);
- if (this_present_ouch || that_present_ouch) {
- if (!(this_present_ouch && that_present_ouch))
- return false;
- if (!this.ouch.equals(that.ouch))
- 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 0:
- if (field.type == TType.BOOL) {
- this.success = iprot.readBool();
- this.__isset.success = true;
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case 1:
- if (field.type == TType.STRUCT) {
- this.ouch = new ThriftIOException();
- this.ouch.read(iprot);
- this.__isset.ouch = 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("write_result");
- oprot.writeStructBegin(struct);
- TField field = new TField();
- if (this.__isset.success) {
- field.name = "success";
- field.type = TType.BOOL;
- field.id = 0;
- oprot.writeFieldBegin(field);
- oprot.writeBool(this.success);
- oprot.writeFieldEnd();
- } else if (this.__isset.ouch) {
- if (this.ouch != null) {
- field.name = "ouch";
- field.type = TType.STRUCT;
- field.id = 1;
- oprot.writeFieldBegin(field);
- this.ouch.write(oprot);
- oprot.writeFieldEnd();
- }
- }
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- public String toString() {
- StringBuilder sb = new StringBuilder("write_result(");
- sb.append("success:");
- sb.append(this.success);
- sb.append(",ouch:");
- sb.append(this.ouch);
- sb.append(")");
- return sb.toString();
- }
- }
- public static class read_args implements TBase, java.io.Serializable {
- public ThriftHandle handle;
- public long offset;
- public int size;
- public final Isset __isset = new Isset();
- public static final class Isset implements java.io.Serializable {
- public boolean handle = false;
- public boolean offset = false;
- public boolean size = false;
- }
- public read_args() {
- }
- public read_args(
- ThriftHandle handle,
- long offset,
- int size)
- {
- this();
- this.handle = handle;
- this.__isset.handle = true;
- this.offset = offset;
- this.__isset.offset = true;
- this.size = size;
- this.__isset.size = true;
- }
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof read_args)
- return this.equals((read_args)that);
- return false;
- }
- public boolean equals(read_args that) {
- if (that == null)
- return false;
- boolean this_present_handle = true && (this.handle != null);
- boolean that_present_handle = true && (that.handle != null);
- if (this_present_handle || that_present_handle) {
- if (!(this_present_handle && that_present_handle))
- return false;
- if (!this.handle.equals(that.handle))
- return false;
- }
- boolean this_present_offset = true;
- boolean that_present_offset = true;
- if (this_present_offset || that_present_offset) {
- if (!(this_present_offset && that_present_offset))
- return false;
- if (this.offset != that.offset)
- return false;
- }
- boolean this_present_size = true;
- boolean that_present_size = true;
- if (this_present_size || that_present_size) {
- if (!(this_present_size && that_present_size))
- return false;
- if (this.size != that.size)
- 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.STRUCT) {
- this.handle = new ThriftHandle();
- this.handle.read(iprot);
- this.__isset.handle = true;
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case -1: