GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
list_graph.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 __LIST_GRAPH_H__
7 #define __LIST_GRAPH_H__
8 
9 namespace gpudb
10 {
11 
18  struct ListGraphRequest
19  {
20 
25  ListGraphRequest() :
26  graphName(std::string()),
27  options(std::map<std::string, std::string>())
28  {
29  }
30 
39  ListGraphRequest(const std::string& graphName_, const std::map<std::string, std::string>& options_):
40  graphName( graphName_ ),
41  options( options_ )
42  {
43  }
44 
45  std::string graphName;
46  std::map<std::string, std::string> options;
47  };
48 }
49 
54 namespace avro
55 {
56  template<> struct codec_traits<gpudb::ListGraphRequest>
57  {
58  static void encode(Encoder& e, const gpudb::ListGraphRequest& v)
59  {
60  ::avro::encode(e, v.graphName);
61  ::avro::encode(e, v.options);
62  }
63 
64  static void decode(Decoder& d, gpudb::ListGraphRequest& v)
65  {
66  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
67  {
68  const std::vector<size_t> fo = rd->fieldOrder();
69 
70  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
71  {
72  switch (*it)
73  {
74  case 0:
75  ::avro::decode(d, v.graphName);
76  break;
77 
78  case 1:
79  ::avro::decode(d, v.options);
80  break;
81 
82  default:
83  break;
84  }
85  }
86  }
87  else
88  {
89  ::avro::decode(d, v.graphName);
90  ::avro::decode(d, v.options);
91  }
92  }
93  };
94 }
95 
96 namespace gpudb
97 {
98 
105  struct ListGraphResponse
106  {
107 
112  ListGraphResponse() :
113  result(bool()),
114  graphNames(std::vector<std::string>()),
115  numNodes(std::vector<int64_t>()),
116  numEdges(std::vector<int64_t>()),
117  info(std::map<std::string, std::string>())
118  {
119  }
120 
121  bool result;
122  std::vector<std::string> graphNames;
123  std::vector<int64_t> numNodes;
124  std::vector<int64_t> numEdges;
125  std::map<std::string, std::string> info;
126  };
127 }
128 
133 namespace avro
134 {
135  template<> struct codec_traits<gpudb::ListGraphResponse>
136  {
137  static void encode(Encoder& e, const gpudb::ListGraphResponse& v)
138  {
139  ::avro::encode(e, v.result);
140  ::avro::encode(e, v.graphNames);
141  ::avro::encode(e, v.numNodes);
142  ::avro::encode(e, v.numEdges);
143  ::avro::encode(e, v.info);
144  }
145 
146  static void decode(Decoder& d, gpudb::ListGraphResponse& v)
147  {
148  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
149  {
150  const std::vector<size_t> fo = rd->fieldOrder();
151 
152  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
153  {
154  switch (*it)
155  {
156  case 0:
157  ::avro::decode(d, v.result);
158  break;
159 
160  case 1:
161  ::avro::decode(d, v.graphNames);
162  break;
163 
164  case 2:
165  ::avro::decode(d, v.numNodes);
166  break;
167 
168  case 3:
169  ::avro::decode(d, v.numEdges);
170  break;
171 
172  case 4:
173  ::avro::decode(d, v.info);
174  break;
175 
176  default:
177  break;
178  }
179  }
180  }
181  else
182  {
183  ::avro::decode(d, v.result);
184  ::avro::decode(d, v.graphNames);
185  ::avro::decode(d, v.numNodes);
186  ::avro::decode(d, v.numEdges);
187  ::avro::decode(d, v.info);
188  }
189  }
190  };
191 }
192 
193 #endif