6 #ifndef __SHOW_PROC_H__ 7 #define __SHOW_PROC_H__ 26 options(std::map<std::string, std::string>())
51 ShowProcRequest(
const std::string& procName_,
const std::map<std::string, std::string>& options_):
58 std::map<std::string, std::string>
options;
74 if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
76 const std::vector<size_t> fo = rd->fieldOrder();
78 for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
120 procNames(std::vector<std::string>()),
121 executionModes(std::vector<std::string>()),
122 files(std::vector<std::map<std::string, std::vector<uint8_t> > >()),
123 commands(std::vector<std::string>()),
124 args(std::vector<std::vector<std::string> >()),
125 options(std::vector<std::map<std::string, std::string> >())
131 std::vector<std::map<std::string, std::vector<uint8_t> > >
files;
133 std::vector<std::vector<std::string> >
args;
134 std::vector<std::map<std::string, std::string> >
options;
146 ::avro::encode(e, v.
files);
148 ::avro::encode(e, v.
args);
154 if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
156 const std::vector<size_t> fo = rd->fieldOrder();
158 for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
171 ::avro::decode(d, v.
files);
179 ::avro::decode(d, v.
args);
195 ::avro::decode(d, v.
files);
197 ::avro::decode(d, v.
args);
std::vector< std::string > executionModes
A set of input parameters for showProc(const ShowProcRequest&) const.
std::map< std::string, std::string > options
std::vector< std::map< std::string, std::string > > options
ShowProcRequest()
Constructs a ShowProcRequest object with default parameter values.
std::vector< std::string > procNames
ShowProcRequest(const std::string &procName_, const std::map< std::string, std::string > &options_)
Constructs a ShowProcRequest object with the specified parameters.
std::vector< std::map< std::string, std::vector< uint8_t > > > files
std::vector< std::vector< std::string > > args
A set of output parameters for showProc(const ShowProcRequest&) const.
ShowProcResponse()
Constructs a ShowProcResponse object with default parameter values.
std::vector< std::string > commands