123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: dispatch_message.proto
- #ifndef PROTOBUF_dispatch_5fmessage_2eproto__INCLUDED
- #define PROTOBUF_dispatch_5fmessage_2eproto__INCLUDED
- #include <string>
- #include <google/protobuf/stubs/common.h>
- #if GOOGLE_PROTOBUF_VERSION < 3005000
- #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 3005000 < 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/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 "message_base.pb.h"
- // @@protoc_insertion_point(includes)
- namespace protobuf_dispatch_5fmessage_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[5];
- static const ::google::protobuf::internal::FieldMetadata field_metadata[];
- static const ::google::protobuf::internal::SerializationTable serialization_table[];
- static const ::google::protobuf::uint32 offsets[];
- };
- void AddDescriptors();
- void InitDefaultsDevice_positionImpl();
- void InitDefaultsDevice_position();
- void InitDefaultsDispatch_manager_status_msgImpl();
- void InitDefaultsDispatch_manager_status_msg();
- void InitDefaultsDispatch_terminal_status_msgImpl();
- void InitDefaultsDispatch_terminal_status_msg();
- void InitDefaultsDispatch_request_msgImpl();
- void InitDefaultsDispatch_request_msg();
- void InitDefaultsDispatch_response_msgImpl();
- void InitDefaultsDispatch_response_msg();
- inline void InitDefaults() {
- InitDefaultsDevice_position();
- InitDefaultsDispatch_manager_status_msg();
- InitDefaultsDispatch_terminal_status_msg();
- InitDefaultsDispatch_request_msg();
- InitDefaultsDispatch_response_msg();
- }
- } // namespace protobuf_dispatch_5fmessage_2eproto
- namespace message {
- class Device_position;
- class Device_positionDefaultTypeInternal;
- extern Device_positionDefaultTypeInternal _Device_position_default_instance_;
- class Dispatch_manager_status_msg;
- class Dispatch_manager_status_msgDefaultTypeInternal;
- extern Dispatch_manager_status_msgDefaultTypeInternal _Dispatch_manager_status_msg_default_instance_;
- class Dispatch_request_msg;
- class Dispatch_request_msgDefaultTypeInternal;
- extern Dispatch_request_msgDefaultTypeInternal _Dispatch_request_msg_default_instance_;
- class Dispatch_response_msg;
- class Dispatch_response_msgDefaultTypeInternal;
- extern Dispatch_response_msgDefaultTypeInternal _Dispatch_response_msg_default_instance_;
- class Dispatch_terminal_status_msg;
- class Dispatch_terminal_status_msgDefaultTypeInternal;
- extern Dispatch_terminal_status_msgDefaultTypeInternal _Dispatch_terminal_status_msg_default_instance_;
- } // namespace message
- namespace message {
- enum Dispatch_manager_status {
- E_DISPATCH_MANAGER_UNKNOW = 0,
- E_DISPATCH_MANAGER_READY = 1,
- E_DISPATCH_MANAGER_STORE = 2,
- E_DISPATCH_MANAGER_PICKUP = 3,
- E_DISPATCH_MANAGER_FAULT = 10
- };
- bool Dispatch_manager_status_IsValid(int value);
- const Dispatch_manager_status Dispatch_manager_status_MIN = E_DISPATCH_MANAGER_UNKNOW;
- const Dispatch_manager_status Dispatch_manager_status_MAX = E_DISPATCH_MANAGER_FAULT;
- const int Dispatch_manager_status_ARRAYSIZE = Dispatch_manager_status_MAX + 1;
- const ::google::protobuf::EnumDescriptor* Dispatch_manager_status_descriptor();
- inline const ::std::string& Dispatch_manager_status_Name(Dispatch_manager_status value) {
- return ::google::protobuf::internal::NameOfEnum(
- Dispatch_manager_status_descriptor(), value);
- }
- inline bool Dispatch_manager_status_Parse(
- const ::std::string& name, Dispatch_manager_status* value) {
- return ::google::protobuf::internal::ParseNamedEnum<Dispatch_manager_status>(
- Dispatch_manager_status_descriptor(), name, value);
- }
- enum Catcher_status {
- E_CATCHER_UNKNOW = 0,
- E_CATCHER_READY = 1,
- E_CATCHER_STORE = 2,
- E_CATCHER_PICKUP = 3,
- E_CATCHER_FAULT = 10
- };
- bool Catcher_status_IsValid(int value);
- const Catcher_status Catcher_status_MIN = E_CATCHER_UNKNOW;
- const Catcher_status Catcher_status_MAX = E_CATCHER_FAULT;
- const int Catcher_status_ARRAYSIZE = Catcher_status_MAX + 1;
- const ::google::protobuf::EnumDescriptor* Catcher_status_descriptor();
- inline const ::std::string& Catcher_status_Name(Catcher_status value) {
- return ::google::protobuf::internal::NameOfEnum(
- Catcher_status_descriptor(), value);
- }
- inline bool Catcher_status_Parse(
- const ::std::string& name, Catcher_status* value) {
- return ::google::protobuf::internal::ParseNamedEnum<Catcher_status>(
- Catcher_status_descriptor(), name, value);
- }
- enum Carrier_status {
- E_CARRIER_UNKNOW = 0,
- E_CARRIER_READY = 1,
- E_CARRIER_STORE = 2,
- E_CARRIER_PICKUP = 3,
- E_CARRIER_FAULT = 10
- };
- bool Carrier_status_IsValid(int value);
- const Carrier_status Carrier_status_MIN = E_CARRIER_UNKNOW;
- const Carrier_status Carrier_status_MAX = E_CARRIER_FAULT;
- const int Carrier_status_ARRAYSIZE = Carrier_status_MAX + 1;
- const ::google::protobuf::EnumDescriptor* Carrier_status_descriptor();
- inline const ::std::string& Carrier_status_Name(Carrier_status value) {
- return ::google::protobuf::internal::NameOfEnum(
- Carrier_status_descriptor(), value);
- }
- inline bool Carrier_status_Parse(
- const ::std::string& name, Carrier_status* value) {
- return ::google::protobuf::internal::ParseNamedEnum<Carrier_status>(
- Carrier_status_descriptor(), name, value);
- }
- enum Elevator_status {
- E_ELEVATOR_UNKNOW = 0,
- E_ELEVATOR_READY = 1,
- E_ELEVATOR_STORE = 2,
- E_ELEVATOR_PICKUP = 3,
- E_ELEVATOR_FAULT = 10
- };
- bool Elevator_status_IsValid(int value);
- const Elevator_status Elevator_status_MIN = E_ELEVATOR_UNKNOW;
- const Elevator_status Elevator_status_MAX = E_ELEVATOR_FAULT;
- const int Elevator_status_ARRAYSIZE = Elevator_status_MAX + 1;
- const ::google::protobuf::EnumDescriptor* Elevator_status_descriptor();
- inline const ::std::string& Elevator_status_Name(Elevator_status value) {
- return ::google::protobuf::internal::NameOfEnum(
- Elevator_status_descriptor(), value);
- }
- inline bool Elevator_status_Parse(
- const ::std::string& name, Elevator_status* value) {
- return ::google::protobuf::internal::ParseNamedEnum<Elevator_status>(
- Elevator_status_descriptor(), name, value);
- }
- enum Passageway_status {
- E_PASSAGEWAY_UNKNOW = 0,
- E_PASSAGEWAY_READY = 1,
- E_PASSAGEWAY_STORE = 2,
- E_PASSAGEWAY_PICKUP = 3,
- E_PASSAGEWAY_FAULT = 10
- };
- bool Passageway_status_IsValid(int value);
- const Passageway_status Passageway_status_MIN = E_PASSAGEWAY_UNKNOW;
- const Passageway_status Passageway_status_MAX = E_PASSAGEWAY_FAULT;
- const int Passageway_status_ARRAYSIZE = Passageway_status_MAX + 1;
- const ::google::protobuf::EnumDescriptor* Passageway_status_descriptor();
- inline const ::std::string& Passageway_status_Name(Passageway_status value) {
- return ::google::protobuf::internal::NameOfEnum(
- Passageway_status_descriptor(), value);
- }
- inline bool Passageway_status_Parse(
- const ::std::string& name, Passageway_status* value) {
- return ::google::protobuf::internal::ParseNamedEnum<Passageway_status>(
- Passageway_status_descriptor(), name, value);
- }
- enum Terminal_status {
- E_TERMINAL_UNKNOW = 0,
- E_TERMINAL_READY = 1,
- E_TERMINAL_STORE = 2,
- E_TERMINAL_PICKUP = 3,
- E_TERMINAL_FAULT = 10
- };
- bool Terminal_status_IsValid(int value);
- const Terminal_status Terminal_status_MIN = E_TERMINAL_UNKNOW;
- const Terminal_status Terminal_status_MAX = E_TERMINAL_FAULT;
- const int Terminal_status_ARRAYSIZE = Terminal_status_MAX + 1;
- const ::google::protobuf::EnumDescriptor* Terminal_status_descriptor();
- inline const ::std::string& Terminal_status_Name(Terminal_status value) {
- return ::google::protobuf::internal::NameOfEnum(
- Terminal_status_descriptor(), value);
- }
- inline bool Terminal_status_Parse(
- const ::std::string& name, Terminal_status* value) {
- return ::google::protobuf::internal::ParseNamedEnum<Terminal_status>(
- Terminal_status_descriptor(), name, value);
- }
- enum Passageway_direction {
- E_INLET = 0,
- E_OUTLET = 1,
- E_BILATERAL = 2
- };
- bool Passageway_direction_IsValid(int value);
- const Passageway_direction Passageway_direction_MIN = E_INLET;
- const Passageway_direction Passageway_direction_MAX = E_BILATERAL;
- const int Passageway_direction_ARRAYSIZE = Passageway_direction_MAX + 1;
- const ::google::protobuf::EnumDescriptor* Passageway_direction_descriptor();
- inline const ::std::string& Passageway_direction_Name(Passageway_direction value) {
- return ::google::protobuf::internal::NameOfEnum(
- Passageway_direction_descriptor(), value);
- }
- inline bool Passageway_direction_Parse(
- const ::std::string& name, Passageway_direction* value) {
- return ::google::protobuf::internal::ParseNamedEnum<Passageway_direction>(
- Passageway_direction_descriptor(), name, value);
- }
- enum Dispatch_motion_direction {
- E_STORE_CAR = 0,
- E_PICKUP_CAR = 1
- };
- bool Dispatch_motion_direction_IsValid(int value);
- const Dispatch_motion_direction Dispatch_motion_direction_MIN = E_STORE_CAR;
- const Dispatch_motion_direction Dispatch_motion_direction_MAX = E_PICKUP_CAR;
- const int Dispatch_motion_direction_ARRAYSIZE = Dispatch_motion_direction_MAX + 1;
- const ::google::protobuf::EnumDescriptor* Dispatch_motion_direction_descriptor();
- inline const ::std::string& Dispatch_motion_direction_Name(Dispatch_motion_direction value) {
- return ::google::protobuf::internal::NameOfEnum(
- Dispatch_motion_direction_descriptor(), value);
- }
- inline bool Dispatch_motion_direction_Parse(
- const ::std::string& name, Dispatch_motion_direction* value) {
- return ::google::protobuf::internal::ParseNamedEnum<Dispatch_motion_direction>(
- Dispatch_motion_direction_descriptor(), name, value);
- }
- // ===================================================================
- class Device_position : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Device_position) */ {
- public:
- Device_position();
- virtual ~Device_position();
- Device_position(const Device_position& from);
- inline Device_position& operator=(const Device_position& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Device_position(Device_position&& from) noexcept
- : Device_position() {
- *this = ::std::move(from);
- }
- inline Device_position& operator=(Device_position&& 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 Device_position& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Device_position* internal_default_instance() {
- return reinterpret_cast<const Device_position*>(
- &_Device_position_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 0;
- void Swap(Device_position* other);
- friend void swap(Device_position& a, Device_position& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Device_position* New() const PROTOBUF_FINAL { return New(NULL); }
- Device_position* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Device_position& from);
- void MergeFrom(const Device_position& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Device_position* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // required float x = 1;
- bool has_x() const;
- void clear_x();
- static const int kXFieldNumber = 1;
- float x() const;
- void set_x(float value);
- // required float y = 2;
- bool has_y() const;
- void clear_y();
- static const int kYFieldNumber = 2;
- float y() const;
- void set_y(float value);
- // required float z = 3;
- bool has_z() const;
- void clear_z();
- static const int kZFieldNumber = 3;
- float z() const;
- void set_z(float value);
- // @@protoc_insertion_point(class_scope:message.Device_position)
- private:
- void set_has_x();
- void clear_has_x();
- void set_has_y();
- void clear_has_y();
- void set_has_z();
- void clear_has_z();
- // helper for ByteSizeLong()
- size_t RequiredFieldsByteSizeFallback() const;
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- float x_;
- float y_;
- float z_;
- friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fmessage_2eproto::InitDefaultsDevice_positionImpl();
- };
- // -------------------------------------------------------------------
- class Dispatch_manager_status_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_manager_status_msg) */ {
- public:
- Dispatch_manager_status_msg();
- virtual ~Dispatch_manager_status_msg();
- Dispatch_manager_status_msg(const Dispatch_manager_status_msg& from);
- inline Dispatch_manager_status_msg& operator=(const Dispatch_manager_status_msg& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Dispatch_manager_status_msg(Dispatch_manager_status_msg&& from) noexcept
- : Dispatch_manager_status_msg() {
- *this = ::std::move(from);
- }
- inline Dispatch_manager_status_msg& operator=(Dispatch_manager_status_msg&& 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 Dispatch_manager_status_msg& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Dispatch_manager_status_msg* internal_default_instance() {
- return reinterpret_cast<const Dispatch_manager_status_msg*>(
- &_Dispatch_manager_status_msg_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 1;
- void Swap(Dispatch_manager_status_msg* other);
- friend void swap(Dispatch_manager_status_msg& a, Dispatch_manager_status_msg& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Dispatch_manager_status_msg* New() const PROTOBUF_FINAL { return New(NULL); }
- Dispatch_manager_status_msg* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Dispatch_manager_status_msg& from);
- void MergeFrom(const Dispatch_manager_status_msg& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Dispatch_manager_status_msg* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // repeated .message.Catcher_status catcher_status = 4;
- int catcher_status_size() const;
- void clear_catcher_status();
- static const int kCatcherStatusFieldNumber = 4;
- ::message::Catcher_status catcher_status(int index) const;
- void set_catcher_status(int index, ::message::Catcher_status value);
- void add_catcher_status(::message::Catcher_status value);
- const ::google::protobuf::RepeatedField<int>& catcher_status() const;
- ::google::protobuf::RepeatedField<int>* mutable_catcher_status();
- // repeated .message.Carrier_status carrier_status = 5;
- int carrier_status_size() const;
- void clear_carrier_status();
- static const int kCarrierStatusFieldNumber = 5;
- ::message::Carrier_status carrier_status(int index) const;
- void set_carrier_status(int index, ::message::Carrier_status value);
- void add_carrier_status(::message::Carrier_status value);
- const ::google::protobuf::RepeatedField<int>& carrier_status() const;
- ::google::protobuf::RepeatedField<int>* mutable_carrier_status();
- // repeated .message.Elevator_status elevator_status = 6;
- int elevator_status_size() const;
- void clear_elevator_status();
- static const int kElevatorStatusFieldNumber = 6;
- ::message::Elevator_status elevator_status(int index) const;
- void set_elevator_status(int index, ::message::Elevator_status value);
- void add_elevator_status(::message::Elevator_status value);
- const ::google::protobuf::RepeatedField<int>& elevator_status() const;
- ::google::protobuf::RepeatedField<int>* mutable_elevator_status();
- // repeated .message.Passageway_status passageway_status = 7;
- int passageway_status_size() const;
- void clear_passageway_status();
- static const int kPassagewayStatusFieldNumber = 7;
- ::message::Passageway_status passageway_status(int index) const;
- void set_passageway_status(int index, ::message::Passageway_status value);
- void add_passageway_status(::message::Passageway_status value);
- const ::google::protobuf::RepeatedField<int>& passageway_status() const;
- ::google::protobuf::RepeatedField<int>* mutable_passageway_status();
- // required .message.Base_info base_info = 1;
- bool has_base_info() const;
- void clear_base_info();
- static const int kBaseInfoFieldNumber = 1;
- const ::message::Base_info& base_info() const;
- ::message::Base_info* release_base_info();
- ::message::Base_info* mutable_base_info();
- void set_allocated_base_info(::message::Base_info* base_info);
- // required int32 dispatch_id = 2;
- bool has_dispatch_id() const;
- void clear_dispatch_id();
- static const int kDispatchIdFieldNumber = 2;
- ::google::protobuf::int32 dispatch_id() const;
- void set_dispatch_id(::google::protobuf::int32 value);
- // required .message.Dispatch_manager_status dispatch_manager_status = 3;
- bool has_dispatch_manager_status() const;
- void clear_dispatch_manager_status();
- static const int kDispatchManagerStatusFieldNumber = 3;
- ::message::Dispatch_manager_status dispatch_manager_status() const;
- void set_dispatch_manager_status(::message::Dispatch_manager_status value);
- // @@protoc_insertion_point(class_scope:message.Dispatch_manager_status_msg)
- private:
- void set_has_base_info();
- void clear_has_base_info();
- void set_has_dispatch_id();
- void clear_has_dispatch_id();
- void set_has_dispatch_manager_status();
- void clear_has_dispatch_manager_status();
- // helper for ByteSizeLong()
- size_t RequiredFieldsByteSizeFallback() const;
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::RepeatedField<int> catcher_status_;
- ::google::protobuf::RepeatedField<int> carrier_status_;
- ::google::protobuf::RepeatedField<int> elevator_status_;
- ::google::protobuf::RepeatedField<int> passageway_status_;
- ::message::Base_info* base_info_;
- ::google::protobuf::int32 dispatch_id_;
- int dispatch_manager_status_;
- friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fmessage_2eproto::InitDefaultsDispatch_manager_status_msgImpl();
- };
- // -------------------------------------------------------------------
- class Dispatch_terminal_status_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_terminal_status_msg) */ {
- public:
- Dispatch_terminal_status_msg();
- virtual ~Dispatch_terminal_status_msg();
- Dispatch_terminal_status_msg(const Dispatch_terminal_status_msg& from);
- inline Dispatch_terminal_status_msg& operator=(const Dispatch_terminal_status_msg& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Dispatch_terminal_status_msg(Dispatch_terminal_status_msg&& from) noexcept
- : Dispatch_terminal_status_msg() {
- *this = ::std::move(from);
- }
- inline Dispatch_terminal_status_msg& operator=(Dispatch_terminal_status_msg&& 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 Dispatch_terminal_status_msg& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Dispatch_terminal_status_msg* internal_default_instance() {
- return reinterpret_cast<const Dispatch_terminal_status_msg*>(
- &_Dispatch_terminal_status_msg_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 2;
- void Swap(Dispatch_terminal_status_msg* other);
- friend void swap(Dispatch_terminal_status_msg& a, Dispatch_terminal_status_msg& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Dispatch_terminal_status_msg* New() const PROTOBUF_FINAL { return New(NULL); }
- Dispatch_terminal_status_msg* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Dispatch_terminal_status_msg& from);
- void MergeFrom(const Dispatch_terminal_status_msg& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Dispatch_terminal_status_msg* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // required .message.Base_info base_info = 1;
- bool has_base_info() const;
- void clear_base_info();
- static const int kBaseInfoFieldNumber = 1;
- const ::message::Base_info& base_info() const;
- ::message::Base_info* release_base_info();
- ::message::Base_info* mutable_base_info();
- void set_allocated_base_info(::message::Base_info* base_info);
- // required int32 terminal_id = 2;
- bool has_terminal_id() const;
- void clear_terminal_id();
- static const int kTerminalIdFieldNumber = 2;
- ::google::protobuf::int32 terminal_id() const;
- void set_terminal_id(::google::protobuf::int32 value);
- // required .message.Terminal_status terminal_status = 3;
- bool has_terminal_status() const;
- void clear_terminal_status();
- static const int kTerminalStatusFieldNumber = 3;
- ::message::Terminal_status terminal_status() const;
- void set_terminal_status(::message::Terminal_status value);
- // required .message.Passageway_direction passageway_direction = 4;
- bool has_passageway_direction() const;
- void clear_passageway_direction();
- static const int kPassagewayDirectionFieldNumber = 4;
- ::message::Passageway_direction passageway_direction() const;
- void set_passageway_direction(::message::Passageway_direction value);
- // @@protoc_insertion_point(class_scope:message.Dispatch_terminal_status_msg)
- private:
- void set_has_base_info();
- void clear_has_base_info();
- void set_has_terminal_id();
- void clear_has_terminal_id();
- void set_has_terminal_status();
- void clear_has_terminal_status();
- void set_has_passageway_direction();
- void clear_has_passageway_direction();
- // helper for ByteSizeLong()
- size_t RequiredFieldsByteSizeFallback() const;
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::message::Base_info* base_info_;
- ::google::protobuf::int32 terminal_id_;
- int terminal_status_;
- int passageway_direction_;
- friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fmessage_2eproto::InitDefaultsDispatch_terminal_status_msgImpl();
- };
- // -------------------------------------------------------------------
- class Dispatch_request_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_request_msg) */ {
- public:
- Dispatch_request_msg();
- virtual ~Dispatch_request_msg();
- Dispatch_request_msg(const Dispatch_request_msg& from);
- inline Dispatch_request_msg& operator=(const Dispatch_request_msg& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Dispatch_request_msg(Dispatch_request_msg&& from) noexcept
- : Dispatch_request_msg() {
- *this = ::std::move(from);
- }
- inline Dispatch_request_msg& operator=(Dispatch_request_msg&& 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 Dispatch_request_msg& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Dispatch_request_msg* internal_default_instance() {
- return reinterpret_cast<const Dispatch_request_msg*>(
- &_Dispatch_request_msg_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 3;
- void Swap(Dispatch_request_msg* other);
- friend void swap(Dispatch_request_msg& a, Dispatch_request_msg& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Dispatch_request_msg* New() const PROTOBUF_FINAL { return New(NULL); }
- Dispatch_request_msg* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Dispatch_request_msg& from);
- void MergeFrom(const Dispatch_request_msg& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Dispatch_request_msg* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // required string command_key = 2;
- bool has_command_key() const;
- void clear_command_key();
- static const int kCommandKeyFieldNumber = 2;
- const ::std::string& command_key() const;
- void set_command_key(const ::std::string& value);
- #if LANG_CXX11
- void set_command_key(::std::string&& value);
- #endif
- void set_command_key(const char* value);
- void set_command_key(const char* value, size_t size);
- ::std::string* mutable_command_key();
- ::std::string* release_command_key();
- void set_allocated_command_key(::std::string* command_key);
- // required .message.Base_info base_info = 1;
- bool has_base_info() const;
- void clear_base_info();
- static const int kBaseInfoFieldNumber = 1;
- const ::message::Base_info& base_info() const;
- ::message::Base_info* release_base_info();
- ::message::Base_info* mutable_base_info();
- void set_allocated_base_info(::message::Base_info* base_info);
- // required .message.Parkspace_info parkspace_info = 5;
- bool has_parkspace_info() const;
- void clear_parkspace_info();
- static const int kParkspaceInfoFieldNumber = 5;
- const ::message::Parkspace_info& parkspace_info() const;
- ::message::Parkspace_info* release_parkspace_info();
- ::message::Parkspace_info* mutable_parkspace_info();
- void set_allocated_parkspace_info(::message::Parkspace_info* parkspace_info);
- // optional .message.Locate_information locate_information = 6;
- bool has_locate_information() const;
- void clear_locate_information();
- static const int kLocateInformationFieldNumber = 6;
- const ::message::Locate_information& locate_information() const;
- ::message::Locate_information* release_locate_information();
- ::message::Locate_information* mutable_locate_information();
- void set_allocated_locate_information(::message::Locate_information* locate_information);
- // required .message.Dispatch_motion_direction dispatch_motion_direction = 3;
- bool has_dispatch_motion_direction() const;
- void clear_dispatch_motion_direction();
- static const int kDispatchMotionDirectionFieldNumber = 3;
- ::message::Dispatch_motion_direction dispatch_motion_direction() const;
- void set_dispatch_motion_direction(::message::Dispatch_motion_direction value);
- // required int32 terminal_id = 4;
- bool has_terminal_id() const;
- void clear_terminal_id();
- static const int kTerminalIdFieldNumber = 4;
- ::google::protobuf::int32 terminal_id() const;
- void set_terminal_id(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:message.Dispatch_request_msg)
- private:
- void set_has_base_info();
- void clear_has_base_info();
- void set_has_command_key();
- void clear_has_command_key();
- void set_has_dispatch_motion_direction();
- void clear_has_dispatch_motion_direction();
- void set_has_terminal_id();
- void clear_has_terminal_id();
- void set_has_parkspace_info();
- void clear_has_parkspace_info();
- void set_has_locate_information();
- void clear_has_locate_information();
- // helper for ByteSizeLong()
- size_t RequiredFieldsByteSizeFallback() const;
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::internal::ArenaStringPtr command_key_;
- ::message::Base_info* base_info_;
- ::message::Parkspace_info* parkspace_info_;
- ::message::Locate_information* locate_information_;
- int dispatch_motion_direction_;
- ::google::protobuf::int32 terminal_id_;
- friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fmessage_2eproto::InitDefaultsDispatch_request_msgImpl();
- };
- // -------------------------------------------------------------------
- class Dispatch_response_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_response_msg) */ {
- public:
- Dispatch_response_msg();
- virtual ~Dispatch_response_msg();
- Dispatch_response_msg(const Dispatch_response_msg& from);
- inline Dispatch_response_msg& operator=(const Dispatch_response_msg& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Dispatch_response_msg(Dispatch_response_msg&& from) noexcept
- : Dispatch_response_msg() {
- *this = ::std::move(from);
- }
- inline Dispatch_response_msg& operator=(Dispatch_response_msg&& 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 Dispatch_response_msg& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Dispatch_response_msg* internal_default_instance() {
- return reinterpret_cast<const Dispatch_response_msg*>(
- &_Dispatch_response_msg_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 4;
- void Swap(Dispatch_response_msg* other);
- friend void swap(Dispatch_response_msg& a, Dispatch_response_msg& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Dispatch_response_msg* New() const PROTOBUF_FINAL { return New(NULL); }
- Dispatch_response_msg* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Dispatch_response_msg& from);
- void MergeFrom(const Dispatch_response_msg& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Dispatch_response_msg* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // required string command_key = 2;
- bool has_command_key() const;
- void clear_command_key();
- static const int kCommandKeyFieldNumber = 2;
- const ::std::string& command_key() const;
- void set_command_key(const ::std::string& value);
- #if LANG_CXX11
- void set_command_key(::std::string&& value);
- #endif
- void set_command_key(const char* value);
- void set_command_key(const char* value, size_t size);
- ::std::string* mutable_command_key();
- ::std::string* release_command_key();
- void set_allocated_command_key(::std::string* command_key);
- // required .message.Base_info base_info = 1;
- bool has_base_info() const;
- void clear_base_info();
- static const int kBaseInfoFieldNumber = 1;
- const ::message::Base_info& base_info() const;
- ::message::Base_info* release_base_info();
- ::message::Base_info* mutable_base_info();
- void set_allocated_base_info(::message::Base_info* base_info);
- // required .message.Error_manager error_manager = 3;
- bool has_error_manager() const;
- void clear_error_manager();
- static const int kErrorManagerFieldNumber = 3;
- const ::message::Error_manager& error_manager() const;
- ::message::Error_manager* release_error_manager();
- ::message::Error_manager* mutable_error_manager();
- void set_allocated_error_manager(::message::Error_manager* error_manager);
- // @@protoc_insertion_point(class_scope:message.Dispatch_response_msg)
- private:
- void set_has_base_info();
- void clear_has_base_info();
- void set_has_command_key();
- void clear_has_command_key();
- void set_has_error_manager();
- void clear_has_error_manager();
- // helper for ByteSizeLong()
- size_t RequiredFieldsByteSizeFallback() const;
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::internal::ArenaStringPtr command_key_;
- ::message::Base_info* base_info_;
- ::message::Error_manager* error_manager_;
- friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fmessage_2eproto::InitDefaultsDispatch_response_msgImpl();
- };
- // ===================================================================
- // ===================================================================
- #ifdef __GNUC__
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wstrict-aliasing"
- #endif // __GNUC__
- // Device_position
- // required float x = 1;
- inline bool Device_position::has_x() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Device_position::set_has_x() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Device_position::clear_has_x() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Device_position::clear_x() {
- x_ = 0;
- clear_has_x();
- }
- inline float Device_position::x() const {
- // @@protoc_insertion_point(field_get:message.Device_position.x)
- return x_;
- }
- inline void Device_position::set_x(float value) {
- set_has_x();
- x_ = value;
- // @@protoc_insertion_point(field_set:message.Device_position.x)
- }
- // required float y = 2;
- inline bool Device_position::has_y() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Device_position::set_has_y() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Device_position::clear_has_y() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void Device_position::clear_y() {
- y_ = 0;
- clear_has_y();
- }
- inline float Device_position::y() const {
- // @@protoc_insertion_point(field_get:message.Device_position.y)
- return y_;
- }
- inline void Device_position::set_y(float value) {
- set_has_y();
- y_ = value;
- // @@protoc_insertion_point(field_set:message.Device_position.y)
- }
- // required float z = 3;
- inline bool Device_position::has_z() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Device_position::set_has_z() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Device_position::clear_has_z() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void Device_position::clear_z() {
- z_ = 0;
- clear_has_z();
- }
- inline float Device_position::z() const {
- // @@protoc_insertion_point(field_get:message.Device_position.z)
- return z_;
- }
- inline void Device_position::set_z(float value) {
- set_has_z();
- z_ = value;
- // @@protoc_insertion_point(field_set:message.Device_position.z)
- }
- // -------------------------------------------------------------------
- // Dispatch_manager_status_msg
- // required .message.Base_info base_info = 1;
- inline bool Dispatch_manager_status_msg::has_base_info() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Dispatch_manager_status_msg::set_has_base_info() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Dispatch_manager_status_msg::clear_has_base_info() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline const ::message::Base_info& Dispatch_manager_status_msg::base_info() const {
- const ::message::Base_info* p = base_info_;
- // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.base_info)
- return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
- &::message::_Base_info_default_instance_);
- }
- inline ::message::Base_info* Dispatch_manager_status_msg::release_base_info() {
- // @@protoc_insertion_point(field_release:message.Dispatch_manager_status_msg.base_info)
- clear_has_base_info();
- ::message::Base_info* temp = base_info_;
- base_info_ = NULL;
- return temp;
- }
- inline ::message::Base_info* Dispatch_manager_status_msg::mutable_base_info() {
- set_has_base_info();
- if (base_info_ == NULL) {
- base_info_ = new ::message::Base_info;
- }
- // @@protoc_insertion_point(field_mutable:message.Dispatch_manager_status_msg.base_info)
- return base_info_;
- }
- inline void Dispatch_manager_status_msg::set_allocated_base_info(::message::Base_info* base_info) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
- }
- if (base_info) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- base_info = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, base_info, submessage_arena);
- }
- set_has_base_info();
- } else {
- clear_has_base_info();
- }
- base_info_ = base_info;
- // @@protoc_insertion_point(field_set_allocated:message.Dispatch_manager_status_msg.base_info)
- }
- // required int32 dispatch_id = 2;
- inline bool Dispatch_manager_status_msg::has_dispatch_id() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Dispatch_manager_status_msg::set_has_dispatch_id() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Dispatch_manager_status_msg::clear_has_dispatch_id() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void Dispatch_manager_status_msg::clear_dispatch_id() {
- dispatch_id_ = 0;
- clear_has_dispatch_id();
- }
- inline ::google::protobuf::int32 Dispatch_manager_status_msg::dispatch_id() const {
- // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.dispatch_id)
- return dispatch_id_;
- }
- inline void Dispatch_manager_status_msg::set_dispatch_id(::google::protobuf::int32 value) {
- set_has_dispatch_id();
- dispatch_id_ = value;
- // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.dispatch_id)
- }
- // required .message.Dispatch_manager_status dispatch_manager_status = 3;
- inline bool Dispatch_manager_status_msg::has_dispatch_manager_status() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Dispatch_manager_status_msg::set_has_dispatch_manager_status() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Dispatch_manager_status_msg::clear_has_dispatch_manager_status() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void Dispatch_manager_status_msg::clear_dispatch_manager_status() {
- dispatch_manager_status_ = 0;
- clear_has_dispatch_manager_status();
- }
- inline ::message::Dispatch_manager_status Dispatch_manager_status_msg::dispatch_manager_status() const {
- // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.dispatch_manager_status)
- return static_cast< ::message::Dispatch_manager_status >(dispatch_manager_status_);
- }
- inline void Dispatch_manager_status_msg::set_dispatch_manager_status(::message::Dispatch_manager_status value) {
- assert(::message::Dispatch_manager_status_IsValid(value));
- set_has_dispatch_manager_status();
- dispatch_manager_status_ = value;
- // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.dispatch_manager_status)
- }
- // repeated .message.Catcher_status catcher_status = 4;
- inline int Dispatch_manager_status_msg::catcher_status_size() const {
- return catcher_status_.size();
- }
- inline void Dispatch_manager_status_msg::clear_catcher_status() {
- catcher_status_.Clear();
- }
- inline ::message::Catcher_status Dispatch_manager_status_msg::catcher_status(int index) const {
- // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.catcher_status)
- return static_cast< ::message::Catcher_status >(catcher_status_.Get(index));
- }
- inline void Dispatch_manager_status_msg::set_catcher_status(int index, ::message::Catcher_status value) {
- assert(::message::Catcher_status_IsValid(value));
- catcher_status_.Set(index, value);
- // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.catcher_status)
- }
- inline void Dispatch_manager_status_msg::add_catcher_status(::message::Catcher_status value) {
- assert(::message::Catcher_status_IsValid(value));
- catcher_status_.Add(value);
- // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.catcher_status)
- }
- inline const ::google::protobuf::RepeatedField<int>&
- Dispatch_manager_status_msg::catcher_status() const {
- // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.catcher_status)
- return catcher_status_;
- }
- inline ::google::protobuf::RepeatedField<int>*
- Dispatch_manager_status_msg::mutable_catcher_status() {
- // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.catcher_status)
- return &catcher_status_;
- }
- // repeated .message.Carrier_status carrier_status = 5;
- inline int Dispatch_manager_status_msg::carrier_status_size() const {
- return carrier_status_.size();
- }
- inline void Dispatch_manager_status_msg::clear_carrier_status() {
- carrier_status_.Clear();
- }
- inline ::message::Carrier_status Dispatch_manager_status_msg::carrier_status(int index) const {
- // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.carrier_status)
- return static_cast< ::message::Carrier_status >(carrier_status_.Get(index));
- }
- inline void Dispatch_manager_status_msg::set_carrier_status(int index, ::message::Carrier_status value) {
- assert(::message::Carrier_status_IsValid(value));
- carrier_status_.Set(index, value);
- // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.carrier_status)
- }
- inline void Dispatch_manager_status_msg::add_carrier_status(::message::Carrier_status value) {
- assert(::message::Carrier_status_IsValid(value));
- carrier_status_.Add(value);
- // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.carrier_status)
- }
- inline const ::google::protobuf::RepeatedField<int>&
- Dispatch_manager_status_msg::carrier_status() const {
- // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.carrier_status)
- return carrier_status_;
- }
- inline ::google::protobuf::RepeatedField<int>*
- Dispatch_manager_status_msg::mutable_carrier_status() {
- // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.carrier_status)
- return &carrier_status_;
- }
- // repeated .message.Elevator_status elevator_status = 6;
- inline int Dispatch_manager_status_msg::elevator_status_size() const {
- return elevator_status_.size();
- }
- inline void Dispatch_manager_status_msg::clear_elevator_status() {
- elevator_status_.Clear();
- }
- inline ::message::Elevator_status Dispatch_manager_status_msg::elevator_status(int index) const {
- // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.elevator_status)
- return static_cast< ::message::Elevator_status >(elevator_status_.Get(index));
- }
- inline void Dispatch_manager_status_msg::set_elevator_status(int index, ::message::Elevator_status value) {
- assert(::message::Elevator_status_IsValid(value));
- elevator_status_.Set(index, value);
- // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.elevator_status)
- }
- inline void Dispatch_manager_status_msg::add_elevator_status(::message::Elevator_status value) {
- assert(::message::Elevator_status_IsValid(value));
- elevator_status_.Add(value);
- // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.elevator_status)
- }
- inline const ::google::protobuf::RepeatedField<int>&
- Dispatch_manager_status_msg::elevator_status() const {
- // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.elevator_status)
- return elevator_status_;
- }
- inline ::google::protobuf::RepeatedField<int>*
- Dispatch_manager_status_msg::mutable_elevator_status() {
- // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.elevator_status)
- return &elevator_status_;
- }
- // repeated .message.Passageway_status passageway_status = 7;
- inline int Dispatch_manager_status_msg::passageway_status_size() const {
- return passageway_status_.size();
- }
- inline void Dispatch_manager_status_msg::clear_passageway_status() {
- passageway_status_.Clear();
- }
- inline ::message::Passageway_status Dispatch_manager_status_msg::passageway_status(int index) const {
- // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.passageway_status)
- return static_cast< ::message::Passageway_status >(passageway_status_.Get(index));
- }
- inline void Dispatch_manager_status_msg::set_passageway_status(int index, ::message::Passageway_status value) {
- assert(::message::Passageway_status_IsValid(value));
- passageway_status_.Set(index, value);
- // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.passageway_status)
- }
- inline void Dispatch_manager_status_msg::add_passageway_status(::message::Passageway_status value) {
- assert(::message::Passageway_status_IsValid(value));
- passageway_status_.Add(value);
- // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.passageway_status)
- }
- inline const ::google::protobuf::RepeatedField<int>&
- Dispatch_manager_status_msg::passageway_status() const {
- // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.passageway_status)
- return passageway_status_;
- }
- inline ::google::protobuf::RepeatedField<int>*
- Dispatch_manager_status_msg::mutable_passageway_status() {
- // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.passageway_status)
- return &passageway_status_;
- }
- // -------------------------------------------------------------------
- // Dispatch_terminal_status_msg
- // required .message.Base_info base_info = 1;
- inline bool Dispatch_terminal_status_msg::has_base_info() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Dispatch_terminal_status_msg::set_has_base_info() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Dispatch_terminal_status_msg::clear_has_base_info() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline const ::message::Base_info& Dispatch_terminal_status_msg::base_info() const {
- const ::message::Base_info* p = base_info_;
- // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.base_info)
- return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
- &::message::_Base_info_default_instance_);
- }
- inline ::message::Base_info* Dispatch_terminal_status_msg::release_base_info() {
- // @@protoc_insertion_point(field_release:message.Dispatch_terminal_status_msg.base_info)
- clear_has_base_info();
- ::message::Base_info* temp = base_info_;
- base_info_ = NULL;
- return temp;
- }
- inline ::message::Base_info* Dispatch_terminal_status_msg::mutable_base_info() {
- set_has_base_info();
- if (base_info_ == NULL) {
- base_info_ = new ::message::Base_info;
- }
- // @@protoc_insertion_point(field_mutable:message.Dispatch_terminal_status_msg.base_info)
- return base_info_;
- }
- inline void Dispatch_terminal_status_msg::set_allocated_base_info(::message::Base_info* base_info) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
- }
- if (base_info) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- base_info = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, base_info, submessage_arena);
- }
- set_has_base_info();
- } else {
- clear_has_base_info();
- }
- base_info_ = base_info;
- // @@protoc_insertion_point(field_set_allocated:message.Dispatch_terminal_status_msg.base_info)
- }
- // required int32 terminal_id = 2;
- inline bool Dispatch_terminal_status_msg::has_terminal_id() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Dispatch_terminal_status_msg::set_has_terminal_id() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Dispatch_terminal_status_msg::clear_has_terminal_id() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void Dispatch_terminal_status_msg::clear_terminal_id() {
- terminal_id_ = 0;
- clear_has_terminal_id();
- }
- inline ::google::protobuf::int32 Dispatch_terminal_status_msg::terminal_id() const {
- // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.terminal_id)
- return terminal_id_;
- }
- inline void Dispatch_terminal_status_msg::set_terminal_id(::google::protobuf::int32 value) {
- set_has_terminal_id();
- terminal_id_ = value;
- // @@protoc_insertion_point(field_set:message.Dispatch_terminal_status_msg.terminal_id)
- }
- // required .message.Terminal_status terminal_status = 3;
- inline bool Dispatch_terminal_status_msg::has_terminal_status() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Dispatch_terminal_status_msg::set_has_terminal_status() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Dispatch_terminal_status_msg::clear_has_terminal_status() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void Dispatch_terminal_status_msg::clear_terminal_status() {
- terminal_status_ = 0;
- clear_has_terminal_status();
- }
- inline ::message::Terminal_status Dispatch_terminal_status_msg::terminal_status() const {
- // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.terminal_status)
- return static_cast< ::message::Terminal_status >(terminal_status_);
- }
- inline void Dispatch_terminal_status_msg::set_terminal_status(::message::Terminal_status value) {
- assert(::message::Terminal_status_IsValid(value));
- set_has_terminal_status();
- terminal_status_ = value;
- // @@protoc_insertion_point(field_set:message.Dispatch_terminal_status_msg.terminal_status)
- }
- // required .message.Passageway_direction passageway_direction = 4;
- inline bool Dispatch_terminal_status_msg::has_passageway_direction() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void Dispatch_terminal_status_msg::set_has_passageway_direction() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void Dispatch_terminal_status_msg::clear_has_passageway_direction() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void Dispatch_terminal_status_msg::clear_passageway_direction() {
- passageway_direction_ = 0;
- clear_has_passageway_direction();
- }
- inline ::message::Passageway_direction Dispatch_terminal_status_msg::passageway_direction() const {
- // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.passageway_direction)
- return static_cast< ::message::Passageway_direction >(passageway_direction_);
- }
- inline void Dispatch_terminal_status_msg::set_passageway_direction(::message::Passageway_direction value) {
- assert(::message::Passageway_direction_IsValid(value));
- set_has_passageway_direction();
- passageway_direction_ = value;
- // @@protoc_insertion_point(field_set:message.Dispatch_terminal_status_msg.passageway_direction)
- }
- // -------------------------------------------------------------------
- // Dispatch_request_msg
- // required .message.Base_info base_info = 1;
- inline bool Dispatch_request_msg::has_base_info() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Dispatch_request_msg::set_has_base_info() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Dispatch_request_msg::clear_has_base_info() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline const ::message::Base_info& Dispatch_request_msg::base_info() const {
- const ::message::Base_info* p = base_info_;
- // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.base_info)
- return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
- &::message::_Base_info_default_instance_);
- }
- inline ::message::Base_info* Dispatch_request_msg::release_base_info() {
- // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.base_info)
- clear_has_base_info();
- ::message::Base_info* temp = base_info_;
- base_info_ = NULL;
- return temp;
- }
- inline ::message::Base_info* Dispatch_request_msg::mutable_base_info() {
- set_has_base_info();
- if (base_info_ == NULL) {
- base_info_ = new ::message::Base_info;
- }
- // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.base_info)
- return base_info_;
- }
- inline void Dispatch_request_msg::set_allocated_base_info(::message::Base_info* base_info) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
- }
- if (base_info) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- base_info = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, base_info, submessage_arena);
- }
- set_has_base_info();
- } else {
- clear_has_base_info();
- }
- base_info_ = base_info;
- // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.base_info)
- }
- // required string command_key = 2;
- inline bool Dispatch_request_msg::has_command_key() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Dispatch_request_msg::set_has_command_key() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Dispatch_request_msg::clear_has_command_key() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Dispatch_request_msg::clear_command_key() {
- command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- clear_has_command_key();
- }
- inline const ::std::string& Dispatch_request_msg::command_key() const {
- // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.command_key)
- return command_key_.GetNoArena();
- }
- inline void Dispatch_request_msg::set_command_key(const ::std::string& value) {
- set_has_command_key();
- command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.command_key)
- }
- #if LANG_CXX11
- inline void Dispatch_request_msg::set_command_key(::std::string&& value) {
- set_has_command_key();
- command_key_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:message.Dispatch_request_msg.command_key)
- }
- #endif
- inline void Dispatch_request_msg::set_command_key(const char* value) {
- GOOGLE_DCHECK(value != NULL);
- set_has_command_key();
- command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:message.Dispatch_request_msg.command_key)
- }
- inline void Dispatch_request_msg::set_command_key(const char* value, size_t size) {
- set_has_command_key();
- command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:message.Dispatch_request_msg.command_key)
- }
- inline ::std::string* Dispatch_request_msg::mutable_command_key() {
- set_has_command_key();
- // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.command_key)
- return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* Dispatch_request_msg::release_command_key() {
- // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.command_key)
- clear_has_command_key();
- return command_key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void Dispatch_request_msg::set_allocated_command_key(::std::string* command_key) {
- if (command_key != NULL) {
- set_has_command_key();
- } else {
- clear_has_command_key();
- }
- command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
- // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.command_key)
- }
- // required .message.Dispatch_motion_direction dispatch_motion_direction = 3;
- inline bool Dispatch_request_msg::has_dispatch_motion_direction() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void Dispatch_request_msg::set_has_dispatch_motion_direction() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void Dispatch_request_msg::clear_has_dispatch_motion_direction() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void Dispatch_request_msg::clear_dispatch_motion_direction() {
- dispatch_motion_direction_ = 0;
- clear_has_dispatch_motion_direction();
- }
- inline ::message::Dispatch_motion_direction Dispatch_request_msg::dispatch_motion_direction() const {
- // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.dispatch_motion_direction)
- return static_cast< ::message::Dispatch_motion_direction >(dispatch_motion_direction_);
- }
- inline void Dispatch_request_msg::set_dispatch_motion_direction(::message::Dispatch_motion_direction value) {
- assert(::message::Dispatch_motion_direction_IsValid(value));
- set_has_dispatch_motion_direction();
- dispatch_motion_direction_ = value;
- // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.dispatch_motion_direction)
- }
- // required int32 terminal_id = 4;
- inline bool Dispatch_request_msg::has_terminal_id() const {
- return (_has_bits_[0] & 0x00000020u) != 0;
- }
- inline void Dispatch_request_msg::set_has_terminal_id() {
- _has_bits_[0] |= 0x00000020u;
- }
- inline void Dispatch_request_msg::clear_has_terminal_id() {
- _has_bits_[0] &= ~0x00000020u;
- }
- inline void Dispatch_request_msg::clear_terminal_id() {
- terminal_id_ = 0;
- clear_has_terminal_id();
- }
- inline ::google::protobuf::int32 Dispatch_request_msg::terminal_id() const {
- // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.terminal_id)
- return terminal_id_;
- }
- inline void Dispatch_request_msg::set_terminal_id(::google::protobuf::int32 value) {
- set_has_terminal_id();
- terminal_id_ = value;
- // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.terminal_id)
- }
- // required .message.Parkspace_info parkspace_info = 5;
- inline bool Dispatch_request_msg::has_parkspace_info() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Dispatch_request_msg::set_has_parkspace_info() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Dispatch_request_msg::clear_has_parkspace_info() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline const ::message::Parkspace_info& Dispatch_request_msg::parkspace_info() const {
- const ::message::Parkspace_info* p = parkspace_info_;
- // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.parkspace_info)
- return p != NULL ? *p : *reinterpret_cast<const ::message::Parkspace_info*>(
- &::message::_Parkspace_info_default_instance_);
- }
- inline ::message::Parkspace_info* Dispatch_request_msg::release_parkspace_info() {
- // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.parkspace_info)
- clear_has_parkspace_info();
- ::message::Parkspace_info* temp = parkspace_info_;
- parkspace_info_ = NULL;
- return temp;
- }
- inline ::message::Parkspace_info* Dispatch_request_msg::mutable_parkspace_info() {
- set_has_parkspace_info();
- if (parkspace_info_ == NULL) {
- parkspace_info_ = new ::message::Parkspace_info;
- }
- // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.parkspace_info)
- return parkspace_info_;
- }
- inline void Dispatch_request_msg::set_allocated_parkspace_info(::message::Parkspace_info* parkspace_info) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete reinterpret_cast< ::google::protobuf::MessageLite*>(parkspace_info_);
- }
- if (parkspace_info) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- parkspace_info = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, parkspace_info, submessage_arena);
- }
- set_has_parkspace_info();
- } else {
- clear_has_parkspace_info();
- }
- parkspace_info_ = parkspace_info;
- // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.parkspace_info)
- }
- // optional .message.Locate_information locate_information = 6;
- inline bool Dispatch_request_msg::has_locate_information() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void Dispatch_request_msg::set_has_locate_information() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void Dispatch_request_msg::clear_has_locate_information() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline const ::message::Locate_information& Dispatch_request_msg::locate_information() const {
- const ::message::Locate_information* p = locate_information_;
- // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.locate_information)
- return p != NULL ? *p : *reinterpret_cast<const ::message::Locate_information*>(
- &::message::_Locate_information_default_instance_);
- }
- inline ::message::Locate_information* Dispatch_request_msg::release_locate_information() {
- // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.locate_information)
- clear_has_locate_information();
- ::message::Locate_information* temp = locate_information_;
- locate_information_ = NULL;
- return temp;
- }
- inline ::message::Locate_information* Dispatch_request_msg::mutable_locate_information() {
- set_has_locate_information();
- if (locate_information_ == NULL) {
- locate_information_ = new ::message::Locate_information;
- }
- // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.locate_information)
- return locate_information_;
- }
- inline void Dispatch_request_msg::set_allocated_locate_information(::message::Locate_information* locate_information) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete reinterpret_cast< ::google::protobuf::MessageLite*>(locate_information_);
- }
- if (locate_information) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- locate_information = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, locate_information, submessage_arena);
- }
- set_has_locate_information();
- } else {
- clear_has_locate_information();
- }
- locate_information_ = locate_information;
- // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.locate_information)
- }
- // -------------------------------------------------------------------
- // Dispatch_response_msg
- // required .message.Base_info base_info = 1;
- inline bool Dispatch_response_msg::has_base_info() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Dispatch_response_msg::set_has_base_info() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Dispatch_response_msg::clear_has_base_info() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline const ::message::Base_info& Dispatch_response_msg::base_info() const {
- const ::message::Base_info* p = base_info_;
- // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.base_info)
- return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
- &::message::_Base_info_default_instance_);
- }
- inline ::message::Base_info* Dispatch_response_msg::release_base_info() {
- // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.base_info)
- clear_has_base_info();
- ::message::Base_info* temp = base_info_;
- base_info_ = NULL;
- return temp;
- }
- inline ::message::Base_info* Dispatch_response_msg::mutable_base_info() {
- set_has_base_info();
- if (base_info_ == NULL) {
- base_info_ = new ::message::Base_info;
- }
- // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.base_info)
- return base_info_;
- }
- inline void Dispatch_response_msg::set_allocated_base_info(::message::Base_info* base_info) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
- }
- if (base_info) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- base_info = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, base_info, submessage_arena);
- }
- set_has_base_info();
- } else {
- clear_has_base_info();
- }
- base_info_ = base_info;
- // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.base_info)
- }
- // required string command_key = 2;
- inline bool Dispatch_response_msg::has_command_key() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Dispatch_response_msg::set_has_command_key() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Dispatch_response_msg::clear_has_command_key() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Dispatch_response_msg::clear_command_key() {
- command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- clear_has_command_key();
- }
- inline const ::std::string& Dispatch_response_msg::command_key() const {
- // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.command_key)
- return command_key_.GetNoArena();
- }
- inline void Dispatch_response_msg::set_command_key(const ::std::string& value) {
- set_has_command_key();
- command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:message.Dispatch_response_msg.command_key)
- }
- #if LANG_CXX11
- inline void Dispatch_response_msg::set_command_key(::std::string&& value) {
- set_has_command_key();
- command_key_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:message.Dispatch_response_msg.command_key)
- }
- #endif
- inline void Dispatch_response_msg::set_command_key(const char* value) {
- GOOGLE_DCHECK(value != NULL);
- set_has_command_key();
- command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:message.Dispatch_response_msg.command_key)
- }
- inline void Dispatch_response_msg::set_command_key(const char* value, size_t size) {
- set_has_command_key();
- command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:message.Dispatch_response_msg.command_key)
- }
- inline ::std::string* Dispatch_response_msg::mutable_command_key() {
- set_has_command_key();
- // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.command_key)
- return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* Dispatch_response_msg::release_command_key() {
- // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.command_key)
- clear_has_command_key();
- return command_key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void Dispatch_response_msg::set_allocated_command_key(::std::string* command_key) {
- if (command_key != NULL) {
- set_has_command_key();
- } else {
- clear_has_command_key();
- }
- command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
- // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.command_key)
- }
- // required .message.Error_manager error_manager = 3;
- inline bool Dispatch_response_msg::has_error_manager() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Dispatch_response_msg::set_has_error_manager() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Dispatch_response_msg::clear_has_error_manager() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline const ::message::Error_manager& Dispatch_response_msg::error_manager() const {
- const ::message::Error_manager* p = error_manager_;
- // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.error_manager)
- return p != NULL ? *p : *reinterpret_cast<const ::message::Error_manager*>(
- &::message::_Error_manager_default_instance_);
- }
- inline ::message::Error_manager* Dispatch_response_msg::release_error_manager() {
- // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.error_manager)
- clear_has_error_manager();
- ::message::Error_manager* temp = error_manager_;
- error_manager_ = NULL;
- return temp;
- }
- inline ::message::Error_manager* Dispatch_response_msg::mutable_error_manager() {
- set_has_error_manager();
- if (error_manager_ == NULL) {
- error_manager_ = new ::message::Error_manager;
- }
- // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.error_manager)
- return error_manager_;
- }
- inline void Dispatch_response_msg::set_allocated_error_manager(::message::Error_manager* error_manager) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete reinterpret_cast< ::google::protobuf::MessageLite*>(error_manager_);
- }
- if (error_manager) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- error_manager = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, error_manager, submessage_arena);
- }
- set_has_error_manager();
- } else {
- clear_has_error_manager();
- }
- error_manager_ = error_manager;
- // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.error_manager)
- }
- #ifdef __GNUC__
- #pragma GCC diagnostic pop
- #endif // __GNUC__
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // @@protoc_insertion_point(namespace_scope)
- } // namespace message
- namespace google {
- namespace protobuf {
- template <> struct is_proto_enum< ::message::Dispatch_manager_status> : ::google::protobuf::internal::true_type {};
- template <>
- inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_manager_status>() {
- return ::message::Dispatch_manager_status_descriptor();
- }
- template <> struct is_proto_enum< ::message::Catcher_status> : ::google::protobuf::internal::true_type {};
- template <>
- inline const EnumDescriptor* GetEnumDescriptor< ::message::Catcher_status>() {
- return ::message::Catcher_status_descriptor();
- }
- template <> struct is_proto_enum< ::message::Carrier_status> : ::google::protobuf::internal::true_type {};
- template <>
- inline const EnumDescriptor* GetEnumDescriptor< ::message::Carrier_status>() {
- return ::message::Carrier_status_descriptor();
- }
- template <> struct is_proto_enum< ::message::Elevator_status> : ::google::protobuf::internal::true_type {};
- template <>
- inline const EnumDescriptor* GetEnumDescriptor< ::message::Elevator_status>() {
- return ::message::Elevator_status_descriptor();
- }
- template <> struct is_proto_enum< ::message::Passageway_status> : ::google::protobuf::internal::true_type {};
- template <>
- inline const EnumDescriptor* GetEnumDescriptor< ::message::Passageway_status>() {
- return ::message::Passageway_status_descriptor();
- }
- template <> struct is_proto_enum< ::message::Terminal_status> : ::google::protobuf::internal::true_type {};
- template <>
- inline const EnumDescriptor* GetEnumDescriptor< ::message::Terminal_status>() {
- return ::message::Terminal_status_descriptor();
- }
- template <> struct is_proto_enum< ::message::Passageway_direction> : ::google::protobuf::internal::true_type {};
- template <>
- inline const EnumDescriptor* GetEnumDescriptor< ::message::Passageway_direction>() {
- return ::message::Passageway_direction_descriptor();
- }
- template <> struct is_proto_enum< ::message::Dispatch_motion_direction> : ::google::protobuf::internal::true_type {};
- template <>
- inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_motion_direction>() {
- return ::message::Dispatch_motion_direction_descriptor();
- }
- } // namespace protobuf
- } // namespace google
- // @@protoc_insertion_point(global_scope)
- #endif // PROTOBUF_dispatch_5fmessage_2eproto__INCLUDED
|