FETPAPI 0.3.0.0
This project provides C++ classes which facilitate the developement of ETP1.2 clients and servers.
All Classes Namespaces Functions Variables Pages
EtpMessages.h
1#ifndef ETP_MESSAGES__
2#define ETP_MESSAGES__
3
4#include <chrono>
5#include <map>
6#include <vector>
7#include <string>
8#include <sstream>
9#include <iostream>
10#include <array>
11#include <boost/optional.hpp>
12#include <boost/any.hpp>
13#include <avro/Specific.hh>
14#include <avro/Encoder.hh>
15#include <avro/Decoder.hh>
16
17namespace Energistics {
18 namespace Etp {
19 namespace v12 {
20 namespace Datatypes {
21 enum class Protocol : uint16_t {
22 Core = 0,
23 ChannelStreaming = 1,
24 ChannelDataFrame = 2,
25 Discovery = 3,
26 Store = 4,
27 StoreNotification = 5,
28 GrowingObject = 6,
29 GrowingObjectNotification = 7,
30 DEPRECATED_8 = 8,
31 DataArray = 9,
32 RESERVED_10 = 10,
33 RESERVED_11 = 11,
34 RESERVED_12 = 12,
35 DiscoveryQuery = 13,
36 StoreQuery = 14,
37 RESERVED_15 = 15,
38 GrowingObjectQuery = 16,
39 RESERVED_17 = 17,
40 Transaction = 18,
41 RESERVED_19 = 19,
42 RESERVED_20 = 20,
43 ChannelSubscribe = 21,
44 ChannelDataLoad = 22,
45 RESERVED_23 = 23,
46 Dataspace = 24,
47 DataspaceOSDU = 2424,
48 SupportedTypes = 25
49 };
50 }
51 }
52 }
53}
54namespace avro {
55 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Protocol> {
56 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Protocol& v) {
57 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(v));
58 }
59 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Protocol& v) {
60 v = static_cast<Energistics::Etp::v12::Datatypes::Protocol>(e.decodeEnum());
61 }
62 };
63}
64
65namespace Energistics {
66 namespace Etp {
67 namespace v12 {
68 namespace Protocol {
69 namespace Core {
70 struct Acknowledge {
71 static constexpr int messageTypeId=1001;
72 int protocolId;
73 };
74 }
75 }
76 }
77 }
78}
79namespace avro {
80 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Core::Acknowledge> {
81 static void encode(Encoder&, const Energistics::Etp::v12::Protocol::Core::Acknowledge&) {
82 }
83 static void decode(Decoder&, Energistics::Etp::v12::Protocol::Core::Acknowledge&) {
84 }
85 };
86}
87namespace Energistics {
88 namespace Etp {
89 namespace v12 {
90 namespace Protocol {
91 namespace Core {
92 struct Authorize {
93 std::string authorization;
94 std::map<std::string, std::string> supplementalAuthorization;
95 static constexpr int messageTypeId=6;
96 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Core);
97 };
98 }
99 }
100 }
101 }
102}
103namespace avro {
104 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Core::Authorize> {
105 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Core::Authorize& v) {
106 avro::encode(e, v.authorization);
107 avro::encode(e, v.supplementalAuthorization);
108 }
109 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Core::Authorize& v) {
110 avro::decode(e, v.authorization);
111 avro::decode(e, v.supplementalAuthorization);
112 }
113 };
114}
115namespace Energistics {
116 namespace Etp {
117 namespace v12 {
118 namespace Protocol {
119 namespace Core {
121 bool success=false;
122 std::vector<std::string> challenges;
123 static constexpr int messageTypeId=7;
124 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Core);
125 };
126 }
127 }
128 }
129 }
130}
131namespace avro {
132 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Core::AuthorizeResponse> {
133 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Core::AuthorizeResponse& v) {
134 avro::encode(e, v.success);
135 avro::encode(e, v.challenges);
136 }
137 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Core::AuthorizeResponse& v) {
138 avro::decode(e, v.success);
139 avro::decode(e, v.challenges);
140 }
141 };
142}
143namespace Energistics {
144 namespace Etp {
145 namespace v12 {
146 namespace Protocol {
147 namespace Core {
149 std::string reason;
150 static constexpr int messageTypeId=5;
151 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Core);
152 };
153 }
154 }
155 }
156 }
157}
158namespace avro {
159 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Core::CloseSession> {
160 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Core::CloseSession& v) {
161 avro::encode(e, v.reason);
162 }
163 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Core::CloseSession& v) {
164 avro::decode(e, v.reason);
165 }
166 };
167}
168namespace Energistics {
169 namespace Etp {
170 namespace v12 {
171 namespace Protocol {
172 namespace Core {
173 struct Pong {
174 int64_t currentDateTime = std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::system_clock::now().time_since_epoch()).count();
175 static constexpr int messageTypeId=9;
176 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Core);
177 };
178 }
179 }
180 }
181 }
182}
183namespace avro {
184 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Core::Pong> {
185 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Core::Pong& v) {
186 avro::encode(e, v.currentDateTime);
187 }
188 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Core::Pong& v) {
189 avro::decode(e, v.currentDateTime);
190 }
191 };
192}
193namespace Energistics {
194 namespace Etp {
195 namespace v12 {
196 namespace Protocol {
197 namespace Core {
198 struct Ping {
199 int64_t currentDateTime = std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::system_clock::now().time_since_epoch()).count();
200 static constexpr int messageTypeId=8;
201 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Core);
202 };
203 }
204 }
205 }
206 }
207}
208namespace avro {
209 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Core::Ping> {
210 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Core::Ping& v) {
211 avro::encode(e, v.currentDateTime);
212 }
213 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Core::Ping& v) {
214 avro::decode(e, v.currentDateTime);
215 }
216 };
217}
218namespace Energistics {
219 namespace Etp {
220 namespace v12 {
221 namespace Protocol {
222 namespace DataArray {
224 std::map<std::string, std::string> success;
225 static constexpr int messageTypeId=10;
226 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataArray);
227 };
228 }
229 }
230 }
231 }
232}
233namespace avro {
234 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::PutDataArraysResponse> {
235 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataArray::PutDataArraysResponse& v) {
236 avro::encode(e, v.success);
237 }
239 avro::decode(e, v.success);
240 }
241 };
242}
243namespace Energistics {
244 namespace Etp {
245 namespace v12 {
246 namespace Protocol {
247 namespace DataArray {
249 std::map<std::string, std::string> success;
250 static constexpr int messageTypeId=11;
251 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataArray);
252 };
253 }
254 }
255 }
256 }
257}
258namespace avro {
259 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::PutDataSubarraysResponse> {
260 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataArray::PutDataSubarraysResponse& v) {
261 avro::encode(e, v.success);
262 }
264 avro::decode(e, v.success);
265 }
266 };
267}
268namespace Energistics {
269 namespace Etp {
270 namespace v12 {
271 namespace Protocol {
272 namespace DataArray {
274 std::map<std::string, std::string> success;
275 static constexpr int messageTypeId=12;
276 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataArray);
277 };
278 }
279 }
280 }
281 }
282}
283namespace avro {
284 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::PutUninitializedDataArraysResponse> {
286 avro::encode(e, v.success);
287 }
289 avro::decode(e, v.success);
290 }
291 };
292}
293namespace Energistics {
294 namespace Etp {
295 namespace v12 {
296 namespace Protocol {
297 namespace Dataspace {
299 std::map<std::string, std::string> uris;
300 static constexpr int messageTypeId=4;
301 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Dataspace);
302 };
303 }
304 }
305 }
306 }
307}
308namespace avro {
309 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Dataspace::DeleteDataspaces> {
310 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Dataspace::DeleteDataspaces& v) {
311 avro::encode(e, v.uris);
312 }
313 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Dataspace::DeleteDataspaces& v) {
314 avro::decode(e, v.uris);
315 }
316 };
317}
318namespace Energistics {
319 namespace Etp {
320 namespace v12 {
321 namespace Protocol {
322 namespace Dataspace {
324 std::map<std::string, std::string> success;
325 static constexpr int messageTypeId=5;
326 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Dataspace);
327 };
328 }
329 }
330 }
331 }
332}
333namespace avro {
334 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Dataspace::DeleteDataspacesResponse> {
335 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Dataspace::DeleteDataspacesResponse& v) {
336 avro::encode(e, v.success);
337 }
339 avro::decode(e, v.success);
340 }
341 };
342}
343namespace Energistics {
344 namespace Etp {
345 namespace v12 {
346 namespace Protocol {
347 namespace Dataspace {
349 boost::optional<int64_t> storeLastWriteFilter;
350 bool has_storeLastWriteFilter() const { return storeLastWriteFilter.is_initialized(); }
351 int64_t get_storeLastWriteFilter() const { return storeLastWriteFilter.get(); }
352 static constexpr int messageTypeId=1;
353 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Dataspace);
354 };
355 }
356 }
357 }
358 }
359}
360namespace avro {
361 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Dataspace::GetDataspaces> {
362 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Dataspace::GetDataspaces& v) {
363 avro::encode(e, v.storeLastWriteFilter);
364 }
365 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Dataspace::GetDataspaces& v) {
366 avro::decode(e, v.storeLastWriteFilter);
367 }
368 };
369}
370namespace Energistics {
371 namespace Etp {
372 namespace v12 {
373 namespace Protocol {
374 namespace Dataspace {
376 std::map<std::string, std::string> success;
377 static constexpr int messageTypeId=6;
378 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Dataspace);
379 };
380 }
381 }
382 }
383 }
384}
385namespace avro {
386 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Dataspace::PutDataspacesResponse> {
387 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Dataspace::PutDataspacesResponse& v) {
388 avro::encode(e, v.success);
389 }
391 avro::decode(e, v.success);
392 }
393 };
394}
395namespace Energistics {
396 namespace Etp {
397 namespace v12 {
398 namespace Protocol {
399 namespace Discovery {
401 std::string dataspaceUri;
402 boost::optional<int64_t> deleteTimeFilter;
403 bool has_deleteTimeFilter() const { return deleteTimeFilter.is_initialized(); }
404 int64_t get_deleteTimeFilter() const { return deleteTimeFilter.get(); }
405 std::vector<std::string> dataObjectTypes;
406 static constexpr int messageTypeId=5;
407 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Discovery);
408 };
409 }
410 }
411 }
412 }
413}
414namespace avro {
415 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Discovery::GetDeletedResources> {
416 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Discovery::GetDeletedResources& v) {
417 avro::encode(e, v.dataspaceUri);
418 avro::encode(e, v.deleteTimeFilter);
419 avro::encode(e, v.dataObjectTypes);
420 }
421 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Discovery::GetDeletedResources& v) {
422 avro::decode(e, v.dataspaceUri);
423 avro::decode(e, v.deleteTimeFilter);
424 avro::decode(e, v.dataObjectTypes);
425 }
426 };
427}
428namespace Energistics {
429 namespace Etp {
430 namespace v12 {
431 namespace Protocol {
432 namespace StoreNotification {
434 std::map<std::string, std::string> success;
435 static constexpr int messageTypeId=10;
436 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreNotification);
437 };
438 }
439 }
440 }
441 }
442}
443namespace avro {
444 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::SubscribeNotificationsResponse> {
446 avro::encode(e, v.success);
447 }
449 avro::decode(e, v.success);
450 }
451 };
452}
453namespace Energistics {
454 namespace Etp {
455 namespace v12 {
456 namespace Protocol {
457 namespace Store {
459 std::map<std::string, std::string> uris;
460 bool pruneContainedObjects=false;
461 static constexpr int messageTypeId=3;
462 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Store);
463 };
464 }
465 }
466 }
467 }
468}
469namespace avro {
470 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Store::DeleteDataObjects> {
471 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Store::DeleteDataObjects& v) {
472 avro::encode(e, v.uris);
473 avro::encode(e, v.pruneContainedObjects);
474 }
475 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Store::DeleteDataObjects& v) {
476 avro::decode(e, v.uris);
477 avro::decode(e, v.pruneContainedObjects);
478 }
479 };
480}
481namespace Energistics {
482 namespace Etp {
483 namespace v12 {
484 namespace Protocol {
485 namespace Store {
487 std::map<std::string, std::string> uris;
488 std::string format = "xml";
489 static constexpr int messageTypeId=1;
490 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Store);
491 };
492 }
493 }
494 }
495 }
496}
497namespace avro {
498 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Store::GetDataObjects> {
499 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Store::GetDataObjects& v) {
500 avro::encode(e, v.uris);
501 avro::encode(e, v.format);
502 }
503 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Store::GetDataObjects& v) {
504 avro::decode(e, v.uris);
505 avro::decode(e, v.format);
506 }
507 };
508}
509namespace Energistics {
510 namespace Etp {
511 namespace v12 {
512 namespace Protocol {
513 namespace Transaction {
515 bool readOnly=false;
516 std::string message;
517 std::vector<std::string> dataspaceUris;
518 static constexpr int messageTypeId=1;
519 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Transaction);
520 };
521 }
522 }
523 }
524 }
525}
526namespace avro {
527 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Transaction::StartTransaction> {
528 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Transaction::StartTransaction& v) {
529 avro::encode(e, v.readOnly);
530 avro::encode(e, v.message);
531 avro::encode(e, v.dataspaceUris);
532 }
533 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Transaction::StartTransaction& v) {
534 avro::decode(e, v.readOnly);
535 avro::decode(e, v.message);
536 avro::decode(e, v.dataspaceUris);
537 }
538 };
539}
540namespace Energistics {
541 namespace Etp {
542 namespace v12 {
543 namespace Datatypes {
544 enum class AnyArrayType {
545 arrayOfBoolean=0,
546 arrayOfInt=1,
547 arrayOfLong=2,
548 arrayOfFloat=3,
549 arrayOfDouble=4,
550 arrayOfString=5,
551 bytes=6
552 };
553 }
554 }
555 }
556}
557namespace avro {
558 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::AnyArrayType> {
559 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::AnyArrayType& v) {
560 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::AnyArrayType>::type>(v));
561 }
562 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::AnyArrayType& v) {
563 v = static_cast<Energistics::Etp::v12::Datatypes::AnyArrayType>(e.decodeEnum());
564 }
565 };
566}
567namespace Energistics {
568 namespace Etp {
569 namespace v12 {
570 namespace Datatypes {
571 enum class AnyLogicalArrayType {
572 arrayOfBoolean=0,
573 arrayOfInt8=1,
574 arrayOfUInt8=2,
575 arrayOfInt16LE=3,
576 arrayOfInt32LE=4,
577 arrayOfInt64LE=5,
578 arrayOfUInt16LE=6,
579 arrayOfUInt32LE=7,
580 arrayOfUInt64LE=8,
581 arrayOfFloat32LE=9,
582 arrayOfDouble64LE=10,
583 arrayOfInt16BE=11,
584 arrayOfInt32BE=12,
585 arrayOfInt64BE=13,
586 arrayOfUInt16BE=14,
587 arrayOfUInt32BE=15,
588 arrayOfUInt64BE=16,
589 arrayOfFloat32BE=17,
590 arrayOfDouble64BE=18,
591 arrayOfString=19,
592 arrayOfCustom=20
593 };
594 }
595 }
596 }
597}
598namespace avro {
599 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::AnyLogicalArrayType> {
600 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::AnyLogicalArrayType& v) {
601 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::AnyLogicalArrayType>::type>(v));
602 }
603 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::AnyLogicalArrayType& v) {
604 v = static_cast<Energistics::Etp::v12::Datatypes::AnyLogicalArrayType>(e.decodeEnum());
605 }
606 };
607}
608namespace Energistics {
609 namespace Etp {
610 namespace v12 {
611 namespace Datatypes {
613 std::vector<bool> values;
614 };
615 }
616 }
617 }
618}
619namespace avro {
620 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfBoolean> {
621 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ArrayOfBoolean& v) {
622 avro::encode(e, v.values);
623 }
624 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ArrayOfBoolean& v) {
625 avro::decode(e, v.values);
626 }
627 };
628}
629namespace Energistics {
630 namespace Etp {
631 namespace v12 {
632 namespace Datatypes {
634 std::vector<std::string> values;
635 };
636 }
637 }
638 }
639}
640namespace avro {
641 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfBytes> {
642 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ArrayOfBytes& v) {
643 avro::encode(e, v.values);
644 }
645 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ArrayOfBytes& v) {
646 avro::decode(e, v.values);
647 }
648 };
649}
650namespace Energistics {
651 namespace Etp {
652 namespace v12 {
653 namespace Datatypes {
655 std::vector<double> values;
656 };
657 }
658 }
659 }
660}
661namespace avro {
662 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfDouble> {
663 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ArrayOfDouble& v) {
664 avro::encode(e, v.values);
665 }
666 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ArrayOfDouble& v) {
667 avro::decode(e, v.values);
668 }
669 };
670}
671namespace Energistics {
672 namespace Etp {
673 namespace v12 {
674 namespace Datatypes {
676 std::vector<float> values;
677 };
678 }
679 }
680 }
681}
682namespace avro {
683 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfFloat> {
684 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ArrayOfFloat& v) {
685 avro::encode(e, v.values);
686 }
687 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ArrayOfFloat& v) {
688 avro::decode(e, v.values);
689 }
690 };
691}
692namespace Energistics {
693 namespace Etp {
694 namespace v12 {
695 namespace Datatypes {
696 struct ArrayOfInt {
697 std::vector<int32_t> values;
698 };
699 }
700 }
701 }
702}
703namespace avro {
704 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfInt> {
705 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ArrayOfInt& v) {
706 avro::encode(e, v.values);
707 }
708 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ArrayOfInt& v) {
709 avro::decode(e, v.values);
710 }
711 };
712}
713namespace Energistics {
714 namespace Etp {
715 namespace v12 {
716 namespace Datatypes {
717 struct ArrayOfLong {
718 std::vector<int64_t> values;
719 };
720 }
721 }
722 }
723}
724namespace avro {
725 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfLong> {
726 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ArrayOfLong& v) {
727 avro::encode(e, v.values);
728 }
729 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ArrayOfLong& v) {
730 avro::decode(e, v.values);
731 }
732 };
733}
734namespace Energistics {
735 namespace Etp {
736 namespace v12 {
737 namespace Datatypes {
739 std::vector<boost::optional<bool>> values;
740 };
741 }
742 }
743 }
744}
745namespace avro {
746 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfNullableBoolean> {
747 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ArrayOfNullableBoolean& v) {
748 avro::encode(e, v.values);
749 }
750 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ArrayOfNullableBoolean& v) {
751 avro::decode(e, v.values);
752 }
753 };
754}
755namespace Energistics {
756 namespace Etp {
757 namespace v12 {
758 namespace Datatypes {
760 std::vector<boost::optional<int32_t>> values;
761 };
762 }
763 }
764 }
765}
766namespace avro {
767 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfNullableInt> {
768 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ArrayOfNullableInt& v) {
769 avro::encode(e, v.values);
770 }
771 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ArrayOfNullableInt& v) {
772 avro::decode(e, v.values);
773 }
774 };
775}
776namespace Energistics {
777 namespace Etp {
778 namespace v12 {
779 namespace Datatypes {
781 std::vector<boost::optional<int64_t>> values;
782 };
783 }
784 }
785 }
786}
787namespace avro {
788 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfNullableLong> {
789 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ArrayOfNullableLong& v) {
790 avro::encode(e, v.values);
791 }
792 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ArrayOfNullableLong& v) {
793 avro::decode(e, v.values);
794 }
795 };
796}
797namespace Energistics {
798 namespace Etp {
799 namespace v12 {
800 namespace Datatypes {
802 std::vector<std::string> values;
803 };
804 }
805 }
806 }
807}
808namespace avro {
809 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfString> {
810 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ArrayOfString& v) {
811 avro::encode(e, v.values);
812 }
813 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ArrayOfString& v) {
814 avro::decode(e, v.values);
815 }
816 };
817}
818namespace Energistics {
819 namespace Etp {
820 namespace v12 {
821 namespace Protocol {
822 namespace Store {
824 std::map<std::string, Energistics::Etp::v12::Datatypes::ArrayOfString> deletedUris;
825 static constexpr int messageTypeId=10;
826 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Store);
827 };
828 }
829 }
830 }
831 }
832}
833namespace avro {
834 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Store::DeleteDataObjectsResponse> {
835 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Store::DeleteDataObjectsResponse& v) {
836 avro::encode(e, v.deletedUris);
837 }
839 avro::decode(e, v.deletedUris);
840 }
841 };
842}
843namespace Energistics {
844 namespace Etp {
845 namespace v12 {
846 namespace Datatypes {
848 private:
849 size_t idx_=0;
850 boost::any value_;
851
852 public:
853 size_t idx() const { return idx_; }
854 Energistics::Etp::v12::Datatypes::ArrayOfBoolean const & get_ArrayOfBoolean() const {
855 if (idx_ != 0) {
856 throw avro::Exception("Invalid type for union.");
857 }
858 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfBoolean const & >(value_);
859 }
861 if (idx_ != 0) {
862 throw avro::Exception("Invalid type for union.");
863 }
864 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfBoolean& >(value_);
865 }
866 void set_ArrayOfBoolean(const Energistics::Etp::v12::Datatypes::ArrayOfBoolean& v) {
867 idx_ = 0;
868 value_ = v;
869 }
870 Energistics::Etp::v12::Datatypes::ArrayOfInt const & get_ArrayOfInt() const {
871 if (idx_ != 1) {
872 throw avro::Exception("Invalid type for union.");
873 }
874 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfInt const & >(value_);
875 }
877 if (idx_ != 1) {
878 throw avro::Exception("Invalid type for union.");
879 }
880 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfInt& >(value_);
881 }
882 void set_ArrayOfInt(const Energistics::Etp::v12::Datatypes::ArrayOfInt& v) {
883 idx_ = 1;
884 value_ = v;
885 }
886 Energistics::Etp::v12::Datatypes::ArrayOfLong const & get_ArrayOfLong() const {
887 if (idx_ != 2) {
888 throw avro::Exception("Invalid type for union.");
889 }
890 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfLong const & >(value_);
891 }
893 if (idx_ != 2) {
894 throw avro::Exception("Invalid type for union.");
895 }
896 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfLong& >(value_);
897 }
898 void set_ArrayOfLong(const Energistics::Etp::v12::Datatypes::ArrayOfLong& v) {
899 idx_ = 2;
900 value_ = v;
901 }
902 Energistics::Etp::v12::Datatypes::ArrayOfFloat const & get_ArrayOfFloat() const {
903 if (idx_ != 3) {
904 throw avro::Exception("Invalid type for union.");
905 }
906 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfFloat const & >(value_);
907 }
909 if (idx_ != 3) {
910 throw avro::Exception("Invalid type for union.");
911 }
912 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfFloat& >(value_);
913 }
914 void set_ArrayOfFloat(const Energistics::Etp::v12::Datatypes::ArrayOfFloat& v) {
915 idx_ = 3;
916 value_ = v;
917 }
918 Energistics::Etp::v12::Datatypes::ArrayOfDouble const & get_ArrayOfDouble() const {
919 if (idx_ != 4) {
920 throw avro::Exception("Invalid type for union.");
921 }
922 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfDouble const & >(value_);
923 }
925 if (idx_ != 4) {
926 throw avro::Exception("Invalid type for union.");
927 }
928 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfDouble& >(value_);
929 }
930 void set_ArrayOfDouble(const Energistics::Etp::v12::Datatypes::ArrayOfDouble& v) {
931 idx_ = 4;
932 value_ = v;
933 }
934 Energistics::Etp::v12::Datatypes::ArrayOfString const & get_ArrayOfString() const {
935 if (idx_ != 5) {
936 throw avro::Exception("Invalid type for union.");
937 }
938 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfString const & >(value_);
939 }
941 if (idx_ != 5) {
942 throw avro::Exception("Invalid type for union.");
943 }
944 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfString& >(value_);
945 }
946 void set_ArrayOfString(const Energistics::Etp::v12::Datatypes::ArrayOfString& v) {
947 idx_ = 5;
948 value_ = v;
949 }
950 std::string const & get_bytes() const {
951 if (idx_ != 6) {
952 throw avro::Exception("Invalid type for union.");
953 }
954 return boost::any_cast< std::string const & >(value_);
955 }
956 std::string& get_bytes() {
957 if (idx_ != 6) {
958 throw avro::Exception("Invalid type for union.");
959 }
960 return boost::any_cast< std::string& >(value_);
961 }
962 void set_bytes(const std::string& v) {
963 idx_ = 6;
964 value_ = v;
965 }
966 };
967 }
968 }
969 }
970}
971namespace avro {
972 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::AnyArrayitem_t> {
973
974 static void encode(Encoder& e, Energistics::Etp::v12::Datatypes::AnyArrayitem_t v) {
975
976 e.encodeUnionIndex(v.idx());
977 switch (v.idx()) {
978 case 0:
979 avro::encode(e, v.get_ArrayOfBoolean());
980 break;
981 case 1:
982 avro::encode(e, v.get_ArrayOfInt());
983 break;
984 case 2:
985 avro::encode(e, v.get_ArrayOfLong());
986 break;
987 case 3:
988 avro::encode(e, v.get_ArrayOfFloat());
989 break;
990 case 4:
991 avro::encode(e, v.get_ArrayOfDouble());
992 break;
993 case 5:
994 avro::encode(e, v.get_ArrayOfString());
995 break;
996 case 6:
997 avro::encode(e, v.get_bytes());
998 break;
999 }
1000 }
1001 static void decode(Decoder& d, Energistics::Etp::v12::Datatypes::AnyArrayitem_t& v) {
1002
1003 size_t n = d.decodeUnionIndex();
1004 if (n >= 7) { throw avro::Exception("Union index too big"); }
1005 switch (n) {
1006 case 0:
1007 {
1009 avro::decode(d, vv);
1010 v.set_ArrayOfBoolean(vv);
1011 }
1012 break;
1013 case 1:
1014 {
1016 avro::decode(d, vv);
1017 v.set_ArrayOfInt(vv);
1018 }
1019 break;
1020 case 2:
1021 {
1023 avro::decode(d, vv);
1024 v.set_ArrayOfLong(vv);
1025 }
1026 break;
1027 case 3:
1028 {
1030 avro::decode(d, vv);
1031 v.set_ArrayOfFloat(vv);
1032 }
1033 break;
1034 case 4:
1035 {
1037 avro::decode(d, vv);
1038 v.set_ArrayOfDouble(vv);
1039 }
1040 break;
1041 case 5:
1042 {
1044 avro::decode(d, vv);
1045 v.set_ArrayOfString(vv);
1046 }
1047 break;
1048 case 6:
1049 {
1050 std::string vv;
1051 avro::decode(d, vv);
1052 v.set_bytes(vv);
1053 }
1054 break;
1055 }
1056 }
1057 };
1058}
1059
1060namespace Energistics {
1061 namespace Etp {
1062 namespace v12 {
1063 namespace Datatypes {
1067 }
1068 }
1069 }
1070}
1071namespace avro {
1072 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::AnyArray> {
1073 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::AnyArray& v) {
1074 avro::encode(e, v.item);
1075 }
1076 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::AnyArray& v) {
1077 avro::decode(e, v.item);
1078 }
1079 };
1080}
1081namespace Energistics {
1082 namespace Etp {
1083 namespace v12 {
1084 namespace Datatypes {
1086 int64_t start = 0;
1088 };
1089 }
1090 }
1091 }
1092}
1093namespace avro {
1094 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::AnySubarray> {
1095 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::AnySubarray& v) {
1096 avro::encode(e, v.start);
1097 avro::encode(e, v.slice);
1098 }
1099 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::AnySubarray& v) {
1100 avro::decode(e, v.start);
1101 avro::decode(e, v.slice);
1102 }
1103 };
1104}
1105namespace Energistics {
1106 namespace Etp {
1107 namespace v12 {
1108 namespace Datatypes {
1110 std::vector<Energistics::Etp::v12::Datatypes::AnySubarray> slices;
1111 };
1112 }
1113 }
1114 }
1115}
1116namespace avro {
1117 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::AnySparseArray> {
1118 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::AnySparseArray& v) {
1119 avro::encode(e, v.slices);
1120 }
1121 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::AnySparseArray& v) {
1122 avro::decode(e, v.slices);
1123 }
1124 };
1125}
1126namespace Energistics {
1127 namespace Etp {
1128 namespace v12 {
1129 namespace Datatypes {
1130 struct Contact {
1131 std::string organizationName;
1132 std::string contactName;
1133 std::string contactPhone;
1134 std::string contactEmail;
1135 };
1136 }
1137 }
1138 }
1139}
1140namespace avro {
1141 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Contact> {
1142 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Contact& v) {
1143 avro::encode(e, v.organizationName);
1144 avro::encode(e, v.contactName);
1145 avro::encode(e, v.contactPhone);
1146 avro::encode(e, v.contactEmail);
1147 }
1148 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Contact& v) {
1149 avro::decode(e, v.organizationName);
1150 avro::decode(e, v.contactName);
1151 avro::decode(e, v.contactPhone);
1152 avro::decode(e, v.contactEmail);
1153 }
1154 };
1155}
1156namespace Energistics {
1157 namespace Etp {
1158 namespace v12 {
1159 namespace Datatypes {
1160 enum class DataObjectCapabilityKind {
1161 ActiveTimeoutPeriod=0,
1162 MaxContainedDataObjectCount=1,
1163 MaxDataObjectSize=2,
1164 OrphanedChildrenPrunedOnDelete=3,
1165 SupportsGet=4,
1166 SupportsPut=5,
1167 SupportsDelete=6,
1168 MaxSecondaryIndexCount=7
1169 };
1170 }
1171 }
1172 }
1173}
1174namespace avro {
1175 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::DataObjectCapabilityKind> {
1176 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::DataObjectCapabilityKind& v) {
1177 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::DataObjectCapabilityKind>::type>(v));
1178 }
1179 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::DataObjectCapabilityKind& v) {
1180 v = static_cast<Energistics::Etp::v12::Datatypes::DataObjectCapabilityKind>(e.decodeEnum());
1181 }
1182 };
1183}
1184namespace Energistics {
1185 namespace Etp {
1186 namespace v12 {
1187 namespace Datatypes {
1189 private:
1190 size_t idx_=0;
1191 boost::any value_;
1192
1193 public:
1194 size_t idx() const { return idx_; }
1195 bool is_null() const { return idx_==0; }
1196 void set_null() { idx_=0; value_ = boost::any(); }
1197 bool const & get_boolean() const {
1198 if (idx_ != 1) {
1199 throw avro::Exception("Invalid type for union.");
1200 }
1201 return boost::any_cast< bool const & >(value_);
1202 }
1203 bool& get_boolean() {
1204 if (idx_ != 1) {
1205 throw avro::Exception("Invalid type for union.");
1206 }
1207 return boost::any_cast< bool& >(value_);
1208 }
1209 void set_boolean(const bool& v) {
1210 idx_ = 1;
1211 value_ = v;
1212 }
1213 int32_t const & get_int() const {
1214 if (idx_ != 2) {
1215 throw avro::Exception("Invalid type for union.");
1216 }
1217 return boost::any_cast< int32_t const & >(value_);
1218 }
1219 int32_t& get_int() {
1220 if (idx_ != 2) {
1221 throw avro::Exception("Invalid type for union.");
1222 }
1223 return boost::any_cast< int32_t& >(value_);
1224 }
1225 void set_int(const int32_t& v) {
1226 idx_ = 2;
1227 value_ = v;
1228 }
1229 int64_t const & get_long() const {
1230 if (idx_ != 3) {
1231 throw avro::Exception("Invalid type for union.");
1232 }
1233 return boost::any_cast< int64_t const & >(value_);
1234 }
1235 int64_t& get_long() {
1236 if (idx_ != 3) {
1237 throw avro::Exception("Invalid type for union.");
1238 }
1239 return boost::any_cast< int64_t& >(value_);
1240 }
1241 void set_long(const int64_t& v) {
1242 idx_ = 3;
1243 value_ = v;
1244 }
1245 float const & get_float() const {
1246 if (idx_ != 4) {
1247 throw avro::Exception("Invalid type for union.");
1248 }
1249 return boost::any_cast< float const & >(value_);
1250 }
1251 float& get_float() {
1252 if (idx_ != 4) {
1253 throw avro::Exception("Invalid type for union.");
1254 }
1255 return boost::any_cast< float& >(value_);
1256 }
1257 void set_float(const float& v) {
1258 idx_ = 4;
1259 value_ = v;
1260 }
1261 double const & get_double() const {
1262 if (idx_ != 5) {
1263 throw avro::Exception("Invalid type for union.");
1264 }
1265 return boost::any_cast< double const & >(value_);
1266 }
1267 double& get_double() {
1268 if (idx_ != 5) {
1269 throw avro::Exception("Invalid type for union.");
1270 }
1271 return boost::any_cast< double& >(value_);
1272 }
1273 void set_double(const double& v) {
1274 idx_ = 5;
1275 value_ = v;
1276 }
1277 std::string const & get_string() const {
1278 if (idx_ != 6) {
1279 throw avro::Exception("Invalid type for union.");
1280 }
1281 return boost::any_cast< std::string const & >(value_);
1282 }
1283 std::string& get_string() {
1284 if (idx_ != 6) {
1285 throw avro::Exception("Invalid type for union.");
1286 }
1287 return boost::any_cast< std::string& >(value_);
1288 }
1289 void set_string(const std::string& v) {
1290 idx_ = 6;
1291 value_ = v;
1292 }
1293 Energistics::Etp::v12::Datatypes::ArrayOfBoolean const & get_ArrayOfBoolean() const {
1294 if (idx_ != 7) {
1295 throw avro::Exception("Invalid type for union.");
1296 }
1297 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfBoolean const & >(value_);
1298 }
1300 if (idx_ != 7) {
1301 throw avro::Exception("Invalid type for union.");
1302 }
1303 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfBoolean& >(value_);
1304 }
1305 void set_ArrayOfBoolean(const Energistics::Etp::v12::Datatypes::ArrayOfBoolean& v) {
1306 idx_ = 7;
1307 value_ = v;
1308 }
1309 Energistics::Etp::v12::Datatypes::ArrayOfNullableBoolean const & get_ArrayOfNullableBoolean() const {
1310 if (idx_ != 8) {
1311 throw avro::Exception("Invalid type for union.");
1312 }
1313 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfNullableBoolean const & >(value_);
1314 }
1315 Energistics::Etp::v12::Datatypes::ArrayOfNullableBoolean& get_ArrayOfNullableBoolean() {
1316 if (idx_ != 8) {
1317 throw avro::Exception("Invalid type for union.");
1318 }
1319 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfNullableBoolean& >(value_);
1320 }
1321 void set_ArrayOfNullableBoolean(const Energistics::Etp::v12::Datatypes::ArrayOfNullableBoolean& v) {
1322 idx_ = 8;
1323 value_ = v;
1324 }
1325 Energistics::Etp::v12::Datatypes::ArrayOfInt const & get_ArrayOfInt() const {
1326 if (idx_ != 9) {
1327 throw avro::Exception("Invalid type for union.");
1328 }
1329 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfInt const & >(value_);
1330 }
1332 if (idx_ != 9) {
1333 throw avro::Exception("Invalid type for union.");
1334 }
1335 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfInt& >(value_);
1336 }
1337 void set_ArrayOfInt(const Energistics::Etp::v12::Datatypes::ArrayOfInt& v) {
1338 idx_ = 9;
1339 value_ = v;
1340 }
1341 Energistics::Etp::v12::Datatypes::ArrayOfNullableInt const & get_ArrayOfNullableInt() const {
1342 if (idx_ != 10) {
1343 throw avro::Exception("Invalid type for union.");
1344 }
1345 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfNullableInt const & >(value_);
1346 }
1348 if (idx_ != 10) {
1349 throw avro::Exception("Invalid type for union.");
1350 }
1351 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfNullableInt& >(value_);
1352 }
1353 void set_ArrayOfNullableInt(const Energistics::Etp::v12::Datatypes::ArrayOfNullableInt& v) {
1354 idx_ = 10;
1355 value_ = v;
1356 }
1357 Energistics::Etp::v12::Datatypes::ArrayOfLong const & get_ArrayOfLong() const {
1358 if (idx_ != 11) {
1359 throw avro::Exception("Invalid type for union.");
1360 }
1361 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfLong const & >(value_);
1362 }
1364 if (idx_ != 11) {
1365 throw avro::Exception("Invalid type for union.");
1366 }
1367 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfLong& >(value_);
1368 }
1369 void set_ArrayOfLong(const Energistics::Etp::v12::Datatypes::ArrayOfLong& v) {
1370 idx_ = 11;
1371 value_ = v;
1372 }
1373 Energistics::Etp::v12::Datatypes::ArrayOfNullableLong const & get_ArrayOfNullableLong() const {
1374 if (idx_ != 12) {
1375 throw avro::Exception("Invalid type for union.");
1376 }
1377 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfNullableLong const & >(value_);
1378 }
1380 if (idx_ != 12) {
1381 throw avro::Exception("Invalid type for union.");
1382 }
1383 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfNullableLong& >(value_);
1384 }
1385 void set_ArrayOfNullableLong(const Energistics::Etp::v12::Datatypes::ArrayOfNullableLong& v) {
1386 idx_ = 12;
1387 value_ = v;
1388 }
1389 Energistics::Etp::v12::Datatypes::ArrayOfFloat const & get_ArrayOfFloat() const {
1390 if (idx_ != 13) {
1391 throw avro::Exception("Invalid type for union.");
1392 }
1393 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfFloat const & >(value_);
1394 }
1396 if (idx_ != 13) {
1397 throw avro::Exception("Invalid type for union.");
1398 }
1399 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfFloat& >(value_);
1400 }
1401 void set_ArrayOfFloat(const Energistics::Etp::v12::Datatypes::ArrayOfFloat& v) {
1402 idx_ = 13;
1403 value_ = v;
1404 }
1405 Energistics::Etp::v12::Datatypes::ArrayOfDouble const & get_ArrayOfDouble() const {
1406 if (idx_ != 14) {
1407 throw avro::Exception("Invalid type for union.");
1408 }
1409 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfDouble const & >(value_);
1410 }
1412 if (idx_ != 14) {
1413 throw avro::Exception("Invalid type for union.");
1414 }
1415 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfDouble& >(value_);
1416 }
1417 void set_ArrayOfDouble(const Energistics::Etp::v12::Datatypes::ArrayOfDouble& v) {
1418 idx_ = 14;
1419 value_ = v;
1420 }
1421 Energistics::Etp::v12::Datatypes::ArrayOfString const & get_ArrayOfString() const {
1422 if (idx_ != 15) {
1423 throw avro::Exception("Invalid type for union.");
1424 }
1425 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfString const & >(value_);
1426 }
1428 if (idx_ != 15) {
1429 throw avro::Exception("Invalid type for union.");
1430 }
1431 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfString& >(value_);
1432 }
1433 void set_ArrayOfString(const Energistics::Etp::v12::Datatypes::ArrayOfString& v) {
1434 idx_ = 15;
1435 value_ = v;
1436 }
1437 Energistics::Etp::v12::Datatypes::ArrayOfBytes const & get_ArrayOfBytes() const {
1438 if (idx_ != 16) {
1439 throw avro::Exception("Invalid type for union.");
1440 }
1441 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfBytes const & >(value_);
1442 }
1444 if (idx_ != 16) {
1445 throw avro::Exception("Invalid type for union.");
1446 }
1447 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfBytes& >(value_);
1448 }
1449 void set_ArrayOfBytes(const Energistics::Etp::v12::Datatypes::ArrayOfBytes& v) {
1450 idx_ = 16;
1451 value_ = v;
1452 }
1453 std::string const & get_bytes() const {
1454 if (idx_ != 17) {
1455 throw avro::Exception("Invalid type for union.");
1456 }
1457 return boost::any_cast< std::string const & >(value_);
1458 }
1459 std::string& get_bytes() {
1460 if (idx_ != 17) {
1461 throw avro::Exception("Invalid type for union.");
1462 }
1463 return boost::any_cast< std::string& >(value_);
1464 }
1465 void set_bytes(const std::string& v) {
1466 idx_ = 17;
1467 value_ = v;
1468 }
1469 Energistics::Etp::v12::Datatypes::AnySparseArray const & get_AnySparseArray() const {
1470 if (idx_ != 18) {
1471 throw avro::Exception("Invalid type for union.");
1472 }
1473 return boost::any_cast< Energistics::Etp::v12::Datatypes::AnySparseArray const & >(value_);
1474 }
1476 if (idx_ != 18) {
1477 throw avro::Exception("Invalid type for union.");
1478 }
1479 return boost::any_cast< Energistics::Etp::v12::Datatypes::AnySparseArray& >(value_);
1480 }
1481 void set_AnySparseArray(const Energistics::Etp::v12::Datatypes::AnySparseArray& v) {
1482 idx_ = 18;
1483 value_ = v;
1484 }
1485 };
1486 }
1487 }
1488 }
1489}
1490namespace avro {
1491 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::DataValueitem_t> {
1492
1493 static void encode(Encoder& e, Energistics::Etp::v12::Datatypes::DataValueitem_t v) {
1494
1495 e.encodeUnionIndex(v.idx());
1496 switch (v.idx()) {
1497 case 0:
1498 e.encodeNull();
1499 break;
1500 case 1:
1501 avro::encode(e, v.get_boolean());
1502 break;
1503 case 2:
1504 avro::encode(e, v.get_int());
1505 break;
1506 case 3:
1507 avro::encode(e, v.get_long());
1508 break;
1509 case 4:
1510 avro::encode(e, v.get_float());
1511 break;
1512 case 5:
1513 avro::encode(e, v.get_double());
1514 break;
1515 case 6:
1516 avro::encode(e, v.get_string());
1517 break;
1518 case 7:
1519 avro::encode(e, v.get_ArrayOfBoolean());
1520 break;
1521 case 8:
1522 avro::encode(e, v.get_ArrayOfNullableBoolean());
1523 break;
1524 case 9:
1525 avro::encode(e, v.get_ArrayOfInt());
1526 break;
1527 case 10:
1528 avro::encode(e, v.get_ArrayOfNullableInt());
1529 break;
1530 case 11:
1531 avro::encode(e, v.get_ArrayOfLong());
1532 break;
1533 case 12:
1534 avro::encode(e, v.get_ArrayOfNullableLong());
1535 break;
1536 case 13:
1537 avro::encode(e, v.get_ArrayOfFloat());
1538 break;
1539 case 14:
1540 avro::encode(e, v.get_ArrayOfDouble());
1541 break;
1542 case 15:
1543 avro::encode(e, v.get_ArrayOfString());
1544 break;
1545 case 16:
1546 avro::encode(e, v.get_ArrayOfBytes());
1547 break;
1548 case 17:
1549 avro::encode(e, v.get_bytes());
1550 break;
1551 case 18:
1552 avro::encode(e, v.get_AnySparseArray());
1553 break;
1554 }
1555 }
1556 static void decode(Decoder& d, Energistics::Etp::v12::Datatypes::DataValueitem_t& v) {
1557
1558 size_t n = d.decodeUnionIndex();
1559 if (n >= 19) { throw avro::Exception("Union index too big"); }
1560 switch (n) {
1561 case 0:
1562 {
1563 d.decodeNull();
1564 v.set_null();
1565 }
1566 break;
1567 case 1:
1568 {
1569 bool vv;
1570 avro::decode(d, vv);
1571 v.set_boolean(vv);
1572 }
1573 break;
1574 case 2:
1575 {
1576 int32_t vv;
1577 avro::decode(d, vv);
1578 v.set_int(vv);
1579 }
1580 break;
1581 case 3:
1582 {
1583 int64_t vv;
1584 avro::decode(d, vv);
1585 v.set_long(vv);
1586 }
1587 break;
1588 case 4:
1589 {
1590 float vv;
1591 avro::decode(d, vv);
1592 v.set_float(vv);
1593 }
1594 break;
1595 case 5:
1596 {
1597 double vv;
1598 avro::decode(d, vv);
1599 v.set_double(vv);
1600 }
1601 break;
1602 case 6:
1603 {
1604 std::string vv;
1605 avro::decode(d, vv);
1606 v.set_string(vv);
1607 }
1608 break;
1609 case 7:
1610 {
1612 avro::decode(d, vv);
1613 v.set_ArrayOfBoolean(vv);
1614 }
1615 break;
1616 case 8:
1617 {
1619 avro::decode(d, vv);
1620 v.set_ArrayOfNullableBoolean(vv);
1621 }
1622 break;
1623 case 9:
1624 {
1626 avro::decode(d, vv);
1627 v.set_ArrayOfInt(vv);
1628 }
1629 break;
1630 case 10:
1631 {
1633 avro::decode(d, vv);
1634 v.set_ArrayOfNullableInt(vv);
1635 }
1636 break;
1637 case 11:
1638 {
1640 avro::decode(d, vv);
1641 v.set_ArrayOfLong(vv);
1642 }
1643 break;
1644 case 12:
1645 {
1647 avro::decode(d, vv);
1648 v.set_ArrayOfNullableLong(vv);
1649 }
1650 break;
1651 case 13:
1652 {
1654 avro::decode(d, vv);
1655 v.set_ArrayOfFloat(vv);
1656 }
1657 break;
1658 case 14:
1659 {
1661 avro::decode(d, vv);
1662 v.set_ArrayOfDouble(vv);
1663 }
1664 break;
1665 case 15:
1666 {
1668 avro::decode(d, vv);
1669 v.set_ArrayOfString(vv);
1670 }
1671 break;
1672 case 16:
1673 {
1675 avro::decode(d, vv);
1676 v.set_ArrayOfBytes(vv);
1677 }
1678 break;
1679 case 17:
1680 {
1681 std::string vv;
1682 avro::decode(d, vv);
1683 v.set_bytes(vv);
1684 }
1685 break;
1686 case 18:
1687 {
1689 avro::decode(d, vv);
1690 v.set_AnySparseArray(vv);
1691 }
1692 break;
1693 }
1694 }
1695 };
1696}
1697
1698namespace Energistics {
1699 namespace Etp {
1700 namespace v12 {
1701 namespace Datatypes {
1705 }
1706 }
1707 }
1708}
1709namespace avro {
1710 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::DataValue> {
1711 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::DataValue& v) {
1712 avro::encode(e, v.item);
1713 }
1714 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::DataValue& v) {
1715 avro::decode(e, v.item);
1716 }
1717 };
1718}
1719namespace Energistics {
1720 namespace Etp {
1721 namespace v12 {
1722 namespace Datatypes {
1724 int32_t attributeId = 0;
1726 };
1727 }
1728 }
1729 }
1730}
1731namespace avro {
1732 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::DataAttribute> {
1733 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::DataAttribute& v) {
1734 avro::encode(e, v.attributeId);
1735 avro::encode(e, v.attributeValue);
1736 }
1737 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::DataAttribute& v) {
1738 avro::decode(e, v.attributeId);
1739 avro::decode(e, v.attributeValue);
1740 }
1741 };
1742}
1743namespace Energistics {
1744 namespace Etp {
1745 namespace v12 {
1746 namespace Datatypes {
1747 enum class EndpointCapabilityKind {
1748 ActiveTimeoutPeriod=0,
1749 AuthorizationDetails=1,
1750 ChangePropagationPeriod=2,
1751 ChangeRetentionPeriod=3,
1752 MaxConcurrentMultipart=4,
1753 MaxDataObjectSize=5,
1754 MaxPartSize=6,
1755 MaxSessionClientCount=7,
1756 MaxSessionGlobalCount=8,
1757 MaxWebSocketFramePayloadSize=9,
1758 MaxWebSocketMessagePayloadSize=10,
1759 MultipartMessageTimeoutPeriod=11,
1760 ResponseTimeoutPeriod=12,
1761 RequestSessionTimeoutPeriod=13,
1762 SessionEstablishmentTimeoutPeriod=14,
1763 SupportsAlternateRequestUris=15,
1764 SupportsMessageHeaderExtensions=16
1765 };
1766 }
1767 }
1768 }
1769}
1770namespace avro {
1771 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::EndpointCapabilityKind> {
1772 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::EndpointCapabilityKind& v) {
1773 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::EndpointCapabilityKind>::type>(v));
1774 }
1775 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::EndpointCapabilityKind& v) {
1776 v = static_cast<Energistics::Etp::v12::Datatypes::EndpointCapabilityKind>(e.decodeEnum());
1777 }
1778 };
1779}
1780namespace Energistics {
1781 namespace Etp {
1782 namespace v12 {
1783 namespace Datatypes {
1785 int32_t protocol = 0;
1786 int32_t messageType = 0;
1787 int64_t correlationId = 0;
1788 int64_t messageId = 0;
1789 int32_t messageFlags = 0;
1790 };
1791 }
1792 }
1793 }
1794}
1795namespace avro {
1796 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::MessageHeader> {
1797 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::MessageHeader& v) {
1798 avro::encode(e, v.protocol);
1799 avro::encode(e, v.messageType);
1800 avro::encode(e, v.correlationId);
1801 avro::encode(e, v.messageId);
1802 avro::encode(e, v.messageFlags);
1803 }
1804 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::MessageHeader& v) {
1805 avro::decode(e, v.protocol);
1806 avro::decode(e, v.messageType);
1807 avro::decode(e, v.correlationId);
1808 avro::decode(e, v.messageId);
1809 avro::decode(e, v.messageFlags);
1810 }
1811 };
1812}
1813namespace Energistics {
1814 namespace Etp {
1815 namespace v12 {
1816 namespace Datatypes {
1817 struct ErrorInfo {
1818 std::string message;
1819 int32_t code = 0;
1820 };
1821 }
1822 }
1823 }
1824}
1825namespace avro {
1826 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ErrorInfo> {
1827 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ErrorInfo& v) {
1828 avro::encode(e, v.message);
1829 avro::encode(e, v.code);
1830 }
1831 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ErrorInfo& v) {
1832 avro::decode(e, v.message);
1833 avro::decode(e, v.code);
1834 }
1835 };
1836}
1837namespace Energistics {
1838 namespace Etp {
1839 namespace v12 {
1840 namespace Protocol {
1841 namespace Core {
1843 boost::optional<Energistics::Etp::v12::Datatypes::ErrorInfo> error;
1844 bool has_error() const { return error.is_initialized(); }
1845 Energistics::Etp::v12::Datatypes::ErrorInfo get_error() const { return error.get(); }
1846 std::map<std::string, Energistics::Etp::v12::Datatypes::ErrorInfo> errors;
1847 static constexpr int messageTypeId=1000;
1848 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Core);
1849 };
1850 }
1851 }
1852 }
1853 }
1854}
1855namespace avro {
1856 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Core::ProtocolException> {
1857 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Core::ProtocolException& v) {
1858 avro::encode(e, v.error);
1859 avro::encode(e, v.errors);
1860 }
1861 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Core::ProtocolException& v) {
1862 avro::decode(e, v.error);
1863 avro::decode(e, v.errors);
1864 }
1865 };
1866}
1867namespace Energistics {
1868 namespace Etp {
1869 namespace v12 {
1870 namespace Datatypes {
1872 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> extension;
1873 };
1874 }
1875 }
1876 }
1877}
1878namespace avro {
1879 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::MessageHeaderExtension> {
1880 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::MessageHeaderExtension& v) {
1881 avro::encode(e, v.extension);
1882 }
1883 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::MessageHeaderExtension& v) {
1884 avro::decode(e, v.extension);
1885 }
1886 };
1887}
1888namespace Energistics {
1889 namespace Etp {
1890 namespace v12 {
1891 namespace Datatypes {
1892 enum class ProtocolCapabilityKind {
1893 FrameChangeDetectionPeriod=0,
1894 MaxDataArraySize=1,
1895 MaxDataObjectSize=2,
1896 MaxFrameResponseRowCount=3,
1897 MaxIndexCount=4,
1898 MaxRangeChannelCount=5,
1899 MaxRangeDataItemCount=6,
1900 MaxResponseCount=7,
1901 MaxStreamingChannelsSessionCount=8,
1902 MaxSubscriptionSessionCount=9,
1903 MaxTransactionCount=10,
1904 SupportsSecondaryIndexFiltering=11,
1905 TransactionTimeoutPeriod=12
1906 };
1907 }
1908 }
1909 }
1910}
1911namespace avro {
1912 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ProtocolCapabilityKind> {
1913 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ProtocolCapabilityKind& v) {
1914 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::ProtocolCapabilityKind>::type>(v));
1915 }
1916 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ProtocolCapabilityKind& v) {
1917 v = static_cast<Energistics::Etp::v12::Datatypes::ProtocolCapabilityKind>(e.decodeEnum());
1918 }
1919 };
1920}
1921namespace Energistics {
1922 namespace Etp {
1923 namespace v12 {
1924 namespace Datatypes {
1926 std::string qualifiedType;
1927 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> dataObjectCapabilities;
1928 };
1929 }
1930 }
1931 }
1932}
1933namespace avro {
1934 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::SupportedDataObject> {
1935 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::SupportedDataObject& v) {
1936 avro::encode(e, v.qualifiedType);
1937 avro::encode(e, v.dataObjectCapabilities);
1938 }
1939 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::SupportedDataObject& v) {
1940 avro::decode(e, v.qualifiedType);
1941 avro::decode(e, v.dataObjectCapabilities);
1942 }
1943 };
1944}
1945namespace Energistics {
1946 namespace Etp {
1947 namespace v12 {
1948 namespace Datatypes {
1949 struct Uuid{
1950 std::array<uint8_t, 16> array{{}};
1951 };
1952 }
1953 }
1954 }
1955}
1956namespace avro {
1957 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Uuid> {
1958 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Uuid& v) {
1959 avro::encode(e, v.array);
1960 }
1961 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Uuid& v) {
1962 avro::decode(e, v.array);
1963 }
1964 };
1965}
1966namespace Energistics {
1967 namespace Etp {
1968 namespace v12 {
1969 namespace Protocol {
1970 namespace StoreNotification {
1971 struct Chunk {
1973 std::string data;
1974 bool final=false;
1975 static constexpr int messageTypeId=9;
1976 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreNotification);
1977 };
1978 }
1979 }
1980 }
1981 }
1982}
1983namespace avro {
1984 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::Chunk> {
1985 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::StoreNotification::Chunk& v) {
1986 avro::encode(e, v.blobId);
1987 avro::encode(e, v.data);
1988 avro::encode(e, v.final);
1989 }
1990 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::StoreNotification::Chunk& v) {
1991 avro::decode(e, v.blobId);
1992 avro::decode(e, v.data);
1993 avro::decode(e, v.final);
1994 }
1995 };
1996}
1997namespace Energistics {
1998 namespace Etp {
1999 namespace v12 {
2000 namespace Protocol {
2001 namespace StoreNotification {
2003 std::string uri;
2004 int64_t changeTime;
2006 static constexpr int messageTypeId=5;
2007 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreNotification);
2008 };
2009 }
2010 }
2011 }
2012 }
2013}
2014namespace avro {
2015 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::ObjectAccessRevoked> {
2016 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::StoreNotification::ObjectAccessRevoked& v) {
2017 avro::encode(e, v.uri);
2018 avro::encode(e, v.changeTime);
2019 avro::encode(e, v.requestUuid);
2020 }
2022 avro::decode(e, v.uri);
2023 avro::decode(e, v.changeTime);
2024 avro::decode(e, v.requestUuid);
2025 }
2026 };
2027}
2028namespace Energistics {
2029 namespace Etp {
2030 namespace v12 {
2031 namespace Protocol {
2032 namespace StoreNotification {
2034 std::string uri;
2035 int64_t changeTime = std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::system_clock::now().time_since_epoch()).count();
2037 static constexpr int messageTypeId=3;
2038 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreNotification);
2039 };
2040 }
2041 }
2042 }
2043 }
2044}
2045namespace avro {
2046 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::ObjectDeleted> {
2047 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::StoreNotification::ObjectDeleted& v) {
2048 avro::encode(e, v.uri);
2049 avro::encode(e, v.changeTime);
2050 avro::encode(e, v.requestUuid);
2051 }
2053 avro::decode(e, v.uri);
2054 avro::decode(e, v.changeTime);
2055 avro::decode(e, v.requestUuid);
2056 }
2057 };
2058}
2059namespace Energistics {
2060 namespace Etp {
2061 namespace v12 {
2062 namespace Protocol {
2063 namespace StoreNotification {
2065 std::string reason;
2067 static constexpr int messageTypeId=7;
2068 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreNotification);
2069 };
2070 }
2071 }
2072 }
2073 }
2074}
2075namespace avro {
2076 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::SubscriptionEnded> {
2077 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::StoreNotification::SubscriptionEnded& v) {
2078 avro::encode(e, v.reason);
2079 avro::encode(e, v.requestUuid);
2080 }
2082 avro::decode(e, v.reason);
2083 avro::decode(e, v.requestUuid);
2084 }
2085 };
2086}
2087namespace Energistics {
2088 namespace Etp {
2089 namespace v12 {
2090 namespace Protocol {
2091 namespace StoreNotification {
2094 static constexpr int messageTypeId=4;
2095 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreNotification);
2096 };
2097 }
2098 }
2099 }
2100 }
2101}
2102namespace avro {
2103 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::UnsubscribeNotifications> {
2105 avro::encode(e, v.requestUuid);
2106 }
2108 avro::decode(e, v.requestUuid);
2109 }
2110 };
2111}
2112namespace Energistics {
2113 namespace Etp {
2114 namespace v12 {
2115 namespace Protocol {
2116 namespace Store {
2117 struct Chunk {
2119 std::string data;
2120 bool final=false;
2121 static constexpr int messageTypeId=8;
2122 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Store);
2123 };
2124 }
2125 }
2126 }
2127 }
2128}
2129namespace avro {
2130 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Store::Chunk> {
2131 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Store::Chunk& v) {
2132 avro::encode(e, v.blobId);
2133 avro::encode(e, v.data);
2134 avro::encode(e, v.final);
2135 }
2136 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Store::Chunk& v) {
2137 avro::decode(e, v.blobId);
2138 avro::decode(e, v.data);
2139 avro::decode(e, v.final);
2140 }
2141 };
2142}
2143namespace Energistics {
2144 namespace Etp {
2145 namespace v12 {
2146 namespace Protocol {
2147 namespace StoreQuery {
2148 struct Chunk {
2150 std::string data;
2151 bool final=false;
2152 static constexpr int messageTypeId=3;
2153 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreQuery);
2154 };
2155 }
2156 }
2157 }
2158 }
2159}
2160namespace avro {
2161 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreQuery::Chunk> {
2162 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::StoreQuery::Chunk& v) {
2163 avro::encode(e, v.blobId);
2164 avro::encode(e, v.data);
2165 avro::encode(e, v.final);
2166 }
2167 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::StoreQuery::Chunk& v) {
2168 avro::decode(e, v.blobId);
2169 avro::decode(e, v.data);
2170 avro::decode(e, v.final);
2171 }
2172 };
2173}
2174namespace Energistics {
2175 namespace Etp {
2176 namespace v12 {
2177 namespace Protocol {
2178 namespace Transaction {
2181 static constexpr int messageTypeId=3;
2182 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Transaction);
2183 };
2184 }
2185 }
2186 }
2187 }
2188}
2189namespace avro {
2190 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Transaction::CommitTransaction> {
2191 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Transaction::CommitTransaction& v) {
2192 avro::encode(e, v.transactionUuid);
2193 }
2194 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Transaction::CommitTransaction& v) {
2195 avro::decode(e, v.transactionUuid);
2196 }
2197 };
2198}
2199namespace Energistics {
2200 namespace Etp {
2201 namespace v12 {
2202 namespace Protocol {
2203 namespace Transaction {
2206 bool successful=false;
2207 std::string failureReason;
2208 static constexpr int messageTypeId=5;
2209 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Transaction);
2210 };
2211 }
2212 }
2213 }
2214 }
2215}
2216namespace avro {
2217 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Transaction::CommitTransactionResponse> {
2218 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Transaction::CommitTransactionResponse& v) {
2219 avro::encode(e, v.transactionUuid);
2220 avro::encode(e, v.successful);
2221 avro::encode(e, v.failureReason);
2222 }
2224 avro::decode(e, v.transactionUuid);
2225 avro::decode(e, v.successful);
2226 avro::decode(e, v.failureReason);
2227 }
2228 };
2229}
2230namespace Energistics {
2231 namespace Etp {
2232 namespace v12 {
2233 namespace Protocol {
2234 namespace Transaction {
2237 static constexpr int messageTypeId=4;
2238 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Transaction);
2239 };
2240 }
2241 }
2242 }
2243 }
2244}
2245namespace avro {
2246 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Transaction::RollbackTransaction> {
2247 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Transaction::RollbackTransaction& v) {
2248 avro::encode(e, v.transactionUuid);
2249 }
2251 avro::decode(e, v.transactionUuid);
2252 }
2253 };
2254}
2255namespace Energistics {
2256 namespace Etp {
2257 namespace v12 {
2258 namespace Protocol {
2259 namespace Transaction {
2262 bool successful=false;
2263 std::string failureReason;
2264 static constexpr int messageTypeId=6;
2265 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Transaction);
2266 };
2267 }
2268 }
2269 }
2270 }
2271}
2272namespace avro {
2273 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Transaction::RollbackTransactionResponse> {
2274 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Transaction::RollbackTransactionResponse& v) {
2275 avro::encode(e, v.transactionUuid);
2276 avro::encode(e, v.successful);
2277 avro::encode(e, v.failureReason);
2278 }
2280 avro::decode(e, v.transactionUuid);
2281 avro::decode(e, v.successful);
2282 avro::decode(e, v.failureReason);
2283 }
2284 };
2285}
2286namespace Energistics {
2287 namespace Etp {
2288 namespace v12 {
2289 namespace Protocol {
2290 namespace Transaction {
2293 bool successful=false;
2294 std::string failureReason;
2295 static constexpr int messageTypeId=2;
2296 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Transaction);
2297 };
2298 }
2299 }
2300 }
2301 }
2302}
2303namespace avro {
2304 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Transaction::StartTransactionResponse> {
2305 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Transaction::StartTransactionResponse& v) {
2306 avro::encode(e, v.transactionUuid);
2307 avro::encode(e, v.successful);
2308 avro::encode(e, v.failureReason);
2309 }
2311 avro::decode(e, v.transactionUuid);
2312 avro::decode(e, v.successful);
2313 avro::decode(e, v.failureReason);
2314 }
2315 };
2316}
2317namespace Energistics {
2318 namespace Etp {
2319 namespace v12 {
2320 namespace Datatypes {
2321 struct Version {
2322 int32_t major = 1;
2323 int32_t minor = 2;
2324 int32_t revision = 0;
2325 int32_t patch = 0;
2326 };
2327 }
2328 }
2329 }
2330}
2331namespace avro {
2332 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Version> {
2333 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Version& v) {
2334 avro::encode(e, v.major);
2335 avro::encode(e, v.minor);
2336 avro::encode(e, v.revision);
2337 avro::encode(e, v.patch);
2338 }
2339 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Version& v) {
2340 avro::decode(e, v.major);
2341 avro::decode(e, v.minor);
2342 avro::decode(e, v.revision);
2343 avro::decode(e, v.patch);
2344 }
2345 };
2346}
2347namespace Energistics {
2348 namespace Etp {
2349 namespace v12 {
2350 namespace Datatypes {
2352 int32_t protocol = 0;
2354 std::string role;
2355 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> protocolCapabilities;
2356 };
2357 }
2358 }
2359 }
2360}
2361namespace avro {
2362 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::SupportedProtocol> {
2363 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::SupportedProtocol& v) {
2364 avro::encode(e, v.protocol);
2365 avro::encode(e, v.protocolVersion);
2366 avro::encode(e, v.role);
2367 avro::encode(e, v.protocolCapabilities);
2368 }
2369 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::SupportedProtocol& v) {
2370 avro::decode(e, v.protocol);
2371 avro::decode(e, v.protocolVersion);
2372 avro::decode(e, v.role);
2373 avro::decode(e, v.protocolCapabilities);
2374 }
2375 };
2376}
2377namespace Energistics {
2378 namespace Etp {
2379 namespace v12 {
2380 namespace Protocol {
2381 namespace Core {
2383 std::string applicationName;
2384 std::string applicationVersion;
2386 std::vector<Energistics::Etp::v12::Datatypes::SupportedProtocol> supportedProtocols;
2387 std::vector<Energistics::Etp::v12::Datatypes::SupportedDataObject> supportedDataObjects;
2388 std::string supportedCompression;
2389 std::vector<std::string> supportedFormats;
2390 int64_t currentDateTime = std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::system_clock::now().time_since_epoch()).count();
2391 int64_t earliestRetainedChangeTime = std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::system_clock::now().time_since_epoch()).count();
2393 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> endpointCapabilities;
2394 static constexpr int messageTypeId=2;
2395 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Core);
2396 };
2397 }
2398 }
2399 }
2400 }
2401}
2402namespace avro {
2403 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Core::OpenSession> {
2404 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Core::OpenSession& v) {
2405 avro::encode(e, v.applicationName);
2406 avro::encode(e, v.applicationVersion);
2407 avro::encode(e, v.serverInstanceId);
2408 avro::encode(e, v.supportedProtocols);
2409 avro::encode(e, v.supportedDataObjects);
2410 avro::encode(e, v.supportedCompression);
2411 avro::encode(e, v.supportedFormats);
2412 avro::encode(e, v.currentDateTime);
2413 avro::encode(e, v.earliestRetainedChangeTime);
2414 avro::encode(e, v.sessionId);
2415 avro::encode(e, v.endpointCapabilities);
2416 }
2417 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Core::OpenSession& v) {
2418 avro::decode(e, v.applicationName);
2419 avro::decode(e, v.applicationVersion);
2420 avro::decode(e, v.serverInstanceId);
2421 avro::decode(e, v.supportedProtocols);
2422 avro::decode(e, v.supportedDataObjects);
2423 avro::decode(e, v.supportedCompression);
2424 avro::decode(e, v.supportedFormats);
2425 avro::decode(e, v.currentDateTime);
2426 avro::decode(e, v.earliestRetainedChangeTime);
2427 avro::decode(e, v.sessionId);
2428 avro::decode(e, v.endpointCapabilities);
2429 }
2430 };
2431}
2432namespace Energistics {
2433 namespace Etp {
2434 namespace v12 {
2435 namespace Protocol {
2436 namespace Core {
2438 std::string applicationName;
2439 std::string applicationVersion;
2441 std::vector<Energistics::Etp::v12::Datatypes::SupportedProtocol> requestedProtocols;
2442 std::vector<Energistics::Etp::v12::Datatypes::SupportedDataObject> supportedDataObjects;
2443 std::vector<std::string> supportedCompression;
2444 std::vector<std::string> supportedFormats = { "xml" };
2445 int64_t currentDateTime = std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::system_clock::now().time_since_epoch()).count();
2446 int64_t earliestRetainedChangeTime = std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::system_clock::now().time_since_epoch()).count();
2447 bool serverAuthorizationRequired=false;
2448 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> endpointCapabilities;
2449 static constexpr int messageTypeId=1;
2450 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Core);
2451 };
2452 }
2453 }
2454 }
2455 }
2456}
2457namespace avro {
2458 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Core::RequestSession> {
2459 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Core::RequestSession& v) {
2460 avro::encode(e, v.applicationName);
2461 avro::encode(e, v.applicationVersion);
2462 avro::encode(e, v.clientInstanceId);
2463 avro::encode(e, v.requestedProtocols);
2464 avro::encode(e, v.supportedDataObjects);
2465 avro::encode(e, v.supportedCompression);
2466 avro::encode(e, v.supportedFormats);
2467 avro::encode(e, v.currentDateTime);
2468 avro::encode(e, v.earliestRetainedChangeTime);
2469 avro::encode(e, v.serverAuthorizationRequired);
2470 avro::encode(e, v.endpointCapabilities);
2471 }
2472 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Core::RequestSession& v) {
2473 avro::decode(e, v.applicationName);
2474 avro::decode(e, v.applicationVersion);
2475 avro::decode(e, v.clientInstanceId);
2476 avro::decode(e, v.requestedProtocols);
2477 avro::decode(e, v.supportedDataObjects);
2478 avro::decode(e, v.supportedCompression);
2479 avro::decode(e, v.supportedFormats);
2480 avro::decode(e, v.currentDateTime);
2481 avro::decode(e, v.earliestRetainedChangeTime);
2482 avro::decode(e, v.serverAuthorizationRequired);
2483 avro::decode(e, v.endpointCapabilities);
2484 }
2485 };
2486}
2487namespace Energistics {
2488 namespace Etp {
2489 namespace v12 {
2490 namespace Datatypes {
2492 std::string applicationName;
2493 std::string applicationVersion;
2495 std::vector<std::string> supportedCompression;
2496 std::vector<std::string> supportedEncodings;
2497 std::vector<std::string> supportedFormats;
2498 std::vector<Energistics::Etp::v12::Datatypes::SupportedDataObject> supportedDataObjects;
2499 std::vector<Energistics::Etp::v12::Datatypes::SupportedProtocol> supportedProtocols;
2500 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> endpointCapabilities;
2501 };
2502 }
2503 }
2504 }
2505}
2506namespace avro {
2507 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ServerCapabilities> {
2508 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ServerCapabilities& v) {
2509 avro::encode(e, v.applicationName);
2510 avro::encode(e, v.applicationVersion);
2511 avro::encode(e, v.contactInformation);
2512 avro::encode(e, v.supportedCompression);
2513 avro::encode(e, v.supportedEncodings);
2514 avro::encode(e, v.supportedFormats);
2515 avro::encode(e, v.supportedDataObjects);
2516 avro::encode(e, v.supportedProtocols);
2517 avro::encode(e, v.endpointCapabilities);
2518 }
2519 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ServerCapabilities& v) {
2520 avro::decode(e, v.applicationName);
2521 avro::decode(e, v.applicationVersion);
2522 avro::decode(e, v.contactInformation);
2523 avro::decode(e, v.supportedCompression);
2524 avro::decode(e, v.supportedEncodings);
2525 avro::decode(e, v.supportedFormats);
2526 avro::decode(e, v.supportedDataObjects);
2527 avro::decode(e, v.supportedProtocols);
2528 avro::decode(e, v.endpointCapabilities);
2529 }
2530 };
2531}
2532namespace Energistics {
2533 namespace Etp {
2534 namespace v12 {
2535 namespace Datatypes {
2536 namespace ChannelData {
2538 int64_t sinceChangeTime = std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::system_clock::now().time_since_epoch()).count();
2539 std::vector<int64_t> channelIds;
2540 };
2541 }
2542 }
2543 }
2544 }
2545}
2546namespace avro {
2547 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::ChannelChangeRequestInfo> {
2548 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::ChannelChangeRequestInfo& v) {
2549 avro::encode(e, v.sinceChangeTime);
2550 avro::encode(e, v.channelIds);
2551 }
2553 avro::decode(e, v.sinceChangeTime);
2554 avro::decode(e, v.channelIds);
2555 }
2556 };
2557}
2558namespace Energistics {
2559 namespace Etp {
2560 namespace v12 {
2561 namespace Datatypes {
2562 namespace ChannelData {
2563 enum class ChannelDataKind {
2564 DateTime=0,
2565 ElapsedTime=1,
2566 MeasuredDepth=2,
2567 PassIndexedDepth=3,
2568 TrueVerticalDepth=4,
2569 typeBoolean=5,
2570 typeInt=6,
2571 typeLong=7,
2572 typeFloat=8,
2573 typeDouble=9,
2574 typeString=10,
2575 typeBytes=11
2576 };
2577 }
2578 }
2579 }
2580 }
2581}
2582namespace avro {
2583 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind> {
2584 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind& v) {
2585 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind>::type>(v));
2586 }
2587 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind& v) {
2588 v = static_cast<Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind>(e.decodeEnum());
2589 }
2590 };
2591}
2592namespace Energistics {
2593 namespace Etp {
2594 namespace v12 {
2595 namespace Datatypes {
2597 int32_t attributeId = 0;
2598 std::string attributeName;
2599 Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind dataKind;
2600 std::string uom;
2601 std::string depthDatum;
2602 std::string attributePropertyKindUri;
2603 std::vector<int32_t> axisVectorLengths;
2604 };
2605 }
2606 }
2607 }
2608}
2609namespace avro {
2610 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::AttributeMetadataRecord> {
2611 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::AttributeMetadataRecord& v) {
2612 avro::encode(e, v.attributeId);
2613 avro::encode(e, v.attributeName);
2614 avro::encode(e, v.dataKind);
2615 avro::encode(e, v.uom);
2616 avro::encode(e, v.depthDatum);
2617 avro::encode(e, v.attributePropertyKindUri);
2618 avro::encode(e, v.axisVectorLengths);
2619 }
2620 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::AttributeMetadataRecord& v) {
2621 avro::decode(e, v.attributeId);
2622 avro::decode(e, v.attributeName);
2623 avro::decode(e, v.dataKind);
2624 avro::decode(e, v.uom);
2625 avro::decode(e, v.depthDatum);
2626 avro::decode(e, v.attributePropertyKindUri);
2627 avro::decode(e, v.axisVectorLengths);
2628 }
2629 };
2630}
2631namespace Energistics {
2632 namespace Etp {
2633 namespace v12 {
2634 namespace Datatypes {
2635 namespace ChannelData {
2636 enum class ChannelIndexKind {
2637 DateTime=0,
2638 ElapsedTime=1,
2639 MeasuredDepth=2,
2640 TrueVerticalDepth=3,
2641 PassIndexedDepth=4,
2642 Pressure=5,
2643 Temperature=6,
2644 Scalar=7
2645 };
2646 }
2647 }
2648 }
2649 }
2650}
2651namespace avro {
2652 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::ChannelIndexKind> {
2653 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::ChannelIndexKind& v) {
2654 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::ChannelData::ChannelIndexKind>::type>(v));
2655 }
2656 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ChannelData::ChannelIndexKind& v) {
2657 v = static_cast<Energistics::Etp::v12::Datatypes::ChannelData::ChannelIndexKind>(e.decodeEnum());
2658 }
2659 };
2660}
2661namespace Energistics {
2662 namespace Etp {
2663 namespace v12 {
2664 namespace Datatypes {
2665 namespace ChannelData {
2666 struct FramePoint {
2668 std::vector<Energistics::Etp::v12::Datatypes::DataAttribute> valueAttributes;
2669 };
2670 }
2671 }
2672 }
2673 }
2674}
2675namespace avro {
2676 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::FramePoint> {
2677 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::FramePoint& v) {
2678 avro::encode(e, v.value);
2679 avro::encode(e, v.valueAttributes);
2680 }
2681 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ChannelData::FramePoint& v) {
2682 avro::decode(e, v.value);
2683 avro::decode(e, v.valueAttributes);
2684 }
2685 };
2686}
2687namespace Energistics {
2688 namespace Etp {
2689 namespace v12 {
2690 namespace Datatypes {
2691 namespace ChannelData {
2692 enum class IndexDirection {
2693 Increasing=0,
2694 Decreasing=1,
2695 Unordered=2
2696 };
2697 }
2698 }
2699 }
2700 }
2701}
2702namespace avro {
2703 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::IndexDirection> {
2704 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::IndexDirection& v) {
2705 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::ChannelData::IndexDirection>::type>(v));
2706 }
2707 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ChannelData::IndexDirection& v) {
2708 v = static_cast<Energistics::Etp::v12::Datatypes::ChannelData::IndexDirection>(e.decodeEnum());
2709 }
2710 };
2711}
2712namespace Energistics {
2713 namespace Etp {
2714 namespace v12 {
2715 namespace Datatypes {
2716 namespace ChannelData {
2717 enum class PassDirection {
2718 Up=0,
2719 HoldingSteady=1,
2720 Down=2
2721 };
2722 }
2723 }
2724 }
2725 }
2726}
2727namespace avro {
2728 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::PassDirection> {
2729 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::PassDirection& v) {
2730 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::ChannelData::PassDirection>::type>(v));
2731 }
2732 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ChannelData::PassDirection& v) {
2733 v = static_cast<Energistics::Etp::v12::Datatypes::ChannelData::PassDirection>(e.decodeEnum());
2734 }
2735 };
2736}
2737namespace Energistics {
2738 namespace Etp {
2739 namespace v12 {
2740 namespace Datatypes {
2741 namespace ChannelData {
2743 int64_t pass = 0;
2744 Energistics::Etp::v12::Datatypes::ChannelData::PassDirection direction = Energistics::Etp::v12::Datatypes::ChannelData::PassDirection::Up;
2745 double depth = .0;
2746 };
2747 }
2748 }
2749 }
2750 }
2751}
2752namespace avro {
2753 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::PassIndexedDepth> {
2754 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::PassIndexedDepth& v) {
2755 avro::encode(e, v.pass);
2756 avro::encode(e, v.direction);
2757 avro::encode(e, v.depth);
2758 }
2759 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ChannelData::PassIndexedDepth& v) {
2760 avro::decode(e, v.pass);
2761 avro::decode(e, v.direction);
2762 avro::decode(e, v.depth);
2763 }
2764 };
2765}
2766namespace Energistics {
2767 namespace Etp {
2768 namespace v12 {
2769 namespace Datatypes {
2771 private:
2772 size_t idx_=0;
2773 boost::any value_;
2774
2775 public:
2776 size_t idx() const { return idx_; }
2777 bool is_null() const { return idx_==0; }
2778 void set_null() { idx_=0; value_ = boost::any(); }
2779 int64_t const & get_long() const {
2780 if (idx_ != 1) {
2781 throw avro::Exception("Invalid type for union.");
2782 }
2783 return boost::any_cast< int64_t const & >(value_);
2784 }
2785 int64_t& get_long() {
2786 if (idx_ != 1) {
2787 throw avro::Exception("Invalid type for union.");
2788 }
2789 return boost::any_cast< int64_t& >(value_);
2790 }
2791 void set_long(const int64_t& v) {
2792 idx_ = 1;
2793 value_ = v;
2794 }
2795 double const & get_double() const {
2796 if (idx_ != 2) {
2797 throw avro::Exception("Invalid type for union.");
2798 }
2799 return boost::any_cast< double const & >(value_);
2800 }
2801 double& get_double() {
2802 if (idx_ != 2) {
2803 throw avro::Exception("Invalid type for union.");
2804 }
2805 return boost::any_cast< double& >(value_);
2806 }
2807 void set_double(const double& v) {
2808 idx_ = 2;
2809 value_ = v;
2810 }
2811 Energistics::Etp::v12::Datatypes::ChannelData::PassIndexedDepth const & get_PassIndexedDepth() const {
2812 if (idx_ != 3) {
2813 throw avro::Exception("Invalid type for union.");
2814 }
2815 return boost::any_cast< Energistics::Etp::v12::Datatypes::ChannelData::PassIndexedDepth const & >(value_);
2816 }
2818 if (idx_ != 3) {
2819 throw avro::Exception("Invalid type for union.");
2820 }
2821 return boost::any_cast< Energistics::Etp::v12::Datatypes::ChannelData::PassIndexedDepth& >(value_);
2822 }
2823 void set_PassIndexedDepth(const Energistics::Etp::v12::Datatypes::ChannelData::PassIndexedDepth& v) {
2824 idx_ = 3;
2825 value_ = v;
2826 }
2827 };
2828 }
2829 }
2830 }
2831}
2832namespace avro {
2833 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::IndexValueitem_t> {
2834
2835 static void encode(Encoder& e, Energistics::Etp::v12::Datatypes::IndexValueitem_t v) {
2836
2837 e.encodeUnionIndex(v.idx());
2838 switch (v.idx()) {
2839 case 0:
2840 e.encodeNull();
2841 break;
2842 case 1:
2843 avro::encode(e, v.get_long());
2844 break;
2845 case 2:
2846 avro::encode(e, v.get_double());
2847 break;
2848 case 3:
2849 avro::encode(e, v.get_PassIndexedDepth());
2850 break;
2851 }
2852 }
2853 static void decode(Decoder& d, Energistics::Etp::v12::Datatypes::IndexValueitem_t& v) {
2854
2855 size_t n = d.decodeUnionIndex();
2856 if (n >= 4) { throw avro::Exception("Union index too big"); }
2857 switch (n) {
2858 case 0:
2859 {
2860 d.decodeNull();
2861 v.set_null();
2862 }
2863 break;
2864 case 1:
2865 {
2866 int64_t vv;
2867 avro::decode(d, vv);
2868 v.set_long(vv);
2869 }
2870 break;
2871 case 2:
2872 {
2873 double vv;
2874 avro::decode(d, vv);
2875 v.set_double(vv);
2876 }
2877 break;
2878 case 3:
2879 {
2881 avro::decode(d, vv);
2882 v.set_PassIndexedDepth(vv);
2883 }
2884 break;
2885 }
2886 }
2887 };
2888}
2889
2890namespace Energistics {
2891 namespace Etp {
2892 namespace v12 {
2893 namespace Datatypes {
2897 }
2898 }
2899 }
2900}
2901namespace avro {
2902 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::IndexValue> {
2903 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::IndexValue& v) {
2904 avro::encode(e, v.item);
2905 }
2906 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::IndexValue& v) {
2907 avro::decode(e, v.item);
2908 }
2909 };
2910}
2911namespace Energistics {
2912 namespace Etp {
2913 namespace v12 {
2914 namespace Datatypes {
2915 namespace ChannelData {
2917 int64_t channelId = 0;
2919 bool dataChanges=false;
2920 boost::optional<int32_t> requestLatestIndexCount;
2921 bool has_requestLatestIndexCount() const { return requestLatestIndexCount.is_initialized(); }
2922 int32_t get_requestLatestIndexCount() const { return requestLatestIndexCount.get(); }
2923 };
2924 }
2925 }
2926 }
2927 }
2928}
2929namespace avro {
2930 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::ChannelSubscribeInfo> {
2931 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::ChannelSubscribeInfo& v) {
2932 avro::encode(e, v.channelId);
2933 avro::encode(e, v.startIndex);
2934 avro::encode(e, v.dataChanges);
2935 avro::encode(e, v.requestLatestIndexCount);
2936 }
2938 avro::decode(e, v.channelId);
2939 avro::decode(e, v.startIndex);
2940 avro::decode(e, v.dataChanges);
2941 avro::decode(e, v.requestLatestIndexCount);
2942 }
2943 };
2944}
2945namespace Energistics {
2946 namespace Etp {
2947 namespace v12 {
2948 namespace Datatypes {
2949 namespace ChannelData {
2950 struct DataItem {
2951 int64_t channelId = 0;
2952 std::vector<Energistics::Etp::v12::Datatypes::IndexValue> indexes;
2954 std::vector<Energistics::Etp::v12::Datatypes::DataAttribute> valueAttributes;
2955 };
2956 }
2957 }
2958 }
2959 }
2960}
2961namespace avro {
2962 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::DataItem> {
2963 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::DataItem& v) {
2964 avro::encode(e, v.channelId);
2965 avro::encode(e, v.indexes);
2966 avro::encode(e, v.value);
2967 avro::encode(e, v.valueAttributes);
2968 }
2969 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ChannelData::DataItem& v) {
2970 avro::decode(e, v.channelId);
2971 avro::decode(e, v.indexes);
2972 avro::decode(e, v.value);
2973 avro::decode(e, v.valueAttributes);
2974 }
2975 };
2976}
2977namespace Energistics {
2978 namespace Etp {
2979 namespace v12 {
2980 namespace Datatypes {
2981 namespace ChannelData {
2982 struct FrameRow {
2983 std::vector<Energistics::Etp::v12::Datatypes::IndexValue> indexes;
2984 std::vector<Energistics::Etp::v12::Datatypes::ChannelData::FramePoint> points;
2985 };
2986 }
2987 }
2988 }
2989 }
2990}
2991namespace avro {
2992 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::FrameRow> {
2993 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::FrameRow& v) {
2994 avro::encode(e, v.indexes);
2995 avro::encode(e, v.points);
2996 }
2997 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ChannelData::FrameRow& v) {
2998 avro::decode(e, v.indexes);
2999 avro::decode(e, v.points);
3000 }
3001 };
3002}
3003namespace Energistics {
3004 namespace Etp {
3005 namespace v12 {
3006 namespace Datatypes {
3007 namespace ChannelData {
3009 int64_t channelId = 0;
3011 };
3012 }
3013 }
3014 }
3015 }
3016}
3017namespace avro {
3018 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::TruncateInfo> {
3019 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::TruncateInfo& v) {
3020 avro::encode(e, v.channelId);
3021 avro::encode(e, v.newEndIndex);
3022 }
3023 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ChannelData::TruncateInfo& v) {
3024 avro::decode(e, v.channelId);
3025 avro::decode(e, v.newEndIndex);
3026 }
3027 };
3028}
3029namespace Energistics {
3030 namespace Etp {
3031 namespace v12 {
3032 namespace Datatypes {
3033 namespace DataArrayTypes {
3034 struct DataArray {
3035 std::vector<int64_t> dimensions;
3037 };
3038 }
3039 }
3040 }
3041 }
3042}
3043namespace avro {
3044 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArray> {
3045 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArray& v) {
3046 avro::encode(e, v.dimensions);
3047 avro::encode(e, v.data);
3048 }
3049 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArray& v) {
3050 avro::decode(e, v.dimensions);
3051 avro::decode(e, v.data);
3052 }
3053 };
3054}
3055namespace Energistics {
3056 namespace Etp {
3057 namespace v12 {
3058 namespace Protocol {
3059 namespace DataArray {
3061 std::map<std::string, Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArray> dataArrays;
3062 static constexpr int messageTypeId=1;
3063 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataArray);
3064 };
3065 }
3066 }
3067 }
3068 }
3069}
3070namespace avro {
3071 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::GetDataArraysResponse> {
3072 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataArray::GetDataArraysResponse& v) {
3073 avro::encode(e, v.dataArrays);
3074 }
3076 avro::decode(e, v.dataArrays);
3077 }
3078 };
3079}
3080namespace Energistics {
3081 namespace Etp {
3082 namespace v12 {
3083 namespace Protocol {
3084 namespace DataArray {
3086 std::map<std::string, Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArray> dataSubarrays;
3087 static constexpr int messageTypeId=8;
3088 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataArray);
3089 };
3090 }
3091 }
3092 }
3093 }
3094}
3095namespace avro {
3096 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::GetDataSubarraysResponse> {
3097 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataArray::GetDataSubarraysResponse& v) {
3098 avro::encode(e, v.dataSubarrays);
3099 }
3101 avro::decode(e, v.dataSubarrays);
3102 }
3103 };
3104}
3105namespace Energistics {
3106 namespace Etp {
3107 namespace v12 {
3108 namespace Datatypes {
3109 namespace DataArrayTypes {
3111 std::string uri;
3112 std::string pathInResource;
3113 };
3114 }
3115 }
3116 }
3117 }
3118}
3119namespace avro {
3120 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArrayIdentifier> {
3121 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArrayIdentifier& v) {
3122 avro::encode(e, v.uri);
3123 avro::encode(e, v.pathInResource);
3124 }
3126 avro::decode(e, v.uri);
3127 avro::decode(e, v.pathInResource);
3128 }
3129 };
3130}
3131namespace Energistics {
3132 namespace Etp {
3133 namespace v12 {
3134 namespace Protocol {
3135 namespace DataArray {
3137 std::map<std::string, Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArrayIdentifier> dataArrays;
3138 static constexpr int messageTypeId=6;
3139 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataArray);
3140 };
3141 }
3142 }
3143 }
3144 }
3145}
3146namespace avro {
3147 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::GetDataArrayMetadata> {
3148 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataArray::GetDataArrayMetadata& v) {
3149 avro::encode(e, v.dataArrays);
3150 }
3151 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::DataArray::GetDataArrayMetadata& v) {
3152 avro::decode(e, v.dataArrays);
3153 }
3154 };
3155}
3156namespace Energistics {
3157 namespace Etp {
3158 namespace v12 {
3159 namespace Protocol {
3160 namespace DataArray {
3162 std::map<std::string, Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArrayIdentifier> dataArrays;
3163 static constexpr int messageTypeId=2;
3164 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataArray);
3165 };
3166 }
3167 }
3168 }
3169 }
3170}
3171namespace avro {
3172 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::GetDataArrays> {
3173 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataArray::GetDataArrays& v) {
3174 avro::encode(e, v.dataArrays);
3175 }
3176 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::DataArray::GetDataArrays& v) {
3177 avro::decode(e, v.dataArrays);
3178 }
3179 };
3180}
3181namespace Energistics {
3182 namespace Etp {
3183 namespace v12 {
3184 namespace Datatypes {
3185 namespace DataArrayTypes {
3188 std::vector<int64_t> starts;
3189 std::vector<int64_t> counts;
3190 };
3191 }
3192 }
3193 }
3194 }
3195}
3196namespace avro {
3197 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::GetDataSubarraysType> {
3198 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::DataArrayTypes::GetDataSubarraysType& v) {
3199 avro::encode(e, v.uid);
3200 avro::encode(e, v.starts);
3201 avro::encode(e, v.counts);
3202 }
3204 avro::decode(e, v.uid);
3205 avro::decode(e, v.starts);
3206 avro::decode(e, v.counts);
3207 }
3208 };
3209}
3210namespace Energistics {
3211 namespace Etp {
3212 namespace v12 {
3213 namespace Protocol {
3214 namespace DataArray {
3216 std::map<std::string, Energistics::Etp::v12::Datatypes::DataArrayTypes::GetDataSubarraysType> dataSubarrays;
3217 static constexpr int messageTypeId=3;
3218 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataArray);
3219 };
3220 }
3221 }
3222 }
3223 }
3224}
3225namespace avro {
3226 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::GetDataSubarrays> {
3227 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataArray::GetDataSubarrays& v) {
3228 avro::encode(e, v.dataSubarrays);
3229 }
3230 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::DataArray::GetDataSubarrays& v) {
3231 avro::decode(e, v.dataSubarrays);
3232 }
3233 };
3234}
3235namespace Energistics {
3236 namespace Etp {
3237 namespace v12 {
3238 namespace Datatypes {
3239 namespace DataArrayTypes {
3241 std::vector<int64_t> dimensions;
3242 std::vector<int64_t> preferredSubarrayDimensions;
3243 Energistics::Etp::v12::Datatypes::AnyArrayType transportArrayType;
3244 Energistics::Etp::v12::Datatypes::AnyLogicalArrayType logicalArrayType;
3245 int64_t storeLastWrite = 0;
3246 int64_t storeCreated = 0;
3247 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
3248 };
3249 }
3250 }
3251 }
3252 }
3253}
3254namespace avro {
3255 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArrayMetadata> {
3256 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArrayMetadata& v) {
3257 avro::encode(e, v.dimensions);
3258 avro::encode(e, v.preferredSubarrayDimensions);
3259 avro::encode(e, v.transportArrayType);
3260 avro::encode(e, v.logicalArrayType);
3261 avro::encode(e, v.storeLastWrite);
3262 avro::encode(e, v.storeCreated);
3263 avro::encode(e, v.customData);
3264 }
3266 avro::decode(e, v.dimensions);
3267 avro::decode(e, v.preferredSubarrayDimensions);
3268 avro::decode(e, v.transportArrayType);
3269 avro::decode(e, v.logicalArrayType);
3270 avro::decode(e, v.storeLastWrite);
3271 avro::decode(e, v.storeCreated);
3272 avro::decode(e, v.customData);
3273 }
3274 };
3275}
3276namespace Energistics {
3277 namespace Etp {
3278 namespace v12 {
3279 namespace Protocol {
3280 namespace DataArray {
3282 std::map<std::string, Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArrayMetadata> arrayMetadata;
3283 static constexpr int messageTypeId=7;
3284 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataArray);
3285 };
3286 }
3287 }
3288 }
3289 }
3290}
3291namespace avro {
3292 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::GetDataArrayMetadataResponse> {
3293 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataArray::GetDataArrayMetadataResponse& v) {
3294 avro::encode(e, v.arrayMetadata);
3295 }
3297 avro::decode(e, v.arrayMetadata);
3298 }
3299 };
3300}
3301namespace Energistics {
3302 namespace Etp {
3303 namespace v12 {
3304 namespace Datatypes {
3305 namespace DataArrayTypes {
3309 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
3310 };
3311 }
3312 }
3313 }
3314 }
3315}
3316namespace avro {
3317 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::PutDataArraysType> {
3318 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::DataArrayTypes::PutDataArraysType& v) {
3319 avro::encode(e, v.uid);
3320 avro::encode(e, v.array);
3321 avro::encode(e, v.customData);
3322 }
3324 avro::decode(e, v.uid);
3325 avro::decode(e, v.array);
3326 avro::decode(e, v.customData);
3327 }
3328 };
3329}
3330namespace Energistics {
3331 namespace Etp {
3332 namespace v12 {
3333 namespace Protocol {
3334 namespace DataArray {
3336 std::map<std::string, Energistics::Etp::v12::Datatypes::DataArrayTypes::PutDataArraysType> dataArrays;
3337 static constexpr int messageTypeId=4;
3338 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataArray);
3339 };
3340 }
3341 }
3342 }
3343 }
3344}
3345namespace avro {
3346 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::PutDataArrays> {
3347 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataArray::PutDataArrays& v) {
3348 avro::encode(e, v.dataArrays);
3349 }
3350 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::DataArray::PutDataArrays& v) {
3351 avro::decode(e, v.dataArrays);
3352 }
3353 };
3354}
3355namespace Energistics {
3356 namespace Etp {
3357 namespace v12 {
3358 namespace Datatypes {
3359 namespace DataArrayTypes {
3363 std::vector<int64_t> starts;
3364 std::vector<int64_t> counts;
3365 };
3366 }
3367 }
3368 }
3369 }
3370}
3371namespace avro {
3372 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::PutDataSubarraysType> {
3373 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::DataArrayTypes::PutDataSubarraysType& v) {
3374 avro::encode(e, v.uid);
3375 avro::encode(e, v.data);
3376 avro::encode(e, v.starts);
3377 avro::encode(e, v.counts);
3378 }
3380 avro::decode(e, v.uid);
3381 avro::decode(e, v.data);
3382 avro::decode(e, v.starts);
3383 avro::decode(e, v.counts);
3384 }
3385 };
3386}
3387namespace Energistics {
3388 namespace Etp {
3389 namespace v12 {
3390 namespace Protocol {
3391 namespace DataArray {
3393 std::map<std::string, Energistics::Etp::v12::Datatypes::DataArrayTypes::PutDataSubarraysType> dataSubarrays;
3394 static constexpr int messageTypeId=5;
3395 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataArray);
3396 };
3397 }
3398 }
3399 }
3400 }
3401}
3402namespace avro {
3403 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::PutDataSubarrays> {
3404 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataArray::PutDataSubarrays& v) {
3405 avro::encode(e, v.dataSubarrays);
3406 }
3407 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::DataArray::PutDataSubarrays& v) {
3408 avro::decode(e, v.dataSubarrays);
3409 }
3410 };
3411}
3412namespace Energistics {
3413 namespace Etp {
3414 namespace v12 {
3415 namespace Datatypes {
3416 namespace DataArrayTypes {
3421 }
3422 }
3423 }
3424 }
3425}
3426namespace avro {
3427 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::PutUninitializedDataArrayType> {
3429 avro::encode(e, v.uid);
3430 avro::encode(e, v.metadata);
3431 }
3433 avro::decode(e, v.uid);
3434 avro::decode(e, v.metadata);
3435 }
3436 };
3437}
3438namespace Energistics {
3439 namespace Etp {
3440 namespace v12 {
3441 namespace Protocol {
3442 namespace DataArray {
3444 std::map<std::string, Energistics::Etp::v12::Datatypes::DataArrayTypes::PutUninitializedDataArrayType> dataArrays;
3445 static constexpr int messageTypeId=9;
3446 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataArray);
3447 };
3448 }
3449 }
3450 }
3451 }
3452}
3453namespace avro {
3454 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::PutUninitializedDataArrays> {
3455 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataArray::PutUninitializedDataArrays& v) {
3456 avro::encode(e, v.dataArrays);
3457 }
3459 avro::decode(e, v.dataArrays);
3460 }
3461 };
3462}
3463namespace Energistics {
3464 namespace Etp {
3465 namespace v12 {
3466 namespace Datatypes {
3467 namespace Object {
3468 enum class ActiveStatusKind {
3469 Active=0,
3470 Inactive=1
3471 };
3472 }
3473 }
3474 }
3475 }
3476}
3477namespace avro {
3478 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind> {
3479 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind& v) {
3480 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind>::type>(v));
3481 }
3482 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind& v) {
3483 v = static_cast<Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind>(e.decodeEnum());
3484 }
3485 };
3486}
3487namespace Energistics {
3488 namespace Etp {
3489 namespace v12 {
3490 namespace Datatypes {
3491 namespace ChannelData {
3493 std::string uri;
3494 std::string channelName;
3495 Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind dataKind = Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind::DateTime;
3496 std::string uom;
3497 std::string depthDatum;
3498 std::string channelPropertyKindUri;
3499 Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind status = Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind::Active;
3500 std::string source;
3501 std::vector<int32_t> axisVectorLengths;
3502 std::vector<Energistics::Etp::v12::Datatypes::AttributeMetadataRecord> attributeMetadata;
3503 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
3504 };
3505 }
3506 }
3507 }
3508 }
3509}
3510namespace avro {
3511 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::FrameChannelMetadataRecord> {
3512 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::FrameChannelMetadataRecord& v) {
3513 avro::encode(e, v.uri);
3514 avro::encode(e, v.channelName);
3515 avro::encode(e, v.dataKind);
3516 avro::encode(e, v.uom);
3517 avro::encode(e, v.depthDatum);
3518 avro::encode(e, v.channelPropertyKindUri);
3519 avro::encode(e, v.status);
3520 avro::encode(e, v.source);
3521 avro::encode(e, v.axisVectorLengths);
3522 avro::encode(e, v.attributeMetadata);
3523 avro::encode(e, v.customData);
3524 }
3526 avro::decode(e, v.uri);
3527 avro::decode(e, v.channelName);
3528 avro::decode(e, v.dataKind);
3529 avro::decode(e, v.uom);
3530 avro::decode(e, v.depthDatum);
3531 avro::decode(e, v.channelPropertyKindUri);
3532 avro::decode(e, v.status);
3533 avro::decode(e, v.source);
3534 avro::decode(e, v.axisVectorLengths);
3535 avro::decode(e, v.attributeMetadata);
3536 avro::decode(e, v.customData);
3537 }
3538 };
3539}
3540namespace Energistics {
3541 namespace Etp {
3542 namespace v12 {
3543 namespace Datatypes {
3544 namespace Object {
3545 enum class ContextScopeKind {
3546 self=0,
3547 sources=1,
3548 targets=2,
3549 sourcesOrSelf=3,
3550 targetsOrSelf=4
3551 };
3552 }
3553 }
3554 }
3555 }
3556}
3557namespace avro {
3558 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ContextScopeKind> {
3559 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::ContextScopeKind& v) {
3560 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Object::ContextScopeKind>::type>(v));
3561 }
3562 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::ContextScopeKind& v) {
3563 v = static_cast<Energistics::Etp::v12::Datatypes::Object::ContextScopeKind>(e.decodeEnum());
3564 }
3565 };
3566}
3567namespace Energistics {
3568 namespace Etp {
3569 namespace v12 {
3570 namespace Datatypes {
3571 namespace Object {
3572 struct Dataspace {
3573 std::string uri;
3574 std::string path;
3575 int64_t storeLastWrite = 0;
3576 int64_t storeCreated = 0;
3577 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
3578 };
3579 }
3580 }
3581 }
3582 }
3583}
3584namespace avro {
3585 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::Dataspace> {
3586 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::Dataspace& v) {
3587 avro::encode(e, v.uri);
3588 avro::encode(e, v.path);
3589 avro::encode(e, v.storeLastWrite);
3590 avro::encode(e, v.storeCreated);
3591 avro::encode(e, v.customData);
3592 }
3593 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::Dataspace& v) {
3594 avro::decode(e, v.uri);
3595 avro::decode(e, v.path);
3596 avro::decode(e, v.storeLastWrite);
3597 avro::decode(e, v.storeCreated);
3598 avro::decode(e, v.customData);
3599 }
3600 };
3601}
3602namespace Energistics {
3603 namespace Etp {
3604 namespace v12 {
3605 namespace Protocol {
3606 namespace Dataspace {
3608 std::vector<Energistics::Etp::v12::Datatypes::Object::Dataspace> dataspaces;
3609 static constexpr int messageTypeId=2;
3610 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Dataspace);
3611 };
3612 }
3613 }
3614 }
3615 }
3616}
3617namespace avro {
3618 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Dataspace::GetDataspacesResponse> {
3619 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Dataspace::GetDataspacesResponse& v) {
3620 avro::encode(e, v.dataspaces);
3621 }
3623 avro::decode(e, v.dataspaces);
3624 }
3625 };
3626}
3627namespace Energistics {
3628 namespace Etp {
3629 namespace v12 {
3630 namespace Protocol {
3631 namespace Dataspace {
3633 std::map<std::string, Energistics::Etp::v12::Datatypes::Object::Dataspace> dataspaces;
3634 static constexpr int messageTypeId=3;
3635 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Dataspace);
3636 };
3637 }
3638 }
3639 }
3640 }
3641}
3642namespace avro {
3643 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Dataspace::PutDataspaces> {
3644 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Dataspace::PutDataspaces& v) {
3645 avro::encode(e, v.dataspaces);
3646 }
3647 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Dataspace::PutDataspaces& v) {
3648 avro::decode(e, v.dataspaces);
3649 }
3650 };
3651}
3652namespace Energistics {
3653 namespace Etp {
3654 namespace v12 {
3655 namespace Protocol {
3656 namespace DataspaceOSDU {
3658 std::map<std::string, std::string> uris;
3659 static constexpr int messageTypeId = 1;
3660 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataspaceOSDU);
3661 };
3662 }
3663 }
3664 }
3665 }
3666}
3667namespace avro {
3668 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::GetDataspaceInfo> {
3669 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataspaceOSDU::GetDataspaceInfo& v) {
3670 avro::encode(e, v.uris);
3671 }
3672 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::DataspaceOSDU::GetDataspaceInfo& v) {
3673 avro::decode(e, v.uris);
3674 }
3675 };
3676}
3677namespace Energistics {
3678 namespace Etp {
3679 namespace v12 {
3680 namespace Protocol {
3681 namespace DataspaceOSDU {
3683 std::map<std::string, Energistics::Etp::v12::Datatypes::Object::Dataspace> dataspaces;
3684 static constexpr int messageTypeId = 2;
3685 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataspaceOSDU);
3686 };
3687 }
3688 }
3689 }
3690 }
3691}
3692namespace avro {
3693 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::GetDataspaceInfoResponse> {
3694 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataspaceOSDU::GetDataspaceInfoResponse& v) {
3695 avro::encode(e, v.dataspaces);
3696 }
3698 avro::decode(e, v.dataspaces);
3699 }
3700 };
3701}
3702namespace Energistics {
3703 namespace Etp {
3704 namespace v12 {
3705 namespace Protocol {
3706 namespace DataspaceOSDU {
3708 std::map<std::string, std::string> dataspaces;
3709 std::string targetDataspace;
3710 static constexpr int messageTypeId = 3;
3711 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataspaceOSDU);
3712 };
3713 }
3714 }
3715 }
3716 }
3717}
3718namespace avro {
3719 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::CopyDataspacesContent> {
3720 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataspaceOSDU::CopyDataspacesContent& v) {
3721 avro::encode(e, v.dataspaces);
3722 avro::encode(e, v.targetDataspace);
3723 }
3725 avro::decode(e, v.dataspaces);
3726 avro::decode(e, v.targetDataspace);
3727 }
3728 };
3729}
3730namespace Energistics {
3731 namespace Etp {
3732 namespace v12 {
3733 namespace Protocol {
3734 namespace DataspaceOSDU {
3736 std::map<std::string, std::string> success;
3737 static constexpr int messageTypeId = 4;
3738 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataspaceOSDU);
3739 };
3740 }
3741 }
3742 }
3743 }
3744}
3745namespace avro {
3746 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::CopyDataspacesContentResponse> {
3748 avro::encode(e, v.success);
3749 }
3751 avro::decode(e, v.success);
3752 }
3753 };
3754}
3755namespace Energistics {
3756 namespace Etp {
3757 namespace v12 {
3758 namespace Protocol {
3759 namespace DataspaceOSDU {
3761 std::map<std::string, std::string> uris;
3762 bool lock;
3763 static constexpr int messageTypeId = 5;
3764 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataspaceOSDU);
3765 };
3766 }
3767 }
3768 }
3769 }
3770}
3771namespace avro {
3772 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::LockDataspaces> {
3773 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataspaceOSDU::LockDataspaces& v) {
3774 avro::encode(e, v.uris);
3775 avro::encode(e, v.lock);
3776 }
3777 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::DataspaceOSDU::LockDataspaces& v) {
3778 avro::decode(e, v.uris);
3779 avro::decode(e, v.lock);
3780 }
3781 };
3782}
3783namespace Energistics {
3784 namespace Etp {
3785 namespace v12 {
3786 namespace Protocol {
3787 namespace DataspaceOSDU {
3789 std::map<std::string, std::string> success;
3790 static constexpr int messageTypeId = 6;
3791 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataspaceOSDU);
3792 };
3793 }
3794 }
3795 }
3796 }
3797}
3798namespace avro {
3799 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::LockDataspacesResponse> {
3800 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataspaceOSDU::LockDataspacesResponse& v) {
3801 avro::encode(e, v.success);
3802 }
3804 avro::decode(e, v.success);
3805 }
3806 };
3807}
3808namespace Energistics {
3809 namespace Etp {
3810 namespace v12 {
3811 namespace Protocol {
3812 namespace DataspaceOSDU {
3814 std::map<std::string, std::string> uris;
3815 std::string dataspaceUri;
3816 static constexpr int messageTypeId = 7;
3817 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataspaceOSDU);
3818 };
3819 }
3820 }
3821 }
3822 }
3823}
3824namespace avro {
3825 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::CopyToDataspace> {
3826 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataspaceOSDU::CopyToDataspace& v) {
3827 avro::encode(e, v.uris);
3828 avro::encode(e, v.dataspaceUri);
3829 }
3830 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::DataspaceOSDU::CopyToDataspace& v) {
3831 avro::decode(e, v.uris);
3832 avro::decode(e, v.dataspaceUri);
3833 }
3834 };
3835}
3836namespace Energistics {
3837 namespace Etp {
3838 namespace v12 {
3839 namespace Protocol {
3840 namespace DataspaceOSDU {
3842 std::map<std::string, std::string> success;
3843 static constexpr int messageTypeId = 8;
3844 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DataspaceOSDU);
3845 };
3846 }
3847 }
3848 }
3849 }
3850}
3851namespace avro {
3852 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::CopyToDataspaceResponse > {
3853 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DataspaceOSDU::CopyToDataspaceResponse& v) {
3854 avro::encode(e, v.success);
3855 }
3857 avro::decode(e, v.success);
3858 }
3859 };
3860}
3861namespace Energistics {
3862 namespace Etp {
3863 namespace v12 {
3864 namespace Datatypes {
3865 namespace Object {
3867 std::string uri;
3868 int64_t deletedTime = 0;
3869 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
3870 };
3871 }
3872 }
3873 }
3874 }
3875}
3876namespace avro {
3877 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::DeletedResource> {
3878 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::DeletedResource& v) {
3879 avro::encode(e, v.uri);
3880 avro::encode(e, v.deletedTime);
3881 avro::encode(e, v.customData);
3882 }
3883 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::DeletedResource& v) {
3884 avro::decode(e, v.uri);
3885 avro::decode(e, v.deletedTime);
3886 avro::decode(e, v.customData);
3887 }
3888 };
3889}
3890namespace Energistics {
3891 namespace Etp {
3892 namespace v12 {
3893 namespace Protocol {
3894 namespace Discovery {
3896 std::vector<Energistics::Etp::v12::Datatypes::Object::DeletedResource> deletedResources;
3897 static constexpr int messageTypeId=6;
3898 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Discovery);
3899 };
3900 }
3901 }
3902 }
3903 }
3904}
3905namespace avro {
3906 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Discovery::GetDeletedResourcesResponse> {
3907 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Discovery::GetDeletedResourcesResponse& v) {
3908 avro::encode(e, v.deletedResources);
3909 }
3911 avro::decode(e, v.deletedResources);
3912 }
3913 };
3914}
3915namespace Energistics {
3916 namespace Etp {
3917 namespace v12 {
3918 namespace Datatypes {
3919 namespace Object {
3923 std::string uom;
3924 std::string depthDatum;
3925 };
3926 }
3927 }
3928 }
3929 }
3930}
3931namespace avro {
3932 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::IndexInterval> {
3933 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::IndexInterval& v) {
3934 avro::encode(e, v.startIndex);
3935 avro::encode(e, v.endIndex);
3936 avro::encode(e, v.uom);
3937 avro::encode(e, v.depthDatum);
3938 }
3939 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::IndexInterval& v) {
3940 avro::decode(e, v.startIndex);
3941 avro::decode(e, v.endIndex);
3942 avro::decode(e, v.uom);
3943 avro::decode(e, v.depthDatum);
3944 }
3945 };
3946}
3947namespace Energistics {
3948 namespace Etp {
3949 namespace v12 {
3950 namespace Datatypes {
3951 namespace ChannelData {
3953 std::vector<int64_t> channelIds;
3955 std::vector<Energistics::Etp::v12::Datatypes::Object::IndexInterval> secondaryIntervals;
3956 };
3957 }
3958 }
3959 }
3960 }
3961}
3962namespace avro {
3963 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::ChannelRangeInfo> {
3964 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::ChannelRangeInfo& v) {
3965 avro::encode(e, v.channelIds);
3966 avro::encode(e, v.interval);
3967 avro::encode(e, v.secondaryIntervals);
3968 }
3969 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ChannelData::ChannelRangeInfo& v) {
3970 avro::decode(e, v.channelIds);
3971 avro::decode(e, v.interval);
3972 avro::decode(e, v.secondaryIntervals);
3973 }
3974 };
3975}
3976namespace Energistics {
3977 namespace Etp {
3978 namespace v12 {
3979 namespace Datatypes {
3980 namespace ChannelData {
3982 Energistics::Etp::v12::Datatypes::ChannelData::ChannelIndexKind indexKind;
3984 Energistics::Etp::v12::Datatypes::ChannelData::IndexDirection direction;
3985 std::string name;
3986 std::string uom;
3987 std::string depthDatum;
3988 std::string indexPropertyKindUri;
3989 bool filterable=false;
3990 };
3991 }
3992 }
3993 }
3994 }
3995}
3996namespace avro {
3997 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::IndexMetadataRecord> {
3998 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::IndexMetadataRecord& v) {
3999 avro::encode(e, v.indexKind);
4000 avro::encode(e, v.interval);
4001 avro::encode(e, v.direction);
4002 avro::encode(e, v.name);
4003 avro::encode(e, v.uom);
4004 avro::encode(e, v.depthDatum);
4005 avro::encode(e, v.indexPropertyKindUri);
4006 avro::encode(e, v.filterable);
4007 }
4009 avro::decode(e, v.indexKind);
4010 avro::decode(e, v.interval);
4011 avro::decode(e, v.direction);
4012 avro::decode(e, v.name);
4013 avro::decode(e, v.uom);
4014 avro::decode(e, v.depthDatum);
4015 avro::decode(e, v.indexPropertyKindUri);
4016 avro::decode(e, v.filterable);
4017 }
4018 };
4019}
4020namespace Energistics {
4021 namespace Etp {
4022 namespace v12 {
4023 namespace Datatypes {
4024 namespace ChannelData {
4026 std::string uri;
4027 int64_t id = 0;
4028 std::vector<Energistics::Etp::v12::Datatypes::ChannelData::IndexMetadataRecord> indexes;
4029 std::string channelName;
4030 Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind dataKind = Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind::DateTime;
4031 std::string uom;
4032 std::string depthDatum;
4033 std::string channelClassUri;
4034 Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind status = Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind::Active;
4035 std::string source;
4036 std::vector<int32_t> axisVectorLengths;
4037 std::vector<Energistics::Etp::v12::Datatypes::AttributeMetadataRecord> attributeMetadata;
4038 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
4039 };
4040 }
4041 }
4042 }
4043 }
4044}
4045namespace avro {
4046 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::ChannelMetadataRecord> {
4047 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::ChannelMetadataRecord& v) {
4048 avro::encode(e, v.uri);
4049 avro::encode(e, v.id);
4050 avro::encode(e, v.indexes);
4051 avro::encode(e, v.channelName);
4052 avro::encode(e, v.dataKind);
4053 avro::encode(e, v.uom);
4054 avro::encode(e, v.depthDatum);
4055 avro::encode(e, v.channelClassUri);
4056 avro::encode(e, v.status);
4057 avro::encode(e, v.source);
4058 avro::encode(e, v.axisVectorLengths);
4059 avro::encode(e, v.attributeMetadata);
4060 avro::encode(e, v.customData);
4061 }
4063 avro::decode(e, v.uri);
4064 avro::decode(e, v.id);
4065 avro::decode(e, v.indexes);
4066 avro::decode(e, v.channelName);
4067 avro::decode(e, v.dataKind);
4068 avro::decode(e, v.uom);
4069 avro::decode(e, v.depthDatum);
4070 avro::decode(e, v.channelClassUri);
4071 avro::decode(e, v.status);
4072 avro::decode(e, v.source);
4073 avro::decode(e, v.axisVectorLengths);
4074 avro::decode(e, v.attributeMetadata);
4075 avro::decode(e, v.customData);
4076 }
4077 };
4078}
4079namespace Energistics {
4080 namespace Etp {
4081 namespace v12 {
4082 namespace Datatypes {
4083 namespace ChannelData {
4086 bool preferRealtime=false;
4087 bool dataChanges=false;
4088 };
4089 }
4090 }
4091 }
4092 }
4093}
4094namespace avro {
4095 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::OpenChannelInfo> {
4096 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::ChannelData::OpenChannelInfo& v) {
4097 avro::encode(e, v.metadata);
4098 avro::encode(e, v.preferRealtime);
4099 avro::encode(e, v.dataChanges);
4100 }
4101 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ChannelData::OpenChannelInfo& v) {
4102 avro::decode(e, v.metadata);
4103 avro::decode(e, v.preferRealtime);
4104 avro::decode(e, v.dataChanges);
4105 }
4106 };
4107}
4108namespace Energistics {
4109 namespace Etp {
4110 namespace v12 {
4111 namespace Datatypes {
4112 namespace Object {
4114 int64_t changeTime = 0;
4116 };
4117 }
4118 }
4119 }
4120 }
4121}
4122namespace avro {
4123 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ChangeAnnotation> {
4124 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::ChangeAnnotation& v) {
4125 avro::encode(e, v.changeTime);
4126 avro::encode(e, v.interval);
4127 }
4128 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::ChangeAnnotation& v) {
4129 avro::decode(e, v.changeTime);
4130 avro::decode(e, v.interval);
4131 }
4132 };
4133}
4134namespace Energistics {
4135 namespace Etp {
4136 namespace v12 {
4137 namespace Datatypes {
4138 namespace Object {
4140 int64_t responseTimestamp = 0;
4141 std::map<std::string, std::vector<Energistics::Etp::v12::Datatypes::Object::ChangeAnnotation> > changes;
4142 };
4143 }
4144 }
4145 }
4146 }
4147}
4148namespace avro {
4149 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ChangeResponseInfo> {
4150 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::ChangeResponseInfo& v) {
4151 avro::encode(e, v.responseTimestamp);
4152 avro::encode(e, v.changes);
4153 }
4154 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::ChangeResponseInfo& v) {
4155 avro::decode(e, v.responseTimestamp);
4156 avro::decode(e, v.changes);
4157 }
4158 };
4159}
4160namespace Energistics {
4161 namespace Etp {
4162 namespace v12 {
4163 namespace Datatypes {
4164 namespace Object {
4165 enum class ObjectChangeKind {
4166 insert=0,
4167 update=1,
4168 authorized=2,
4169 joined=3,
4170 unjoined=4,
4171 joinedSubscription=5,
4172 unjoinedSubscription=6
4173 };
4174 }
4175 }
4176 }
4177 }
4178}
4179namespace avro {
4180 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ObjectChangeKind> {
4181 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::ObjectChangeKind& v) {
4182 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Object::ObjectChangeKind>::type>(v));
4183 }
4184 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::ObjectChangeKind& v) {
4185 v = static_cast<Energistics::Etp::v12::Datatypes::Object::ObjectChangeKind>(e.decodeEnum());
4186 }
4187 };
4188}
4189namespace Energistics {
4190 namespace Etp {
4191 namespace v12 {
4192 namespace Datatypes {
4193 namespace Object {
4194 struct ObjectPart {
4195 std::string uid;
4196 std::string data;
4197 };
4198 }
4199 }
4200 }
4201 }
4202}
4203namespace avro {
4204 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ObjectPart> {
4205 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::ObjectPart& v) {
4206 avro::encode(e, v.uid);
4207 avro::encode(e, v.data);
4208 }
4209 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::ObjectPart& v) {
4210 avro::decode(e, v.uid);
4211 avro::decode(e, v.data);
4212 }
4213 };
4214}
4215namespace Energistics {
4216 namespace Etp {
4217 namespace v12 {
4218 namespace Datatypes {
4219 namespace Object {
4221 std::string uri;
4222 std::string name;
4224 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
4225 };
4226 }
4227 }
4228 }
4229 }
4230}
4231namespace avro {
4232 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::PartsMetadataInfo> {
4233 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::PartsMetadataInfo& v) {
4234 avro::encode(e, v.uri);
4235 avro::encode(e, v.name);
4236 avro::encode(e, v.index);
4237 avro::encode(e, v.customData);
4238 }
4239 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::PartsMetadataInfo& v) {
4240 avro::decode(e, v.uri);
4241 avro::decode(e, v.name);
4242 avro::decode(e, v.index);
4243 avro::decode(e, v.customData);
4244 }
4245 };
4246}
4247namespace Energistics {
4248 namespace Etp {
4249 namespace v12 {
4250 namespace Datatypes {
4251 namespace Object {
4253 std::vector<std::string> createdContainedObjectUris;
4254 std::vector<std::string> deletedContainedObjectUris;
4255 std::vector<std::string> joinedContainedObjectUris;
4256 std::vector<std::string> unjoinedContainedObjectUris;
4257 };
4258 }
4259 }
4260 }
4261 }
4262}
4263namespace avro {
4264 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::PutResponse> {
4265 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::PutResponse& v) {
4266 avro::encode(e, v.createdContainedObjectUris);
4267 avro::encode(e, v.deletedContainedObjectUris);
4268 avro::encode(e, v.joinedContainedObjectUris);
4269 avro::encode(e, v.unjoinedContainedObjectUris);
4270 }
4271 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::PutResponse& v) {
4272 avro::decode(e, v.createdContainedObjectUris);
4273 avro::decode(e, v.deletedContainedObjectUris);
4274 avro::decode(e, v.joinedContainedObjectUris);
4275 avro::decode(e, v.unjoinedContainedObjectUris);
4276 }
4277 };
4278}
4279namespace Energistics {
4280 namespace Etp {
4281 namespace v12 {
4282 namespace Protocol {
4283 namespace Store {
4285 std::map<std::string, Energistics::Etp::v12::Datatypes::Object::PutResponse> success;
4286 static constexpr int messageTypeId=9;
4287 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Store);
4288 };
4289 }
4290 }
4291 }
4292 }
4293}
4294namespace avro {
4295 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Store::PutDataObjectsResponse> {
4296 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Store::PutDataObjectsResponse& v) {
4297 avro::encode(e, v.success);
4298 }
4299 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Store::PutDataObjectsResponse& v) {
4300 avro::decode(e, v.success);
4301 }
4302 };
4303}
4304namespace Energistics {
4305 namespace Etp {
4306 namespace v12 {
4307 namespace Datatypes {
4308 namespace Object {
4309 enum class RelationshipKind {
4310 Primary=0,
4311 Secondary=1,
4312 Both=2
4313 };
4314 }
4315 }
4316 }
4317 }
4318}
4319namespace avro {
4320 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::RelationshipKind> {
4321 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::RelationshipKind& v) {
4322 e.encodeEnum(static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Object::RelationshipKind>::type>(v));
4323 }
4324 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::RelationshipKind& v) {
4325 v = static_cast<Energistics::Etp::v12::Datatypes::Object::RelationshipKind>(e.decodeEnum());
4326 }
4327 };
4328}
4329namespace Energistics {
4330 namespace Etp {
4331 namespace v12 {
4332 namespace Datatypes {
4333 namespace Object {
4335 std::string uri;
4336 int32_t depth = 1;
4337 std::vector<std::string> dataObjectTypes;
4338 Energistics::Etp::v12::Datatypes::Object::RelationshipKind navigableEdges = Energistics::Etp::v12::Datatypes::Object::RelationshipKind::Primary;
4339 bool includeSecondaryTargets=false;
4340 bool includeSecondarySources=false;
4341 };
4342 }
4343 }
4344 }
4345 }
4346}
4347namespace avro {
4348 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ContextInfo> {
4349 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::ContextInfo& v) {
4350 avro::encode(e, v.uri);
4351 avro::encode(e, v.depth);
4352 avro::encode(e, v.dataObjectTypes);
4353 avro::encode(e, v.navigableEdges);
4354 avro::encode(e, v.includeSecondaryTargets);
4355 avro::encode(e, v.includeSecondarySources);
4356 }
4357 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::ContextInfo& v) {
4358 avro::decode(e, v.uri);
4359 avro::decode(e, v.depth);
4360 avro::decode(e, v.dataObjectTypes);
4361 avro::decode(e, v.navigableEdges);
4362 avro::decode(e, v.includeSecondaryTargets);
4363 avro::decode(e, v.includeSecondarySources);
4364 }
4365 };
4366}
4367namespace Energistics {
4368 namespace Etp {
4369 namespace v12 {
4370 namespace Protocol {
4371 namespace Discovery {
4374 Energistics::Etp::v12::Datatypes::Object::ContextScopeKind scope = Energistics::Etp::v12::Datatypes::Object::ContextScopeKind::targets;
4375 bool countObjects=false;
4376 boost::optional<int64_t> storeLastWriteFilter;
4377 bool has_storeLastWriteFilter() const { return storeLastWriteFilter.is_initialized(); }
4378 int64_t get_storeLastWriteFilter() const { return storeLastWriteFilter.get(); }
4379 boost::optional<Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind> activeStatusFilter;
4380 bool has_activeStatusFilter() const { return activeStatusFilter.is_initialized(); }
4381 Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind get_activeStatusFilter() const { return activeStatusFilter.get(); }
4382 bool includeEdges=false;
4383 static constexpr int messageTypeId=1;
4384 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Discovery);
4385 };
4386 }
4387 }
4388 }
4389 }
4390}
4391namespace avro {
4392 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Discovery::GetResources> {
4393 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Discovery::GetResources& v) {
4394 avro::encode(e, v.context);
4395 avro::encode(e, v.scope);
4396 avro::encode(e, v.countObjects);
4397 avro::encode(e, v.storeLastWriteFilter);
4398 avro::encode(e, v.activeStatusFilter);
4399 avro::encode(e, v.includeEdges);
4400 }
4401 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Discovery::GetResources& v) {
4402 avro::decode(e, v.context);
4403 avro::decode(e, v.scope);
4404 avro::decode(e, v.countObjects);
4405 avro::decode(e, v.storeLastWriteFilter);
4406 avro::decode(e, v.activeStatusFilter);
4407 avro::decode(e, v.includeEdges);
4408 }
4409 };
4410}
4411namespace Energistics {
4412 namespace Etp {
4413 namespace v12 {
4414 namespace Protocol {
4415 namespace DiscoveryQuery {
4418 Energistics::Etp::v12::Datatypes::Object::ContextScopeKind scope = Energistics::Etp::v12::Datatypes::Object::ContextScopeKind::targets;
4419 boost::optional<int64_t> storeLastWriteFilter;
4420 bool has_storeLastWriteFilter() const { return storeLastWriteFilter.is_initialized(); }
4421 int64_t get_storeLastWriteFilter() const { return storeLastWriteFilter.get(); }
4422 boost::optional<Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind> activeStatusFilter;
4423 bool has_activeStatusFilter() const { return activeStatusFilter.is_initialized(); }
4424 Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind get_activeStatusFilter() const { return activeStatusFilter.get(); }
4425 static constexpr int messageTypeId=1;
4426 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DiscoveryQuery);
4427 };
4428 }
4429 }
4430 }
4431 }
4432}
4433namespace avro {
4434 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DiscoveryQuery::FindResources> {
4435 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DiscoveryQuery::FindResources& v) {
4436 avro::encode(e, v.context);
4437 avro::encode(e, v.scope);
4438 avro::encode(e, v.storeLastWriteFilter);
4439 avro::encode(e, v.activeStatusFilter);
4440 }
4441 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::DiscoveryQuery::FindResources& v) {
4442 avro::decode(e, v.context);
4443 avro::decode(e, v.scope);
4444 avro::decode(e, v.storeLastWriteFilter);
4445 avro::decode(e, v.activeStatusFilter);
4446 }
4447 };
4448}
4449namespace Energistics {
4450 namespace Etp {
4451 namespace v12 {
4452 namespace Protocol {
4453 namespace StoreQuery {
4456 Energistics::Etp::v12::Datatypes::Object::ContextScopeKind scope = Energistics::Etp::v12::Datatypes::Object::ContextScopeKind::targets;
4457 boost::optional<int64_t> storeLastWriteFilter;
4458 bool has_storeLastWriteFilter() const { return storeLastWriteFilter.is_initialized(); }
4459 int64_t get_storeLastWriteFilter() const { return storeLastWriteFilter.get(); }
4460 boost::optional<Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind> activeStatusFilter;
4461 bool has_activeStatusFilter() const { return activeStatusFilter.is_initialized(); }
4462 Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind get_activeStatusFilter() const { return activeStatusFilter.get(); }
4463 std::string format;
4464 static constexpr int messageTypeId=1;
4465 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreQuery);
4466 };
4467 }
4468 }
4469 }
4470 }
4471}
4472namespace avro {
4473 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreQuery::FindDataObjects> {
4474 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::StoreQuery::FindDataObjects& v) {
4475 avro::encode(e, v.context);
4476 avro::encode(e, v.scope);
4477 avro::encode(e, v.storeLastWriteFilter);
4478 avro::encode(e, v.activeStatusFilter);
4479 avro::encode(e, v.format);
4480 }
4481 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::StoreQuery::FindDataObjects& v) {
4482 avro::decode(e, v.context);
4483 avro::decode(e, v.scope);
4484 avro::decode(e, v.storeLastWriteFilter);
4485 avro::decode(e, v.activeStatusFilter);
4486 avro::decode(e, v.format);
4487 }
4488 };
4489}
4490namespace Energistics {
4491 namespace Etp {
4492 namespace v12 {
4493 namespace Datatypes {
4494 namespace Object {
4495 struct Edge {
4496 std::string sourceUri;
4497 std::string targetUri;
4498 Energistics::Etp::v12::Datatypes::Object::RelationshipKind relationshipKind = Energistics::Etp::v12::Datatypes::Object::RelationshipKind::Primary;
4499 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
4500 };
4501 }
4502 }
4503 }
4504 }
4505}
4506namespace avro {
4507 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::Edge> {
4508 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::Edge& v) {
4509 avro::encode(e, v.sourceUri);
4510 avro::encode(e, v.targetUri);
4511 avro::encode(e, v.relationshipKind);
4512 avro::encode(e, v.customData);
4513 }
4514 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::Edge& v) {
4515 avro::decode(e, v.sourceUri);
4516 avro::decode(e, v.targetUri);
4517 avro::decode(e, v.relationshipKind);
4518 avro::decode(e, v.customData);
4519 }
4520 };
4521}
4522namespace Energistics {
4523 namespace Etp {
4524 namespace v12 {
4525 namespace Protocol {
4526 namespace Discovery {
4528 std::vector<Energistics::Etp::v12::Datatypes::Object::Edge> edges;
4529 static constexpr int messageTypeId=7;
4530 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Discovery);
4531 };
4532 }
4533 }
4534 }
4535 }
4536}
4537namespace avro {
4538 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Discovery::GetResourcesEdgesResponse> {
4539 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Discovery::GetResourcesEdgesResponse& v) {
4540 avro::encode(e, v.edges);
4541 }
4543 avro::decode(e, v.edges);
4544 }
4545 };
4546}
4547namespace Energistics {
4548 namespace Etp {
4549 namespace v12 {
4550 namespace Datatypes {
4551 namespace Object {
4552 struct Resource {
4553 std::string uri;
4554 std::vector<std::string> alternateUris;
4555 std::string name;
4556 boost::optional<int32_t> sourceCount;
4557 bool has_sourceCount() const { return sourceCount.is_initialized(); }
4558 int32_t get_sourceCount() const { return sourceCount.get(); }
4559 boost::optional<int32_t> targetCount;
4560 bool has_targetCount() const { return targetCount.is_initialized(); }
4561 int32_t get_targetCount() const { return targetCount.get(); }
4562 int64_t lastChanged = 0;
4563 int64_t storeLastWrite = 0;
4564 int64_t storeCreated = 0;
4565 Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind activeStatus = Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind::Inactive;
4566 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
4567 };
4568 }
4569 }
4570 }
4571 }
4572}
4573namespace avro {
4574 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::Resource> {
4575 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::Resource& v) {
4576 avro::encode(e, v.uri);
4577 avro::encode(e, v.alternateUris);
4578 avro::encode(e, v.name);
4579 avro::encode(e, v.sourceCount);
4580 avro::encode(e, v.targetCount);
4581 avro::encode(e, v.lastChanged);
4582 avro::encode(e, v.storeLastWrite);
4583 avro::encode(e, v.storeCreated);
4584 avro::encode(e, v.activeStatus);
4585 avro::encode(e, v.customData);
4586 }
4587 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::Resource& v) {
4588 avro::decode(e, v.uri);
4589 avro::decode(e, v.alternateUris);
4590 avro::decode(e, v.name);
4591 avro::decode(e, v.sourceCount);
4592 avro::decode(e, v.targetCount);
4593 avro::decode(e, v.lastChanged);
4594 avro::decode(e, v.storeLastWrite);
4595 avro::decode(e, v.storeCreated);
4596 avro::decode(e, v.activeStatus);
4597 avro::decode(e, v.customData);
4598 }
4599 };
4600}
4601namespace Energistics {
4602 namespace Etp {
4603 namespace v12 {
4604 namespace Protocol {
4605 namespace Discovery {
4607 std::vector<Energistics::Etp::v12::Datatypes::Object::Resource> resources;
4608 static constexpr int messageTypeId=4;
4609 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Discovery);
4610 };
4611 }
4612 }
4613 }
4614 }
4615}
4616namespace avro {
4617 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Discovery::GetResourcesResponse> {
4618 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Discovery::GetResourcesResponse& v) {
4619 avro::encode(e, v.resources);
4620 }
4621 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Discovery::GetResourcesResponse& v) {
4622 avro::decode(e, v.resources);
4623 }
4624 };
4625}
4626namespace Energistics {
4627 namespace Etp {
4628 namespace v12 {
4629 namespace Protocol {
4630 namespace DiscoveryQuery {
4632 std::vector<Energistics::Etp::v12::Datatypes::Object::Resource> resources;
4633 std::string serverSortOrder;
4634 static constexpr int messageTypeId=2;
4635 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::DiscoveryQuery);
4636 };
4637 }
4638 }
4639 }
4640 }
4641}
4642namespace avro {
4643 template<> struct codec_traits<Energistics::Etp::v12::Protocol::DiscoveryQuery::FindResourcesResponse> {
4644 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::DiscoveryQuery::FindResourcesResponse& v) {
4645 avro::encode(e, v.resources);
4646 avro::encode(e, v.serverSortOrder);
4647 }
4649 avro::decode(e, v.resources);
4650 avro::decode(e, v.serverSortOrder);
4651 }
4652 };
4653}
4654namespace Energistics {
4655 namespace Etp {
4656 namespace v12 {
4657 namespace Protocol {
4658 namespace StoreNotification {
4660 Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind activeStatus = Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind::Inactive;
4661 int64_t changeTime = 0;
4664 static constexpr int messageTypeId=11;
4665 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreNotification);
4666 };
4667 }
4668 }
4669 }
4670 }
4671}
4672namespace avro {
4673 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::ObjectActiveStatusChanged> {
4675 avro::encode(e, v.activeStatus);
4676 avro::encode(e, v.changeTime);
4677 avro::encode(e, v.resource);
4678 avro::encode(e, v.requestUuid);
4679 }
4681 avro::decode(e, v.activeStatus);
4682 avro::decode(e, v.changeTime);
4683 avro::decode(e, v.resource);
4684 avro::decode(e, v.requestUuid);
4685 }
4686 };
4687}
4688namespace Energistics {
4689 namespace Etp {
4690 namespace v12 {
4691 namespace Datatypes {
4692 namespace Object {
4693 struct DataObject {
4695 std::string format;
4696 boost::optional<Energistics::Etp::v12::Datatypes::Uuid> blobId;
4697 bool has_blobId() const { return blobId.is_initialized(); }
4698 Energistics::Etp::v12::Datatypes::Uuid get_blobId() const { return blobId.get(); }
4699 std::string data;
4700 };
4701 }
4702 }
4703 }
4704 }
4705}
4706namespace avro {
4707 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::DataObject> {
4708 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::DataObject& v) {
4709 avro::encode(e, v.resource);
4710 avro::encode(e, v.format);
4711 avro::encode(e, v.blobId);
4712 avro::encode(e, v.data);
4713 }
4714 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::DataObject& v) {
4715 avro::decode(e, v.resource);
4716 avro::decode(e, v.format);
4717 avro::decode(e, v.blobId);
4718 avro::decode(e, v.data);
4719 }
4720 };
4721}
4722namespace Energistics {
4723 namespace Etp {
4724 namespace v12 {
4725 namespace Protocol {
4726 namespace Store {
4728 std::map<std::string, Energistics::Etp::v12::Datatypes::Object::DataObject> dataObjects;
4729 static constexpr int messageTypeId=4;
4730 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Store);
4731 };
4732 }
4733 }
4734 }
4735 }
4736}
4737namespace avro {
4738 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Store::GetDataObjectsResponse> {
4739 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Store::GetDataObjectsResponse& v) {
4740 avro::encode(e, v.dataObjects);
4741 }
4742 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Store::GetDataObjectsResponse& v) {
4743 avro::decode(e, v.dataObjects);
4744 }
4745 };
4746}
4747namespace Energistics {
4748 namespace Etp {
4749 namespace v12 {
4750 namespace Protocol {
4751 namespace Store {
4753 std::map<std::string, Energistics::Etp::v12::Datatypes::Object::DataObject> dataObjects;
4754 bool pruneContainedObjects=false;
4755 static constexpr int messageTypeId=2;
4756 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::Store);
4757 };
4758 }
4759 }
4760 }
4761 }
4762}
4763namespace avro {
4764 template<> struct codec_traits<Energistics::Etp::v12::Protocol::Store::PutDataObjects> {
4765 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::Store::PutDataObjects& v) {
4766 avro::encode(e, v.dataObjects);
4767 avro::encode(e, v.pruneContainedObjects);
4768 }
4769 static void decode(Decoder& e, Energistics::Etp::v12::Protocol::Store::PutDataObjects& v) {
4770 avro::decode(e, v.dataObjects);
4771 avro::decode(e, v.pruneContainedObjects);
4772 }
4773 };
4774}
4775namespace Energistics {
4776 namespace Etp {
4777 namespace v12 {
4778 namespace Protocol {
4779 namespace StoreQuery {
4781 std::vector<Energistics::Etp::v12::Datatypes::Object::DataObject> dataObjects;
4782 std::string serverSortOrder;
4783 static constexpr int messageTypeId=2;
4784 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreQuery);
4785 };
4786 }
4787 }
4788 }
4789 }
4790}
4791namespace avro {
4792 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreQuery::FindDataObjectsResponse> {
4793 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::StoreQuery::FindDataObjectsResponse& v) {
4794 avro::encode(e, v.dataObjects);
4795 avro::encode(e, v.serverSortOrder);
4796 }
4798 avro::decode(e, v.dataObjects);
4799 avro::decode(e, v.serverSortOrder);
4800 }
4801 };
4802}
4803namespace Energistics {
4804 namespace Etp {
4805 namespace v12 {
4806 namespace Datatypes {
4807 namespace Object {
4809 Energistics::Etp::v12::Datatypes::Object::ObjectChangeKind changeKind = Energistics::Etp::v12::Datatypes::Object::ObjectChangeKind::insert;
4810 int64_t changeTime = 0;
4812 };
4813 }
4814 }
4815 }
4816 }
4817}
4818namespace avro {
4819 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ObjectChange> {
4820 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::ObjectChange& v) {
4821 avro::encode(e, v.changeKind);
4822 avro::encode(e, v.changeTime);
4823 avro::encode(e, v.dataObject);
4824 }
4825 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::ObjectChange& v) {
4826 avro::decode(e, v.changeKind);
4827 avro::decode(e, v.changeTime);
4828 avro::decode(e, v.dataObject);
4829 }
4830 };
4831}
4832namespace Energistics {
4833 namespace Etp {
4834 namespace v12 {
4835 namespace Protocol {
4836 namespace StoreNotification {
4840 static constexpr int messageTypeId=2;
4841 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreNotification);
4842 };
4843 }
4844 }
4845 }
4846 }
4847}
4848namespace avro {
4849 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::ObjectChanged> {
4850 static void encode(Encoder& e, const Energistics::Etp::v12::Protocol::StoreNotification::ObjectChanged& v) {
4851 avro::encode(e, v.change);
4852 avro::encode(e, v.requestUuid);
4853 }
4855 avro::decode(e, v.change);
4856 avro::decode(e, v.requestUuid);
4857 }
4858 };
4859}
4860namespace Energistics {
4861 namespace Etp {
4862 namespace v12 {
4863 namespace Datatypes {
4864 namespace Object {
4867 Energistics::Etp::v12::Datatypes::Object::ContextScopeKind scope= Energistics::Etp::v12::Datatypes::Object::ContextScopeKind::targets;
4869 bool includeObjectData=false;
4870 std::string format;
4871 };
4872 }
4873 }
4874 }
4875 }
4876}
4877namespace avro {
4878 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::SubscriptionInfo> {
4879 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::SubscriptionInfo& v) {
4880 avro::encode(e, v.context);
4881 avro::encode(e, v.scope);
4882 avro::encode(e, v.requestUuid);
4883 avro::encode(e, v.includeObjectData);
4884 avro::encode(e, v.format);
4885 }
4886 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::SubscriptionInfo& v) {
4887 avro::decode(e, v.context);
4888 avro::decode(e, v.scope);
4889 avro::decode(e, v.requestUuid);
4890 avro::decode(e, v.includeObjectData);
4891 avro::decode(e, v.format);
4892 }
4893 };
4894}
4895namespace Energistics {
4896 namespace Etp {
4897 namespace v12 {
4898 namespace Protocol {
4899 namespace StoreNotification {
4901 std::map<std::string, Energistics::Etp::v12::Datatypes::Object::SubscriptionInfo> request;
4902 static constexpr int messageTypeId=6;
4903 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreNotification);
4904 };
4905 }
4906 }
4907 }
4908 }
4909}
4910namespace avro {
4911 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::SubscribeNotifications> {
4913 avro::encode(e, v.request);
4914 }
4916 avro::decode(e, v.request);
4917 }
4918 };
4919}
4920namespace Energistics {
4921 namespace Etp {
4922 namespace v12 {
4923 namespace Protocol {
4924 namespace StoreNotification {
4926 std::vector<Energistics::Etp::v12::Datatypes::Object::SubscriptionInfo> subscriptions;
4927 static constexpr int messageTypeId=8;
4928 static constexpr uint16_t protocolId = static_cast<std::underlying_type<Energistics::Etp::v12::Datatypes::Protocol>::type>(Energistics::Etp::v12::Datatypes::Protocol::StoreNotification);
4929 };
4930 }
4931 }
4932 }
4933 }
4934}
4935namespace avro {
4936 template<> struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::UnsolicitedStoreNotifications> {
4938 avro::encode(e, v.subscriptions);
4939 }
4941 avro::decode(e, v.subscriptions);
4942 }
4943 };
4944}
4945namespace Energistics {
4946 namespace Etp {
4947 namespace v12 {
4948 namespace Datatypes {
4949 namespace Object {
4951 std::string dataObjectType;
4952 boost::optional<int32_t> objectCount;
4953 bool has_objectCount() const { return objectCount.is_initialized(); }
4954 int32_t get_objectCount() const { return objectCount.get(); }
4955 Energistics::Etp::v12::Datatypes::Object::RelationshipKind relationshipKind = Energistics::Etp::v12::Datatypes::Object::RelationshipKind::Primary;
4956 };
4957 }
4958 }
4959 }
4960 }
4961}
4962namespace avro {
4963 template<> struct codec_traits<Energistics::Etp::v12::Datatypes::Object::SupportedType> {
4964 static void encode(Encoder& e, const Energistics::Etp::v12::Datatypes::Object::SupportedType& v) {
4965 avro::encode(e, v.dataObjectType);
4966 avro::encode(e, v.objectCount);
4967 avro::encode(e, v.relationshipKind);
4968 }
4969 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Object::SupportedType& v) {
4970 avro::decode(e, v.dataObjectType);
4971 avro::decode(e, v.objectCount);
4972 avro::decode(e, v.relationshipKind);
4973 }
4974 };
4975}
4976namespace avro {
4977 template<> struct codec_traits<boost::optional<bool>> {
4978 static void encode(Encoder& e, boost::optional<bool> v) {
4979 if (v) {
4980 e.encodeUnionIndex(1);
4981 avro::encode(e, v.get());
4982 }
4983 else {
4984 e.encodeUnionIndex(0);
4985 e.encodeNull();
4986 }
4987 }
4988 static void decode(Decoder& d, boost::optional<bool>& v) {
4989 size_t n = d.decodeUnionIndex();
4990 if (n >= 2) { throw avro::Exception("Union index too big"); }
4991 switch (n) {
4992 case 0:
4993 {
4994 d.decodeNull();
4995 v = boost::none;
4996 }
4997 break;
4998 case 1:
4999 {
5000 bool vv;
5001 avro::decode(d, vv);
5002 v.emplace(vv);
5003 }
5004 break;
5005 }
5006 }
5007 };
5008}
5009
5010namespace avro {
5011 template<> struct codec_traits<boost::optional<int32_t>> {
5012 static void encode(Encoder& e, boost::optional<int32_t> v) {
5013 if (v) {
5014 e.encodeUnionIndex(1);
5015 avro::encode(e, v.get());
5016 }
5017 else {
5018 e.encodeUnionIndex(0);
5019 e.encodeNull();
5020 }
5021 }
5022 static void decode(Decoder& d, boost::optional<int32_t>& v) {
5023 size_t n = d.decodeUnionIndex();
5024 if (n >= 2) { throw avro::Exception("Union index too big"); }
5025 switch (n) {
5026 case 0:
5027 {
5028 d.decodeNull();
5029 v = boost::none;
5030 }
5031 break;
5032 case 1:
5033 {
5034 int32_t vv;
5035 avro::decode(d, vv);
5036 v.emplace(vv);
5037 }
5038 break;
5039 }
5040 }
5041 };
5042}
5043
5044namespace avro {
5045 template<> struct codec_traits<boost::optional<int64_t>> {
5046 static void encode(Encoder& e, boost::optional<int64_t> v) {
5047 if (v) {
5048 e.encodeUnionIndex(1);
5049 avro::encode(e, v.get());
5050 }
5051 else {
5052 e.encodeUnionIndex(0);
5053 e.encodeNull();
5054 }
5055 }
5056 static void decode(Decoder& d, boost::optional<int64_t>& v) {
5057 size_t n = d.decodeUnionIndex();
5058 if (n >= 2) { throw avro::Exception("Union index too big"); }
5059 switch (n) {
5060 case 0:
5061 {
5062 d.decodeNull();
5063 v = boost::none;
5064 }
5065 break;
5066 case 1:
5067 {
5068 int64_t vv;
5069 avro::decode(d, vv);
5070 v.emplace(vv);
5071 }
5072 break;
5073 }
5074 }
5075 };
5076}
5077
5078namespace avro {
5079 template<> struct codec_traits<boost::optional<Energistics::Etp::v12::Datatypes::Uuid>> {
5080 static void encode(Encoder& e, boost::optional<Energistics::Etp::v12::Datatypes::Uuid> v) {
5081 if (v) {
5082 e.encodeUnionIndex(1);
5083 avro::encode(e, v.get());
5084 }
5085 else {
5086 e.encodeUnionIndex(0);
5087 e.encodeNull();
5088 }
5089 }
5090 static void decode(Decoder& d, boost::optional<Energistics::Etp::v12::Datatypes::Uuid>& v) {
5091 size_t n = d.decodeUnionIndex();
5092 if (n >= 2) { throw avro::Exception("Union index too big"); }
5093 switch (n) {
5094 case 0:
5095 {
5096 d.decodeNull();
5097 v = boost::none;
5098 }
5099 break;
5100 case 1:
5101 {
5103 avro::decode(d, vv);
5104 v.emplace(vv);
5105 }
5106 break;
5107 }
5108 }
5109 };
5110}
5111
5112namespace avro {
5113 template<> struct codec_traits<boost::optional<Energistics::Etp::v12::Datatypes::ErrorInfo>> {
5114 static void encode(Encoder& e, boost::optional<Energistics::Etp::v12::Datatypes::ErrorInfo> v) {
5115 if (v) {
5116 e.encodeUnionIndex(1);
5117 avro::encode(e, v.get());
5118 }
5119 else {
5120 e.encodeUnionIndex(0);
5121 e.encodeNull();
5122 }
5123 }
5124 static void decode(Decoder& d, boost::optional<Energistics::Etp::v12::Datatypes::ErrorInfo>& v) {
5125 size_t n = d.decodeUnionIndex();
5126 if (n >= 2) { throw avro::Exception("Union index too big"); }
5127 switch (n) {
5128 case 0:
5129 {
5130 d.decodeNull();
5131 v = boost::none;
5132 }
5133 break;
5134 case 1:
5135 {
5137 avro::decode(d, vv);
5138 v.emplace(vv);
5139 }
5140 break;
5141 }
5142 }
5143 };
5144}
5145
5146namespace avro {
5147 template<> struct codec_traits<boost::optional<Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind>> {
5148 static void encode(Encoder& e, boost::optional<Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind> v) {
5149 if (v) {
5150 e.encodeUnionIndex(1);
5151 avro::encode(e, v.get());
5152 }
5153 else {
5154 e.encodeUnionIndex(0);
5155 e.encodeNull();
5156 }
5157 }
5158 static void decode(Decoder& d, boost::optional<Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind>& v) {
5159 size_t n = d.decodeUnionIndex();
5160 if (n >= 2) { throw avro::Exception("Union index too big"); }
5161 switch (n) {
5162 case 0:
5163 {
5164 d.decodeNull();
5165 v = boost::none;
5166 }
5167 break;
5168 case 1:
5169 {
5170 Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind vv;
5171 avro::decode(d, vv);
5172 v.emplace(vv);
5173 }
5174 break;
5175 }
5176 }
5177 };
5178}
5179
5180#endif
Definition EtpMessages.h:1064
Definition EtpMessages.h:1130
Definition EtpMessages.h:1702
Definition EtpMessages.h:1817
Definition EtpMessages.h:1949
Definition EtpMessages.h:2321