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>
17namespace Energistics {
21 enum class Protocol : uint16_t {
27 StoreNotification = 5,
29 GrowingObjectNotification = 7,
38 GrowingObjectQuery = 16,
43 ChannelSubscribe = 21,
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));
59 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::Protocol& v) {
60 v =
static_cast<Energistics::Etp::v12::Datatypes::Protocol
>(e.decodeEnum());
65namespace Energistics {
71 static constexpr int messageTypeId=1001;
80 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Core::Acknowledge> {
87namespace Energistics {
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);
104 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Core::Authorize> {
106 avro::encode(e, v.authorization);
107 avro::encode(e, v.supplementalAuthorization);
110 avro::decode(e, v.authorization);
111 avro::decode(e, v.supplementalAuthorization);
115namespace Energistics {
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);
132 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Core::AuthorizeResponse> {
134 avro::encode(e, v.success);
135 avro::encode(e, v.challenges);
138 avro::decode(e, v.success);
139 avro::decode(e, v.challenges);
143namespace Energistics {
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);
159 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Core::CloseSession> {
161 avro::encode(e, v.reason);
164 avro::decode(e, v.reason);
168namespace Energistics {
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);
184 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Core::Pong> {
186 avro::encode(e, v.currentDateTime);
189 avro::decode(e, v.currentDateTime);
193namespace Energistics {
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);
209 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Core::Ping> {
211 avro::encode(e, v.currentDateTime);
214 avro::decode(e, v.currentDateTime);
218namespace Energistics {
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);
234 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::PutDataArraysResponse> {
236 avro::encode(e, v.success);
239 avro::decode(e, v.success);
243namespace Energistics {
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);
259 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::PutDataSubarraysResponse> {
261 avro::encode(e, v.success);
264 avro::decode(e, v.success);
268namespace Energistics {
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);
284 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::PutUninitializedDataArraysResponse> {
286 avro::encode(e, v.success);
289 avro::decode(e, v.success);
293namespace Energistics {
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);
309 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Dataspace::DeleteDataspaces> {
311 avro::encode(e, v.uris);
314 avro::decode(e, v.uris);
318namespace Energistics {
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);
334 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Dataspace::DeleteDataspacesResponse> {
336 avro::encode(e, v.success);
339 avro::decode(e, v.success);
343namespace Energistics {
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);
361 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Dataspace::GetDataspaces> {
363 avro::encode(e, v.storeLastWriteFilter);
366 avro::decode(e, v.storeLastWriteFilter);
370namespace Energistics {
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);
386 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Dataspace::PutDataspacesResponse> {
388 avro::encode(e, v.success);
391 avro::decode(e, v.success);
395namespace Energistics {
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);
415 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Discovery::GetDeletedResources> {
417 avro::encode(e, v.dataspaceUri);
418 avro::encode(e, v.deleteTimeFilter);
419 avro::encode(e, v.dataObjectTypes);
422 avro::decode(e, v.dataspaceUri);
423 avro::decode(e, v.deleteTimeFilter);
424 avro::decode(e, v.dataObjectTypes);
428namespace Energistics {
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);
444 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::SubscribeNotificationsResponse> {
446 avro::encode(e, v.success);
449 avro::decode(e, v.success);
453namespace Energistics {
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);
470 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Store::DeleteDataObjects> {
472 avro::encode(e, v.uris);
473 avro::encode(e, v.pruneContainedObjects);
476 avro::decode(e, v.uris);
477 avro::decode(e, v.pruneContainedObjects);
481namespace Energistics {
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);
498 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Store::GetDataObjects> {
500 avro::encode(e, v.uris);
501 avro::encode(e, v.format);
504 avro::decode(e, v.uris);
505 avro::decode(e, v.format);
509namespace Energistics {
513 namespace Transaction {
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);
527 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Transaction::StartTransaction> {
529 avro::encode(e, v.readOnly);
530 avro::encode(e, v.message);
531 avro::encode(e, v.dataspaceUris);
534 avro::decode(e, v.readOnly);
535 avro::decode(e, v.message);
536 avro::decode(e, v.dataspaceUris);
540namespace Energistics {
543 namespace Datatypes {
544 enum class AnyArrayType {
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));
562 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::AnyArrayType& v) {
563 v =
static_cast<Energistics::Etp::v12::Datatypes::AnyArrayType
>(e.decodeEnum());
567namespace Energistics {
570 namespace Datatypes {
571 enum class AnyLogicalArrayType {
582 arrayOfDouble64LE=10,
590 arrayOfDouble64BE=18,
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));
603 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::AnyLogicalArrayType& v) {
604 v =
static_cast<Energistics::Etp::v12::Datatypes::AnyLogicalArrayType
>(e.decodeEnum());
608namespace Energistics {
611 namespace Datatypes {
613 std::vector<bool> values;
620 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfBoolean> {
622 avro::encode(e, v.values);
625 avro::decode(e, v.values);
629namespace Energistics {
632 namespace Datatypes {
634 std::vector<std::string> values;
641 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfBytes> {
643 avro::encode(e, v.values);
646 avro::decode(e, v.values);
650namespace Energistics {
653 namespace Datatypes {
655 std::vector<double> values;
662 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfDouble> {
664 avro::encode(e, v.values);
667 avro::decode(e, v.values);
671namespace Energistics {
674 namespace Datatypes {
676 std::vector<float> values;
683 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfFloat> {
685 avro::encode(e, v.values);
688 avro::decode(e, v.values);
692namespace Energistics {
695 namespace Datatypes {
697 std::vector<int32_t> values;
704 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfInt> {
706 avro::encode(e, v.values);
709 avro::decode(e, v.values);
713namespace Energistics {
716 namespace Datatypes {
718 std::vector<int64_t> values;
725 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfLong> {
727 avro::encode(e, v.values);
730 avro::decode(e, v.values);
734namespace Energistics {
737 namespace Datatypes {
739 std::vector<boost::optional<bool>> values;
746 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfNullableBoolean> {
748 avro::encode(e, v.values);
751 avro::decode(e, v.values);
755namespace Energistics {
758 namespace Datatypes {
760 std::vector<boost::optional<int32_t>> values;
767 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfNullableInt> {
769 avro::encode(e, v.values);
772 avro::decode(e, v.values);
776namespace Energistics {
779 namespace Datatypes {
781 std::vector<boost::optional<int64_t>> values;
788 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfNullableLong> {
790 avro::encode(e, v.values);
793 avro::decode(e, v.values);
797namespace Energistics {
800 namespace Datatypes {
802 std::vector<std::string> values;
809 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ArrayOfString> {
811 avro::encode(e, v.values);
814 avro::decode(e, v.values);
818namespace Energistics {
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);
834 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Store::DeleteDataObjectsResponse> {
836 avro::encode(e, v.deletedUris);
839 avro::decode(e, v.deletedUris);
843namespace Energistics {
846 namespace Datatypes {
853 size_t idx()
const {
return idx_; }
856 throw avro::Exception(
"Invalid type for union.");
858 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfBoolean const & >(value_);
862 throw avro::Exception(
"Invalid type for union.");
864 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfBoolean& >(value_);
872 throw avro::Exception(
"Invalid type for union.");
874 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfInt const & >(value_);
878 throw avro::Exception(
"Invalid type for union.");
880 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfInt& >(value_);
888 throw avro::Exception(
"Invalid type for union.");
890 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfLong const & >(value_);
894 throw avro::Exception(
"Invalid type for union.");
896 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfLong& >(value_);
904 throw avro::Exception(
"Invalid type for union.");
906 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfFloat const & >(value_);
910 throw avro::Exception(
"Invalid type for union.");
912 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfFloat& >(value_);
920 throw avro::Exception(
"Invalid type for union.");
922 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfDouble const & >(value_);
926 throw avro::Exception(
"Invalid type for union.");
928 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfDouble& >(value_);
936 throw avro::Exception(
"Invalid type for union.");
938 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfString const & >(value_);
942 throw avro::Exception(
"Invalid type for union.");
944 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfString& >(value_);
950 std::string
const & get_bytes()
const {
952 throw avro::Exception(
"Invalid type for union.");
954 return boost::any_cast< std::string const & >(value_);
956 std::string& get_bytes() {
958 throw avro::Exception(
"Invalid type for union.");
960 return boost::any_cast< std::string& >(value_);
962 void set_bytes(
const std::string& v) {
972 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::AnyArrayitem_t> {
976 e.encodeUnionIndex(v.idx());
979 avro::encode(e, v.get_ArrayOfBoolean());
982 avro::encode(e, v.get_ArrayOfInt());
985 avro::encode(e, v.get_ArrayOfLong());
988 avro::encode(e, v.get_ArrayOfFloat());
991 avro::encode(e, v.get_ArrayOfDouble());
994 avro::encode(e, v.get_ArrayOfString());
997 avro::encode(e, v.get_bytes());
1003 size_t n = d.decodeUnionIndex();
1004 if (n >= 7) {
throw avro::Exception(
"Union index too big"); }
1009 avro::decode(d, vv);
1010 v.set_ArrayOfBoolean(vv);
1016 avro::decode(d, vv);
1017 v.set_ArrayOfInt(vv);
1023 avro::decode(d, vv);
1024 v.set_ArrayOfLong(vv);
1030 avro::decode(d, vv);
1031 v.set_ArrayOfFloat(vv);
1037 avro::decode(d, vv);
1038 v.set_ArrayOfDouble(vv);
1044 avro::decode(d, vv);
1045 v.set_ArrayOfString(vv);
1051 avro::decode(d, vv);
1060namespace Energistics {
1063 namespace Datatypes {
1072 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::AnyArray> {
1074 avro::encode(e, v.item);
1077 avro::decode(e, v.item);
1081namespace Energistics {
1084 namespace Datatypes {
1094 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::AnySubarray> {
1096 avro::encode(e, v.start);
1097 avro::encode(e, v.slice);
1100 avro::decode(e, v.start);
1101 avro::decode(e, v.slice);
1105namespace Energistics {
1108 namespace Datatypes {
1110 std::vector<Energistics::Etp::v12::Datatypes::AnySubarray> slices;
1117 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::AnySparseArray> {
1119 avro::encode(e, v.slices);
1122 avro::decode(e, v.slices);
1126namespace Energistics {
1129 namespace Datatypes {
1131 std::string organizationName;
1132 std::string contactName;
1133 std::string contactPhone;
1134 std::string contactEmail;
1141 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Contact> {
1143 avro::encode(e, v.organizationName);
1144 avro::encode(e, v.contactName);
1145 avro::encode(e, v.contactPhone);
1146 avro::encode(e, v.contactEmail);
1149 avro::decode(e, v.organizationName);
1150 avro::decode(e, v.contactName);
1151 avro::decode(e, v.contactPhone);
1152 avro::decode(e, v.contactEmail);
1156namespace Energistics {
1159 namespace Datatypes {
1160 enum class DataObjectCapabilityKind {
1161 ActiveTimeoutPeriod=0,
1162 MaxContainedDataObjectCount=1,
1163 MaxDataObjectSize=2,
1164 OrphanedChildrenPrunedOnDelete=3,
1168 MaxSecondaryIndexCount=7
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));
1179 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::DataObjectCapabilityKind& v) {
1180 v =
static_cast<Energistics::Etp::v12::Datatypes::DataObjectCapabilityKind
>(e.decodeEnum());
1184namespace Energistics {
1187 namespace Datatypes {
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 {
1199 throw avro::Exception(
"Invalid type for union.");
1201 return boost::any_cast< bool const & >(value_);
1203 bool& get_boolean() {
1205 throw avro::Exception(
"Invalid type for union.");
1207 return boost::any_cast< bool& >(value_);
1209 void set_boolean(
const bool& v) {
1213 int32_t
const & get_int()
const {
1215 throw avro::Exception(
"Invalid type for union.");
1217 return boost::any_cast< int32_t const & >(value_);
1219 int32_t& get_int() {
1221 throw avro::Exception(
"Invalid type for union.");
1223 return boost::any_cast< int32_t& >(value_);
1225 void set_int(
const int32_t& v) {
1229 int64_t
const & get_long()
const {
1231 throw avro::Exception(
"Invalid type for union.");
1233 return boost::any_cast< int64_t const & >(value_);
1235 int64_t& get_long() {
1237 throw avro::Exception(
"Invalid type for union.");
1239 return boost::any_cast< int64_t& >(value_);
1241 void set_long(
const int64_t& v) {
1245 float const & get_float()
const {
1247 throw avro::Exception(
"Invalid type for union.");
1249 return boost::any_cast< float const & >(value_);
1251 float& get_float() {
1253 throw avro::Exception(
"Invalid type for union.");
1255 return boost::any_cast< float& >(value_);
1257 void set_float(
const float& v) {
1261 double const & get_double()
const {
1263 throw avro::Exception(
"Invalid type for union.");
1265 return boost::any_cast< double const & >(value_);
1267 double& get_double() {
1269 throw avro::Exception(
"Invalid type for union.");
1271 return boost::any_cast< double& >(value_);
1273 void set_double(
const double& v) {
1277 std::string
const & get_string()
const {
1279 throw avro::Exception(
"Invalid type for union.");
1281 return boost::any_cast< std::string const & >(value_);
1283 std::string& get_string() {
1285 throw avro::Exception(
"Invalid type for union.");
1287 return boost::any_cast< std::string& >(value_);
1289 void set_string(
const std::string& v) {
1295 throw avro::Exception(
"Invalid type for union.");
1297 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfBoolean const & >(value_);
1301 throw avro::Exception(
"Invalid type for union.");
1303 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfBoolean& >(value_);
1311 throw avro::Exception(
"Invalid type for union.");
1313 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfNullableBoolean const & >(value_);
1317 throw avro::Exception(
"Invalid type for union.");
1319 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfNullableBoolean& >(value_);
1327 throw avro::Exception(
"Invalid type for union.");
1329 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfInt const & >(value_);
1333 throw avro::Exception(
"Invalid type for union.");
1335 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfInt& >(value_);
1343 throw avro::Exception(
"Invalid type for union.");
1345 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfNullableInt const & >(value_);
1349 throw avro::Exception(
"Invalid type for union.");
1351 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfNullableInt& >(value_);
1359 throw avro::Exception(
"Invalid type for union.");
1361 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfLong const & >(value_);
1365 throw avro::Exception(
"Invalid type for union.");
1367 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfLong& >(value_);
1375 throw avro::Exception(
"Invalid type for union.");
1377 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfNullableLong const & >(value_);
1381 throw avro::Exception(
"Invalid type for union.");
1383 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfNullableLong& >(value_);
1391 throw avro::Exception(
"Invalid type for union.");
1393 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfFloat const & >(value_);
1397 throw avro::Exception(
"Invalid type for union.");
1399 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfFloat& >(value_);
1407 throw avro::Exception(
"Invalid type for union.");
1409 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfDouble const & >(value_);
1413 throw avro::Exception(
"Invalid type for union.");
1415 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfDouble& >(value_);
1423 throw avro::Exception(
"Invalid type for union.");
1425 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfString const & >(value_);
1429 throw avro::Exception(
"Invalid type for union.");
1431 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfString& >(value_);
1439 throw avro::Exception(
"Invalid type for union.");
1441 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfBytes const & >(value_);
1445 throw avro::Exception(
"Invalid type for union.");
1447 return boost::any_cast< Energistics::Etp::v12::Datatypes::ArrayOfBytes& >(value_);
1453 std::string
const & get_bytes()
const {
1455 throw avro::Exception(
"Invalid type for union.");
1457 return boost::any_cast< std::string const & >(value_);
1459 std::string& get_bytes() {
1461 throw avro::Exception(
"Invalid type for union.");
1463 return boost::any_cast< std::string& >(value_);
1465 void set_bytes(
const std::string& v) {
1471 throw avro::Exception(
"Invalid type for union.");
1473 return boost::any_cast< Energistics::Etp::v12::Datatypes::AnySparseArray const & >(value_);
1477 throw avro::Exception(
"Invalid type for union.");
1479 return boost::any_cast< Energistics::Etp::v12::Datatypes::AnySparseArray& >(value_);
1491 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::DataValueitem_t> {
1495 e.encodeUnionIndex(v.idx());
1501 avro::encode(e, v.get_boolean());
1504 avro::encode(e, v.get_int());
1507 avro::encode(e, v.get_long());
1510 avro::encode(e, v.get_float());
1513 avro::encode(e, v.get_double());
1516 avro::encode(e, v.get_string());
1519 avro::encode(e, v.get_ArrayOfBoolean());
1522 avro::encode(e, v.get_ArrayOfNullableBoolean());
1525 avro::encode(e, v.get_ArrayOfInt());
1528 avro::encode(e, v.get_ArrayOfNullableInt());
1531 avro::encode(e, v.get_ArrayOfLong());
1534 avro::encode(e, v.get_ArrayOfNullableLong());
1537 avro::encode(e, v.get_ArrayOfFloat());
1540 avro::encode(e, v.get_ArrayOfDouble());
1543 avro::encode(e, v.get_ArrayOfString());
1546 avro::encode(e, v.get_ArrayOfBytes());
1549 avro::encode(e, v.get_bytes());
1552 avro::encode(e, v.get_AnySparseArray());
1558 size_t n = d.decodeUnionIndex();
1559 if (n >= 19) {
throw avro::Exception(
"Union index too big"); }
1570 avro::decode(d, vv);
1577 avro::decode(d, vv);
1584 avro::decode(d, vv);
1591 avro::decode(d, vv);
1598 avro::decode(d, vv);
1605 avro::decode(d, vv);
1612 avro::decode(d, vv);
1613 v.set_ArrayOfBoolean(vv);
1619 avro::decode(d, vv);
1620 v.set_ArrayOfNullableBoolean(vv);
1626 avro::decode(d, vv);
1627 v.set_ArrayOfInt(vv);
1633 avro::decode(d, vv);
1634 v.set_ArrayOfNullableInt(vv);
1640 avro::decode(d, vv);
1641 v.set_ArrayOfLong(vv);
1647 avro::decode(d, vv);
1648 v.set_ArrayOfNullableLong(vv);
1654 avro::decode(d, vv);
1655 v.set_ArrayOfFloat(vv);
1661 avro::decode(d, vv);
1662 v.set_ArrayOfDouble(vv);
1668 avro::decode(d, vv);
1669 v.set_ArrayOfString(vv);
1675 avro::decode(d, vv);
1676 v.set_ArrayOfBytes(vv);
1682 avro::decode(d, vv);
1689 avro::decode(d, vv);
1690 v.set_AnySparseArray(vv);
1698namespace Energistics {
1701 namespace Datatypes {
1710 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::DataValue> {
1712 avro::encode(e, v.item);
1715 avro::decode(e, v.item);
1719namespace Energistics {
1722 namespace Datatypes {
1724 int32_t attributeId = 0;
1732 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::DataAttribute> {
1734 avro::encode(e, v.attributeId);
1735 avro::encode(e, v.attributeValue);
1738 avro::decode(e, v.attributeId);
1739 avro::decode(e, v.attributeValue);
1743namespace Energistics {
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,
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
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));
1775 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::EndpointCapabilityKind& v) {
1776 v =
static_cast<Energistics::Etp::v12::Datatypes::EndpointCapabilityKind
>(e.decodeEnum());
1780namespace Energistics {
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;
1796 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::MessageHeader> {
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);
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);
1813namespace Energistics {
1816 namespace Datatypes {
1818 std::string message;
1826 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ErrorInfo> {
1828 avro::encode(e, v.message);
1829 avro::encode(e, v.code);
1832 avro::decode(e, v.message);
1833 avro::decode(e, v.code);
1837namespace Energistics {
1840 namespace Protocol {
1843 boost::optional<Energistics::Etp::v12::Datatypes::ErrorInfo> error;
1844 bool has_error()
const {
return error.is_initialized(); }
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);
1856 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Core::ProtocolException> {
1858 avro::encode(e, v.error);
1859 avro::encode(e, v.errors);
1862 avro::decode(e, v.error);
1863 avro::decode(e, v.errors);
1867namespace Energistics {
1870 namespace Datatypes {
1872 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> extension;
1879 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::MessageHeaderExtension> {
1881 avro::encode(e, v.extension);
1884 avro::decode(e, v.extension);
1888namespace Energistics {
1891 namespace Datatypes {
1892 enum class ProtocolCapabilityKind {
1893 FrameChangeDetectionPeriod=0,
1895 MaxDataObjectSize=2,
1896 MaxFrameResponseRowCount=3,
1898 MaxRangeChannelCount=5,
1899 MaxRangeDataItemCount=6,
1901 MaxStreamingChannelsSessionCount=8,
1902 MaxSubscriptionSessionCount=9,
1903 MaxTransactionCount=10,
1904 SupportsSecondaryIndexFiltering=11,
1905 TransactionTimeoutPeriod=12
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));
1916 static void decode(Decoder& e, Energistics::Etp::v12::Datatypes::ProtocolCapabilityKind& v) {
1917 v =
static_cast<Energistics::Etp::v12::Datatypes::ProtocolCapabilityKind
>(e.decodeEnum());
1921namespace Energistics {
1924 namespace Datatypes {
1926 std::string qualifiedType;
1927 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> dataObjectCapabilities;
1934 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::SupportedDataObject> {
1936 avro::encode(e, v.qualifiedType);
1937 avro::encode(e, v.dataObjectCapabilities);
1940 avro::decode(e, v.qualifiedType);
1941 avro::decode(e, v.dataObjectCapabilities);
1945namespace Energistics {
1948 namespace Datatypes {
1950 std::array<uint8_t, 16> array{{}};
1957 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Uuid> {
1959 avro::encode(e, v.array);
1962 avro::decode(e, v.array);
1966namespace Energistics {
1969 namespace Protocol {
1970 namespace StoreNotification {
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);
1984 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::Chunk> {
1986 avro::encode(e, v.blobId);
1987 avro::encode(e, v.data);
1988 avro::encode(e, v.final);
1991 avro::decode(e, v.blobId);
1992 avro::decode(e, v.data);
1993 avro::decode(e, v.final);
1997namespace Energistics {
2000 namespace Protocol {
2001 namespace StoreNotification {
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);
2015 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::ObjectAccessRevoked> {
2017 avro::encode(e, v.uri);
2018 avro::encode(e, v.changeTime);
2019 avro::encode(e, v.requestUuid);
2022 avro::decode(e, v.uri);
2023 avro::decode(e, v.changeTime);
2024 avro::decode(e, v.requestUuid);
2028namespace Energistics {
2031 namespace Protocol {
2032 namespace StoreNotification {
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);
2046 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::ObjectDeleted> {
2048 avro::encode(e, v.uri);
2049 avro::encode(e, v.changeTime);
2050 avro::encode(e, v.requestUuid);
2053 avro::decode(e, v.uri);
2054 avro::decode(e, v.changeTime);
2055 avro::decode(e, v.requestUuid);
2059namespace Energistics {
2062 namespace Protocol {
2063 namespace StoreNotification {
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);
2076 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::SubscriptionEnded> {
2078 avro::encode(e, v.reason);
2079 avro::encode(e, v.requestUuid);
2082 avro::decode(e, v.reason);
2083 avro::decode(e, v.requestUuid);
2087namespace Energistics {
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);
2103 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::UnsubscribeNotifications> {
2105 avro::encode(e, v.requestUuid);
2108 avro::decode(e, v.requestUuid);
2112namespace Energistics {
2115 namespace Protocol {
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);
2130 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Store::Chunk> {
2132 avro::encode(e, v.blobId);
2133 avro::encode(e, v.data);
2134 avro::encode(e, v.final);
2137 avro::decode(e, v.blobId);
2138 avro::decode(e, v.data);
2139 avro::decode(e, v.final);
2143namespace Energistics {
2146 namespace Protocol {
2147 namespace StoreQuery {
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);
2161 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::StoreQuery::Chunk> {
2163 avro::encode(e, v.blobId);
2164 avro::encode(e, v.data);
2165 avro::encode(e, v.final);
2168 avro::decode(e, v.blobId);
2169 avro::decode(e, v.data);
2170 avro::decode(e, v.final);
2174namespace Energistics {
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);
2190 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Transaction::CommitTransaction> {
2192 avro::encode(e, v.transactionUuid);
2195 avro::decode(e, v.transactionUuid);
2199namespace Energistics {
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);
2217 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Transaction::CommitTransactionResponse> {
2219 avro::encode(e, v.transactionUuid);
2220 avro::encode(e, v.successful);
2221 avro::encode(e, v.failureReason);
2224 avro::decode(e, v.transactionUuid);
2225 avro::decode(e, v.successful);
2226 avro::decode(e, v.failureReason);
2230namespace Energistics {
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);
2246 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Transaction::RollbackTransaction> {
2248 avro::encode(e, v.transactionUuid);
2251 avro::decode(e, v.transactionUuid);
2255namespace Energistics {
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);
2273 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Transaction::RollbackTransactionResponse> {
2275 avro::encode(e, v.transactionUuid);
2276 avro::encode(e, v.successful);
2277 avro::encode(e, v.failureReason);
2280 avro::decode(e, v.transactionUuid);
2281 avro::decode(e, v.successful);
2282 avro::decode(e, v.failureReason);
2286namespace Energistics {
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);
2304 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Transaction::StartTransactionResponse> {
2306 avro::encode(e, v.transactionUuid);
2307 avro::encode(e, v.successful);
2308 avro::encode(e, v.failureReason);
2311 avro::decode(e, v.transactionUuid);
2312 avro::decode(e, v.successful);
2313 avro::decode(e, v.failureReason);
2317namespace Energistics {
2320 namespace Datatypes {
2324 int32_t revision = 0;
2332 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Version> {
2334 avro::encode(e, v.major);
2335 avro::encode(e, v.minor);
2336 avro::encode(e, v.revision);
2337 avro::encode(e, v.patch);
2340 avro::decode(e, v.major);
2341 avro::decode(e, v.minor);
2342 avro::decode(e, v.revision);
2343 avro::decode(e, v.patch);
2347namespace Energistics {
2350 namespace Datatypes {
2352 int32_t protocol = 0;
2355 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> protocolCapabilities;
2362 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::SupportedProtocol> {
2364 avro::encode(e, v.protocol);
2365 avro::encode(e, v.protocolVersion);
2366 avro::encode(e, v.role);
2367 avro::encode(e, v.protocolCapabilities);
2370 avro::decode(e, v.protocol);
2371 avro::decode(e, v.protocolVersion);
2372 avro::decode(e, v.role);
2373 avro::decode(e, v.protocolCapabilities);
2377namespace Energistics {
2380 namespace Protocol {
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);
2403 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Core::OpenSession> {
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);
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);
2432namespace Energistics {
2435 namespace Protocol {
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);
2458 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Core::RequestSession> {
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);
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);
2487namespace Energistics {
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;
2507 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ServerCapabilities> {
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);
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);
2532namespace Energistics {
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;
2547 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::ChannelChangeRequestInfo> {
2549 avro::encode(e, v.sinceChangeTime);
2550 avro::encode(e, v.channelIds);
2553 avro::decode(e, v.sinceChangeTime);
2554 avro::decode(e, v.channelIds);
2558namespace Energistics {
2561 namespace Datatypes {
2562 namespace ChannelData {
2563 enum class ChannelDataKind {
2568 TrueVerticalDepth=4,
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));
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());
2592namespace Energistics {
2595 namespace Datatypes {
2597 int32_t attributeId = 0;
2598 std::string attributeName;
2599 Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind dataKind;
2601 std::string depthDatum;
2602 std::string attributePropertyKindUri;
2603 std::vector<int32_t> axisVectorLengths;
2610 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::AttributeMetadataRecord> {
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);
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);
2631namespace Energistics {
2634 namespace Datatypes {
2635 namespace ChannelData {
2636 enum class ChannelIndexKind {
2640 TrueVerticalDepth=3,
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));
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());
2661namespace Energistics {
2664 namespace Datatypes {
2665 namespace ChannelData {
2668 std::vector<Energistics::Etp::v12::Datatypes::DataAttribute> valueAttributes;
2676 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::FramePoint> {
2678 avro::encode(e, v.value);
2679 avro::encode(e, v.valueAttributes);
2682 avro::decode(e, v.value);
2683 avro::decode(e, v.valueAttributes);
2687namespace Energistics {
2690 namespace Datatypes {
2691 namespace ChannelData {
2692 enum class IndexDirection {
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));
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());
2712namespace Energistics {
2715 namespace Datatypes {
2716 namespace ChannelData {
2717 enum class PassDirection {
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));
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());
2737namespace Energistics {
2740 namespace Datatypes {
2741 namespace ChannelData {
2744 Energistics::Etp::v12::Datatypes::ChannelData::PassDirection direction = Energistics::Etp::v12::Datatypes::ChannelData::PassDirection::Up;
2753 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::PassIndexedDepth> {
2755 avro::encode(e, v.pass);
2756 avro::encode(e, v.direction);
2757 avro::encode(e, v.depth);
2760 avro::decode(e, v.pass);
2761 avro::decode(e, v.direction);
2762 avro::decode(e, v.depth);
2766namespace Energistics {
2769 namespace Datatypes {
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 {
2781 throw avro::Exception(
"Invalid type for union.");
2783 return boost::any_cast< int64_t const & >(value_);
2785 int64_t& get_long() {
2787 throw avro::Exception(
"Invalid type for union.");
2789 return boost::any_cast< int64_t& >(value_);
2791 void set_long(
const int64_t& v) {
2795 double const & get_double()
const {
2797 throw avro::Exception(
"Invalid type for union.");
2799 return boost::any_cast< double const & >(value_);
2801 double& get_double() {
2803 throw avro::Exception(
"Invalid type for union.");
2805 return boost::any_cast< double& >(value_);
2807 void set_double(
const double& v) {
2813 throw avro::Exception(
"Invalid type for union.");
2815 return boost::any_cast< Energistics::Etp::v12::Datatypes::ChannelData::PassIndexedDepth const & >(value_);
2819 throw avro::Exception(
"Invalid type for union.");
2821 return boost::any_cast< Energistics::Etp::v12::Datatypes::ChannelData::PassIndexedDepth& >(value_);
2833 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::IndexValueitem_t> {
2837 e.encodeUnionIndex(v.idx());
2843 avro::encode(e, v.get_long());
2846 avro::encode(e, v.get_double());
2849 avro::encode(e, v.get_PassIndexedDepth());
2855 size_t n = d.decodeUnionIndex();
2856 if (n >= 4) {
throw avro::Exception(
"Union index too big"); }
2867 avro::decode(d, vv);
2874 avro::decode(d, vv);
2881 avro::decode(d, vv);
2882 v.set_PassIndexedDepth(vv);
2890namespace Energistics {
2893 namespace Datatypes {
2902 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::IndexValue> {
2904 avro::encode(e, v.item);
2907 avro::decode(e, v.item);
2911namespace Energistics {
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(); }
2930 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::ChannelSubscribeInfo> {
2932 avro::encode(e, v.channelId);
2933 avro::encode(e, v.startIndex);
2934 avro::encode(e, v.dataChanges);
2935 avro::encode(e, v.requestLatestIndexCount);
2938 avro::decode(e, v.channelId);
2939 avro::decode(e, v.startIndex);
2940 avro::decode(e, v.dataChanges);
2941 avro::decode(e, v.requestLatestIndexCount);
2945namespace Energistics {
2948 namespace Datatypes {
2949 namespace ChannelData {
2951 int64_t channelId = 0;
2952 std::vector<Energistics::Etp::v12::Datatypes::IndexValue> indexes;
2954 std::vector<Energistics::Etp::v12::Datatypes::DataAttribute> valueAttributes;
2962 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::DataItem> {
2964 avro::encode(e, v.channelId);
2965 avro::encode(e, v.indexes);
2966 avro::encode(e, v.value);
2967 avro::encode(e, v.valueAttributes);
2970 avro::decode(e, v.channelId);
2971 avro::decode(e, v.indexes);
2972 avro::decode(e, v.value);
2973 avro::decode(e, v.valueAttributes);
2977namespace Energistics {
2980 namespace Datatypes {
2981 namespace ChannelData {
2983 std::vector<Energistics::Etp::v12::Datatypes::IndexValue> indexes;
2984 std::vector<Energistics::Etp::v12::Datatypes::ChannelData::FramePoint> points;
2992 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::FrameRow> {
2994 avro::encode(e, v.indexes);
2995 avro::encode(e, v.points);
2998 avro::decode(e, v.indexes);
2999 avro::decode(e, v.points);
3003namespace Energistics {
3006 namespace Datatypes {
3007 namespace ChannelData {
3009 int64_t channelId = 0;
3018 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::TruncateInfo> {
3020 avro::encode(e, v.channelId);
3021 avro::encode(e, v.newEndIndex);
3024 avro::decode(e, v.channelId);
3025 avro::decode(e, v.newEndIndex);
3029namespace Energistics {
3032 namespace Datatypes {
3033 namespace DataArrayTypes {
3035 std::vector<int64_t> dimensions;
3044 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArray> {
3046 avro::encode(e, v.dimensions);
3047 avro::encode(e, v.data);
3050 avro::decode(e, v.dimensions);
3051 avro::decode(e, v.data);
3055namespace Energistics {
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);
3071 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::GetDataArraysResponse> {
3073 avro::encode(e, v.dataArrays);
3076 avro::decode(e, v.dataArrays);
3080namespace Energistics {
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);
3096 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::GetDataSubarraysResponse> {
3098 avro::encode(e, v.dataSubarrays);
3101 avro::decode(e, v.dataSubarrays);
3105namespace Energistics {
3108 namespace Datatypes {
3109 namespace DataArrayTypes {
3112 std::string pathInResource;
3120 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArrayIdentifier> {
3122 avro::encode(e, v.uri);
3123 avro::encode(e, v.pathInResource);
3126 avro::decode(e, v.uri);
3127 avro::decode(e, v.pathInResource);
3131namespace Energistics {
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);
3147 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::GetDataArrayMetadata> {
3149 avro::encode(e, v.dataArrays);
3152 avro::decode(e, v.dataArrays);
3156namespace Energistics {
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);
3172 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::GetDataArrays> {
3174 avro::encode(e, v.dataArrays);
3177 avro::decode(e, v.dataArrays);
3181namespace Energistics {
3184 namespace Datatypes {
3185 namespace DataArrayTypes {
3188 std::vector<int64_t> starts;
3189 std::vector<int64_t> counts;
3197 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::GetDataSubarraysType> {
3199 avro::encode(e, v.uid);
3200 avro::encode(e, v.starts);
3201 avro::encode(e, v.counts);
3204 avro::decode(e, v.uid);
3205 avro::decode(e, v.starts);
3206 avro::decode(e, v.counts);
3210namespace Energistics {
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);
3226 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::GetDataSubarrays> {
3228 avro::encode(e, v.dataSubarrays);
3231 avro::decode(e, v.dataSubarrays);
3235namespace Energistics {
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;
3255 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::DataArrayMetadata> {
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);
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);
3276namespace Energistics {
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);
3292 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::GetDataArrayMetadataResponse> {
3294 avro::encode(e, v.arrayMetadata);
3297 avro::decode(e, v.arrayMetadata);
3301namespace Energistics {
3304 namespace Datatypes {
3305 namespace DataArrayTypes {
3309 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
3317 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::PutDataArraysType> {
3319 avro::encode(e, v.uid);
3320 avro::encode(e, v.array);
3321 avro::encode(e, v.customData);
3324 avro::decode(e, v.uid);
3325 avro::decode(e, v.array);
3326 avro::decode(e, v.customData);
3330namespace Energistics {
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);
3346 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::PutDataArrays> {
3348 avro::encode(e, v.dataArrays);
3351 avro::decode(e, v.dataArrays);
3355namespace Energistics {
3358 namespace Datatypes {
3359 namespace DataArrayTypes {
3363 std::vector<int64_t> starts;
3364 std::vector<int64_t> counts;
3372 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::PutDataSubarraysType> {
3374 avro::encode(e, v.uid);
3375 avro::encode(e, v.data);
3376 avro::encode(e, v.starts);
3377 avro::encode(e, v.counts);
3380 avro::decode(e, v.uid);
3381 avro::decode(e, v.data);
3382 avro::decode(e, v.starts);
3383 avro::decode(e, v.counts);
3387namespace Energistics {
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);
3403 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::PutDataSubarrays> {
3405 avro::encode(e, v.dataSubarrays);
3408 avro::decode(e, v.dataSubarrays);
3412namespace Energistics {
3415 namespace Datatypes {
3416 namespace DataArrayTypes {
3427 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::DataArrayTypes::PutUninitializedDataArrayType> {
3429 avro::encode(e, v.uid);
3430 avro::encode(e, v.metadata);
3433 avro::decode(e, v.uid);
3434 avro::decode(e, v.metadata);
3438namespace Energistics {
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);
3454 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataArray::PutUninitializedDataArrays> {
3456 avro::encode(e, v.dataArrays);
3459 avro::decode(e, v.dataArrays);
3463namespace Energistics {
3466 namespace Datatypes {
3468 enum class ActiveStatusKind {
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));
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());
3487namespace Energistics {
3490 namespace Datatypes {
3491 namespace ChannelData {
3494 std::string channelName;
3495 Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind dataKind = Energistics::Etp::v12::Datatypes::ChannelData::ChannelDataKind::DateTime;
3497 std::string depthDatum;
3498 std::string channelPropertyKindUri;
3499 Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind status = Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind::Active;
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;
3511 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::FrameChannelMetadataRecord> {
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);
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);
3540namespace Energistics {
3543 namespace Datatypes {
3545 enum class ContextScopeKind {
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));
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());
3567namespace Energistics {
3570 namespace Datatypes {
3575 int64_t storeLastWrite = 0;
3576 int64_t storeCreated = 0;
3577 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
3585 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::Dataspace> {
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);
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);
3602namespace Energistics {
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);
3618 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Dataspace::GetDataspacesResponse> {
3620 avro::encode(e, v.dataspaces);
3623 avro::decode(e, v.dataspaces);
3627namespace Energistics {
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);
3643 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Dataspace::PutDataspaces> {
3645 avro::encode(e, v.dataspaces);
3648 avro::decode(e, v.dataspaces);
3652namespace Energistics {
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);
3668 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::GetDataspaceInfo> {
3670 avro::encode(e, v.uris);
3673 avro::decode(e, v.uris);
3677namespace Energistics {
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);
3693 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::GetDataspaceInfoResponse> {
3695 avro::encode(e, v.dataspaces);
3698 avro::decode(e, v.dataspaces);
3702namespace Energistics {
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);
3719 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::CopyDataspacesContent> {
3721 avro::encode(e, v.dataspaces);
3722 avro::encode(e, v.targetDataspace);
3725 avro::decode(e, v.dataspaces);
3726 avro::decode(e, v.targetDataspace);
3730namespace Energistics {
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);
3746 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::CopyDataspacesContentResponse> {
3748 avro::encode(e, v.success);
3751 avro::decode(e, v.success);
3755namespace Energistics {
3758 namespace Protocol {
3759 namespace DataspaceOSDU {
3761 std::map<std::string, std::string> uris;
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);
3772 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::LockDataspaces> {
3774 avro::encode(e, v.uris);
3775 avro::encode(e, v.lock);
3778 avro::decode(e, v.uris);
3779 avro::decode(e, v.lock);
3783namespace Energistics {
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);
3799 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::LockDataspacesResponse> {
3801 avro::encode(e, v.success);
3804 avro::decode(e, v.success);
3808namespace Energistics {
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);
3825 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::CopyToDataspace> {
3827 avro::encode(e, v.uris);
3828 avro::encode(e, v.dataspaceUri);
3831 avro::decode(e, v.uris);
3832 avro::decode(e, v.dataspaceUri);
3836namespace Energistics {
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);
3852 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DataspaceOSDU::CopyToDataspaceResponse > {
3854 avro::encode(e, v.success);
3857 avro::decode(e, v.success);
3861namespace Energistics {
3864 namespace Datatypes {
3868 int64_t deletedTime = 0;
3869 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
3877 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::DeletedResource> {
3879 avro::encode(e, v.uri);
3880 avro::encode(e, v.deletedTime);
3881 avro::encode(e, v.customData);
3884 avro::decode(e, v.uri);
3885 avro::decode(e, v.deletedTime);
3886 avro::decode(e, v.customData);
3890namespace Energistics {
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);
3906 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Discovery::GetDeletedResourcesResponse> {
3908 avro::encode(e, v.deletedResources);
3911 avro::decode(e, v.deletedResources);
3915namespace Energistics {
3918 namespace Datatypes {
3924 std::string depthDatum;
3932 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::IndexInterval> {
3934 avro::encode(e, v.startIndex);
3935 avro::encode(e, v.endIndex);
3936 avro::encode(e, v.uom);
3937 avro::encode(e, v.depthDatum);
3940 avro::decode(e, v.startIndex);
3941 avro::decode(e, v.endIndex);
3942 avro::decode(e, v.uom);
3943 avro::decode(e, v.depthDatum);
3947namespace Energistics {
3950 namespace Datatypes {
3951 namespace ChannelData {
3953 std::vector<int64_t> channelIds;
3955 std::vector<Energistics::Etp::v12::Datatypes::Object::IndexInterval> secondaryIntervals;
3963 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::ChannelRangeInfo> {
3965 avro::encode(e, v.channelIds);
3966 avro::encode(e, v.interval);
3967 avro::encode(e, v.secondaryIntervals);
3970 avro::decode(e, v.channelIds);
3971 avro::decode(e, v.interval);
3972 avro::decode(e, v.secondaryIntervals);
3976namespace Energistics {
3979 namespace Datatypes {
3980 namespace ChannelData {
3982 Energistics::Etp::v12::Datatypes::ChannelData::ChannelIndexKind indexKind;
3984 Energistics::Etp::v12::Datatypes::ChannelData::IndexDirection direction;
3987 std::string depthDatum;
3988 std::string indexPropertyKindUri;
3989 bool filterable=
false;
3997 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::IndexMetadataRecord> {
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);
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);
4020namespace Energistics {
4023 namespace Datatypes {
4024 namespace ChannelData {
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;
4032 std::string depthDatum;
4033 std::string channelClassUri;
4034 Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind status = Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind::Active;
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;
4046 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::ChannelMetadataRecord> {
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);
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);
4079namespace Energistics {
4082 namespace Datatypes {
4083 namespace ChannelData {
4086 bool preferRealtime=
false;
4087 bool dataChanges=
false;
4095 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::ChannelData::OpenChannelInfo> {
4097 avro::encode(e, v.metadata);
4098 avro::encode(e, v.preferRealtime);
4099 avro::encode(e, v.dataChanges);
4102 avro::decode(e, v.metadata);
4103 avro::decode(e, v.preferRealtime);
4104 avro::decode(e, v.dataChanges);
4108namespace Energistics {
4111 namespace Datatypes {
4114 int64_t changeTime = 0;
4123 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ChangeAnnotation> {
4125 avro::encode(e, v.changeTime);
4126 avro::encode(e, v.interval);
4129 avro::decode(e, v.changeTime);
4130 avro::decode(e, v.interval);
4134namespace Energistics {
4137 namespace Datatypes {
4140 int64_t responseTimestamp = 0;
4141 std::map<std::string, std::vector<Energistics::Etp::v12::Datatypes::Object::ChangeAnnotation> > changes;
4149 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ChangeResponseInfo> {
4151 avro::encode(e, v.responseTimestamp);
4152 avro::encode(e, v.changes);
4155 avro::decode(e, v.responseTimestamp);
4156 avro::decode(e, v.changes);
4160namespace Energistics {
4163 namespace Datatypes {
4165 enum class ObjectChangeKind {
4171 joinedSubscription=5,
4172 unjoinedSubscription=6
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));
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());
4189namespace Energistics {
4192 namespace Datatypes {
4204 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ObjectPart> {
4206 avro::encode(e, v.uid);
4207 avro::encode(e, v.data);
4210 avro::decode(e, v.uid);
4211 avro::decode(e, v.data);
4215namespace Energistics {
4218 namespace Datatypes {
4224 std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> customData;
4232 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::PartsMetadataInfo> {
4234 avro::encode(e, v.uri);
4235 avro::encode(e, v.name);
4236 avro::encode(e, v.index);
4237 avro::encode(e, v.customData);
4240 avro::decode(e, v.uri);
4241 avro::decode(e, v.name);
4242 avro::decode(e, v.index);
4243 avro::decode(e, v.customData);
4247namespace Energistics {
4250 namespace Datatypes {
4253 std::vector<std::string> createdContainedObjectUris;
4254 std::vector<std::string> deletedContainedObjectUris;
4255 std::vector<std::string> joinedContainedObjectUris;
4256 std::vector<std::string> unjoinedContainedObjectUris;
4264 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::PutResponse> {
4266 avro::encode(e, v.createdContainedObjectUris);
4267 avro::encode(e, v.deletedContainedObjectUris);
4268 avro::encode(e, v.joinedContainedObjectUris);
4269 avro::encode(e, v.unjoinedContainedObjectUris);
4272 avro::decode(e, v.createdContainedObjectUris);
4273 avro::decode(e, v.deletedContainedObjectUris);
4274 avro::decode(e, v.joinedContainedObjectUris);
4275 avro::decode(e, v.unjoinedContainedObjectUris);
4279namespace Energistics {
4282 namespace Protocol {
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);
4295 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Store::PutDataObjectsResponse> {
4297 avro::encode(e, v.success);
4300 avro::decode(e, v.success);
4304namespace Energistics {
4307 namespace Datatypes {
4309 enum class RelationshipKind {
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));
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());
4329namespace Energistics {
4332 namespace Datatypes {
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;
4348 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ContextInfo> {
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);
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);
4367namespace Energistics {
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);
4392 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Discovery::GetResources> {
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);
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);
4411namespace Energistics {
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);
4434 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DiscoveryQuery::FindResources> {
4436 avro::encode(e, v.context);
4437 avro::encode(e, v.scope);
4438 avro::encode(e, v.storeLastWriteFilter);
4439 avro::encode(e, v.activeStatusFilter);
4442 avro::decode(e, v.context);
4443 avro::decode(e, v.scope);
4444 avro::decode(e, v.storeLastWriteFilter);
4445 avro::decode(e, v.activeStatusFilter);
4449namespace Energistics {
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(); }
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);
4473 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::StoreQuery::FindDataObjects> {
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);
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);
4490namespace Energistics {
4493 namespace Datatypes {
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;
4507 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::Edge> {
4509 avro::encode(e, v.sourceUri);
4510 avro::encode(e, v.targetUri);
4511 avro::encode(e, v.relationshipKind);
4512 avro::encode(e, v.customData);
4515 avro::decode(e, v.sourceUri);
4516 avro::decode(e, v.targetUri);
4517 avro::decode(e, v.relationshipKind);
4518 avro::decode(e, v.customData);
4522namespace Energistics {
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);
4538 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Discovery::GetResourcesEdgesResponse> {
4540 avro::encode(e, v.edges);
4543 avro::decode(e, v.edges);
4547namespace Energistics {
4550 namespace Datatypes {
4554 std::vector<std::string> alternateUris;
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;
4574 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::Resource> {
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);
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);
4601namespace Energistics {
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);
4617 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Discovery::GetResourcesResponse> {
4619 avro::encode(e, v.resources);
4622 avro::decode(e, v.resources);
4626namespace Energistics {
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);
4643 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::DiscoveryQuery::FindResourcesResponse> {
4645 avro::encode(e, v.resources);
4646 avro::encode(e, v.serverSortOrder);
4649 avro::decode(e, v.resources);
4650 avro::decode(e, v.serverSortOrder);
4654namespace Energistics {
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);
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);
4681 avro::decode(e, v.activeStatus);
4682 avro::decode(e, v.changeTime);
4683 avro::decode(e, v.resource);
4684 avro::decode(e, v.requestUuid);
4688namespace Energistics {
4691 namespace Datatypes {
4696 boost::optional<Energistics::Etp::v12::Datatypes::Uuid> blobId;
4697 bool has_blobId()
const {
return blobId.is_initialized(); }
4707 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::DataObject> {
4709 avro::encode(e, v.resource);
4710 avro::encode(e, v.format);
4711 avro::encode(e, v.blobId);
4712 avro::encode(e, v.data);
4715 avro::decode(e, v.resource);
4716 avro::decode(e, v.format);
4717 avro::decode(e, v.blobId);
4718 avro::decode(e, v.data);
4722namespace Energistics {
4725 namespace Protocol {
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);
4738 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Store::GetDataObjectsResponse> {
4740 avro::encode(e, v.dataObjects);
4743 avro::decode(e, v.dataObjects);
4747namespace Energistics {
4750 namespace Protocol {
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);
4764 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::Store::PutDataObjects> {
4766 avro::encode(e, v.dataObjects);
4767 avro::encode(e, v.pruneContainedObjects);
4770 avro::decode(e, v.dataObjects);
4771 avro::decode(e, v.pruneContainedObjects);
4775namespace Energistics {
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);
4792 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::StoreQuery::FindDataObjectsResponse> {
4794 avro::encode(e, v.dataObjects);
4795 avro::encode(e, v.serverSortOrder);
4798 avro::decode(e, v.dataObjects);
4799 avro::decode(e, v.serverSortOrder);
4803namespace Energistics {
4806 namespace Datatypes {
4809 Energistics::Etp::v12::Datatypes::Object::ObjectChangeKind changeKind = Energistics::Etp::v12::Datatypes::Object::ObjectChangeKind::insert;
4810 int64_t changeTime = 0;
4819 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::ObjectChange> {
4821 avro::encode(e, v.changeKind);
4822 avro::encode(e, v.changeTime);
4823 avro::encode(e, v.dataObject);
4826 avro::decode(e, v.changeKind);
4827 avro::decode(e, v.changeTime);
4828 avro::decode(e, v.dataObject);
4832namespace Energistics {
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);
4849 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::ObjectChanged> {
4851 avro::encode(e, v.change);
4852 avro::encode(e, v.requestUuid);
4855 avro::decode(e, v.change);
4856 avro::decode(e, v.requestUuid);
4860namespace Energistics {
4863 namespace Datatypes {
4867 Energistics::Etp::v12::Datatypes::Object::ContextScopeKind scope= Energistics::Etp::v12::Datatypes::Object::ContextScopeKind::targets;
4869 bool includeObjectData=
false;
4878 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::SubscriptionInfo> {
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);
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);
4895namespace Energistics {
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);
4911 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::SubscribeNotifications> {
4913 avro::encode(e, v.request);
4916 avro::decode(e, v.request);
4920namespace Energistics {
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);
4936 template<>
struct codec_traits<Energistics::Etp::v12::Protocol::StoreNotification::UnsolicitedStoreNotifications> {
4938 avro::encode(e, v.subscriptions);
4941 avro::decode(e, v.subscriptions);
4945namespace Energistics {
4948 namespace Datatypes {
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;
4963 template<>
struct codec_traits<Energistics::Etp::v12::Datatypes::Object::SupportedType> {
4965 avro::encode(e, v.dataObjectType);
4966 avro::encode(e, v.objectCount);
4967 avro::encode(e, v.relationshipKind);
4970 avro::decode(e, v.dataObjectType);
4971 avro::decode(e, v.objectCount);
4972 avro::decode(e, v.relationshipKind);
4977 template<>
struct codec_traits<boost::optional<bool>> {
4978 static void encode(Encoder& e, boost::optional<bool> v) {
4980 e.encodeUnionIndex(1);
4981 avro::encode(e, v.get());
4984 e.encodeUnionIndex(0);
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"); }
5001 avro::decode(d, vv);
5011 template<>
struct codec_traits<boost::optional<int32_t>> {
5012 static void encode(Encoder& e, boost::optional<int32_t> v) {
5014 e.encodeUnionIndex(1);
5015 avro::encode(e, v.get());
5018 e.encodeUnionIndex(0);
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"); }
5035 avro::decode(d, vv);
5045 template<>
struct codec_traits<boost::optional<int64_t>> {
5046 static void encode(Encoder& e, boost::optional<int64_t> v) {
5048 e.encodeUnionIndex(1);
5049 avro::encode(e, v.get());
5052 e.encodeUnionIndex(0);
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"); }
5069 avro::decode(d, vv);
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) {
5082 e.encodeUnionIndex(1);
5083 avro::encode(e, v.get());
5086 e.encodeUnionIndex(0);
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"); }
5103 avro::decode(d, vv);
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) {
5116 e.encodeUnionIndex(1);
5117 avro::encode(e, v.get());
5120 e.encodeUnionIndex(0);
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"); }
5137 avro::decode(d, vv);
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) {
5150 e.encodeUnionIndex(1);
5151 avro::encode(e, v.get());
5154 e.encodeUnionIndex(0);
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"); }
5170 Energistics::Etp::v12::Datatypes::Object::ActiveStatusKind vv;
5171 avro::decode(d, vv);
Definition EtpMessages.h:1064
Definition EtpMessages.h:847
Definition EtpMessages.h:1109
Definition EtpMessages.h:1085
Definition EtpMessages.h:612
Definition EtpMessages.h:633
Definition EtpMessages.h:654
Definition EtpMessages.h:675
Definition EtpMessages.h:696
Definition EtpMessages.h:717
Definition EtpMessages.h:738
Definition EtpMessages.h:759
Definition EtpMessages.h:780
Definition EtpMessages.h:801
Definition EtpMessages.h:2537
Definition EtpMessages.h:3952
Definition EtpMessages.h:2916
Definition EtpMessages.h:2950
Definition EtpMessages.h:2666
Definition EtpMessages.h:2982
Definition EtpMessages.h:4084
Definition EtpMessages.h:2742
Definition EtpMessages.h:3008
Definition EtpMessages.h:3034
Definition EtpMessages.h:3110
Definition EtpMessages.h:3186
Definition EtpMessages.h:3306
Definition EtpMessages.h:3360
Definition EtpMessages.h:3417
Definition EtpMessages.h:1723
Definition EtpMessages.h:1702
Definition EtpMessages.h:1188
Definition EtpMessages.h:1817
Definition EtpMessages.h:2894
Definition EtpMessages.h:2770
Definition EtpMessages.h:4113
Definition EtpMessages.h:4139
Definition EtpMessages.h:4334
Definition EtpMessages.h:4693
Definition EtpMessages.h:3572
Definition EtpMessages.h:3866
Definition EtpMessages.h:4495
Definition EtpMessages.h:3920
Definition EtpMessages.h:4808
Definition EtpMessages.h:4194
Definition EtpMessages.h:4252
Definition EtpMessages.h:4552
Definition EtpMessages.h:4865
Definition EtpMessages.h:4950
Definition EtpMessages.h:2491
Definition EtpMessages.h:1925
Definition EtpMessages.h:2351
Definition EtpMessages.h:1949
Definition EtpMessages.h:2321
Definition EtpMessages.h:70
Definition EtpMessages.h:92
Definition EtpMessages.h:120
Definition EtpMessages.h:148
Definition EtpMessages.h:2382
Definition EtpMessages.h:198
Definition EtpMessages.h:173
Definition EtpMessages.h:1842
Definition EtpMessages.h:2437
Definition EtpMessages.h:3161
Definition EtpMessages.h:3060
Definition EtpMessages.h:3215
Definition EtpMessages.h:3085
Definition EtpMessages.h:3335
Definition EtpMessages.h:223
Definition EtpMessages.h:3392
Definition EtpMessages.h:248
Definition EtpMessages.h:3443
Definition EtpMessages.h:273
Definition EtpMessages.h:298
Definition EtpMessages.h:323
Definition EtpMessages.h:348
Definition EtpMessages.h:3607
Definition EtpMessages.h:3632
Definition EtpMessages.h:375
Definition EtpMessages.h:3707
Definition EtpMessages.h:3735
Definition EtpMessages.h:3813
Definition EtpMessages.h:3841
Definition EtpMessages.h:3657
Definition EtpMessages.h:3682
Definition EtpMessages.h:3760
Definition EtpMessages.h:3788
Definition EtpMessages.h:400
Definition EtpMessages.h:3895
Definition EtpMessages.h:4527
Definition EtpMessages.h:4372
Definition EtpMessages.h:4606
Definition EtpMessages.h:4416
Definition EtpMessages.h:4631
Definition EtpMessages.h:2117
Definition EtpMessages.h:458
Definition EtpMessages.h:823
Definition EtpMessages.h:486
Definition EtpMessages.h:4727
Definition EtpMessages.h:4752
Definition EtpMessages.h:4284
Definition EtpMessages.h:1971
Definition EtpMessages.h:2002
Definition EtpMessages.h:4659
Definition EtpMessages.h:4837
Definition EtpMessages.h:2033
Definition EtpMessages.h:4900
Definition EtpMessages.h:433
Definition EtpMessages.h:2064
Definition EtpMessages.h:4925
Definition EtpMessages.h:2092
Definition EtpMessages.h:2148
Definition EtpMessages.h:4454
Definition EtpMessages.h:4780
Definition EtpMessages.h:2179
Definition EtpMessages.h:2204
Definition EtpMessages.h:2235
Definition EtpMessages.h:2260
Definition EtpMessages.h:514
Definition EtpMessages.h:2291