GPUdb C++ API  Version 6.2.0.3
create_table_monitor.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 __CREATE_TABLE_MONITOR_H__
7 #define __CREATE_TABLE_MONITOR_H__
8 
9 namespace gpudb
10 {
11 
28  {
29 
35  tableName(std::string()),
36  options(std::map<std::string, std::string>())
37  {
38  }
39 
49  CreateTableMonitorRequest(const std::string& tableName_, const std::map<std::string, std::string>& options_):
50  tableName( tableName_ ),
51  options( options_ )
52  {
53  }
54 
55  std::string tableName;
56  std::map<std::string, std::string> options;
57  };
58 }
59 
60 namespace avro
61 {
62  template<> struct codec_traits<gpudb::CreateTableMonitorRequest>
63  {
64  static void encode(Encoder& e, const gpudb::CreateTableMonitorRequest& v)
65  {
66  ::avro::encode(e, v.tableName);
67  ::avro::encode(e, v.options);
68  }
69 
70  static void decode(Decoder& d, gpudb::CreateTableMonitorRequest& v)
71  {
72  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
73  {
74  const std::vector<size_t> fo = rd->fieldOrder();
75 
76  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
77  {
78  switch (*it)
79  {
80  case 0:
81  ::avro::decode(d, v.tableName);
82  break;
83 
84  case 1:
85  ::avro::decode(d, v.options);
86  break;
87 
88  default:
89  break;
90  }
91  }
92  }
93  else
94  {
95  ::avro::decode(d, v.tableName);
96  ::avro::decode(d, v.options);
97  }
98  }
99  };
100 }
101 
102 namespace gpudb
103 {
104 
121  {
122 
128  topicId(std::string()),
129  tableName(std::string()),
130  typeSchema(std::string())
131  {
132  }
133 
134  std::string topicId;
135  std::string tableName;
136  std::string typeSchema;
137  };
138 }
139 
140 namespace avro
141 {
142  template<> struct codec_traits<gpudb::CreateTableMonitorResponse>
143  {
144  static void encode(Encoder& e, const gpudb::CreateTableMonitorResponse& v)
145  {
146  ::avro::encode(e, v.topicId);
147  ::avro::encode(e, v.tableName);
148  ::avro::encode(e, v.typeSchema);
149  }
150 
151  static void decode(Decoder& d, gpudb::CreateTableMonitorResponse& v)
152  {
153  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
154  {
155  const std::vector<size_t> fo = rd->fieldOrder();
156 
157  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
158  {
159  switch (*it)
160  {
161  case 0:
162  ::avro::decode(d, v.topicId);
163  break;
164 
165  case 1:
166  ::avro::decode(d, v.tableName);
167  break;
168 
169  case 2:
170  ::avro::decode(d, v.typeSchema);
171  break;
172 
173  default:
174  break;
175  }
176  }
177  }
178  else
179  {
180  ::avro::decode(d, v.topicId);
181  ::avro::decode(d, v.tableName);
182  ::avro::decode(d, v.typeSchema);
183  }
184  }
185  };
186 }
187 
188 #endif
std::map< std::string, std::string > options
A set of output parameters for createTableMonitor(const CreateTableMonitorRequest&) const...
CreateTableMonitorResponse()
Constructs a CreateTableMonitorResponse object with default parameter values.
A set of input parameters for createTableMonitor(const CreateTableMonitorRequest&) const...
CreateTableMonitorRequest()
Constructs a CreateTableMonitorRequest object with default parameter values.
CreateTableMonitorRequest(const std::string &tableName_, const std::map< std::string, std::string > &options_)
Constructs a CreateTableMonitorRequest object with the specified parameters.