GPUdb C++ API  Version 6.2.0.3
show_system_status.h
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the GPUdb schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 #ifndef __SHOW_SYSTEM_STATUS_H__
7 #define __SHOW_SYSTEM_STATUS_H__
8 
9 namespace gpudb
10 {
11 
21  {
22 
28  options(std::map<std::string, std::string>())
29  {
30  }
31 
39  ShowSystemStatusRequest(const std::map<std::string, std::string>& options_):
40  options( options_ )
41  {
42  }
43 
44  std::map<std::string, std::string> options;
45  };
46 }
47 
48 namespace avro
49 {
50  template<> struct codec_traits<gpudb::ShowSystemStatusRequest>
51  {
52  static void encode(Encoder& e, const gpudb::ShowSystemStatusRequest& v)
53  {
54  ::avro::encode(e, v.options);
55  }
56 
57  static void decode(Decoder& d, gpudb::ShowSystemStatusRequest& v)
58  {
59  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
60  {
61  const std::vector<size_t> fo = rd->fieldOrder();
62 
63  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
64  {
65  switch (*it)
66  {
67  case 0:
68  ::avro::decode(d, v.options);
69  break;
70 
71  default:
72  break;
73  }
74  }
75  }
76  else
77  {
78  ::avro::decode(d, v.options);
79  }
80  }
81  };
82 }
83 
84 namespace gpudb
85 {
86 
96  {
97 
103  statusMap(std::map<std::string, std::string>())
104  {
105  }
106 
107  std::map<std::string, std::string> statusMap;
108  };
109 }
110 
111 namespace avro
112 {
113  template<> struct codec_traits<gpudb::ShowSystemStatusResponse>
114  {
115  static void encode(Encoder& e, const gpudb::ShowSystemStatusResponse& v)
116  {
117  ::avro::encode(e, v.statusMap);
118  }
119 
120  static void decode(Decoder& d, gpudb::ShowSystemStatusResponse& v)
121  {
122  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
123  {
124  const std::vector<size_t> fo = rd->fieldOrder();
125 
126  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
127  {
128  switch (*it)
129  {
130  case 0:
131  ::avro::decode(d, v.statusMap);
132  break;
133 
134  default:
135  break;
136  }
137  }
138  }
139  else
140  {
141  ::avro::decode(d, v.statusMap);
142  }
143  }
144  };
145 }
146 
147 #endif
A set of input parameters for showSystemStatus(const ShowSystemStatusRequest&) const.
std::map< std::string, std::string > options
ShowSystemStatusRequest(const std::map< std::string, std::string > &options_)
Constructs a ShowSystemStatusRequest object with the specified parameters.
ShowSystemStatusResponse()
Constructs a ShowSystemStatusResponse object with default parameter values.
A set of output parameters for showSystemStatus(const ShowSystemStatusRequest&) const.
ShowSystemStatusRequest()
Constructs a ShowSystemStatusRequest object with default parameter values.
std::map< std::string, std::string > statusMap