-
Notifications
You must be signed in to change notification settings - Fork 984
Expand file tree
/
Copy pathBitControl.pb.h
More file actions
3381 lines (3087 loc) · 126 KB
/
BitControl.pb.h
File metadata and controls
3381 lines (3087 loc) · 126 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: BitControl.proto
#ifndef PROTOBUF_INCLUDED_BitControl_2eproto
#define PROTOBUF_INCLUDED_BitControl_2eproto
#include <string>
#include <google/protobuf/stubs/common.h>
#if GOOGLE_PROTOBUF_VERSION < 3006001
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers. Please update
#error your headers.
#endif
#if 3006001 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers. Please
#error regenerate this file with a newer version of protoc.
#endif
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/arena.h>
#include <google/protobuf/arenastring.h>
#include <google/protobuf/generated_message_table_driven.h>
#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/inlined_string_field.h>
#include <google/protobuf/metadata.h>
#include <google/protobuf/message.h>
#include <google/protobuf/repeated_field.h> // IWYU pragma: export
#include <google/protobuf/extension_set.h> // IWYU pragma: export
#include <google/protobuf/generated_enum_reflection.h>
#include <google/protobuf/unknown_field_set.h>
#include "ExecutionProtos.pb.h"
#include "Coordination.pb.h"
#include "UserBitShared.pb.h"
// @@protoc_insertion_point(includes)
#define PROTOBUF_INTERNAL_EXPORT_protobuf_BitControl_2eproto
namespace protobuf_BitControl_2eproto {
// Internal implementation detail -- do not use these members.
struct TableStruct {
static const ::google::protobuf::internal::ParseTableField entries[];
static const ::google::protobuf::internal::AuxillaryParseTableField aux[];
static const ::google::protobuf::internal::ParseTable schema[10];
static const ::google::protobuf::internal::FieldMetadata field_metadata[];
static const ::google::protobuf::internal::SerializationTable serialization_table[];
static const ::google::protobuf::uint32 offsets[];
};
void AddDescriptors();
} // namespace protobuf_BitControl_2eproto
namespace exec {
namespace bit {
namespace control {
class BitControlHandshake;
class BitControlHandshakeDefaultTypeInternal;
extern BitControlHandshakeDefaultTypeInternal _BitControlHandshake_default_instance_;
class BitStatus;
class BitStatusDefaultTypeInternal;
extern BitStatusDefaultTypeInternal _BitStatus_default_instance_;
class Collector;
class CollectorDefaultTypeInternal;
extern CollectorDefaultTypeInternal _Collector_default_instance_;
class CustomMessage;
class CustomMessageDefaultTypeInternal;
extern CustomMessageDefaultTypeInternal _CustomMessage_default_instance_;
class FinishedReceiver;
class FinishedReceiverDefaultTypeInternal;
extern FinishedReceiverDefaultTypeInternal _FinishedReceiver_default_instance_;
class FragmentStatus;
class FragmentStatusDefaultTypeInternal;
extern FragmentStatusDefaultTypeInternal _FragmentStatus_default_instance_;
class InitializeFragments;
class InitializeFragmentsDefaultTypeInternal;
extern InitializeFragmentsDefaultTypeInternal _InitializeFragments_default_instance_;
class PlanFragment;
class PlanFragmentDefaultTypeInternal;
extern PlanFragmentDefaultTypeInternal _PlanFragment_default_instance_;
class QueryContextInformation;
class QueryContextInformationDefaultTypeInternal;
extern QueryContextInformationDefaultTypeInternal _QueryContextInformation_default_instance_;
class WorkQueueStatus;
class WorkQueueStatusDefaultTypeInternal;
extern WorkQueueStatusDefaultTypeInternal _WorkQueueStatus_default_instance_;
} // namespace control
} // namespace bit
} // namespace exec
namespace google {
namespace protobuf {
template<> ::exec::bit::control::BitControlHandshake* Arena::CreateMaybeMessage<::exec::bit::control::BitControlHandshake>(Arena*);
template<> ::exec::bit::control::BitStatus* Arena::CreateMaybeMessage<::exec::bit::control::BitStatus>(Arena*);
template<> ::exec::bit::control::Collector* Arena::CreateMaybeMessage<::exec::bit::control::Collector>(Arena*);
template<> ::exec::bit::control::CustomMessage* Arena::CreateMaybeMessage<::exec::bit::control::CustomMessage>(Arena*);
template<> ::exec::bit::control::FinishedReceiver* Arena::CreateMaybeMessage<::exec::bit::control::FinishedReceiver>(Arena*);
template<> ::exec::bit::control::FragmentStatus* Arena::CreateMaybeMessage<::exec::bit::control::FragmentStatus>(Arena*);
template<> ::exec::bit::control::InitializeFragments* Arena::CreateMaybeMessage<::exec::bit::control::InitializeFragments>(Arena*);
template<> ::exec::bit::control::PlanFragment* Arena::CreateMaybeMessage<::exec::bit::control::PlanFragment>(Arena*);
template<> ::exec::bit::control::QueryContextInformation* Arena::CreateMaybeMessage<::exec::bit::control::QueryContextInformation>(Arena*);
template<> ::exec::bit::control::WorkQueueStatus* Arena::CreateMaybeMessage<::exec::bit::control::WorkQueueStatus>(Arena*);
} // namespace protobuf
} // namespace google
namespace exec {
namespace bit {
namespace control {
enum RpcType {
HANDSHAKE = 0,
ACK = 1,
GOODBYE = 2,
REQ_INITIALIZE_FRAGMENTS = 3,
REQ_CANCEL_FRAGMENT = 6,
REQ_RECEIVER_FINISHED = 7,
REQ_FRAGMENT_STATUS = 8,
REQ_BIT_STATUS = 9,
REQ_QUERY_STATUS = 10,
REQ_QUERY_CANCEL = 15,
REQ_UNPAUSE_FRAGMENT = 16,
REQ_CUSTOM = 17,
RESP_FRAGMENT_HANDLE = 11,
RESP_FRAGMENT_STATUS = 12,
RESP_BIT_STATUS = 13,
RESP_QUERY_STATUS = 14,
RESP_CUSTOM = 18,
SASL_MESSAGE = 19
};
bool RpcType_IsValid(int value);
const RpcType RpcType_MIN = HANDSHAKE;
const RpcType RpcType_MAX = SASL_MESSAGE;
const int RpcType_ARRAYSIZE = RpcType_MAX + 1;
const ::google::protobuf::EnumDescriptor* RpcType_descriptor();
inline const ::std::string& RpcType_Name(RpcType value) {
return ::google::protobuf::internal::NameOfEnum(
RpcType_descriptor(), value);
}
inline bool RpcType_Parse(
const ::std::string& name, RpcType* value) {
return ::google::protobuf::internal::ParseNamedEnum<RpcType>(
RpcType_descriptor(), name, value);
}
// ===================================================================
class BitControlHandshake : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:exec.bit.control.BitControlHandshake) */ {
public:
BitControlHandshake();
virtual ~BitControlHandshake();
BitControlHandshake(const BitControlHandshake& from);
inline BitControlHandshake& operator=(const BitControlHandshake& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
BitControlHandshake(BitControlHandshake&& from) noexcept
: BitControlHandshake() {
*this = ::std::move(from);
}
inline BitControlHandshake& operator=(BitControlHandshake&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::google::protobuf::Descriptor* descriptor();
static const BitControlHandshake& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const BitControlHandshake* internal_default_instance() {
return reinterpret_cast<const BitControlHandshake*>(
&_BitControlHandshake_default_instance_);
}
static constexpr int kIndexInFileMessages =
0;
void Swap(BitControlHandshake* other);
friend void swap(BitControlHandshake& a, BitControlHandshake& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline BitControlHandshake* New() const final {
return CreateMaybeMessage<BitControlHandshake>(NULL);
}
BitControlHandshake* New(::google::protobuf::Arena* arena) const final {
return CreateMaybeMessage<BitControlHandshake>(arena);
}
void CopyFrom(const ::google::protobuf::Message& from) final;
void MergeFrom(const ::google::protobuf::Message& from) final;
void CopyFrom(const BitControlHandshake& from);
void MergeFrom(const BitControlHandshake& from);
void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) final;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const final;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(BitControlHandshake* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// repeated string authenticationMechanisms = 4;
int authenticationmechanisms_size() const;
void clear_authenticationmechanisms();
static const int kAuthenticationMechanismsFieldNumber = 4;
const ::std::string& authenticationmechanisms(int index) const;
::std::string* mutable_authenticationmechanisms(int index);
void set_authenticationmechanisms(int index, const ::std::string& value);
#if LANG_CXX11
void set_authenticationmechanisms(int index, ::std::string&& value);
#endif
void set_authenticationmechanisms(int index, const char* value);
void set_authenticationmechanisms(int index, const char* value, size_t size);
::std::string* add_authenticationmechanisms();
void add_authenticationmechanisms(const ::std::string& value);
#if LANG_CXX11
void add_authenticationmechanisms(::std::string&& value);
#endif
void add_authenticationmechanisms(const char* value);
void add_authenticationmechanisms(const char* value, size_t size);
const ::google::protobuf::RepeatedPtrField< ::std::string>& authenticationmechanisms() const;
::google::protobuf::RepeatedPtrField< ::std::string>* mutable_authenticationmechanisms();
// optional .exec.DrillbitEndpoint endpoint = 3;
bool has_endpoint() const;
void clear_endpoint();
static const int kEndpointFieldNumber = 3;
private:
const ::exec::DrillbitEndpoint& _internal_endpoint() const;
public:
const ::exec::DrillbitEndpoint& endpoint() const;
::exec::DrillbitEndpoint* release_endpoint();
::exec::DrillbitEndpoint* mutable_endpoint();
void set_allocated_endpoint(::exec::DrillbitEndpoint* endpoint);
// optional int32 rpc_version = 1;
bool has_rpc_version() const;
void clear_rpc_version();
static const int kRpcVersionFieldNumber = 1;
::google::protobuf::int32 rpc_version() const;
void set_rpc_version(::google::protobuf::int32 value);
// optional .exec.shared.RpcChannel channel = 2 [default = BIT_CONTROL];
bool has_channel() const;
void clear_channel();
static const int kChannelFieldNumber = 2;
::exec::shared::RpcChannel channel() const;
void set_channel(::exec::shared::RpcChannel value);
// @@protoc_insertion_point(class_scope:exec.bit.control.BitControlHandshake)
private:
void set_has_rpc_version();
void clear_has_rpc_version();
void set_has_channel();
void clear_has_channel();
void set_has_endpoint();
void clear_has_endpoint();
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::HasBits<1> _has_bits_;
mutable ::google::protobuf::internal::CachedSize _cached_size_;
::google::protobuf::RepeatedPtrField< ::std::string> authenticationmechanisms_;
::exec::DrillbitEndpoint* endpoint_;
::google::protobuf::int32 rpc_version_;
int channel_;
friend struct ::protobuf_BitControl_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class BitStatus : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:exec.bit.control.BitStatus) */ {
public:
BitStatus();
virtual ~BitStatus();
BitStatus(const BitStatus& from);
inline BitStatus& operator=(const BitStatus& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
BitStatus(BitStatus&& from) noexcept
: BitStatus() {
*this = ::std::move(from);
}
inline BitStatus& operator=(BitStatus&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::google::protobuf::Descriptor* descriptor();
static const BitStatus& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const BitStatus* internal_default_instance() {
return reinterpret_cast<const BitStatus*>(
&_BitStatus_default_instance_);
}
static constexpr int kIndexInFileMessages =
1;
void Swap(BitStatus* other);
friend void swap(BitStatus& a, BitStatus& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline BitStatus* New() const final {
return CreateMaybeMessage<BitStatus>(NULL);
}
BitStatus* New(::google::protobuf::Arena* arena) const final {
return CreateMaybeMessage<BitStatus>(arena);
}
void CopyFrom(const ::google::protobuf::Message& from) final;
void MergeFrom(const ::google::protobuf::Message& from) final;
void CopyFrom(const BitStatus& from);
void MergeFrom(const BitStatus& from);
void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) final;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const final;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(BitStatus* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// repeated .exec.bit.control.FragmentStatus fragment_status = 1;
int fragment_status_size() const;
void clear_fragment_status();
static const int kFragmentStatusFieldNumber = 1;
::exec::bit::control::FragmentStatus* mutable_fragment_status(int index);
::google::protobuf::RepeatedPtrField< ::exec::bit::control::FragmentStatus >*
mutable_fragment_status();
const ::exec::bit::control::FragmentStatus& fragment_status(int index) const;
::exec::bit::control::FragmentStatus* add_fragment_status();
const ::google::protobuf::RepeatedPtrField< ::exec::bit::control::FragmentStatus >&
fragment_status() const;
// @@protoc_insertion_point(class_scope:exec.bit.control.BitStatus)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::HasBits<1> _has_bits_;
mutable ::google::protobuf::internal::CachedSize _cached_size_;
::google::protobuf::RepeatedPtrField< ::exec::bit::control::FragmentStatus > fragment_status_;
friend struct ::protobuf_BitControl_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class FragmentStatus : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:exec.bit.control.FragmentStatus) */ {
public:
FragmentStatus();
virtual ~FragmentStatus();
FragmentStatus(const FragmentStatus& from);
inline FragmentStatus& operator=(const FragmentStatus& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
FragmentStatus(FragmentStatus&& from) noexcept
: FragmentStatus() {
*this = ::std::move(from);
}
inline FragmentStatus& operator=(FragmentStatus&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::google::protobuf::Descriptor* descriptor();
static const FragmentStatus& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const FragmentStatus* internal_default_instance() {
return reinterpret_cast<const FragmentStatus*>(
&_FragmentStatus_default_instance_);
}
static constexpr int kIndexInFileMessages =
2;
void Swap(FragmentStatus* other);
friend void swap(FragmentStatus& a, FragmentStatus& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline FragmentStatus* New() const final {
return CreateMaybeMessage<FragmentStatus>(NULL);
}
FragmentStatus* New(::google::protobuf::Arena* arena) const final {
return CreateMaybeMessage<FragmentStatus>(arena);
}
void CopyFrom(const ::google::protobuf::Message& from) final;
void MergeFrom(const ::google::protobuf::Message& from) final;
void CopyFrom(const FragmentStatus& from);
void MergeFrom(const FragmentStatus& from);
void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) final;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const final;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(FragmentStatus* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .exec.shared.MinorFragmentProfile profile = 1;
bool has_profile() const;
void clear_profile();
static const int kProfileFieldNumber = 1;
private:
const ::exec::shared::MinorFragmentProfile& _internal_profile() const;
public:
const ::exec::shared::MinorFragmentProfile& profile() const;
::exec::shared::MinorFragmentProfile* release_profile();
::exec::shared::MinorFragmentProfile* mutable_profile();
void set_allocated_profile(::exec::shared::MinorFragmentProfile* profile);
// optional .exec.bit.FragmentHandle handle = 2;
bool has_handle() const;
void clear_handle();
static const int kHandleFieldNumber = 2;
private:
const ::exec::bit::FragmentHandle& _internal_handle() const;
public:
const ::exec::bit::FragmentHandle& handle() const;
::exec::bit::FragmentHandle* release_handle();
::exec::bit::FragmentHandle* mutable_handle();
void set_allocated_handle(::exec::bit::FragmentHandle* handle);
// @@protoc_insertion_point(class_scope:exec.bit.control.FragmentStatus)
private:
void set_has_profile();
void clear_has_profile();
void set_has_handle();
void clear_has_handle();
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::HasBits<1> _has_bits_;
mutable ::google::protobuf::internal::CachedSize _cached_size_;
::exec::shared::MinorFragmentProfile* profile_;
::exec::bit::FragmentHandle* handle_;
friend struct ::protobuf_BitControl_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class InitializeFragments : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:exec.bit.control.InitializeFragments) */ {
public:
InitializeFragments();
virtual ~InitializeFragments();
InitializeFragments(const InitializeFragments& from);
inline InitializeFragments& operator=(const InitializeFragments& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
InitializeFragments(InitializeFragments&& from) noexcept
: InitializeFragments() {
*this = ::std::move(from);
}
inline InitializeFragments& operator=(InitializeFragments&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::google::protobuf::Descriptor* descriptor();
static const InitializeFragments& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const InitializeFragments* internal_default_instance() {
return reinterpret_cast<const InitializeFragments*>(
&_InitializeFragments_default_instance_);
}
static constexpr int kIndexInFileMessages =
3;
void Swap(InitializeFragments* other);
friend void swap(InitializeFragments& a, InitializeFragments& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline InitializeFragments* New() const final {
return CreateMaybeMessage<InitializeFragments>(NULL);
}
InitializeFragments* New(::google::protobuf::Arena* arena) const final {
return CreateMaybeMessage<InitializeFragments>(arena);
}
void CopyFrom(const ::google::protobuf::Message& from) final;
void MergeFrom(const ::google::protobuf::Message& from) final;
void CopyFrom(const InitializeFragments& from);
void MergeFrom(const InitializeFragments& from);
void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) final;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const final;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(InitializeFragments* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// repeated .exec.bit.control.PlanFragment fragment = 1;
int fragment_size() const;
void clear_fragment();
static const int kFragmentFieldNumber = 1;
::exec::bit::control::PlanFragment* mutable_fragment(int index);
::google::protobuf::RepeatedPtrField< ::exec::bit::control::PlanFragment >*
mutable_fragment();
const ::exec::bit::control::PlanFragment& fragment(int index) const;
::exec::bit::control::PlanFragment* add_fragment();
const ::google::protobuf::RepeatedPtrField< ::exec::bit::control::PlanFragment >&
fragment() const;
// @@protoc_insertion_point(class_scope:exec.bit.control.InitializeFragments)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::HasBits<1> _has_bits_;
mutable ::google::protobuf::internal::CachedSize _cached_size_;
::google::protobuf::RepeatedPtrField< ::exec::bit::control::PlanFragment > fragment_;
friend struct ::protobuf_BitControl_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class CustomMessage : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:exec.bit.control.CustomMessage) */ {
public:
CustomMessage();
virtual ~CustomMessage();
CustomMessage(const CustomMessage& from);
inline CustomMessage& operator=(const CustomMessage& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
CustomMessage(CustomMessage&& from) noexcept
: CustomMessage() {
*this = ::std::move(from);
}
inline CustomMessage& operator=(CustomMessage&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::google::protobuf::Descriptor* descriptor();
static const CustomMessage& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const CustomMessage* internal_default_instance() {
return reinterpret_cast<const CustomMessage*>(
&_CustomMessage_default_instance_);
}
static constexpr int kIndexInFileMessages =
4;
void Swap(CustomMessage* other);
friend void swap(CustomMessage& a, CustomMessage& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline CustomMessage* New() const final {
return CreateMaybeMessage<CustomMessage>(NULL);
}
CustomMessage* New(::google::protobuf::Arena* arena) const final {
return CreateMaybeMessage<CustomMessage>(arena);
}
void CopyFrom(const ::google::protobuf::Message& from) final;
void MergeFrom(const ::google::protobuf::Message& from) final;
void CopyFrom(const CustomMessage& from);
void MergeFrom(const CustomMessage& from);
void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) final;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const final;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(CustomMessage* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional bytes message = 2;
bool has_message() const;
void clear_message();
static const int kMessageFieldNumber = 2;
const ::std::string& message() const;
void set_message(const ::std::string& value);
#if LANG_CXX11
void set_message(::std::string&& value);
#endif
void set_message(const char* value);
void set_message(const void* value, size_t size);
::std::string* mutable_message();
::std::string* release_message();
void set_allocated_message(::std::string* message);
// optional int32 type = 1;
bool has_type() const;
void clear_type();
static const int kTypeFieldNumber = 1;
::google::protobuf::int32 type() const;
void set_type(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:exec.bit.control.CustomMessage)
private:
void set_has_type();
void clear_has_type();
void set_has_message();
void clear_has_message();
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::HasBits<1> _has_bits_;
mutable ::google::protobuf::internal::CachedSize _cached_size_;
::google::protobuf::internal::ArenaStringPtr message_;
::google::protobuf::int32 type_;
friend struct ::protobuf_BitControl_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class PlanFragment : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:exec.bit.control.PlanFragment) */ {
public:
PlanFragment();
virtual ~PlanFragment();
PlanFragment(const PlanFragment& from);
inline PlanFragment& operator=(const PlanFragment& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
PlanFragment(PlanFragment&& from) noexcept
: PlanFragment() {
*this = ::std::move(from);
}
inline PlanFragment& operator=(PlanFragment&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::google::protobuf::Descriptor* descriptor();
static const PlanFragment& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const PlanFragment* internal_default_instance() {
return reinterpret_cast<const PlanFragment*>(
&_PlanFragment_default_instance_);
}
static constexpr int kIndexInFileMessages =
5;
void Swap(PlanFragment* other);
friend void swap(PlanFragment& a, PlanFragment& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline PlanFragment* New() const final {
return CreateMaybeMessage<PlanFragment>(NULL);
}
PlanFragment* New(::google::protobuf::Arena* arena) const final {
return CreateMaybeMessage<PlanFragment>(arena);
}
void CopyFrom(const ::google::protobuf::Message& from) final;
void MergeFrom(const ::google::protobuf::Message& from) final;
void CopyFrom(const PlanFragment& from);
void MergeFrom(const PlanFragment& from);
void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) final;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const final;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(PlanFragment* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// repeated .exec.bit.control.Collector collector = 17;
int collector_size() const;
void clear_collector();
static const int kCollectorFieldNumber = 17;
::exec::bit::control::Collector* mutable_collector(int index);
::google::protobuf::RepeatedPtrField< ::exec::bit::control::Collector >*
mutable_collector();
const ::exec::bit::control::Collector& collector(int index) const;
::exec::bit::control::Collector* add_collector();
const ::google::protobuf::RepeatedPtrField< ::exec::bit::control::Collector >&
collector() const;
// optional string fragment_json = 8;
bool has_fragment_json() const;
void clear_fragment_json();
static const int kFragmentJsonFieldNumber = 8;
const ::std::string& fragment_json() const;
void set_fragment_json(const ::std::string& value);
#if LANG_CXX11
void set_fragment_json(::std::string&& value);
#endif
void set_fragment_json(const char* value);
void set_fragment_json(const char* value, size_t size);
::std::string* mutable_fragment_json();
::std::string* release_fragment_json();
void set_allocated_fragment_json(::std::string* fragment_json);
// optional string options_json = 15;
bool has_options_json() const;
void clear_options_json();
static const int kOptionsJsonFieldNumber = 15;
const ::std::string& options_json() const;
void set_options_json(const ::std::string& value);
#if LANG_CXX11
void set_options_json(::std::string&& value);
#endif
void set_options_json(const char* value);
void set_options_json(const char* value, size_t size);
::std::string* mutable_options_json();
::std::string* release_options_json();
void set_allocated_options_json(::std::string* options_json);
// optional string assignedEndpointUUID = 18;
bool has_assignedendpointuuid() const;
void clear_assignedendpointuuid();
static const int kAssignedEndpointUUIDFieldNumber = 18;
const ::std::string& assignedendpointuuid() const;
void set_assignedendpointuuid(const ::std::string& value);
#if LANG_CXX11
void set_assignedendpointuuid(::std::string&& value);
#endif
void set_assignedendpointuuid(const char* value);
void set_assignedendpointuuid(const char* value, size_t size);
::std::string* mutable_assignedendpointuuid();
::std::string* release_assignedendpointuuid();
void set_allocated_assignedendpointuuid(::std::string* assignedendpointuuid);
// optional .exec.bit.FragmentHandle handle = 1;
bool has_handle() const;
void clear_handle();
static const int kHandleFieldNumber = 1;
private:
const ::exec::bit::FragmentHandle& _internal_handle() const;
public:
const ::exec::bit::FragmentHandle& handle() const;
::exec::bit::FragmentHandle* release_handle();
::exec::bit::FragmentHandle* mutable_handle();
void set_allocated_handle(::exec::bit::FragmentHandle* handle);
// optional .exec.DrillbitEndpoint assignment = 10;
bool has_assignment() const;
void clear_assignment();
static const int kAssignmentFieldNumber = 10;
private:
const ::exec::DrillbitEndpoint& _internal_assignment() const;
public:
const ::exec::DrillbitEndpoint& assignment() const;
::exec::DrillbitEndpoint* release_assignment();
::exec::DrillbitEndpoint* mutable_assignment();
void set_allocated_assignment(::exec::DrillbitEndpoint* assignment);
// optional .exec.DrillbitEndpoint foreman = 11;
bool has_foreman() const;
void clear_foreman();
static const int kForemanFieldNumber = 11;
private:
const ::exec::DrillbitEndpoint& _internal_foreman() const;
public:
const ::exec::DrillbitEndpoint& foreman() const;
::exec::DrillbitEndpoint* release_foreman();
::exec::DrillbitEndpoint* mutable_foreman();
void set_allocated_foreman(::exec::DrillbitEndpoint* foreman);
// optional .exec.shared.UserCredentials credentials = 14;
bool has_credentials() const;
void clear_credentials();
static const int kCredentialsFieldNumber = 14;
private:
const ::exec::shared::UserCredentials& _internal_credentials() const;
public:
const ::exec::shared::UserCredentials& credentials() const;
::exec::shared::UserCredentials* release_credentials();