GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
kill_proc.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 __KILL_PROC_H__
7 #define __KILL_PROC_H__
8 
9 namespace gpudb
10 {
11 
19  {
20 
25  runId(std::string()),
26  options(std::map<std::string, std::string>())
27  {
28  }
29 
50  KillProcRequest(const std::string& runId_, const std::map<std::string, std::string>& options_):
51  runId( runId_ ),
52  options( options_ )
53  {
54  }
55 
56  std::string runId;
57  std::map<std::string, std::string> options;
58  };
59 }
60 
61 namespace avro
62 {
63  template<> struct codec_traits<gpudb::KillProcRequest>
64  {
65  static void encode(Encoder& e, const gpudb::KillProcRequest& v)
66  {
67  ::avro::encode(e, v.runId);
68  ::avro::encode(e, v.options);
69  }
70 
71  static void decode(Decoder& d, gpudb::KillProcRequest& v)
72  {
73  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
74  {
75  const std::vector<size_t> fo = rd->fieldOrder();
76 
77  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
78  {
79  switch (*it)
80  {
81  case 0:
82  ::avro::decode(d, v.runId);
83  break;
84 
85  case 1:
86  ::avro::decode(d, v.options);
87  break;
88 
89  default:
90  break;
91  }
92  }
93  }
94  else
95  {
96  ::avro::decode(d, v.runId);
97  ::avro::decode(d, v.options);
98  }
99  }
100  };
101 }
102 
103 namespace gpudb
104 {
105 
113  {
114 
119  runIds(std::vector<std::string>()),
120  info(std::map<std::string, std::string>())
121  {
122  }
123 
124  std::vector<std::string> runIds;
125  std::map<std::string, std::string> info;
126  };
127 }
128 
129 namespace avro
130 {
131  template<> struct codec_traits<gpudb::KillProcResponse>
132  {
133  static void encode(Encoder& e, const gpudb::KillProcResponse& v)
134  {
135  ::avro::encode(e, v.runIds);
136  ::avro::encode(e, v.info);
137  }
138 
139  static void decode(Decoder& d, gpudb::KillProcResponse& v)
140  {
141  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
142  {
143  const std::vector<size_t> fo = rd->fieldOrder();
144 
145  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
146  {
147  switch (*it)
148  {
149  case 0:
150  ::avro::decode(d, v.runIds);
151  break;
152 
153  case 1:
154  ::avro::decode(d, v.info);
155  break;
156 
157  default:
158  break;
159  }
160  }
161  }
162  else
163  {
164  ::avro::decode(d, v.runIds);
165  ::avro::decode(d, v.info);
166  }
167  }
168  };
169 }
170 
171 #endif
KillProcResponse()
Constructs a KillProcResponse object with default parameter values.
Definition: kill_proc.h:118
std::string runId
Definition: kill_proc.h:56
KillProcRequest()
Constructs a KillProcRequest object with default parameter values.
Definition: kill_proc.h:24
A set of input parameters for const.
Definition: kill_proc.h:18
std::map< std::string, std::string > options
Definition: kill_proc.h:57
std::vector< std::string > runIds
Definition: kill_proc.h:124
A set of output parameters for const.
Definition: kill_proc.h:112
KillProcRequest(const std::string &runId_, const std::map< std::string, std::string > &options_)
Constructs a KillProcRequest object with the specified parameters.
Definition: kill_proc.h:50
std::map< std::string, std::string > info
Definition: kill_proc.h:125