/* rpcgen generates code that results in unused-variable warnings */ #ifdef RPC_XDR %#include "rpc-pragmas.h" #endif enum JsonResponseFormat { GB_JSON_NONE = 0, GB_JSON_PLAIN = 1, GB_JSON_SPACED = 2, GB_JSON_PRETTY = 3, GB_JSON_DEFAULT = 4, GB_JSON_MAX }; struct blockCreate { char ipaddr[255]; char volume[255]; char gbid[127]; /* uuid */ char passwd[127]; /* uuid */ u_quad_t size; char block_name[255]; string block_hosts<>; /* for multiple tpg's creation */ bool auth_mode; }; struct blockModify { char volume[255]; char block_name[255]; char gbid[127]; char passwd[127]; bool auth_mode; }; struct blockCreateCli { char volume[255]; u_quad_t size; u_int mpath; /* HA request count */ bool auth_mode; bool prealloc; char block_name[255]; string block_hosts<>; enum JsonResponseFormat json_resp; }; struct blockDeleteCli { char block_name[255]; char volume[255]; bool force; enum JsonResponseFormat json_resp; }; struct blockDelete { char block_name[255]; char gbid[127]; }; struct blockInfoCli { char block_name[255]; char volume[255]; enum JsonResponseFormat json_resp; }; struct blockListCli { char volume[255]; u_quad_t offset; /* dentry d_name offset */ enum JsonResponseFormat json_resp; }; struct blockModifyCli { char block_name[255]; char volume[255]; bool auth_mode; enum JsonResponseFormat json_resp; }; struct blockResponse { int exit; /* exit code of the command */ string out<>; /* output; TODO: return respective objects */ u_quad_t offset; /* dentry d_name offset */ opaque xdata<>; /* future reserve */ }; program GLUSTER_BLOCK { version GLUSTER_BLOCK_VERS { blockResponse BLOCK_CREATE(blockCreate) = 1; blockResponse BLOCK_DELETE(blockDelete) = 2; blockResponse BLOCK_MODIFY(blockModify) = 3; } = 1; } = 21215311; /* B2 L12 O15 C3 K11 */ program GLUSTER_BLOCK_CLI { version GLUSTER_BLOCK_CLI_VERS { blockResponse BLOCK_CREATE_CLI(blockCreateCli) = 1; blockResponse BLOCK_LIST_CLI(blockListCli) = 2; blockResponse BLOCK_INFO_CLI(blockInfoCli) = 3; blockResponse BLOCK_DELETE_CLI(blockDeleteCli) = 4; blockResponse BLOCK_MODIFY_CLI(blockModifyCli) = 5; } = 1; } = 212153113; /* B2 L12 O15 C3 K11 C3 */