GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
show_graph_grammar.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_GRAPH_GRAMMAR_H__
7 #define __SHOW_GRAPH_GRAMMAR_H__
8 
9 namespace gpudb
10 {
11 
18  struct ShowGraphGrammarRequest
19  {
20 
26  ShowGraphGrammarRequest() :
27  options(std::map<std::string, std::string>())
28  {
29  }
30 
39  ShowGraphGrammarRequest(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 
52 namespace avro
53 {
54  template<> struct codec_traits<gpudb::ShowGraphGrammarRequest>
55  {
56  static void encode(Encoder& e, const gpudb::ShowGraphGrammarRequest& v)
57  {
58  ::avro::encode(e, v.options);
59  }
60 
61  static void decode(Decoder& d, gpudb::ShowGraphGrammarRequest& v)
62  {
63  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
64  {
65  const std::vector<size_t> fo = rd->fieldOrder();
66 
67  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
68  {
69  switch (*it)
70  {
71  case 0:
72  ::avro::decode(d, v.options);
73  break;
74 
75  default:
76  break;
77  }
78  }
79  }
80  else
81  {
82  ::avro::decode(d, v.options);
83  }
84  }
85  };
86 }
87 
88 namespace gpudb
89 {
90 
97  struct ShowGraphGrammarResponse
98  {
99 
105  ShowGraphGrammarResponse() :
106  result(bool()),
107  componentsJson(std::string()),
108  info(std::map<std::string, std::string>())
109  {
110  }
111 
112  bool result;
113  std::string componentsJson;
114  std::map<std::string, std::string> info;
115  };
116 }
117 
122 namespace avro
123 {
124  template<> struct codec_traits<gpudb::ShowGraphGrammarResponse>
125  {
126  static void encode(Encoder& e, const gpudb::ShowGraphGrammarResponse& v)
127  {
128  ::avro::encode(e, v.result);
129  ::avro::encode(e, v.componentsJson);
130  ::avro::encode(e, v.info);
131  }
132 
133  static void decode(Decoder& d, gpudb::ShowGraphGrammarResponse& v)
134  {
135  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
136  {
137  const std::vector<size_t> fo = rd->fieldOrder();
138 
139  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
140  {
141  switch (*it)
142  {
143  case 0:
144  ::avro::decode(d, v.result);
145  break;
146 
147  case 1:
148  ::avro::decode(d, v.componentsJson);
149  break;
150 
151  case 2:
152  ::avro::decode(d, v.info);
153  break;
154 
155  default:
156  break;
157  }
158  }
159  }
160  else
161  {
162  ::avro::decode(d, v.result);
163  ::avro::decode(d, v.componentsJson);
164  ::avro::decode(d, v.info);
165  }
166  }
167  };
168 }
169 
170 #endif