dispatch_message.pb.h 201 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: dispatch_message.proto
  3. #ifndef PROTOBUF_INCLUDED_dispatch_5fmessage_2eproto
  4. #define PROTOBUF_INCLUDED_dispatch_5fmessage_2eproto
  5. #include <string>
  6. #include <google/protobuf/stubs/common.h>
  7. #if GOOGLE_PROTOBUF_VERSION < 3006000
  8. #error This file was generated by a newer version of protoc which is
  9. #error incompatible with your Protocol Buffer headers. Please update
  10. #error your headers.
  11. #endif
  12. #if 3006000 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
  13. #error This file was generated by an older version of protoc which is
  14. #error incompatible with your Protocol Buffer headers. Please
  15. #error regenerate this file with a newer version of protoc.
  16. #endif
  17. #include <google/protobuf/io/coded_stream.h>
  18. #include <google/protobuf/arena.h>
  19. #include <google/protobuf/arenastring.h>
  20. #include <google/protobuf/generated_message_table_driven.h>
  21. #include <google/protobuf/generated_message_util.h>
  22. #include <google/protobuf/inlined_string_field.h>
  23. #include <google/protobuf/metadata.h>
  24. #include <google/protobuf/message.h>
  25. #include <google/protobuf/repeated_field.h> // IWYU pragma: export
  26. #include <google/protobuf/extension_set.h> // IWYU pragma: export
  27. #include <google/protobuf/generated_enum_reflection.h>
  28. #include <google/protobuf/unknown_field_set.h>
  29. #include "message_base.pb.h"
  30. // @@protoc_insertion_point(includes)
  31. #define PROTOBUF_INTERNAL_EXPORT_protobuf_dispatch_5fmessage_2eproto
  32. namespace protobuf_dispatch_5fmessage_2eproto {
  33. // Internal implementation detail -- do not use these members.
  34. struct TableStruct {
  35. static const ::google::protobuf::internal::ParseTableField entries[];
  36. static const ::google::protobuf::internal::AuxillaryParseTableField aux[];
  37. static const ::google::protobuf::internal::ParseTable schema[8];
  38. static const ::google::protobuf::internal::FieldMetadata field_metadata[];
  39. static const ::google::protobuf::internal::SerializationTable serialization_table[];
  40. static const ::google::protobuf::uint32 offsets[];
  41. };
  42. void AddDescriptors();
  43. } // namespace protobuf_dispatch_5fmessage_2eproto
  44. namespace message {
  45. class Carrier_data;
  46. class Carrier_dataDefaultTypeInternal;
  47. extern Carrier_dataDefaultTypeInternal _Carrier_data_default_instance_;
  48. class Catcher_data;
  49. class Catcher_dataDefaultTypeInternal;
  50. extern Catcher_dataDefaultTypeInternal _Catcher_data_default_instance_;
  51. class Dispatch_manager_data_msg;
  52. class Dispatch_manager_data_msgDefaultTypeInternal;
  53. extern Dispatch_manager_data_msgDefaultTypeInternal _Dispatch_manager_data_msg_default_instance_;
  54. class Dispatch_manager_status_msg;
  55. class Dispatch_manager_status_msgDefaultTypeInternal;
  56. extern Dispatch_manager_status_msgDefaultTypeInternal _Dispatch_manager_status_msg_default_instance_;
  57. class Dispatch_request_msg;
  58. class Dispatch_request_msgDefaultTypeInternal;
  59. extern Dispatch_request_msgDefaultTypeInternal _Dispatch_request_msg_default_instance_;
  60. class Dispatch_response_msg;
  61. class Dispatch_response_msgDefaultTypeInternal;
  62. extern Dispatch_response_msgDefaultTypeInternal _Dispatch_response_msg_default_instance_;
  63. class Dispatch_terminal_status_msg;
  64. class Dispatch_terminal_status_msgDefaultTypeInternal;
  65. extern Dispatch_terminal_status_msgDefaultTypeInternal _Dispatch_terminal_status_msg_default_instance_;
  66. class Passageway_data;
  67. class Passageway_dataDefaultTypeInternal;
  68. extern Passageway_dataDefaultTypeInternal _Passageway_data_default_instance_;
  69. } // namespace message
  70. namespace google {
  71. namespace protobuf {
  72. template<> ::message::Carrier_data* Arena::CreateMaybeMessage<::message::Carrier_data>(Arena*);
  73. template<> ::message::Catcher_data* Arena::CreateMaybeMessage<::message::Catcher_data>(Arena*);
  74. template<> ::message::Dispatch_manager_data_msg* Arena::CreateMaybeMessage<::message::Dispatch_manager_data_msg>(Arena*);
  75. template<> ::message::Dispatch_manager_status_msg* Arena::CreateMaybeMessage<::message::Dispatch_manager_status_msg>(Arena*);
  76. template<> ::message::Dispatch_request_msg* Arena::CreateMaybeMessage<::message::Dispatch_request_msg>(Arena*);
  77. template<> ::message::Dispatch_response_msg* Arena::CreateMaybeMessage<::message::Dispatch_response_msg>(Arena*);
  78. template<> ::message::Dispatch_terminal_status_msg* Arena::CreateMaybeMessage<::message::Dispatch_terminal_status_msg>(Arena*);
  79. template<> ::message::Passageway_data* Arena::CreateMaybeMessage<::message::Passageway_data>(Arena*);
  80. } // namespace protobuf
  81. } // namespace google
  82. namespace message {
  83. enum Terminal_status {
  84. E_TERMINAL_UNKNOW = 0,
  85. E_TERMINAL_READY = 1,
  86. E_TERMINAL_STORE = 2,
  87. E_TERMINAL_PICKUP = 3,
  88. E_TERMINAL_FAULT = 10
  89. };
  90. bool Terminal_status_IsValid(int value);
  91. const Terminal_status Terminal_status_MIN = E_TERMINAL_UNKNOW;
  92. const Terminal_status Terminal_status_MAX = E_TERMINAL_FAULT;
  93. const int Terminal_status_ARRAYSIZE = Terminal_status_MAX + 1;
  94. const ::google::protobuf::EnumDescriptor* Terminal_status_descriptor();
  95. inline const ::std::string& Terminal_status_Name(Terminal_status value) {
  96. return ::google::protobuf::internal::NameOfEnum(
  97. Terminal_status_descriptor(), value);
  98. }
  99. inline bool Terminal_status_Parse(
  100. const ::std::string& name, Terminal_status* value) {
  101. return ::google::protobuf::internal::ParseNamedEnum<Terminal_status>(
  102. Terminal_status_descriptor(), name, value);
  103. }
  104. enum Passageway_direction {
  105. E_INLET = 0,
  106. E_OUTLET = 1,
  107. E_BILATERAL = 2
  108. };
  109. bool Passageway_direction_IsValid(int value);
  110. const Passageway_direction Passageway_direction_MIN = E_INLET;
  111. const Passageway_direction Passageway_direction_MAX = E_BILATERAL;
  112. const int Passageway_direction_ARRAYSIZE = Passageway_direction_MAX + 1;
  113. const ::google::protobuf::EnumDescriptor* Passageway_direction_descriptor();
  114. inline const ::std::string& Passageway_direction_Name(Passageway_direction value) {
  115. return ::google::protobuf::internal::NameOfEnum(
  116. Passageway_direction_descriptor(), value);
  117. }
  118. inline bool Passageway_direction_Parse(
  119. const ::std::string& name, Passageway_direction* value) {
  120. return ::google::protobuf::internal::ParseNamedEnum<Passageway_direction>(
  121. Passageway_direction_descriptor(), name, value);
  122. }
  123. enum Dispatch_motion_direction {
  124. E_STORE_CAR = 0,
  125. E_PICKUP_CAR = 1
  126. };
  127. bool Dispatch_motion_direction_IsValid(int value);
  128. const Dispatch_motion_direction Dispatch_motion_direction_MIN = E_STORE_CAR;
  129. const Dispatch_motion_direction Dispatch_motion_direction_MAX = E_PICKUP_CAR;
  130. const int Dispatch_motion_direction_ARRAYSIZE = Dispatch_motion_direction_MAX + 1;
  131. const ::google::protobuf::EnumDescriptor* Dispatch_motion_direction_descriptor();
  132. inline const ::std::string& Dispatch_motion_direction_Name(Dispatch_motion_direction value) {
  133. return ::google::protobuf::internal::NameOfEnum(
  134. Dispatch_motion_direction_descriptor(), value);
  135. }
  136. inline bool Dispatch_motion_direction_Parse(
  137. const ::std::string& name, Dispatch_motion_direction* value) {
  138. return ::google::protobuf::internal::ParseNamedEnum<Dispatch_motion_direction>(
  139. Dispatch_motion_direction_descriptor(), name, value);
  140. }
  141. enum Dispatch_manager_status {
  142. E_DISPATCH_MANAGER_UNKNOW = 0,
  143. E_DISPATCH_MANAGER_READY = 1,
  144. E_DISPATCH_MANAGER_STORE = 2,
  145. E_DISPATCH_MANAGER_PICKUP = 3,
  146. E_DISPATCH_MANAGER_FAULT = 100
  147. };
  148. bool Dispatch_manager_status_IsValid(int value);
  149. const Dispatch_manager_status Dispatch_manager_status_MIN = E_DISPATCH_MANAGER_UNKNOW;
  150. const Dispatch_manager_status Dispatch_manager_status_MAX = E_DISPATCH_MANAGER_FAULT;
  151. const int Dispatch_manager_status_ARRAYSIZE = Dispatch_manager_status_MAX + 1;
  152. const ::google::protobuf::EnumDescriptor* Dispatch_manager_status_descriptor();
  153. inline const ::std::string& Dispatch_manager_status_Name(Dispatch_manager_status value) {
  154. return ::google::protobuf::internal::NameOfEnum(
  155. Dispatch_manager_status_descriptor(), value);
  156. }
  157. inline bool Dispatch_manager_status_Parse(
  158. const ::std::string& name, Dispatch_manager_status* value) {
  159. return ::google::protobuf::internal::ParseNamedEnum<Dispatch_manager_status>(
  160. Dispatch_manager_status_descriptor(), name, value);
  161. }
  162. enum Dispatch_device_status {
  163. DISPATCH_DEVICE_UNKNOW = 0,
  164. DISPATCH_DEVICE_READY = 1,
  165. DISPATCH_DEVICE_BUSY = 2,
  166. DISPATCH_DEVICE_ONE_LEVEL_OVER = 3,
  167. DISPATCH_DEVICE_ONE_LEVEL_WORK = 4,
  168. DISPATCH_DEVICE_TWO_LEVEL_OVER = 5,
  169. DISPATCH_DEVICE_TWO_LEVEL_WORK = 6,
  170. DISPATCH_DEVICE_THREE_LEVEL_OVER = 7,
  171. DISPATCH_DEVICE_THREE_LEVEL_WORK = 8,
  172. DISPATCH_DEVICE_FAULT = 100,
  173. DISPATCH_DEVICE_DISCONNECT = 101
  174. };
  175. bool Dispatch_device_status_IsValid(int value);
  176. const Dispatch_device_status Dispatch_device_status_MIN = DISPATCH_DEVICE_UNKNOW;
  177. const Dispatch_device_status Dispatch_device_status_MAX = DISPATCH_DEVICE_DISCONNECT;
  178. const int Dispatch_device_status_ARRAYSIZE = Dispatch_device_status_MAX + 1;
  179. const ::google::protobuf::EnumDescriptor* Dispatch_device_status_descriptor();
  180. inline const ::std::string& Dispatch_device_status_Name(Dispatch_device_status value) {
  181. return ::google::protobuf::internal::NameOfEnum(
  182. Dispatch_device_status_descriptor(), value);
  183. }
  184. inline bool Dispatch_device_status_Parse(
  185. const ::std::string& name, Dispatch_device_status* value) {
  186. return ::google::protobuf::internal::ParseNamedEnum<Dispatch_device_status>(
  187. Dispatch_device_status_descriptor(), name, value);
  188. }
  189. enum Dispatch_task_level {
  190. DISPATCH_TASK_ONE_LEVEL = 1,
  191. DISPATCH_TASK_TWO_LEVEL = 2,
  192. DISPATCH_TASK_THREE_LEVEL = 3
  193. };
  194. bool Dispatch_task_level_IsValid(int value);
  195. const Dispatch_task_level Dispatch_task_level_MIN = DISPATCH_TASK_ONE_LEVEL;
  196. const Dispatch_task_level Dispatch_task_level_MAX = DISPATCH_TASK_THREE_LEVEL;
  197. const int Dispatch_task_level_ARRAYSIZE = Dispatch_task_level_MAX + 1;
  198. const ::google::protobuf::EnumDescriptor* Dispatch_task_level_descriptor();
  199. inline const ::std::string& Dispatch_task_level_Name(Dispatch_task_level value) {
  200. return ::google::protobuf::internal::NameOfEnum(
  201. Dispatch_task_level_descriptor(), value);
  202. }
  203. inline bool Dispatch_task_level_Parse(
  204. const ::std::string& name, Dispatch_task_level* value) {
  205. return ::google::protobuf::internal::ParseNamedEnum<Dispatch_task_level>(
  206. Dispatch_task_level_descriptor(), name, value);
  207. }
  208. enum Clamp_motion {
  209. E_CLAMP_NO_ACTION = 0,
  210. E_CLAMP_TIGHT = 1,
  211. E_CLAMP_LOOSE = 2
  212. };
  213. bool Clamp_motion_IsValid(int value);
  214. const Clamp_motion Clamp_motion_MIN = E_CLAMP_NO_ACTION;
  215. const Clamp_motion Clamp_motion_MAX = E_CLAMP_LOOSE;
  216. const int Clamp_motion_ARRAYSIZE = Clamp_motion_MAX + 1;
  217. const ::google::protobuf::EnumDescriptor* Clamp_motion_descriptor();
  218. inline const ::std::string& Clamp_motion_Name(Clamp_motion value) {
  219. return ::google::protobuf::internal::NameOfEnum(
  220. Clamp_motion_descriptor(), value);
  221. }
  222. inline bool Clamp_motion_Parse(
  223. const ::std::string& name, Clamp_motion* value) {
  224. return ::google::protobuf::internal::ParseNamedEnum<Clamp_motion>(
  225. Clamp_motion_descriptor(), name, value);
  226. }
  227. enum Joint_motion {
  228. E_JOINT_NO_ACTION = 0,
  229. E_JOINT_HOLD_OUT = 1,
  230. E_JOINT_TAKE_BACK = 2
  231. };
  232. bool Joint_motion_IsValid(int value);
  233. const Joint_motion Joint_motion_MIN = E_JOINT_NO_ACTION;
  234. const Joint_motion Joint_motion_MAX = E_JOINT_TAKE_BACK;
  235. const int Joint_motion_ARRAYSIZE = Joint_motion_MAX + 1;
  236. const ::google::protobuf::EnumDescriptor* Joint_motion_descriptor();
  237. inline const ::std::string& Joint_motion_Name(Joint_motion value) {
  238. return ::google::protobuf::internal::NameOfEnum(
  239. Joint_motion_descriptor(), value);
  240. }
  241. inline bool Joint_motion_Parse(
  242. const ::std::string& name, Joint_motion* value) {
  243. return ::google::protobuf::internal::ParseNamedEnum<Joint_motion>(
  244. Joint_motion_descriptor(), name, value);
  245. }
  246. enum Small_sports_car_motion {
  247. E_SMALL_SPORTS_NO_ACTION = 0,
  248. E_SMALL_SPORTS_CAR_GET_AWAY = 1,
  249. E_SMALL_SPORTS_CAR_GET_BACK = 2
  250. };
  251. bool Small_sports_car_motion_IsValid(int value);
  252. const Small_sports_car_motion Small_sports_car_motion_MIN = E_SMALL_SPORTS_NO_ACTION;
  253. const Small_sports_car_motion Small_sports_car_motion_MAX = E_SMALL_SPORTS_CAR_GET_BACK;
  254. const int Small_sports_car_motion_ARRAYSIZE = Small_sports_car_motion_MAX + 1;
  255. const ::google::protobuf::EnumDescriptor* Small_sports_car_motion_descriptor();
  256. inline const ::std::string& Small_sports_car_motion_Name(Small_sports_car_motion value) {
  257. return ::google::protobuf::internal::NameOfEnum(
  258. Small_sports_car_motion_descriptor(), value);
  259. }
  260. inline bool Small_sports_car_motion_Parse(
  261. const ::std::string& name, Small_sports_car_motion* value) {
  262. return ::google::protobuf::internal::ParseNamedEnum<Small_sports_car_motion>(
  263. Small_sports_car_motion_descriptor(), name, value);
  264. }
  265. enum Respons_status {
  266. RESPONS_WORKING = 0,
  267. RESPONS_OVER = 1,
  268. RESPONS_MINOR_ERROR = 100,
  269. RESPONS_CRITICAL_ERROR = 101
  270. };
  271. bool Respons_status_IsValid(int value);
  272. const Respons_status Respons_status_MIN = RESPONS_WORKING;
  273. const Respons_status Respons_status_MAX = RESPONS_CRITICAL_ERROR;
  274. const int Respons_status_ARRAYSIZE = Respons_status_MAX + 1;
  275. const ::google::protobuf::EnumDescriptor* Respons_status_descriptor();
  276. inline const ::std::string& Respons_status_Name(Respons_status value) {
  277. return ::google::protobuf::internal::NameOfEnum(
  278. Respons_status_descriptor(), value);
  279. }
  280. inline bool Respons_status_Parse(
  281. const ::std::string& name, Respons_status* value) {
  282. return ::google::protobuf::internal::ParseNamedEnum<Respons_status>(
  283. Respons_status_descriptor(), name, value);
  284. }
  285. enum Hardware_device_status {
  286. DEVICE_UNKNOWN = 0,
  287. DEVICE_READY = 1,
  288. DEVICE_WORKING = 2,
  289. DEVICE_EMERGENCY_STOP = 3,
  290. DEVICE_UNSAFETY = 4,
  291. DEVICE_COLLISION = 5,
  292. DEVICE_FAULT = 6
  293. };
  294. bool Hardware_device_status_IsValid(int value);
  295. const Hardware_device_status Hardware_device_status_MIN = DEVICE_UNKNOWN;
  296. const Hardware_device_status Hardware_device_status_MAX = DEVICE_FAULT;
  297. const int Hardware_device_status_ARRAYSIZE = Hardware_device_status_MAX + 1;
  298. const ::google::protobuf::EnumDescriptor* Hardware_device_status_descriptor();
  299. inline const ::std::string& Hardware_device_status_Name(Hardware_device_status value) {
  300. return ::google::protobuf::internal::NameOfEnum(
  301. Hardware_device_status_descriptor(), value);
  302. }
  303. inline bool Hardware_device_status_Parse(
  304. const ::std::string& name, Hardware_device_status* value) {
  305. return ::google::protobuf::internal::ParseNamedEnum<Hardware_device_status>(
  306. Hardware_device_status_descriptor(), name, value);
  307. }
  308. enum Load_status {
  309. LOAD_UNKNOWN = 0,
  310. HAVE_CAR = 1,
  311. NO_CAR = 2
  312. };
  313. bool Load_status_IsValid(int value);
  314. const Load_status Load_status_MIN = LOAD_UNKNOWN;
  315. const Load_status Load_status_MAX = NO_CAR;
  316. const int Load_status_ARRAYSIZE = Load_status_MAX + 1;
  317. const ::google::protobuf::EnumDescriptor* Load_status_descriptor();
  318. inline const ::std::string& Load_status_Name(Load_status value) {
  319. return ::google::protobuf::internal::NameOfEnum(
  320. Load_status_descriptor(), value);
  321. }
  322. inline bool Load_status_Parse(
  323. const ::std::string& name, Load_status* value) {
  324. return ::google::protobuf::internal::ParseNamedEnum<Load_status>(
  325. Load_status_descriptor(), name, value);
  326. }
  327. enum Turntable_direction {
  328. TURNTABLE_DIRECTION_UNKNOWN = 0,
  329. TURNTABLE_DIRECTION_INSIDE = 1,
  330. TURNTABLE_DIRECTION_OUTSIDE = 2
  331. };
  332. bool Turntable_direction_IsValid(int value);
  333. const Turntable_direction Turntable_direction_MIN = TURNTABLE_DIRECTION_UNKNOWN;
  334. const Turntable_direction Turntable_direction_MAX = TURNTABLE_DIRECTION_OUTSIDE;
  335. const int Turntable_direction_ARRAYSIZE = Turntable_direction_MAX + 1;
  336. const ::google::protobuf::EnumDescriptor* Turntable_direction_descriptor();
  337. inline const ::std::string& Turntable_direction_Name(Turntable_direction value) {
  338. return ::google::protobuf::internal::NameOfEnum(
  339. Turntable_direction_descriptor(), value);
  340. }
  341. inline bool Turntable_direction_Parse(
  342. const ::std::string& name, Turntable_direction* value) {
  343. return ::google::protobuf::internal::ParseNamedEnum<Turntable_direction>(
  344. Turntable_direction_descriptor(), name, value);
  345. }
  346. enum Door_motion {
  347. DOOR_UNKNOWN = 0,
  348. DOOR_OPEN = 1,
  349. DOOR_CLOSE = 2,
  350. DOOR_ERROR = 3
  351. };
  352. bool Door_motion_IsValid(int value);
  353. const Door_motion Door_motion_MIN = DOOR_UNKNOWN;
  354. const Door_motion Door_motion_MAX = DOOR_ERROR;
  355. const int Door_motion_ARRAYSIZE = Door_motion_MAX + 1;
  356. const ::google::protobuf::EnumDescriptor* Door_motion_descriptor();
  357. inline const ::std::string& Door_motion_Name(Door_motion value) {
  358. return ::google::protobuf::internal::NameOfEnum(
  359. Door_motion_descriptor(), value);
  360. }
  361. inline bool Door_motion_Parse(
  362. const ::std::string& name, Door_motion* value) {
  363. return ::google::protobuf::internal::ParseNamedEnum<Door_motion>(
  364. Door_motion_descriptor(), name, value);
  365. }
  366. enum Overstep_the_boundary {
  367. BOUNDARY_NORMAL = 0,
  368. BOUNDARY_OVERSTEP = 1
  369. };
  370. bool Overstep_the_boundary_IsValid(int value);
  371. const Overstep_the_boundary Overstep_the_boundary_MIN = BOUNDARY_NORMAL;
  372. const Overstep_the_boundary Overstep_the_boundary_MAX = BOUNDARY_OVERSTEP;
  373. const int Overstep_the_boundary_ARRAYSIZE = Overstep_the_boundary_MAX + 1;
  374. const ::google::protobuf::EnumDescriptor* Overstep_the_boundary_descriptor();
  375. inline const ::std::string& Overstep_the_boundary_Name(Overstep_the_boundary value) {
  376. return ::google::protobuf::internal::NameOfEnum(
  377. Overstep_the_boundary_descriptor(), value);
  378. }
  379. inline bool Overstep_the_boundary_Parse(
  380. const ::std::string& name, Overstep_the_boundary* value) {
  381. return ::google::protobuf::internal::ParseNamedEnum<Overstep_the_boundary>(
  382. Overstep_the_boundary_descriptor(), name, value);
  383. }
  384. // ===================================================================
  385. class Dispatch_terminal_status_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_terminal_status_msg) */ {
  386. public:
  387. Dispatch_terminal_status_msg();
  388. virtual ~Dispatch_terminal_status_msg();
  389. Dispatch_terminal_status_msg(const Dispatch_terminal_status_msg& from);
  390. inline Dispatch_terminal_status_msg& operator=(const Dispatch_terminal_status_msg& from) {
  391. CopyFrom(from);
  392. return *this;
  393. }
  394. #if LANG_CXX11
  395. Dispatch_terminal_status_msg(Dispatch_terminal_status_msg&& from) noexcept
  396. : Dispatch_terminal_status_msg() {
  397. *this = ::std::move(from);
  398. }
  399. inline Dispatch_terminal_status_msg& operator=(Dispatch_terminal_status_msg&& from) noexcept {
  400. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  401. if (this != &from) InternalSwap(&from);
  402. } else {
  403. CopyFrom(from);
  404. }
  405. return *this;
  406. }
  407. #endif
  408. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  409. return _internal_metadata_.unknown_fields();
  410. }
  411. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  412. return _internal_metadata_.mutable_unknown_fields();
  413. }
  414. static const ::google::protobuf::Descriptor* descriptor();
  415. static const Dispatch_terminal_status_msg& default_instance();
  416. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  417. static inline const Dispatch_terminal_status_msg* internal_default_instance() {
  418. return reinterpret_cast<const Dispatch_terminal_status_msg*>(
  419. &_Dispatch_terminal_status_msg_default_instance_);
  420. }
  421. static constexpr int kIndexInFileMessages =
  422. 0;
  423. void Swap(Dispatch_terminal_status_msg* other);
  424. friend void swap(Dispatch_terminal_status_msg& a, Dispatch_terminal_status_msg& b) {
  425. a.Swap(&b);
  426. }
  427. // implements Message ----------------------------------------------
  428. inline Dispatch_terminal_status_msg* New() const final {
  429. return CreateMaybeMessage<Dispatch_terminal_status_msg>(NULL);
  430. }
  431. Dispatch_terminal_status_msg* New(::google::protobuf::Arena* arena) const final {
  432. return CreateMaybeMessage<Dispatch_terminal_status_msg>(arena);
  433. }
  434. void CopyFrom(const ::google::protobuf::Message& from) final;
  435. void MergeFrom(const ::google::protobuf::Message& from) final;
  436. void CopyFrom(const Dispatch_terminal_status_msg& from);
  437. void MergeFrom(const Dispatch_terminal_status_msg& from);
  438. void Clear() final;
  439. bool IsInitialized() const final;
  440. size_t ByteSizeLong() const final;
  441. bool MergePartialFromCodedStream(
  442. ::google::protobuf::io::CodedInputStream* input) final;
  443. void SerializeWithCachedSizes(
  444. ::google::protobuf::io::CodedOutputStream* output) const final;
  445. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  446. bool deterministic, ::google::protobuf::uint8* target) const final;
  447. int GetCachedSize() const final { return _cached_size_.Get(); }
  448. private:
  449. void SharedCtor();
  450. void SharedDtor();
  451. void SetCachedSize(int size) const final;
  452. void InternalSwap(Dispatch_terminal_status_msg* other);
  453. private:
  454. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  455. return NULL;
  456. }
  457. inline void* MaybeArenaPtr() const {
  458. return NULL;
  459. }
  460. public:
  461. ::google::protobuf::Metadata GetMetadata() const final;
  462. // nested types ----------------------------------------------------
  463. // accessors -------------------------------------------------------
  464. // required .message.Base_info base_info = 1;
  465. bool has_base_info() const;
  466. void clear_base_info();
  467. static const int kBaseInfoFieldNumber = 1;
  468. private:
  469. const ::message::Base_info& _internal_base_info() const;
  470. public:
  471. const ::message::Base_info& base_info() const;
  472. ::message::Base_info* release_base_info();
  473. ::message::Base_info* mutable_base_info();
  474. void set_allocated_base_info(::message::Base_info* base_info);
  475. // required int32 terminal_id = 2;
  476. bool has_terminal_id() const;
  477. void clear_terminal_id();
  478. static const int kTerminalIdFieldNumber = 2;
  479. ::google::protobuf::int32 terminal_id() const;
  480. void set_terminal_id(::google::protobuf::int32 value);
  481. // required .message.Terminal_status terminal_status = 3;
  482. bool has_terminal_status() const;
  483. void clear_terminal_status();
  484. static const int kTerminalStatusFieldNumber = 3;
  485. ::message::Terminal_status terminal_status() const;
  486. void set_terminal_status(::message::Terminal_status value);
  487. // required .message.Passageway_direction passageway_direction = 4;
  488. bool has_passageway_direction() const;
  489. void clear_passageway_direction();
  490. static const int kPassagewayDirectionFieldNumber = 4;
  491. ::message::Passageway_direction passageway_direction() const;
  492. void set_passageway_direction(::message::Passageway_direction value);
  493. // @@protoc_insertion_point(class_scope:message.Dispatch_terminal_status_msg)
  494. private:
  495. void set_has_base_info();
  496. void clear_has_base_info();
  497. void set_has_terminal_id();
  498. void clear_has_terminal_id();
  499. void set_has_terminal_status();
  500. void clear_has_terminal_status();
  501. void set_has_passageway_direction();
  502. void clear_has_passageway_direction();
  503. // helper for ByteSizeLong()
  504. size_t RequiredFieldsByteSizeFallback() const;
  505. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  506. ::google::protobuf::internal::HasBits<1> _has_bits_;
  507. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  508. ::message::Base_info* base_info_;
  509. ::google::protobuf::int32 terminal_id_;
  510. int terminal_status_;
  511. int passageway_direction_;
  512. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  513. };
  514. // -------------------------------------------------------------------
  515. class Dispatch_request_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_request_msg) */ {
  516. public:
  517. Dispatch_request_msg();
  518. virtual ~Dispatch_request_msg();
  519. Dispatch_request_msg(const Dispatch_request_msg& from);
  520. inline Dispatch_request_msg& operator=(const Dispatch_request_msg& from) {
  521. CopyFrom(from);
  522. return *this;
  523. }
  524. #if LANG_CXX11
  525. Dispatch_request_msg(Dispatch_request_msg&& from) noexcept
  526. : Dispatch_request_msg() {
  527. *this = ::std::move(from);
  528. }
  529. inline Dispatch_request_msg& operator=(Dispatch_request_msg&& from) noexcept {
  530. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  531. if (this != &from) InternalSwap(&from);
  532. } else {
  533. CopyFrom(from);
  534. }
  535. return *this;
  536. }
  537. #endif
  538. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  539. return _internal_metadata_.unknown_fields();
  540. }
  541. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  542. return _internal_metadata_.mutable_unknown_fields();
  543. }
  544. static const ::google::protobuf::Descriptor* descriptor();
  545. static const Dispatch_request_msg& default_instance();
  546. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  547. static inline const Dispatch_request_msg* internal_default_instance() {
  548. return reinterpret_cast<const Dispatch_request_msg*>(
  549. &_Dispatch_request_msg_default_instance_);
  550. }
  551. static constexpr int kIndexInFileMessages =
  552. 1;
  553. void Swap(Dispatch_request_msg* other);
  554. friend void swap(Dispatch_request_msg& a, Dispatch_request_msg& b) {
  555. a.Swap(&b);
  556. }
  557. // implements Message ----------------------------------------------
  558. inline Dispatch_request_msg* New() const final {
  559. return CreateMaybeMessage<Dispatch_request_msg>(NULL);
  560. }
  561. Dispatch_request_msg* New(::google::protobuf::Arena* arena) const final {
  562. return CreateMaybeMessage<Dispatch_request_msg>(arena);
  563. }
  564. void CopyFrom(const ::google::protobuf::Message& from) final;
  565. void MergeFrom(const ::google::protobuf::Message& from) final;
  566. void CopyFrom(const Dispatch_request_msg& from);
  567. void MergeFrom(const Dispatch_request_msg& from);
  568. void Clear() final;
  569. bool IsInitialized() const final;
  570. size_t ByteSizeLong() const final;
  571. bool MergePartialFromCodedStream(
  572. ::google::protobuf::io::CodedInputStream* input) final;
  573. void SerializeWithCachedSizes(
  574. ::google::protobuf::io::CodedOutputStream* output) const final;
  575. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  576. bool deterministic, ::google::protobuf::uint8* target) const final;
  577. int GetCachedSize() const final { return _cached_size_.Get(); }
  578. private:
  579. void SharedCtor();
  580. void SharedDtor();
  581. void SetCachedSize(int size) const final;
  582. void InternalSwap(Dispatch_request_msg* other);
  583. private:
  584. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  585. return NULL;
  586. }
  587. inline void* MaybeArenaPtr() const {
  588. return NULL;
  589. }
  590. public:
  591. ::google::protobuf::Metadata GetMetadata() const final;
  592. // nested types ----------------------------------------------------
  593. // accessors -------------------------------------------------------
  594. // repeated .message.Parkspace_info parkspace_info_ex = 6;
  595. int parkspace_info_ex_size() const;
  596. void clear_parkspace_info_ex();
  597. static const int kParkspaceInfoExFieldNumber = 6;
  598. ::message::Parkspace_info* mutable_parkspace_info_ex(int index);
  599. ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >*
  600. mutable_parkspace_info_ex();
  601. const ::message::Parkspace_info& parkspace_info_ex(int index) const;
  602. ::message::Parkspace_info* add_parkspace_info_ex();
  603. const ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >&
  604. parkspace_info_ex() const;
  605. // required string command_key = 2;
  606. bool has_command_key() const;
  607. void clear_command_key();
  608. static const int kCommandKeyFieldNumber = 2;
  609. const ::std::string& command_key() const;
  610. void set_command_key(const ::std::string& value);
  611. #if LANG_CXX11
  612. void set_command_key(::std::string&& value);
  613. #endif
  614. void set_command_key(const char* value);
  615. void set_command_key(const char* value, size_t size);
  616. ::std::string* mutable_command_key();
  617. ::std::string* release_command_key();
  618. void set_allocated_command_key(::std::string* command_key);
  619. // required .message.Base_info base_info = 1;
  620. bool has_base_info() const;
  621. void clear_base_info();
  622. static const int kBaseInfoFieldNumber = 1;
  623. private:
  624. const ::message::Base_info& _internal_base_info() const;
  625. public:
  626. const ::message::Base_info& base_info() const;
  627. ::message::Base_info* release_base_info();
  628. ::message::Base_info* mutable_base_info();
  629. void set_allocated_base_info(::message::Base_info* base_info);
  630. // optional .message.Locate_information locate_information = 5;
  631. bool has_locate_information() const;
  632. void clear_locate_information();
  633. static const int kLocateInformationFieldNumber = 5;
  634. private:
  635. const ::message::Locate_information& _internal_locate_information() const;
  636. public:
  637. const ::message::Locate_information& locate_information() const;
  638. ::message::Locate_information* release_locate_information();
  639. ::message::Locate_information* mutable_locate_information();
  640. void set_allocated_locate_information(::message::Locate_information* locate_information);
  641. // optional .message.Dispatch_motion_direction dispatch_motion_direction = 3;
  642. bool has_dispatch_motion_direction() const;
  643. void clear_dispatch_motion_direction();
  644. static const int kDispatchMotionDirectionFieldNumber = 3;
  645. ::message::Dispatch_motion_direction dispatch_motion_direction() const;
  646. void set_dispatch_motion_direction(::message::Dispatch_motion_direction value);
  647. // optional int32 terminal_id = 4;
  648. bool has_terminal_id() const;
  649. void clear_terminal_id();
  650. static const int kTerminalIdFieldNumber = 4;
  651. ::google::protobuf::int32 terminal_id() const;
  652. void set_terminal_id(::google::protobuf::int32 value);
  653. // optional .message.Car_type car_type = 7;
  654. bool has_car_type() const;
  655. void clear_car_type();
  656. static const int kCarTypeFieldNumber = 7;
  657. ::message::Car_type car_type() const;
  658. void set_car_type(::message::Car_type value);
  659. // @@protoc_insertion_point(class_scope:message.Dispatch_request_msg)
  660. private:
  661. void set_has_base_info();
  662. void clear_has_base_info();
  663. void set_has_command_key();
  664. void clear_has_command_key();
  665. void set_has_dispatch_motion_direction();
  666. void clear_has_dispatch_motion_direction();
  667. void set_has_terminal_id();
  668. void clear_has_terminal_id();
  669. void set_has_locate_information();
  670. void clear_has_locate_information();
  671. void set_has_car_type();
  672. void clear_has_car_type();
  673. // helper for ByteSizeLong()
  674. size_t RequiredFieldsByteSizeFallback() const;
  675. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  676. ::google::protobuf::internal::HasBits<1> _has_bits_;
  677. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  678. ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info > parkspace_info_ex_;
  679. ::google::protobuf::internal::ArenaStringPtr command_key_;
  680. ::message::Base_info* base_info_;
  681. ::message::Locate_information* locate_information_;
  682. int dispatch_motion_direction_;
  683. ::google::protobuf::int32 terminal_id_;
  684. int car_type_;
  685. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  686. };
  687. // -------------------------------------------------------------------
  688. class Dispatch_response_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_response_msg) */ {
  689. public:
  690. Dispatch_response_msg();
  691. virtual ~Dispatch_response_msg();
  692. Dispatch_response_msg(const Dispatch_response_msg& from);
  693. inline Dispatch_response_msg& operator=(const Dispatch_response_msg& from) {
  694. CopyFrom(from);
  695. return *this;
  696. }
  697. #if LANG_CXX11
  698. Dispatch_response_msg(Dispatch_response_msg&& from) noexcept
  699. : Dispatch_response_msg() {
  700. *this = ::std::move(from);
  701. }
  702. inline Dispatch_response_msg& operator=(Dispatch_response_msg&& from) noexcept {
  703. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  704. if (this != &from) InternalSwap(&from);
  705. } else {
  706. CopyFrom(from);
  707. }
  708. return *this;
  709. }
  710. #endif
  711. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  712. return _internal_metadata_.unknown_fields();
  713. }
  714. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  715. return _internal_metadata_.mutable_unknown_fields();
  716. }
  717. static const ::google::protobuf::Descriptor* descriptor();
  718. static const Dispatch_response_msg& default_instance();
  719. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  720. static inline const Dispatch_response_msg* internal_default_instance() {
  721. return reinterpret_cast<const Dispatch_response_msg*>(
  722. &_Dispatch_response_msg_default_instance_);
  723. }
  724. static constexpr int kIndexInFileMessages =
  725. 2;
  726. void Swap(Dispatch_response_msg* other);
  727. friend void swap(Dispatch_response_msg& a, Dispatch_response_msg& b) {
  728. a.Swap(&b);
  729. }
  730. // implements Message ----------------------------------------------
  731. inline Dispatch_response_msg* New() const final {
  732. return CreateMaybeMessage<Dispatch_response_msg>(NULL);
  733. }
  734. Dispatch_response_msg* New(::google::protobuf::Arena* arena) const final {
  735. return CreateMaybeMessage<Dispatch_response_msg>(arena);
  736. }
  737. void CopyFrom(const ::google::protobuf::Message& from) final;
  738. void MergeFrom(const ::google::protobuf::Message& from) final;
  739. void CopyFrom(const Dispatch_response_msg& from);
  740. void MergeFrom(const Dispatch_response_msg& from);
  741. void Clear() final;
  742. bool IsInitialized() const final;
  743. size_t ByteSizeLong() const final;
  744. bool MergePartialFromCodedStream(
  745. ::google::protobuf::io::CodedInputStream* input) final;
  746. void SerializeWithCachedSizes(
  747. ::google::protobuf::io::CodedOutputStream* output) const final;
  748. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  749. bool deterministic, ::google::protobuf::uint8* target) const final;
  750. int GetCachedSize() const final { return _cached_size_.Get(); }
  751. private:
  752. void SharedCtor();
  753. void SharedDtor();
  754. void SetCachedSize(int size) const final;
  755. void InternalSwap(Dispatch_response_msg* other);
  756. private:
  757. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  758. return NULL;
  759. }
  760. inline void* MaybeArenaPtr() const {
  761. return NULL;
  762. }
  763. public:
  764. ::google::protobuf::Metadata GetMetadata() const final;
  765. // nested types ----------------------------------------------------
  766. // accessors -------------------------------------------------------
  767. // repeated .message.Parkspace_info parkspace_info_ex = 6;
  768. int parkspace_info_ex_size() const;
  769. void clear_parkspace_info_ex();
  770. static const int kParkspaceInfoExFieldNumber = 6;
  771. ::message::Parkspace_info* mutable_parkspace_info_ex(int index);
  772. ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >*
  773. mutable_parkspace_info_ex();
  774. const ::message::Parkspace_info& parkspace_info_ex(int index) const;
  775. ::message::Parkspace_info* add_parkspace_info_ex();
  776. const ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >&
  777. parkspace_info_ex() const;
  778. // required string command_key = 2;
  779. bool has_command_key() const;
  780. void clear_command_key();
  781. static const int kCommandKeyFieldNumber = 2;
  782. const ::std::string& command_key() const;
  783. void set_command_key(const ::std::string& value);
  784. #if LANG_CXX11
  785. void set_command_key(::std::string&& value);
  786. #endif
  787. void set_command_key(const char* value);
  788. void set_command_key(const char* value, size_t size);
  789. ::std::string* mutable_command_key();
  790. ::std::string* release_command_key();
  791. void set_allocated_command_key(::std::string* command_key);
  792. // required .message.Base_info base_info = 1;
  793. bool has_base_info() const;
  794. void clear_base_info();
  795. static const int kBaseInfoFieldNumber = 1;
  796. private:
  797. const ::message::Base_info& _internal_base_info() const;
  798. public:
  799. const ::message::Base_info& base_info() const;
  800. ::message::Base_info* release_base_info();
  801. ::message::Base_info* mutable_base_info();
  802. void set_allocated_base_info(::message::Base_info* base_info);
  803. // optional .message.Locate_information locate_information = 5;
  804. bool has_locate_information() const;
  805. void clear_locate_information();
  806. static const int kLocateInformationFieldNumber = 5;
  807. private:
  808. const ::message::Locate_information& _internal_locate_information() const;
  809. public:
  810. const ::message::Locate_information& locate_information() const;
  811. ::message::Locate_information* release_locate_information();
  812. ::message::Locate_information* mutable_locate_information();
  813. void set_allocated_locate_information(::message::Locate_information* locate_information);
  814. // optional .message.Error_manager error_manager = 8;
  815. bool has_error_manager() const;
  816. void clear_error_manager();
  817. static const int kErrorManagerFieldNumber = 8;
  818. private:
  819. const ::message::Error_manager& _internal_error_manager() const;
  820. public:
  821. const ::message::Error_manager& error_manager() const;
  822. ::message::Error_manager* release_error_manager();
  823. ::message::Error_manager* mutable_error_manager();
  824. void set_allocated_error_manager(::message::Error_manager* error_manager);
  825. // optional .message.Dispatch_motion_direction dispatch_motion_direction = 3;
  826. bool has_dispatch_motion_direction() const;
  827. void clear_dispatch_motion_direction();
  828. static const int kDispatchMotionDirectionFieldNumber = 3;
  829. ::message::Dispatch_motion_direction dispatch_motion_direction() const;
  830. void set_dispatch_motion_direction(::message::Dispatch_motion_direction value);
  831. // optional int32 terminal_id = 4;
  832. bool has_terminal_id() const;
  833. void clear_terminal_id();
  834. static const int kTerminalIdFieldNumber = 4;
  835. ::google::protobuf::int32 terminal_id() const;
  836. void set_terminal_id(::google::protobuf::int32 value);
  837. // optional .message.Car_type car_type = 7;
  838. bool has_car_type() const;
  839. void clear_car_type();
  840. static const int kCarTypeFieldNumber = 7;
  841. ::message::Car_type car_type() const;
  842. void set_car_type(::message::Car_type value);
  843. // @@protoc_insertion_point(class_scope:message.Dispatch_response_msg)
  844. private:
  845. void set_has_base_info();
  846. void clear_has_base_info();
  847. void set_has_command_key();
  848. void clear_has_command_key();
  849. void set_has_dispatch_motion_direction();
  850. void clear_has_dispatch_motion_direction();
  851. void set_has_terminal_id();
  852. void clear_has_terminal_id();
  853. void set_has_locate_information();
  854. void clear_has_locate_information();
  855. void set_has_car_type();
  856. void clear_has_car_type();
  857. void set_has_error_manager();
  858. void clear_has_error_manager();
  859. // helper for ByteSizeLong()
  860. size_t RequiredFieldsByteSizeFallback() const;
  861. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  862. ::google::protobuf::internal::HasBits<1> _has_bits_;
  863. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  864. ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info > parkspace_info_ex_;
  865. ::google::protobuf::internal::ArenaStringPtr command_key_;
  866. ::message::Base_info* base_info_;
  867. ::message::Locate_information* locate_information_;
  868. ::message::Error_manager* error_manager_;
  869. int dispatch_motion_direction_;
  870. ::google::protobuf::int32 terminal_id_;
  871. int car_type_;
  872. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  873. };
  874. // -------------------------------------------------------------------
  875. class Catcher_data : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Catcher_data) */ {
  876. public:
  877. Catcher_data();
  878. virtual ~Catcher_data();
  879. Catcher_data(const Catcher_data& from);
  880. inline Catcher_data& operator=(const Catcher_data& from) {
  881. CopyFrom(from);
  882. return *this;
  883. }
  884. #if LANG_CXX11
  885. Catcher_data(Catcher_data&& from) noexcept
  886. : Catcher_data() {
  887. *this = ::std::move(from);
  888. }
  889. inline Catcher_data& operator=(Catcher_data&& from) noexcept {
  890. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  891. if (this != &from) InternalSwap(&from);
  892. } else {
  893. CopyFrom(from);
  894. }
  895. return *this;
  896. }
  897. #endif
  898. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  899. return _internal_metadata_.unknown_fields();
  900. }
  901. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  902. return _internal_metadata_.mutable_unknown_fields();
  903. }
  904. static const ::google::protobuf::Descriptor* descriptor();
  905. static const Catcher_data& default_instance();
  906. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  907. static inline const Catcher_data* internal_default_instance() {
  908. return reinterpret_cast<const Catcher_data*>(
  909. &_Catcher_data_default_instance_);
  910. }
  911. static constexpr int kIndexInFileMessages =
  912. 3;
  913. void Swap(Catcher_data* other);
  914. friend void swap(Catcher_data& a, Catcher_data& b) {
  915. a.Swap(&b);
  916. }
  917. // implements Message ----------------------------------------------
  918. inline Catcher_data* New() const final {
  919. return CreateMaybeMessage<Catcher_data>(NULL);
  920. }
  921. Catcher_data* New(::google::protobuf::Arena* arena) const final {
  922. return CreateMaybeMessage<Catcher_data>(arena);
  923. }
  924. void CopyFrom(const ::google::protobuf::Message& from) final;
  925. void MergeFrom(const ::google::protobuf::Message& from) final;
  926. void CopyFrom(const Catcher_data& from);
  927. void MergeFrom(const Catcher_data& from);
  928. void Clear() final;
  929. bool IsInitialized() const final;
  930. size_t ByteSizeLong() const final;
  931. bool MergePartialFromCodedStream(
  932. ::google::protobuf::io::CodedInputStream* input) final;
  933. void SerializeWithCachedSizes(
  934. ::google::protobuf::io::CodedOutputStream* output) const final;
  935. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  936. bool deterministic, ::google::protobuf::uint8* target) const final;
  937. int GetCachedSize() const final { return _cached_size_.Get(); }
  938. private:
  939. void SharedCtor();
  940. void SharedDtor();
  941. void SetCachedSize(int size) const final;
  942. void InternalSwap(Catcher_data* other);
  943. private:
  944. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  945. return NULL;
  946. }
  947. inline void* MaybeArenaPtr() const {
  948. return NULL;
  949. }
  950. public:
  951. ::google::protobuf::Metadata GetMetadata() const final;
  952. // nested types ----------------------------------------------------
  953. // accessors -------------------------------------------------------
  954. // optional string actual_error_code = 17;
  955. bool has_actual_error_code() const;
  956. void clear_actual_error_code();
  957. static const int kActualErrorCodeFieldNumber = 17;
  958. const ::std::string& actual_error_code() const;
  959. void set_actual_error_code(const ::std::string& value);
  960. #if LANG_CXX11
  961. void set_actual_error_code(::std::string&& value);
  962. #endif
  963. void set_actual_error_code(const char* value);
  964. void set_actual_error_code(const char* value, size_t size);
  965. ::std::string* mutable_actual_error_code();
  966. ::std::string* release_actual_error_code();
  967. void set_allocated_actual_error_code(::std::string* actual_error_code);
  968. // optional string actual_warning_code = 18;
  969. bool has_actual_warning_code() const;
  970. void clear_actual_warning_code();
  971. static const int kActualWarningCodeFieldNumber = 18;
  972. const ::std::string& actual_warning_code() const;
  973. void set_actual_warning_code(const ::std::string& value);
  974. #if LANG_CXX11
  975. void set_actual_warning_code(::std::string&& value);
  976. #endif
  977. void set_actual_warning_code(const char* value);
  978. void set_actual_warning_code(const char* value, size_t size);
  979. ::std::string* mutable_actual_warning_code();
  980. ::std::string* release_actual_warning_code();
  981. void set_allocated_actual_warning_code(::std::string* actual_warning_code);
  982. // optional string actual_error_description = 19;
  983. bool has_actual_error_description() const;
  984. void clear_actual_error_description();
  985. static const int kActualErrorDescriptionFieldNumber = 19;
  986. const ::std::string& actual_error_description() const;
  987. void set_actual_error_description(const ::std::string& value);
  988. #if LANG_CXX11
  989. void set_actual_error_description(::std::string&& value);
  990. #endif
  991. void set_actual_error_description(const char* value);
  992. void set_actual_error_description(const char* value, size_t size);
  993. ::std::string* mutable_actual_error_description();
  994. ::std::string* release_actual_error_description();
  995. void set_allocated_actual_error_description(::std::string* actual_error_description);
  996. // required .message.Dispatch_device_status dispatch_device_status = 2;
  997. bool has_dispatch_device_status() const;
  998. void clear_dispatch_device_status();
  999. static const int kDispatchDeviceStatusFieldNumber = 2;
  1000. ::message::Dispatch_device_status dispatch_device_status() const;
  1001. void set_dispatch_device_status(::message::Dispatch_device_status value);
  1002. // required int32 device_id = 3;
  1003. bool has_device_id() const;
  1004. void clear_device_id();
  1005. static const int kDeviceIdFieldNumber = 3;
  1006. ::google::protobuf::int32 device_id() const;
  1007. void set_device_id(::google::protobuf::int32 value);
  1008. // optional .message.Hardware_device_status actual_device_status = 4;
  1009. bool has_actual_device_status() const;
  1010. void clear_actual_device_status();
  1011. static const int kActualDeviceStatusFieldNumber = 4;
  1012. ::message::Hardware_device_status actual_device_status() const;
  1013. void set_actual_device_status(::message::Hardware_device_status value);
  1014. // optional .message.Load_status actual_load_status = 5;
  1015. bool has_actual_load_status() const;
  1016. void clear_actual_load_status();
  1017. static const int kActualLoadStatusFieldNumber = 5;
  1018. ::message::Load_status actual_load_status() const;
  1019. void set_actual_load_status(::message::Load_status value);
  1020. // optional int32 actual_coordinates_id = 6;
  1021. bool has_actual_coordinates_id() const;
  1022. void clear_actual_coordinates_id();
  1023. static const int kActualCoordinatesIdFieldNumber = 6;
  1024. ::google::protobuf::int32 actual_coordinates_id() const;
  1025. void set_actual_coordinates_id(::google::protobuf::int32 value);
  1026. // optional float actual_x = 7;
  1027. bool has_actual_x() const;
  1028. void clear_actual_x();
  1029. static const int kActualXFieldNumber = 7;
  1030. float actual_x() const;
  1031. void set_actual_x(float value);
  1032. // optional float actual_y = 8;
  1033. bool has_actual_y() const;
  1034. void clear_actual_y();
  1035. static const int kActualYFieldNumber = 8;
  1036. float actual_y() const;
  1037. void set_actual_y(float value);
  1038. // optional float actual_b = 9;
  1039. bool has_actual_b() const;
  1040. void clear_actual_b();
  1041. static const int kActualBFieldNumber = 9;
  1042. float actual_b() const;
  1043. void set_actual_b(float value);
  1044. // optional float actual_z = 10;
  1045. bool has_actual_z() const;
  1046. void clear_actual_z();
  1047. static const int kActualZFieldNumber = 10;
  1048. float actual_z() const;
  1049. void set_actual_z(float value);
  1050. // optional float actual_d1 = 11;
  1051. bool has_actual_d1() const;
  1052. void clear_actual_d1();
  1053. static const int kActualD1FieldNumber = 11;
  1054. float actual_d1() const;
  1055. void set_actual_d1(float value);
  1056. // optional float actual_d2 = 12;
  1057. bool has_actual_d2() const;
  1058. void clear_actual_d2();
  1059. static const int kActualD2FieldNumber = 12;
  1060. float actual_d2() const;
  1061. void set_actual_d2(float value);
  1062. // optional .message.Clamp_motion actual_clamp_motion1 = 13;
  1063. bool has_actual_clamp_motion1() const;
  1064. void clear_actual_clamp_motion1();
  1065. static const int kActualClampMotion1FieldNumber = 13;
  1066. ::message::Clamp_motion actual_clamp_motion1() const;
  1067. void set_actual_clamp_motion1(::message::Clamp_motion value);
  1068. // optional .message.Clamp_motion actual_clamp_motion2 = 14;
  1069. bool has_actual_clamp_motion2() const;
  1070. void clear_actual_clamp_motion2();
  1071. static const int kActualClampMotion2FieldNumber = 14;
  1072. ::message::Clamp_motion actual_clamp_motion2() const;
  1073. void set_actual_clamp_motion2(::message::Clamp_motion value);
  1074. // optional .message.Clamp_motion actual_clamp_motion3 = 15;
  1075. bool has_actual_clamp_motion3() const;
  1076. void clear_actual_clamp_motion3();
  1077. static const int kActualClampMotion3FieldNumber = 15;
  1078. ::message::Clamp_motion actual_clamp_motion3() const;
  1079. void set_actual_clamp_motion3(::message::Clamp_motion value);
  1080. // optional .message.Clamp_motion actual_clamp_motion4 = 16;
  1081. bool has_actual_clamp_motion4() const;
  1082. void clear_actual_clamp_motion4();
  1083. static const int kActualClampMotion4FieldNumber = 16;
  1084. ::message::Clamp_motion actual_clamp_motion4() const;
  1085. void set_actual_clamp_motion4(::message::Clamp_motion value);
  1086. // required .message.Dispatch_device_type dispatch_device_type = 1;
  1087. bool has_dispatch_device_type() const;
  1088. void clear_dispatch_device_type();
  1089. static const int kDispatchDeviceTypeFieldNumber = 1;
  1090. ::message::Dispatch_device_type dispatch_device_type() const;
  1091. void set_dispatch_device_type(::message::Dispatch_device_type value);
  1092. // @@protoc_insertion_point(class_scope:message.Catcher_data)
  1093. private:
  1094. void set_has_dispatch_device_type();
  1095. void clear_has_dispatch_device_type();
  1096. void set_has_dispatch_device_status();
  1097. void clear_has_dispatch_device_status();
  1098. void set_has_device_id();
  1099. void clear_has_device_id();
  1100. void set_has_actual_device_status();
  1101. void clear_has_actual_device_status();
  1102. void set_has_actual_load_status();
  1103. void clear_has_actual_load_status();
  1104. void set_has_actual_coordinates_id();
  1105. void clear_has_actual_coordinates_id();
  1106. void set_has_actual_x();
  1107. void clear_has_actual_x();
  1108. void set_has_actual_y();
  1109. void clear_has_actual_y();
  1110. void set_has_actual_b();
  1111. void clear_has_actual_b();
  1112. void set_has_actual_z();
  1113. void clear_has_actual_z();
  1114. void set_has_actual_d1();
  1115. void clear_has_actual_d1();
  1116. void set_has_actual_d2();
  1117. void clear_has_actual_d2();
  1118. void set_has_actual_clamp_motion1();
  1119. void clear_has_actual_clamp_motion1();
  1120. void set_has_actual_clamp_motion2();
  1121. void clear_has_actual_clamp_motion2();
  1122. void set_has_actual_clamp_motion3();
  1123. void clear_has_actual_clamp_motion3();
  1124. void set_has_actual_clamp_motion4();
  1125. void clear_has_actual_clamp_motion4();
  1126. void set_has_actual_error_code();
  1127. void clear_has_actual_error_code();
  1128. void set_has_actual_warning_code();
  1129. void clear_has_actual_warning_code();
  1130. void set_has_actual_error_description();
  1131. void clear_has_actual_error_description();
  1132. // helper for ByteSizeLong()
  1133. size_t RequiredFieldsByteSizeFallback() const;
  1134. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1135. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1136. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1137. ::google::protobuf::internal::ArenaStringPtr actual_error_code_;
  1138. ::google::protobuf::internal::ArenaStringPtr actual_warning_code_;
  1139. ::google::protobuf::internal::ArenaStringPtr actual_error_description_;
  1140. int dispatch_device_status_;
  1141. ::google::protobuf::int32 device_id_;
  1142. int actual_device_status_;
  1143. int actual_load_status_;
  1144. ::google::protobuf::int32 actual_coordinates_id_;
  1145. float actual_x_;
  1146. float actual_y_;
  1147. float actual_b_;
  1148. float actual_z_;
  1149. float actual_d1_;
  1150. float actual_d2_;
  1151. int actual_clamp_motion1_;
  1152. int actual_clamp_motion2_;
  1153. int actual_clamp_motion3_;
  1154. int actual_clamp_motion4_;
  1155. int dispatch_device_type_;
  1156. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  1157. };
  1158. // -------------------------------------------------------------------
  1159. class Carrier_data : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Carrier_data) */ {
  1160. public:
  1161. Carrier_data();
  1162. virtual ~Carrier_data();
  1163. Carrier_data(const Carrier_data& from);
  1164. inline Carrier_data& operator=(const Carrier_data& from) {
  1165. CopyFrom(from);
  1166. return *this;
  1167. }
  1168. #if LANG_CXX11
  1169. Carrier_data(Carrier_data&& from) noexcept
  1170. : Carrier_data() {
  1171. *this = ::std::move(from);
  1172. }
  1173. inline Carrier_data& operator=(Carrier_data&& from) noexcept {
  1174. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1175. if (this != &from) InternalSwap(&from);
  1176. } else {
  1177. CopyFrom(from);
  1178. }
  1179. return *this;
  1180. }
  1181. #endif
  1182. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1183. return _internal_metadata_.unknown_fields();
  1184. }
  1185. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1186. return _internal_metadata_.mutable_unknown_fields();
  1187. }
  1188. static const ::google::protobuf::Descriptor* descriptor();
  1189. static const Carrier_data& default_instance();
  1190. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1191. static inline const Carrier_data* internal_default_instance() {
  1192. return reinterpret_cast<const Carrier_data*>(
  1193. &_Carrier_data_default_instance_);
  1194. }
  1195. static constexpr int kIndexInFileMessages =
  1196. 4;
  1197. void Swap(Carrier_data* other);
  1198. friend void swap(Carrier_data& a, Carrier_data& b) {
  1199. a.Swap(&b);
  1200. }
  1201. // implements Message ----------------------------------------------
  1202. inline Carrier_data* New() const final {
  1203. return CreateMaybeMessage<Carrier_data>(NULL);
  1204. }
  1205. Carrier_data* New(::google::protobuf::Arena* arena) const final {
  1206. return CreateMaybeMessage<Carrier_data>(arena);
  1207. }
  1208. void CopyFrom(const ::google::protobuf::Message& from) final;
  1209. void MergeFrom(const ::google::protobuf::Message& from) final;
  1210. void CopyFrom(const Carrier_data& from);
  1211. void MergeFrom(const Carrier_data& from);
  1212. void Clear() final;
  1213. bool IsInitialized() const final;
  1214. size_t ByteSizeLong() const final;
  1215. bool MergePartialFromCodedStream(
  1216. ::google::protobuf::io::CodedInputStream* input) final;
  1217. void SerializeWithCachedSizes(
  1218. ::google::protobuf::io::CodedOutputStream* output) const final;
  1219. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1220. bool deterministic, ::google::protobuf::uint8* target) const final;
  1221. int GetCachedSize() const final { return _cached_size_.Get(); }
  1222. private:
  1223. void SharedCtor();
  1224. void SharedDtor();
  1225. void SetCachedSize(int size) const final;
  1226. void InternalSwap(Carrier_data* other);
  1227. private:
  1228. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1229. return NULL;
  1230. }
  1231. inline void* MaybeArenaPtr() const {
  1232. return NULL;
  1233. }
  1234. public:
  1235. ::google::protobuf::Metadata GetMetadata() const final;
  1236. // nested types ----------------------------------------------------
  1237. // accessors -------------------------------------------------------
  1238. // optional string actual_error_code = 17;
  1239. bool has_actual_error_code() const;
  1240. void clear_actual_error_code();
  1241. static const int kActualErrorCodeFieldNumber = 17;
  1242. const ::std::string& actual_error_code() const;
  1243. void set_actual_error_code(const ::std::string& value);
  1244. #if LANG_CXX11
  1245. void set_actual_error_code(::std::string&& value);
  1246. #endif
  1247. void set_actual_error_code(const char* value);
  1248. void set_actual_error_code(const char* value, size_t size);
  1249. ::std::string* mutable_actual_error_code();
  1250. ::std::string* release_actual_error_code();
  1251. void set_allocated_actual_error_code(::std::string* actual_error_code);
  1252. // optional string actual_warning_code = 18;
  1253. bool has_actual_warning_code() const;
  1254. void clear_actual_warning_code();
  1255. static const int kActualWarningCodeFieldNumber = 18;
  1256. const ::std::string& actual_warning_code() const;
  1257. void set_actual_warning_code(const ::std::string& value);
  1258. #if LANG_CXX11
  1259. void set_actual_warning_code(::std::string&& value);
  1260. #endif
  1261. void set_actual_warning_code(const char* value);
  1262. void set_actual_warning_code(const char* value, size_t size);
  1263. ::std::string* mutable_actual_warning_code();
  1264. ::std::string* release_actual_warning_code();
  1265. void set_allocated_actual_warning_code(::std::string* actual_warning_code);
  1266. // optional string actual_error_description = 19;
  1267. bool has_actual_error_description() const;
  1268. void clear_actual_error_description();
  1269. static const int kActualErrorDescriptionFieldNumber = 19;
  1270. const ::std::string& actual_error_description() const;
  1271. void set_actual_error_description(const ::std::string& value);
  1272. #if LANG_CXX11
  1273. void set_actual_error_description(::std::string&& value);
  1274. #endif
  1275. void set_actual_error_description(const char* value);
  1276. void set_actual_error_description(const char* value, size_t size);
  1277. ::std::string* mutable_actual_error_description();
  1278. ::std::string* release_actual_error_description();
  1279. void set_allocated_actual_error_description(::std::string* actual_error_description);
  1280. // required .message.Dispatch_device_status dispatch_device_status = 2;
  1281. bool has_dispatch_device_status() const;
  1282. void clear_dispatch_device_status();
  1283. static const int kDispatchDeviceStatusFieldNumber = 2;
  1284. ::message::Dispatch_device_status dispatch_device_status() const;
  1285. void set_dispatch_device_status(::message::Dispatch_device_status value);
  1286. // required int32 device_id = 3;
  1287. bool has_device_id() const;
  1288. void clear_device_id();
  1289. static const int kDeviceIdFieldNumber = 3;
  1290. ::google::protobuf::int32 device_id() const;
  1291. void set_device_id(::google::protobuf::int32 value);
  1292. // optional .message.Hardware_device_status actual_device_status = 4;
  1293. bool has_actual_device_status() const;
  1294. void clear_actual_device_status();
  1295. static const int kActualDeviceStatusFieldNumber = 4;
  1296. ::message::Hardware_device_status actual_device_status() const;
  1297. void set_actual_device_status(::message::Hardware_device_status value);
  1298. // optional .message.Load_status actual_load_status = 5;
  1299. bool has_actual_load_status() const;
  1300. void clear_actual_load_status();
  1301. static const int kActualLoadStatusFieldNumber = 5;
  1302. ::message::Load_status actual_load_status() const;
  1303. void set_actual_load_status(::message::Load_status value);
  1304. // optional int32 actual_coordinates_id = 6;
  1305. bool has_actual_coordinates_id() const;
  1306. void clear_actual_coordinates_id();
  1307. static const int kActualCoordinatesIdFieldNumber = 6;
  1308. ::google::protobuf::int32 actual_coordinates_id() const;
  1309. void set_actual_coordinates_id(::google::protobuf::int32 value);
  1310. // optional float actual_x = 7;
  1311. bool has_actual_x() const;
  1312. void clear_actual_x();
  1313. static const int kActualXFieldNumber = 7;
  1314. float actual_x() const;
  1315. void set_actual_x(float value);
  1316. // optional float actual_y = 8;
  1317. bool has_actual_y() const;
  1318. void clear_actual_y();
  1319. static const int kActualYFieldNumber = 8;
  1320. float actual_y() const;
  1321. void set_actual_y(float value);
  1322. // optional float actual_z = 9;
  1323. bool has_actual_z() const;
  1324. void clear_actual_z();
  1325. static const int kActualZFieldNumber = 9;
  1326. float actual_z() const;
  1327. void set_actual_z(float value);
  1328. // optional float actual_y1 = 10;
  1329. bool has_actual_y1() const;
  1330. void clear_actual_y1();
  1331. static const int kActualY1FieldNumber = 10;
  1332. float actual_y1() const;
  1333. void set_actual_y1(float value);
  1334. // optional float actual_y2 = 11;
  1335. bool has_actual_y2() const;
  1336. void clear_actual_y2();
  1337. static const int kActualY2FieldNumber = 11;
  1338. float actual_y2() const;
  1339. void set_actual_y2(float value);
  1340. // optional .message.Clamp_motion actual_clamp_motion1 = 12;
  1341. bool has_actual_clamp_motion1() const;
  1342. void clear_actual_clamp_motion1();
  1343. static const int kActualClampMotion1FieldNumber = 12;
  1344. ::message::Clamp_motion actual_clamp_motion1() const;
  1345. void set_actual_clamp_motion1(::message::Clamp_motion value);
  1346. // optional .message.Clamp_motion actual_clamp_motion2 = 13;
  1347. bool has_actual_clamp_motion2() const;
  1348. void clear_actual_clamp_motion2();
  1349. static const int kActualClampMotion2FieldNumber = 13;
  1350. ::message::Clamp_motion actual_clamp_motion2() const;
  1351. void set_actual_clamp_motion2(::message::Clamp_motion value);
  1352. // optional .message.Small_sports_car_motion actual_small_sports_car_motion = 14;
  1353. bool has_actual_small_sports_car_motion() const;
  1354. void clear_actual_small_sports_car_motion();
  1355. static const int kActualSmallSportsCarMotionFieldNumber = 14;
  1356. ::message::Small_sports_car_motion actual_small_sports_car_motion() const;
  1357. void set_actual_small_sports_car_motion(::message::Small_sports_car_motion value);
  1358. // optional .message.Joint_motion actual_joint_motion_x1 = 15;
  1359. bool has_actual_joint_motion_x1() const;
  1360. void clear_actual_joint_motion_x1();
  1361. static const int kActualJointMotionX1FieldNumber = 15;
  1362. ::message::Joint_motion actual_joint_motion_x1() const;
  1363. void set_actual_joint_motion_x1(::message::Joint_motion value);
  1364. // optional .message.Joint_motion actual_joint_motion_x2 = 16;
  1365. bool has_actual_joint_motion_x2() const;
  1366. void clear_actual_joint_motion_x2();
  1367. static const int kActualJointMotionX2FieldNumber = 16;
  1368. ::message::Joint_motion actual_joint_motion_x2() const;
  1369. void set_actual_joint_motion_x2(::message::Joint_motion value);
  1370. // required .message.Dispatch_device_type dispatch_device_type = 1;
  1371. bool has_dispatch_device_type() const;
  1372. void clear_dispatch_device_type();
  1373. static const int kDispatchDeviceTypeFieldNumber = 1;
  1374. ::message::Dispatch_device_type dispatch_device_type() const;
  1375. void set_dispatch_device_type(::message::Dispatch_device_type value);
  1376. // @@protoc_insertion_point(class_scope:message.Carrier_data)
  1377. private:
  1378. void set_has_dispatch_device_type();
  1379. void clear_has_dispatch_device_type();
  1380. void set_has_dispatch_device_status();
  1381. void clear_has_dispatch_device_status();
  1382. void set_has_device_id();
  1383. void clear_has_device_id();
  1384. void set_has_actual_device_status();
  1385. void clear_has_actual_device_status();
  1386. void set_has_actual_load_status();
  1387. void clear_has_actual_load_status();
  1388. void set_has_actual_coordinates_id();
  1389. void clear_has_actual_coordinates_id();
  1390. void set_has_actual_x();
  1391. void clear_has_actual_x();
  1392. void set_has_actual_y();
  1393. void clear_has_actual_y();
  1394. void set_has_actual_z();
  1395. void clear_has_actual_z();
  1396. void set_has_actual_y1();
  1397. void clear_has_actual_y1();
  1398. void set_has_actual_y2();
  1399. void clear_has_actual_y2();
  1400. void set_has_actual_clamp_motion1();
  1401. void clear_has_actual_clamp_motion1();
  1402. void set_has_actual_clamp_motion2();
  1403. void clear_has_actual_clamp_motion2();
  1404. void set_has_actual_small_sports_car_motion();
  1405. void clear_has_actual_small_sports_car_motion();
  1406. void set_has_actual_joint_motion_x1();
  1407. void clear_has_actual_joint_motion_x1();
  1408. void set_has_actual_joint_motion_x2();
  1409. void clear_has_actual_joint_motion_x2();
  1410. void set_has_actual_error_code();
  1411. void clear_has_actual_error_code();
  1412. void set_has_actual_warning_code();
  1413. void clear_has_actual_warning_code();
  1414. void set_has_actual_error_description();
  1415. void clear_has_actual_error_description();
  1416. // helper for ByteSizeLong()
  1417. size_t RequiredFieldsByteSizeFallback() const;
  1418. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1419. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1420. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1421. ::google::protobuf::internal::ArenaStringPtr actual_error_code_;
  1422. ::google::protobuf::internal::ArenaStringPtr actual_warning_code_;
  1423. ::google::protobuf::internal::ArenaStringPtr actual_error_description_;
  1424. int dispatch_device_status_;
  1425. ::google::protobuf::int32 device_id_;
  1426. int actual_device_status_;
  1427. int actual_load_status_;
  1428. ::google::protobuf::int32 actual_coordinates_id_;
  1429. float actual_x_;
  1430. float actual_y_;
  1431. float actual_z_;
  1432. float actual_y1_;
  1433. float actual_y2_;
  1434. int actual_clamp_motion1_;
  1435. int actual_clamp_motion2_;
  1436. int actual_small_sports_car_motion_;
  1437. int actual_joint_motion_x1_;
  1438. int actual_joint_motion_x2_;
  1439. int dispatch_device_type_;
  1440. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  1441. };
  1442. // -------------------------------------------------------------------
  1443. class Passageway_data : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Passageway_data) */ {
  1444. public:
  1445. Passageway_data();
  1446. virtual ~Passageway_data();
  1447. Passageway_data(const Passageway_data& from);
  1448. inline Passageway_data& operator=(const Passageway_data& from) {
  1449. CopyFrom(from);
  1450. return *this;
  1451. }
  1452. #if LANG_CXX11
  1453. Passageway_data(Passageway_data&& from) noexcept
  1454. : Passageway_data() {
  1455. *this = ::std::move(from);
  1456. }
  1457. inline Passageway_data& operator=(Passageway_data&& from) noexcept {
  1458. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1459. if (this != &from) InternalSwap(&from);
  1460. } else {
  1461. CopyFrom(from);
  1462. }
  1463. return *this;
  1464. }
  1465. #endif
  1466. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1467. return _internal_metadata_.unknown_fields();
  1468. }
  1469. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1470. return _internal_metadata_.mutable_unknown_fields();
  1471. }
  1472. static const ::google::protobuf::Descriptor* descriptor();
  1473. static const Passageway_data& default_instance();
  1474. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1475. static inline const Passageway_data* internal_default_instance() {
  1476. return reinterpret_cast<const Passageway_data*>(
  1477. &_Passageway_data_default_instance_);
  1478. }
  1479. static constexpr int kIndexInFileMessages =
  1480. 5;
  1481. void Swap(Passageway_data* other);
  1482. friend void swap(Passageway_data& a, Passageway_data& b) {
  1483. a.Swap(&b);
  1484. }
  1485. // implements Message ----------------------------------------------
  1486. inline Passageway_data* New() const final {
  1487. return CreateMaybeMessage<Passageway_data>(NULL);
  1488. }
  1489. Passageway_data* New(::google::protobuf::Arena* arena) const final {
  1490. return CreateMaybeMessage<Passageway_data>(arena);
  1491. }
  1492. void CopyFrom(const ::google::protobuf::Message& from) final;
  1493. void MergeFrom(const ::google::protobuf::Message& from) final;
  1494. void CopyFrom(const Passageway_data& from);
  1495. void MergeFrom(const Passageway_data& from);
  1496. void Clear() final;
  1497. bool IsInitialized() const final;
  1498. size_t ByteSizeLong() const final;
  1499. bool MergePartialFromCodedStream(
  1500. ::google::protobuf::io::CodedInputStream* input) final;
  1501. void SerializeWithCachedSizes(
  1502. ::google::protobuf::io::CodedOutputStream* output) const final;
  1503. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1504. bool deterministic, ::google::protobuf::uint8* target) const final;
  1505. int GetCachedSize() const final { return _cached_size_.Get(); }
  1506. private:
  1507. void SharedCtor();
  1508. void SharedDtor();
  1509. void SetCachedSize(int size) const final;
  1510. void InternalSwap(Passageway_data* other);
  1511. private:
  1512. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1513. return NULL;
  1514. }
  1515. inline void* MaybeArenaPtr() const {
  1516. return NULL;
  1517. }
  1518. public:
  1519. ::google::protobuf::Metadata GetMetadata() const final;
  1520. // nested types ----------------------------------------------------
  1521. // accessors -------------------------------------------------------
  1522. // optional string actual_error_code = 15;
  1523. bool has_actual_error_code() const;
  1524. void clear_actual_error_code();
  1525. static const int kActualErrorCodeFieldNumber = 15;
  1526. const ::std::string& actual_error_code() const;
  1527. void set_actual_error_code(const ::std::string& value);
  1528. #if LANG_CXX11
  1529. void set_actual_error_code(::std::string&& value);
  1530. #endif
  1531. void set_actual_error_code(const char* value);
  1532. void set_actual_error_code(const char* value, size_t size);
  1533. ::std::string* mutable_actual_error_code();
  1534. ::std::string* release_actual_error_code();
  1535. void set_allocated_actual_error_code(::std::string* actual_error_code);
  1536. // optional string actual_warning_code = 16;
  1537. bool has_actual_warning_code() const;
  1538. void clear_actual_warning_code();
  1539. static const int kActualWarningCodeFieldNumber = 16;
  1540. const ::std::string& actual_warning_code() const;
  1541. void set_actual_warning_code(const ::std::string& value);
  1542. #if LANG_CXX11
  1543. void set_actual_warning_code(::std::string&& value);
  1544. #endif
  1545. void set_actual_warning_code(const char* value);
  1546. void set_actual_warning_code(const char* value, size_t size);
  1547. ::std::string* mutable_actual_warning_code();
  1548. ::std::string* release_actual_warning_code();
  1549. void set_allocated_actual_warning_code(::std::string* actual_warning_code);
  1550. // optional string actual_error_description = 17;
  1551. bool has_actual_error_description() const;
  1552. void clear_actual_error_description();
  1553. static const int kActualErrorDescriptionFieldNumber = 17;
  1554. const ::std::string& actual_error_description() const;
  1555. void set_actual_error_description(const ::std::string& value);
  1556. #if LANG_CXX11
  1557. void set_actual_error_description(::std::string&& value);
  1558. #endif
  1559. void set_actual_error_description(const char* value);
  1560. void set_actual_error_description(const char* value, size_t size);
  1561. ::std::string* mutable_actual_error_description();
  1562. ::std::string* release_actual_error_description();
  1563. void set_allocated_actual_error_description(::std::string* actual_error_description);
  1564. // required .message.Dispatch_device_status dispatch_device_status = 2;
  1565. bool has_dispatch_device_status() const;
  1566. void clear_dispatch_device_status();
  1567. static const int kDispatchDeviceStatusFieldNumber = 2;
  1568. ::message::Dispatch_device_status dispatch_device_status() const;
  1569. void set_dispatch_device_status(::message::Dispatch_device_status value);
  1570. // required int32 device_id = 3;
  1571. bool has_device_id() const;
  1572. void clear_device_id();
  1573. static const int kDeviceIdFieldNumber = 3;
  1574. ::google::protobuf::int32 device_id() const;
  1575. void set_device_id(::google::protobuf::int32 value);
  1576. // optional .message.Hardware_device_status actual_device_status = 4;
  1577. bool has_actual_device_status() const;
  1578. void clear_actual_device_status();
  1579. static const int kActualDeviceStatusFieldNumber = 4;
  1580. ::message::Hardware_device_status actual_device_status() const;
  1581. void set_actual_device_status(::message::Hardware_device_status value);
  1582. // optional .message.Load_status actual_inside_load_status = 5;
  1583. bool has_actual_inside_load_status() const;
  1584. void clear_actual_inside_load_status();
  1585. static const int kActualInsideLoadStatusFieldNumber = 5;
  1586. ::message::Load_status actual_inside_load_status() const;
  1587. void set_actual_inside_load_status(::message::Load_status value);
  1588. // optional .message.Load_status actual_outside_load_status = 6;
  1589. bool has_actual_outside_load_status() const;
  1590. void clear_actual_outside_load_status();
  1591. static const int kActualOutsideLoadStatusFieldNumber = 6;
  1592. ::message::Load_status actual_outside_load_status() const;
  1593. void set_actual_outside_load_status(::message::Load_status value);
  1594. // optional .message.Overstep_the_boundary actual_front_overstep_the_boundary = 7;
  1595. bool has_actual_front_overstep_the_boundary() const;
  1596. void clear_actual_front_overstep_the_boundary();
  1597. static const int kActualFrontOverstepTheBoundaryFieldNumber = 7;
  1598. ::message::Overstep_the_boundary actual_front_overstep_the_boundary() const;
  1599. void set_actual_front_overstep_the_boundary(::message::Overstep_the_boundary value);
  1600. // optional .message.Overstep_the_boundary actual_back_overstep_the_boundary = 8;
  1601. bool has_actual_back_overstep_the_boundary() const;
  1602. void clear_actual_back_overstep_the_boundary();
  1603. static const int kActualBackOverstepTheBoundaryFieldNumber = 8;
  1604. ::message::Overstep_the_boundary actual_back_overstep_the_boundary() const;
  1605. void set_actual_back_overstep_the_boundary(::message::Overstep_the_boundary value);
  1606. // optional .message.Overstep_the_boundary actual_height_overstep_the_boundary = 9;
  1607. bool has_actual_height_overstep_the_boundary() const;
  1608. void clear_actual_height_overstep_the_boundary();
  1609. static const int kActualHeightOverstepTheBoundaryFieldNumber = 9;
  1610. ::message::Overstep_the_boundary actual_height_overstep_the_boundary() const;
  1611. void set_actual_height_overstep_the_boundary(::message::Overstep_the_boundary value);
  1612. // optional .message.Load_status actual_outside_door_sensor = 10;
  1613. bool has_actual_outside_door_sensor() const;
  1614. void clear_actual_outside_door_sensor();
  1615. static const int kActualOutsideDoorSensorFieldNumber = 10;
  1616. ::message::Load_status actual_outside_door_sensor() const;
  1617. void set_actual_outside_door_sensor(::message::Load_status value);
  1618. // optional .message.Door_motion actual_inside_door_motion = 11;
  1619. bool has_actual_inside_door_motion() const;
  1620. void clear_actual_inside_door_motion();
  1621. static const int kActualInsideDoorMotionFieldNumber = 11;
  1622. ::message::Door_motion actual_inside_door_motion() const;
  1623. void set_actual_inside_door_motion(::message::Door_motion value);
  1624. // optional .message.Door_motion actual_outside_door_motion = 12;
  1625. bool has_actual_outside_door_motion() const;
  1626. void clear_actual_outside_door_motion();
  1627. static const int kActualOutsideDoorMotionFieldNumber = 12;
  1628. ::message::Door_motion actual_outside_door_motion() const;
  1629. void set_actual_outside_door_motion(::message::Door_motion value);
  1630. // optional .message.Load_status actual_turntable_load_status = 13;
  1631. bool has_actual_turntable_load_status() const;
  1632. void clear_actual_turntable_load_status();
  1633. static const int kActualTurntableLoadStatusFieldNumber = 13;
  1634. ::message::Load_status actual_turntable_load_status() const;
  1635. void set_actual_turntable_load_status(::message::Load_status value);
  1636. // optional .message.Turntable_direction actual_turntable_direction = 14;
  1637. bool has_actual_turntable_direction() const;
  1638. void clear_actual_turntable_direction();
  1639. static const int kActualTurntableDirectionFieldNumber = 14;
  1640. ::message::Turntable_direction actual_turntable_direction() const;
  1641. void set_actual_turntable_direction(::message::Turntable_direction value);
  1642. // required .message.Dispatch_device_type dispatch_device_type = 1;
  1643. bool has_dispatch_device_type() const;
  1644. void clear_dispatch_device_type();
  1645. static const int kDispatchDeviceTypeFieldNumber = 1;
  1646. ::message::Dispatch_device_type dispatch_device_type() const;
  1647. void set_dispatch_device_type(::message::Dispatch_device_type value);
  1648. // @@protoc_insertion_point(class_scope:message.Passageway_data)
  1649. private:
  1650. void set_has_dispatch_device_type();
  1651. void clear_has_dispatch_device_type();
  1652. void set_has_dispatch_device_status();
  1653. void clear_has_dispatch_device_status();
  1654. void set_has_device_id();
  1655. void clear_has_device_id();
  1656. void set_has_actual_device_status();
  1657. void clear_has_actual_device_status();
  1658. void set_has_actual_inside_load_status();
  1659. void clear_has_actual_inside_load_status();
  1660. void set_has_actual_outside_load_status();
  1661. void clear_has_actual_outside_load_status();
  1662. void set_has_actual_front_overstep_the_boundary();
  1663. void clear_has_actual_front_overstep_the_boundary();
  1664. void set_has_actual_back_overstep_the_boundary();
  1665. void clear_has_actual_back_overstep_the_boundary();
  1666. void set_has_actual_height_overstep_the_boundary();
  1667. void clear_has_actual_height_overstep_the_boundary();
  1668. void set_has_actual_outside_door_sensor();
  1669. void clear_has_actual_outside_door_sensor();
  1670. void set_has_actual_inside_door_motion();
  1671. void clear_has_actual_inside_door_motion();
  1672. void set_has_actual_outside_door_motion();
  1673. void clear_has_actual_outside_door_motion();
  1674. void set_has_actual_turntable_load_status();
  1675. void clear_has_actual_turntable_load_status();
  1676. void set_has_actual_turntable_direction();
  1677. void clear_has_actual_turntable_direction();
  1678. void set_has_actual_error_code();
  1679. void clear_has_actual_error_code();
  1680. void set_has_actual_warning_code();
  1681. void clear_has_actual_warning_code();
  1682. void set_has_actual_error_description();
  1683. void clear_has_actual_error_description();
  1684. // helper for ByteSizeLong()
  1685. size_t RequiredFieldsByteSizeFallback() const;
  1686. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1687. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1688. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1689. ::google::protobuf::internal::ArenaStringPtr actual_error_code_;
  1690. ::google::protobuf::internal::ArenaStringPtr actual_warning_code_;
  1691. ::google::protobuf::internal::ArenaStringPtr actual_error_description_;
  1692. int dispatch_device_status_;
  1693. ::google::protobuf::int32 device_id_;
  1694. int actual_device_status_;
  1695. int actual_inside_load_status_;
  1696. int actual_outside_load_status_;
  1697. int actual_front_overstep_the_boundary_;
  1698. int actual_back_overstep_the_boundary_;
  1699. int actual_height_overstep_the_boundary_;
  1700. int actual_outside_door_sensor_;
  1701. int actual_inside_door_motion_;
  1702. int actual_outside_door_motion_;
  1703. int actual_turntable_load_status_;
  1704. int actual_turntable_direction_;
  1705. int dispatch_device_type_;
  1706. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  1707. };
  1708. // -------------------------------------------------------------------
  1709. class Dispatch_manager_status_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_manager_status_msg) */ {
  1710. public:
  1711. Dispatch_manager_status_msg();
  1712. virtual ~Dispatch_manager_status_msg();
  1713. Dispatch_manager_status_msg(const Dispatch_manager_status_msg& from);
  1714. inline Dispatch_manager_status_msg& operator=(const Dispatch_manager_status_msg& from) {
  1715. CopyFrom(from);
  1716. return *this;
  1717. }
  1718. #if LANG_CXX11
  1719. Dispatch_manager_status_msg(Dispatch_manager_status_msg&& from) noexcept
  1720. : Dispatch_manager_status_msg() {
  1721. *this = ::std::move(from);
  1722. }
  1723. inline Dispatch_manager_status_msg& operator=(Dispatch_manager_status_msg&& from) noexcept {
  1724. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1725. if (this != &from) InternalSwap(&from);
  1726. } else {
  1727. CopyFrom(from);
  1728. }
  1729. return *this;
  1730. }
  1731. #endif
  1732. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1733. return _internal_metadata_.unknown_fields();
  1734. }
  1735. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1736. return _internal_metadata_.mutable_unknown_fields();
  1737. }
  1738. static const ::google::protobuf::Descriptor* descriptor();
  1739. static const Dispatch_manager_status_msg& default_instance();
  1740. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1741. static inline const Dispatch_manager_status_msg* internal_default_instance() {
  1742. return reinterpret_cast<const Dispatch_manager_status_msg*>(
  1743. &_Dispatch_manager_status_msg_default_instance_);
  1744. }
  1745. static constexpr int kIndexInFileMessages =
  1746. 6;
  1747. void Swap(Dispatch_manager_status_msg* other);
  1748. friend void swap(Dispatch_manager_status_msg& a, Dispatch_manager_status_msg& b) {
  1749. a.Swap(&b);
  1750. }
  1751. // implements Message ----------------------------------------------
  1752. inline Dispatch_manager_status_msg* New() const final {
  1753. return CreateMaybeMessage<Dispatch_manager_status_msg>(NULL);
  1754. }
  1755. Dispatch_manager_status_msg* New(::google::protobuf::Arena* arena) const final {
  1756. return CreateMaybeMessage<Dispatch_manager_status_msg>(arena);
  1757. }
  1758. void CopyFrom(const ::google::protobuf::Message& from) final;
  1759. void MergeFrom(const ::google::protobuf::Message& from) final;
  1760. void CopyFrom(const Dispatch_manager_status_msg& from);
  1761. void MergeFrom(const Dispatch_manager_status_msg& from);
  1762. void Clear() final;
  1763. bool IsInitialized() const final;
  1764. size_t ByteSizeLong() const final;
  1765. bool MergePartialFromCodedStream(
  1766. ::google::protobuf::io::CodedInputStream* input) final;
  1767. void SerializeWithCachedSizes(
  1768. ::google::protobuf::io::CodedOutputStream* output) const final;
  1769. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1770. bool deterministic, ::google::protobuf::uint8* target) const final;
  1771. int GetCachedSize() const final { return _cached_size_.Get(); }
  1772. private:
  1773. void SharedCtor();
  1774. void SharedDtor();
  1775. void SetCachedSize(int size) const final;
  1776. void InternalSwap(Dispatch_manager_status_msg* other);
  1777. private:
  1778. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1779. return NULL;
  1780. }
  1781. inline void* MaybeArenaPtr() const {
  1782. return NULL;
  1783. }
  1784. public:
  1785. ::google::protobuf::Metadata GetMetadata() const final;
  1786. // nested types ----------------------------------------------------
  1787. // accessors -------------------------------------------------------
  1788. // repeated .message.Catcher_data catcher_data_map = 4;
  1789. int catcher_data_map_size() const;
  1790. void clear_catcher_data_map();
  1791. static const int kCatcherDataMapFieldNumber = 4;
  1792. ::message::Catcher_data* mutable_catcher_data_map(int index);
  1793. ::google::protobuf::RepeatedPtrField< ::message::Catcher_data >*
  1794. mutable_catcher_data_map();
  1795. const ::message::Catcher_data& catcher_data_map(int index) const;
  1796. ::message::Catcher_data* add_catcher_data_map();
  1797. const ::google::protobuf::RepeatedPtrField< ::message::Catcher_data >&
  1798. catcher_data_map() const;
  1799. // repeated .message.Carrier_data carrier_data_map = 5;
  1800. int carrier_data_map_size() const;
  1801. void clear_carrier_data_map();
  1802. static const int kCarrierDataMapFieldNumber = 5;
  1803. ::message::Carrier_data* mutable_carrier_data_map(int index);
  1804. ::google::protobuf::RepeatedPtrField< ::message::Carrier_data >*
  1805. mutable_carrier_data_map();
  1806. const ::message::Carrier_data& carrier_data_map(int index) const;
  1807. ::message::Carrier_data* add_carrier_data_map();
  1808. const ::google::protobuf::RepeatedPtrField< ::message::Carrier_data >&
  1809. carrier_data_map() const;
  1810. // repeated .message.Passageway_data passageway_data_map = 6;
  1811. int passageway_data_map_size() const;
  1812. void clear_passageway_data_map();
  1813. static const int kPassagewayDataMapFieldNumber = 6;
  1814. ::message::Passageway_data* mutable_passageway_data_map(int index);
  1815. ::google::protobuf::RepeatedPtrField< ::message::Passageway_data >*
  1816. mutable_passageway_data_map();
  1817. const ::message::Passageway_data& passageway_data_map(int index) const;
  1818. ::message::Passageway_data* add_passageway_data_map();
  1819. const ::google::protobuf::RepeatedPtrField< ::message::Passageway_data >&
  1820. passageway_data_map() const;
  1821. // required .message.Base_info base_info = 1;
  1822. bool has_base_info() const;
  1823. void clear_base_info();
  1824. static const int kBaseInfoFieldNumber = 1;
  1825. private:
  1826. const ::message::Base_info& _internal_base_info() const;
  1827. public:
  1828. const ::message::Base_info& base_info() const;
  1829. ::message::Base_info* release_base_info();
  1830. ::message::Base_info* mutable_base_info();
  1831. void set_allocated_base_info(::message::Base_info* base_info);
  1832. // required int32 dispatch_id = 2;
  1833. bool has_dispatch_id() const;
  1834. void clear_dispatch_id();
  1835. static const int kDispatchIdFieldNumber = 2;
  1836. ::google::protobuf::int32 dispatch_id() const;
  1837. void set_dispatch_id(::google::protobuf::int32 value);
  1838. // required .message.Dispatch_manager_status dispatch_manager_status = 3;
  1839. bool has_dispatch_manager_status() const;
  1840. void clear_dispatch_manager_status();
  1841. static const int kDispatchManagerStatusFieldNumber = 3;
  1842. ::message::Dispatch_manager_status dispatch_manager_status() const;
  1843. void set_dispatch_manager_status(::message::Dispatch_manager_status value);
  1844. // @@protoc_insertion_point(class_scope:message.Dispatch_manager_status_msg)
  1845. private:
  1846. void set_has_base_info();
  1847. void clear_has_base_info();
  1848. void set_has_dispatch_id();
  1849. void clear_has_dispatch_id();
  1850. void set_has_dispatch_manager_status();
  1851. void clear_has_dispatch_manager_status();
  1852. // helper for ByteSizeLong()
  1853. size_t RequiredFieldsByteSizeFallback() const;
  1854. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1855. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1856. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1857. ::google::protobuf::RepeatedPtrField< ::message::Catcher_data > catcher_data_map_;
  1858. ::google::protobuf::RepeatedPtrField< ::message::Carrier_data > carrier_data_map_;
  1859. ::google::protobuf::RepeatedPtrField< ::message::Passageway_data > passageway_data_map_;
  1860. ::message::Base_info* base_info_;
  1861. ::google::protobuf::int32 dispatch_id_;
  1862. int dispatch_manager_status_;
  1863. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  1864. };
  1865. // -------------------------------------------------------------------
  1866. class Dispatch_manager_data_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_manager_data_msg) */ {
  1867. public:
  1868. Dispatch_manager_data_msg();
  1869. virtual ~Dispatch_manager_data_msg();
  1870. Dispatch_manager_data_msg(const Dispatch_manager_data_msg& from);
  1871. inline Dispatch_manager_data_msg& operator=(const Dispatch_manager_data_msg& from) {
  1872. CopyFrom(from);
  1873. return *this;
  1874. }
  1875. #if LANG_CXX11
  1876. Dispatch_manager_data_msg(Dispatch_manager_data_msg&& from) noexcept
  1877. : Dispatch_manager_data_msg() {
  1878. *this = ::std::move(from);
  1879. }
  1880. inline Dispatch_manager_data_msg& operator=(Dispatch_manager_data_msg&& from) noexcept {
  1881. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1882. if (this != &from) InternalSwap(&from);
  1883. } else {
  1884. CopyFrom(from);
  1885. }
  1886. return *this;
  1887. }
  1888. #endif
  1889. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1890. return _internal_metadata_.unknown_fields();
  1891. }
  1892. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1893. return _internal_metadata_.mutable_unknown_fields();
  1894. }
  1895. static const ::google::protobuf::Descriptor* descriptor();
  1896. static const Dispatch_manager_data_msg& default_instance();
  1897. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1898. static inline const Dispatch_manager_data_msg* internal_default_instance() {
  1899. return reinterpret_cast<const Dispatch_manager_data_msg*>(
  1900. &_Dispatch_manager_data_msg_default_instance_);
  1901. }
  1902. static constexpr int kIndexInFileMessages =
  1903. 7;
  1904. void Swap(Dispatch_manager_data_msg* other);
  1905. friend void swap(Dispatch_manager_data_msg& a, Dispatch_manager_data_msg& b) {
  1906. a.Swap(&b);
  1907. }
  1908. // implements Message ----------------------------------------------
  1909. inline Dispatch_manager_data_msg* New() const final {
  1910. return CreateMaybeMessage<Dispatch_manager_data_msg>(NULL);
  1911. }
  1912. Dispatch_manager_data_msg* New(::google::protobuf::Arena* arena) const final {
  1913. return CreateMaybeMessage<Dispatch_manager_data_msg>(arena);
  1914. }
  1915. void CopyFrom(const ::google::protobuf::Message& from) final;
  1916. void MergeFrom(const ::google::protobuf::Message& from) final;
  1917. void CopyFrom(const Dispatch_manager_data_msg& from);
  1918. void MergeFrom(const Dispatch_manager_data_msg& from);
  1919. void Clear() final;
  1920. bool IsInitialized() const final;
  1921. size_t ByteSizeLong() const final;
  1922. bool MergePartialFromCodedStream(
  1923. ::google::protobuf::io::CodedInputStream* input) final;
  1924. void SerializeWithCachedSizes(
  1925. ::google::protobuf::io::CodedOutputStream* output) const final;
  1926. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1927. bool deterministic, ::google::protobuf::uint8* target) const final;
  1928. int GetCachedSize() const final { return _cached_size_.Get(); }
  1929. private:
  1930. void SharedCtor();
  1931. void SharedDtor();
  1932. void SetCachedSize(int size) const final;
  1933. void InternalSwap(Dispatch_manager_data_msg* other);
  1934. private:
  1935. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1936. return NULL;
  1937. }
  1938. inline void* MaybeArenaPtr() const {
  1939. return NULL;
  1940. }
  1941. public:
  1942. ::google::protobuf::Metadata GetMetadata() const final;
  1943. // nested types ----------------------------------------------------
  1944. // accessors -------------------------------------------------------
  1945. // @@protoc_insertion_point(class_scope:message.Dispatch_manager_data_msg)
  1946. private:
  1947. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1948. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1949. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1950. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  1951. };
  1952. // ===================================================================
  1953. // ===================================================================
  1954. #ifdef __GNUC__
  1955. #pragma GCC diagnostic push
  1956. #pragma GCC diagnostic ignored "-Wstrict-aliasing"
  1957. #endif // __GNUC__
  1958. // Dispatch_terminal_status_msg
  1959. // required .message.Base_info base_info = 1;
  1960. inline bool Dispatch_terminal_status_msg::has_base_info() const {
  1961. return (_has_bits_[0] & 0x00000001u) != 0;
  1962. }
  1963. inline void Dispatch_terminal_status_msg::set_has_base_info() {
  1964. _has_bits_[0] |= 0x00000001u;
  1965. }
  1966. inline void Dispatch_terminal_status_msg::clear_has_base_info() {
  1967. _has_bits_[0] &= ~0x00000001u;
  1968. }
  1969. inline const ::message::Base_info& Dispatch_terminal_status_msg::_internal_base_info() const {
  1970. return *base_info_;
  1971. }
  1972. inline const ::message::Base_info& Dispatch_terminal_status_msg::base_info() const {
  1973. const ::message::Base_info* p = base_info_;
  1974. // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.base_info)
  1975. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  1976. &::message::_Base_info_default_instance_);
  1977. }
  1978. inline ::message::Base_info* Dispatch_terminal_status_msg::release_base_info() {
  1979. // @@protoc_insertion_point(field_release:message.Dispatch_terminal_status_msg.base_info)
  1980. clear_has_base_info();
  1981. ::message::Base_info* temp = base_info_;
  1982. base_info_ = NULL;
  1983. return temp;
  1984. }
  1985. inline ::message::Base_info* Dispatch_terminal_status_msg::mutable_base_info() {
  1986. set_has_base_info();
  1987. if (base_info_ == NULL) {
  1988. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  1989. base_info_ = p;
  1990. }
  1991. // @@protoc_insertion_point(field_mutable:message.Dispatch_terminal_status_msg.base_info)
  1992. return base_info_;
  1993. }
  1994. inline void Dispatch_terminal_status_msg::set_allocated_base_info(::message::Base_info* base_info) {
  1995. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1996. if (message_arena == NULL) {
  1997. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  1998. }
  1999. if (base_info) {
  2000. ::google::protobuf::Arena* submessage_arena = NULL;
  2001. if (message_arena != submessage_arena) {
  2002. base_info = ::google::protobuf::internal::GetOwnedMessage(
  2003. message_arena, base_info, submessage_arena);
  2004. }
  2005. set_has_base_info();
  2006. } else {
  2007. clear_has_base_info();
  2008. }
  2009. base_info_ = base_info;
  2010. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_terminal_status_msg.base_info)
  2011. }
  2012. // required int32 terminal_id = 2;
  2013. inline bool Dispatch_terminal_status_msg::has_terminal_id() const {
  2014. return (_has_bits_[0] & 0x00000002u) != 0;
  2015. }
  2016. inline void Dispatch_terminal_status_msg::set_has_terminal_id() {
  2017. _has_bits_[0] |= 0x00000002u;
  2018. }
  2019. inline void Dispatch_terminal_status_msg::clear_has_terminal_id() {
  2020. _has_bits_[0] &= ~0x00000002u;
  2021. }
  2022. inline void Dispatch_terminal_status_msg::clear_terminal_id() {
  2023. terminal_id_ = 0;
  2024. clear_has_terminal_id();
  2025. }
  2026. inline ::google::protobuf::int32 Dispatch_terminal_status_msg::terminal_id() const {
  2027. // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.terminal_id)
  2028. return terminal_id_;
  2029. }
  2030. inline void Dispatch_terminal_status_msg::set_terminal_id(::google::protobuf::int32 value) {
  2031. set_has_terminal_id();
  2032. terminal_id_ = value;
  2033. // @@protoc_insertion_point(field_set:message.Dispatch_terminal_status_msg.terminal_id)
  2034. }
  2035. // required .message.Terminal_status terminal_status = 3;
  2036. inline bool Dispatch_terminal_status_msg::has_terminal_status() const {
  2037. return (_has_bits_[0] & 0x00000004u) != 0;
  2038. }
  2039. inline void Dispatch_terminal_status_msg::set_has_terminal_status() {
  2040. _has_bits_[0] |= 0x00000004u;
  2041. }
  2042. inline void Dispatch_terminal_status_msg::clear_has_terminal_status() {
  2043. _has_bits_[0] &= ~0x00000004u;
  2044. }
  2045. inline void Dispatch_terminal_status_msg::clear_terminal_status() {
  2046. terminal_status_ = 0;
  2047. clear_has_terminal_status();
  2048. }
  2049. inline ::message::Terminal_status Dispatch_terminal_status_msg::terminal_status() const {
  2050. // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.terminal_status)
  2051. return static_cast< ::message::Terminal_status >(terminal_status_);
  2052. }
  2053. inline void Dispatch_terminal_status_msg::set_terminal_status(::message::Terminal_status value) {
  2054. assert(::message::Terminal_status_IsValid(value));
  2055. set_has_terminal_status();
  2056. terminal_status_ = value;
  2057. // @@protoc_insertion_point(field_set:message.Dispatch_terminal_status_msg.terminal_status)
  2058. }
  2059. // required .message.Passageway_direction passageway_direction = 4;
  2060. inline bool Dispatch_terminal_status_msg::has_passageway_direction() const {
  2061. return (_has_bits_[0] & 0x00000008u) != 0;
  2062. }
  2063. inline void Dispatch_terminal_status_msg::set_has_passageway_direction() {
  2064. _has_bits_[0] |= 0x00000008u;
  2065. }
  2066. inline void Dispatch_terminal_status_msg::clear_has_passageway_direction() {
  2067. _has_bits_[0] &= ~0x00000008u;
  2068. }
  2069. inline void Dispatch_terminal_status_msg::clear_passageway_direction() {
  2070. passageway_direction_ = 0;
  2071. clear_has_passageway_direction();
  2072. }
  2073. inline ::message::Passageway_direction Dispatch_terminal_status_msg::passageway_direction() const {
  2074. // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.passageway_direction)
  2075. return static_cast< ::message::Passageway_direction >(passageway_direction_);
  2076. }
  2077. inline void Dispatch_terminal_status_msg::set_passageway_direction(::message::Passageway_direction value) {
  2078. assert(::message::Passageway_direction_IsValid(value));
  2079. set_has_passageway_direction();
  2080. passageway_direction_ = value;
  2081. // @@protoc_insertion_point(field_set:message.Dispatch_terminal_status_msg.passageway_direction)
  2082. }
  2083. // -------------------------------------------------------------------
  2084. // Dispatch_request_msg
  2085. // required .message.Base_info base_info = 1;
  2086. inline bool Dispatch_request_msg::has_base_info() const {
  2087. return (_has_bits_[0] & 0x00000002u) != 0;
  2088. }
  2089. inline void Dispatch_request_msg::set_has_base_info() {
  2090. _has_bits_[0] |= 0x00000002u;
  2091. }
  2092. inline void Dispatch_request_msg::clear_has_base_info() {
  2093. _has_bits_[0] &= ~0x00000002u;
  2094. }
  2095. inline const ::message::Base_info& Dispatch_request_msg::_internal_base_info() const {
  2096. return *base_info_;
  2097. }
  2098. inline const ::message::Base_info& Dispatch_request_msg::base_info() const {
  2099. const ::message::Base_info* p = base_info_;
  2100. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.base_info)
  2101. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  2102. &::message::_Base_info_default_instance_);
  2103. }
  2104. inline ::message::Base_info* Dispatch_request_msg::release_base_info() {
  2105. // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.base_info)
  2106. clear_has_base_info();
  2107. ::message::Base_info* temp = base_info_;
  2108. base_info_ = NULL;
  2109. return temp;
  2110. }
  2111. inline ::message::Base_info* Dispatch_request_msg::mutable_base_info() {
  2112. set_has_base_info();
  2113. if (base_info_ == NULL) {
  2114. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  2115. base_info_ = p;
  2116. }
  2117. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.base_info)
  2118. return base_info_;
  2119. }
  2120. inline void Dispatch_request_msg::set_allocated_base_info(::message::Base_info* base_info) {
  2121. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2122. if (message_arena == NULL) {
  2123. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  2124. }
  2125. if (base_info) {
  2126. ::google::protobuf::Arena* submessage_arena = NULL;
  2127. if (message_arena != submessage_arena) {
  2128. base_info = ::google::protobuf::internal::GetOwnedMessage(
  2129. message_arena, base_info, submessage_arena);
  2130. }
  2131. set_has_base_info();
  2132. } else {
  2133. clear_has_base_info();
  2134. }
  2135. base_info_ = base_info;
  2136. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.base_info)
  2137. }
  2138. // required string command_key = 2;
  2139. inline bool Dispatch_request_msg::has_command_key() const {
  2140. return (_has_bits_[0] & 0x00000001u) != 0;
  2141. }
  2142. inline void Dispatch_request_msg::set_has_command_key() {
  2143. _has_bits_[0] |= 0x00000001u;
  2144. }
  2145. inline void Dispatch_request_msg::clear_has_command_key() {
  2146. _has_bits_[0] &= ~0x00000001u;
  2147. }
  2148. inline void Dispatch_request_msg::clear_command_key() {
  2149. command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2150. clear_has_command_key();
  2151. }
  2152. inline const ::std::string& Dispatch_request_msg::command_key() const {
  2153. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.command_key)
  2154. return command_key_.GetNoArena();
  2155. }
  2156. inline void Dispatch_request_msg::set_command_key(const ::std::string& value) {
  2157. set_has_command_key();
  2158. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  2159. // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.command_key)
  2160. }
  2161. #if LANG_CXX11
  2162. inline void Dispatch_request_msg::set_command_key(::std::string&& value) {
  2163. set_has_command_key();
  2164. command_key_.SetNoArena(
  2165. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  2166. // @@protoc_insertion_point(field_set_rvalue:message.Dispatch_request_msg.command_key)
  2167. }
  2168. #endif
  2169. inline void Dispatch_request_msg::set_command_key(const char* value) {
  2170. GOOGLE_DCHECK(value != NULL);
  2171. set_has_command_key();
  2172. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  2173. // @@protoc_insertion_point(field_set_char:message.Dispatch_request_msg.command_key)
  2174. }
  2175. inline void Dispatch_request_msg::set_command_key(const char* value, size_t size) {
  2176. set_has_command_key();
  2177. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  2178. ::std::string(reinterpret_cast<const char*>(value), size));
  2179. // @@protoc_insertion_point(field_set_pointer:message.Dispatch_request_msg.command_key)
  2180. }
  2181. inline ::std::string* Dispatch_request_msg::mutable_command_key() {
  2182. set_has_command_key();
  2183. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.command_key)
  2184. return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2185. }
  2186. inline ::std::string* Dispatch_request_msg::release_command_key() {
  2187. // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.command_key)
  2188. if (!has_command_key()) {
  2189. return NULL;
  2190. }
  2191. clear_has_command_key();
  2192. return command_key_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2193. }
  2194. inline void Dispatch_request_msg::set_allocated_command_key(::std::string* command_key) {
  2195. if (command_key != NULL) {
  2196. set_has_command_key();
  2197. } else {
  2198. clear_has_command_key();
  2199. }
  2200. command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
  2201. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.command_key)
  2202. }
  2203. // optional .message.Dispatch_motion_direction dispatch_motion_direction = 3;
  2204. inline bool Dispatch_request_msg::has_dispatch_motion_direction() const {
  2205. return (_has_bits_[0] & 0x00000008u) != 0;
  2206. }
  2207. inline void Dispatch_request_msg::set_has_dispatch_motion_direction() {
  2208. _has_bits_[0] |= 0x00000008u;
  2209. }
  2210. inline void Dispatch_request_msg::clear_has_dispatch_motion_direction() {
  2211. _has_bits_[0] &= ~0x00000008u;
  2212. }
  2213. inline void Dispatch_request_msg::clear_dispatch_motion_direction() {
  2214. dispatch_motion_direction_ = 0;
  2215. clear_has_dispatch_motion_direction();
  2216. }
  2217. inline ::message::Dispatch_motion_direction Dispatch_request_msg::dispatch_motion_direction() const {
  2218. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.dispatch_motion_direction)
  2219. return static_cast< ::message::Dispatch_motion_direction >(dispatch_motion_direction_);
  2220. }
  2221. inline void Dispatch_request_msg::set_dispatch_motion_direction(::message::Dispatch_motion_direction value) {
  2222. assert(::message::Dispatch_motion_direction_IsValid(value));
  2223. set_has_dispatch_motion_direction();
  2224. dispatch_motion_direction_ = value;
  2225. // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.dispatch_motion_direction)
  2226. }
  2227. // optional int32 terminal_id = 4;
  2228. inline bool Dispatch_request_msg::has_terminal_id() const {
  2229. return (_has_bits_[0] & 0x00000010u) != 0;
  2230. }
  2231. inline void Dispatch_request_msg::set_has_terminal_id() {
  2232. _has_bits_[0] |= 0x00000010u;
  2233. }
  2234. inline void Dispatch_request_msg::clear_has_terminal_id() {
  2235. _has_bits_[0] &= ~0x00000010u;
  2236. }
  2237. inline void Dispatch_request_msg::clear_terminal_id() {
  2238. terminal_id_ = 0;
  2239. clear_has_terminal_id();
  2240. }
  2241. inline ::google::protobuf::int32 Dispatch_request_msg::terminal_id() const {
  2242. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.terminal_id)
  2243. return terminal_id_;
  2244. }
  2245. inline void Dispatch_request_msg::set_terminal_id(::google::protobuf::int32 value) {
  2246. set_has_terminal_id();
  2247. terminal_id_ = value;
  2248. // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.terminal_id)
  2249. }
  2250. // optional .message.Locate_information locate_information = 5;
  2251. inline bool Dispatch_request_msg::has_locate_information() const {
  2252. return (_has_bits_[0] & 0x00000004u) != 0;
  2253. }
  2254. inline void Dispatch_request_msg::set_has_locate_information() {
  2255. _has_bits_[0] |= 0x00000004u;
  2256. }
  2257. inline void Dispatch_request_msg::clear_has_locate_information() {
  2258. _has_bits_[0] &= ~0x00000004u;
  2259. }
  2260. inline const ::message::Locate_information& Dispatch_request_msg::_internal_locate_information() const {
  2261. return *locate_information_;
  2262. }
  2263. inline const ::message::Locate_information& Dispatch_request_msg::locate_information() const {
  2264. const ::message::Locate_information* p = locate_information_;
  2265. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.locate_information)
  2266. return p != NULL ? *p : *reinterpret_cast<const ::message::Locate_information*>(
  2267. &::message::_Locate_information_default_instance_);
  2268. }
  2269. inline ::message::Locate_information* Dispatch_request_msg::release_locate_information() {
  2270. // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.locate_information)
  2271. clear_has_locate_information();
  2272. ::message::Locate_information* temp = locate_information_;
  2273. locate_information_ = NULL;
  2274. return temp;
  2275. }
  2276. inline ::message::Locate_information* Dispatch_request_msg::mutable_locate_information() {
  2277. set_has_locate_information();
  2278. if (locate_information_ == NULL) {
  2279. auto* p = CreateMaybeMessage<::message::Locate_information>(GetArenaNoVirtual());
  2280. locate_information_ = p;
  2281. }
  2282. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.locate_information)
  2283. return locate_information_;
  2284. }
  2285. inline void Dispatch_request_msg::set_allocated_locate_information(::message::Locate_information* locate_information) {
  2286. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2287. if (message_arena == NULL) {
  2288. delete reinterpret_cast< ::google::protobuf::MessageLite*>(locate_information_);
  2289. }
  2290. if (locate_information) {
  2291. ::google::protobuf::Arena* submessage_arena = NULL;
  2292. if (message_arena != submessage_arena) {
  2293. locate_information = ::google::protobuf::internal::GetOwnedMessage(
  2294. message_arena, locate_information, submessage_arena);
  2295. }
  2296. set_has_locate_information();
  2297. } else {
  2298. clear_has_locate_information();
  2299. }
  2300. locate_information_ = locate_information;
  2301. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.locate_information)
  2302. }
  2303. // repeated .message.Parkspace_info parkspace_info_ex = 6;
  2304. inline int Dispatch_request_msg::parkspace_info_ex_size() const {
  2305. return parkspace_info_ex_.size();
  2306. }
  2307. inline ::message::Parkspace_info* Dispatch_request_msg::mutable_parkspace_info_ex(int index) {
  2308. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.parkspace_info_ex)
  2309. return parkspace_info_ex_.Mutable(index);
  2310. }
  2311. inline ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >*
  2312. Dispatch_request_msg::mutable_parkspace_info_ex() {
  2313. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_request_msg.parkspace_info_ex)
  2314. return &parkspace_info_ex_;
  2315. }
  2316. inline const ::message::Parkspace_info& Dispatch_request_msg::parkspace_info_ex(int index) const {
  2317. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.parkspace_info_ex)
  2318. return parkspace_info_ex_.Get(index);
  2319. }
  2320. inline ::message::Parkspace_info* Dispatch_request_msg::add_parkspace_info_ex() {
  2321. // @@protoc_insertion_point(field_add:message.Dispatch_request_msg.parkspace_info_ex)
  2322. return parkspace_info_ex_.Add();
  2323. }
  2324. inline const ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >&
  2325. Dispatch_request_msg::parkspace_info_ex() const {
  2326. // @@protoc_insertion_point(field_list:message.Dispatch_request_msg.parkspace_info_ex)
  2327. return parkspace_info_ex_;
  2328. }
  2329. // optional .message.Car_type car_type = 7;
  2330. inline bool Dispatch_request_msg::has_car_type() const {
  2331. return (_has_bits_[0] & 0x00000020u) != 0;
  2332. }
  2333. inline void Dispatch_request_msg::set_has_car_type() {
  2334. _has_bits_[0] |= 0x00000020u;
  2335. }
  2336. inline void Dispatch_request_msg::clear_has_car_type() {
  2337. _has_bits_[0] &= ~0x00000020u;
  2338. }
  2339. inline void Dispatch_request_msg::clear_car_type() {
  2340. car_type_ = 0;
  2341. clear_has_car_type();
  2342. }
  2343. inline ::message::Car_type Dispatch_request_msg::car_type() const {
  2344. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.car_type)
  2345. return static_cast< ::message::Car_type >(car_type_);
  2346. }
  2347. inline void Dispatch_request_msg::set_car_type(::message::Car_type value) {
  2348. assert(::message::Car_type_IsValid(value));
  2349. set_has_car_type();
  2350. car_type_ = value;
  2351. // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.car_type)
  2352. }
  2353. // -------------------------------------------------------------------
  2354. // Dispatch_response_msg
  2355. // required .message.Base_info base_info = 1;
  2356. inline bool Dispatch_response_msg::has_base_info() const {
  2357. return (_has_bits_[0] & 0x00000002u) != 0;
  2358. }
  2359. inline void Dispatch_response_msg::set_has_base_info() {
  2360. _has_bits_[0] |= 0x00000002u;
  2361. }
  2362. inline void Dispatch_response_msg::clear_has_base_info() {
  2363. _has_bits_[0] &= ~0x00000002u;
  2364. }
  2365. inline const ::message::Base_info& Dispatch_response_msg::_internal_base_info() const {
  2366. return *base_info_;
  2367. }
  2368. inline const ::message::Base_info& Dispatch_response_msg::base_info() const {
  2369. const ::message::Base_info* p = base_info_;
  2370. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.base_info)
  2371. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  2372. &::message::_Base_info_default_instance_);
  2373. }
  2374. inline ::message::Base_info* Dispatch_response_msg::release_base_info() {
  2375. // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.base_info)
  2376. clear_has_base_info();
  2377. ::message::Base_info* temp = base_info_;
  2378. base_info_ = NULL;
  2379. return temp;
  2380. }
  2381. inline ::message::Base_info* Dispatch_response_msg::mutable_base_info() {
  2382. set_has_base_info();
  2383. if (base_info_ == NULL) {
  2384. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  2385. base_info_ = p;
  2386. }
  2387. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.base_info)
  2388. return base_info_;
  2389. }
  2390. inline void Dispatch_response_msg::set_allocated_base_info(::message::Base_info* base_info) {
  2391. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2392. if (message_arena == NULL) {
  2393. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  2394. }
  2395. if (base_info) {
  2396. ::google::protobuf::Arena* submessage_arena = NULL;
  2397. if (message_arena != submessage_arena) {
  2398. base_info = ::google::protobuf::internal::GetOwnedMessage(
  2399. message_arena, base_info, submessage_arena);
  2400. }
  2401. set_has_base_info();
  2402. } else {
  2403. clear_has_base_info();
  2404. }
  2405. base_info_ = base_info;
  2406. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.base_info)
  2407. }
  2408. // required string command_key = 2;
  2409. inline bool Dispatch_response_msg::has_command_key() const {
  2410. return (_has_bits_[0] & 0x00000001u) != 0;
  2411. }
  2412. inline void Dispatch_response_msg::set_has_command_key() {
  2413. _has_bits_[0] |= 0x00000001u;
  2414. }
  2415. inline void Dispatch_response_msg::clear_has_command_key() {
  2416. _has_bits_[0] &= ~0x00000001u;
  2417. }
  2418. inline void Dispatch_response_msg::clear_command_key() {
  2419. command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2420. clear_has_command_key();
  2421. }
  2422. inline const ::std::string& Dispatch_response_msg::command_key() const {
  2423. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.command_key)
  2424. return command_key_.GetNoArena();
  2425. }
  2426. inline void Dispatch_response_msg::set_command_key(const ::std::string& value) {
  2427. set_has_command_key();
  2428. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  2429. // @@protoc_insertion_point(field_set:message.Dispatch_response_msg.command_key)
  2430. }
  2431. #if LANG_CXX11
  2432. inline void Dispatch_response_msg::set_command_key(::std::string&& value) {
  2433. set_has_command_key();
  2434. command_key_.SetNoArena(
  2435. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  2436. // @@protoc_insertion_point(field_set_rvalue:message.Dispatch_response_msg.command_key)
  2437. }
  2438. #endif
  2439. inline void Dispatch_response_msg::set_command_key(const char* value) {
  2440. GOOGLE_DCHECK(value != NULL);
  2441. set_has_command_key();
  2442. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  2443. // @@protoc_insertion_point(field_set_char:message.Dispatch_response_msg.command_key)
  2444. }
  2445. inline void Dispatch_response_msg::set_command_key(const char* value, size_t size) {
  2446. set_has_command_key();
  2447. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  2448. ::std::string(reinterpret_cast<const char*>(value), size));
  2449. // @@protoc_insertion_point(field_set_pointer:message.Dispatch_response_msg.command_key)
  2450. }
  2451. inline ::std::string* Dispatch_response_msg::mutable_command_key() {
  2452. set_has_command_key();
  2453. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.command_key)
  2454. return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2455. }
  2456. inline ::std::string* Dispatch_response_msg::release_command_key() {
  2457. // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.command_key)
  2458. if (!has_command_key()) {
  2459. return NULL;
  2460. }
  2461. clear_has_command_key();
  2462. return command_key_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2463. }
  2464. inline void Dispatch_response_msg::set_allocated_command_key(::std::string* command_key) {
  2465. if (command_key != NULL) {
  2466. set_has_command_key();
  2467. } else {
  2468. clear_has_command_key();
  2469. }
  2470. command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
  2471. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.command_key)
  2472. }
  2473. // optional .message.Dispatch_motion_direction dispatch_motion_direction = 3;
  2474. inline bool Dispatch_response_msg::has_dispatch_motion_direction() const {
  2475. return (_has_bits_[0] & 0x00000010u) != 0;
  2476. }
  2477. inline void Dispatch_response_msg::set_has_dispatch_motion_direction() {
  2478. _has_bits_[0] |= 0x00000010u;
  2479. }
  2480. inline void Dispatch_response_msg::clear_has_dispatch_motion_direction() {
  2481. _has_bits_[0] &= ~0x00000010u;
  2482. }
  2483. inline void Dispatch_response_msg::clear_dispatch_motion_direction() {
  2484. dispatch_motion_direction_ = 0;
  2485. clear_has_dispatch_motion_direction();
  2486. }
  2487. inline ::message::Dispatch_motion_direction Dispatch_response_msg::dispatch_motion_direction() const {
  2488. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.dispatch_motion_direction)
  2489. return static_cast< ::message::Dispatch_motion_direction >(dispatch_motion_direction_);
  2490. }
  2491. inline void Dispatch_response_msg::set_dispatch_motion_direction(::message::Dispatch_motion_direction value) {
  2492. assert(::message::Dispatch_motion_direction_IsValid(value));
  2493. set_has_dispatch_motion_direction();
  2494. dispatch_motion_direction_ = value;
  2495. // @@protoc_insertion_point(field_set:message.Dispatch_response_msg.dispatch_motion_direction)
  2496. }
  2497. // optional int32 terminal_id = 4;
  2498. inline bool Dispatch_response_msg::has_terminal_id() const {
  2499. return (_has_bits_[0] & 0x00000020u) != 0;
  2500. }
  2501. inline void Dispatch_response_msg::set_has_terminal_id() {
  2502. _has_bits_[0] |= 0x00000020u;
  2503. }
  2504. inline void Dispatch_response_msg::clear_has_terminal_id() {
  2505. _has_bits_[0] &= ~0x00000020u;
  2506. }
  2507. inline void Dispatch_response_msg::clear_terminal_id() {
  2508. terminal_id_ = 0;
  2509. clear_has_terminal_id();
  2510. }
  2511. inline ::google::protobuf::int32 Dispatch_response_msg::terminal_id() const {
  2512. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.terminal_id)
  2513. return terminal_id_;
  2514. }
  2515. inline void Dispatch_response_msg::set_terminal_id(::google::protobuf::int32 value) {
  2516. set_has_terminal_id();
  2517. terminal_id_ = value;
  2518. // @@protoc_insertion_point(field_set:message.Dispatch_response_msg.terminal_id)
  2519. }
  2520. // optional .message.Locate_information locate_information = 5;
  2521. inline bool Dispatch_response_msg::has_locate_information() const {
  2522. return (_has_bits_[0] & 0x00000004u) != 0;
  2523. }
  2524. inline void Dispatch_response_msg::set_has_locate_information() {
  2525. _has_bits_[0] |= 0x00000004u;
  2526. }
  2527. inline void Dispatch_response_msg::clear_has_locate_information() {
  2528. _has_bits_[0] &= ~0x00000004u;
  2529. }
  2530. inline const ::message::Locate_information& Dispatch_response_msg::_internal_locate_information() const {
  2531. return *locate_information_;
  2532. }
  2533. inline const ::message::Locate_information& Dispatch_response_msg::locate_information() const {
  2534. const ::message::Locate_information* p = locate_information_;
  2535. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.locate_information)
  2536. return p != NULL ? *p : *reinterpret_cast<const ::message::Locate_information*>(
  2537. &::message::_Locate_information_default_instance_);
  2538. }
  2539. inline ::message::Locate_information* Dispatch_response_msg::release_locate_information() {
  2540. // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.locate_information)
  2541. clear_has_locate_information();
  2542. ::message::Locate_information* temp = locate_information_;
  2543. locate_information_ = NULL;
  2544. return temp;
  2545. }
  2546. inline ::message::Locate_information* Dispatch_response_msg::mutable_locate_information() {
  2547. set_has_locate_information();
  2548. if (locate_information_ == NULL) {
  2549. auto* p = CreateMaybeMessage<::message::Locate_information>(GetArenaNoVirtual());
  2550. locate_information_ = p;
  2551. }
  2552. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.locate_information)
  2553. return locate_information_;
  2554. }
  2555. inline void Dispatch_response_msg::set_allocated_locate_information(::message::Locate_information* locate_information) {
  2556. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2557. if (message_arena == NULL) {
  2558. delete reinterpret_cast< ::google::protobuf::MessageLite*>(locate_information_);
  2559. }
  2560. if (locate_information) {
  2561. ::google::protobuf::Arena* submessage_arena = NULL;
  2562. if (message_arena != submessage_arena) {
  2563. locate_information = ::google::protobuf::internal::GetOwnedMessage(
  2564. message_arena, locate_information, submessage_arena);
  2565. }
  2566. set_has_locate_information();
  2567. } else {
  2568. clear_has_locate_information();
  2569. }
  2570. locate_information_ = locate_information;
  2571. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.locate_information)
  2572. }
  2573. // repeated .message.Parkspace_info parkspace_info_ex = 6;
  2574. inline int Dispatch_response_msg::parkspace_info_ex_size() const {
  2575. return parkspace_info_ex_.size();
  2576. }
  2577. inline ::message::Parkspace_info* Dispatch_response_msg::mutable_parkspace_info_ex(int index) {
  2578. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.parkspace_info_ex)
  2579. return parkspace_info_ex_.Mutable(index);
  2580. }
  2581. inline ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >*
  2582. Dispatch_response_msg::mutable_parkspace_info_ex() {
  2583. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_response_msg.parkspace_info_ex)
  2584. return &parkspace_info_ex_;
  2585. }
  2586. inline const ::message::Parkspace_info& Dispatch_response_msg::parkspace_info_ex(int index) const {
  2587. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.parkspace_info_ex)
  2588. return parkspace_info_ex_.Get(index);
  2589. }
  2590. inline ::message::Parkspace_info* Dispatch_response_msg::add_parkspace_info_ex() {
  2591. // @@protoc_insertion_point(field_add:message.Dispatch_response_msg.parkspace_info_ex)
  2592. return parkspace_info_ex_.Add();
  2593. }
  2594. inline const ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >&
  2595. Dispatch_response_msg::parkspace_info_ex() const {
  2596. // @@protoc_insertion_point(field_list:message.Dispatch_response_msg.parkspace_info_ex)
  2597. return parkspace_info_ex_;
  2598. }
  2599. // optional .message.Car_type car_type = 7;
  2600. inline bool Dispatch_response_msg::has_car_type() const {
  2601. return (_has_bits_[0] & 0x00000040u) != 0;
  2602. }
  2603. inline void Dispatch_response_msg::set_has_car_type() {
  2604. _has_bits_[0] |= 0x00000040u;
  2605. }
  2606. inline void Dispatch_response_msg::clear_has_car_type() {
  2607. _has_bits_[0] &= ~0x00000040u;
  2608. }
  2609. inline void Dispatch_response_msg::clear_car_type() {
  2610. car_type_ = 0;
  2611. clear_has_car_type();
  2612. }
  2613. inline ::message::Car_type Dispatch_response_msg::car_type() const {
  2614. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.car_type)
  2615. return static_cast< ::message::Car_type >(car_type_);
  2616. }
  2617. inline void Dispatch_response_msg::set_car_type(::message::Car_type value) {
  2618. assert(::message::Car_type_IsValid(value));
  2619. set_has_car_type();
  2620. car_type_ = value;
  2621. // @@protoc_insertion_point(field_set:message.Dispatch_response_msg.car_type)
  2622. }
  2623. // optional .message.Error_manager error_manager = 8;
  2624. inline bool Dispatch_response_msg::has_error_manager() const {
  2625. return (_has_bits_[0] & 0x00000008u) != 0;
  2626. }
  2627. inline void Dispatch_response_msg::set_has_error_manager() {
  2628. _has_bits_[0] |= 0x00000008u;
  2629. }
  2630. inline void Dispatch_response_msg::clear_has_error_manager() {
  2631. _has_bits_[0] &= ~0x00000008u;
  2632. }
  2633. inline const ::message::Error_manager& Dispatch_response_msg::_internal_error_manager() const {
  2634. return *error_manager_;
  2635. }
  2636. inline const ::message::Error_manager& Dispatch_response_msg::error_manager() const {
  2637. const ::message::Error_manager* p = error_manager_;
  2638. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.error_manager)
  2639. return p != NULL ? *p : *reinterpret_cast<const ::message::Error_manager*>(
  2640. &::message::_Error_manager_default_instance_);
  2641. }
  2642. inline ::message::Error_manager* Dispatch_response_msg::release_error_manager() {
  2643. // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.error_manager)
  2644. clear_has_error_manager();
  2645. ::message::Error_manager* temp = error_manager_;
  2646. error_manager_ = NULL;
  2647. return temp;
  2648. }
  2649. inline ::message::Error_manager* Dispatch_response_msg::mutable_error_manager() {
  2650. set_has_error_manager();
  2651. if (error_manager_ == NULL) {
  2652. auto* p = CreateMaybeMessage<::message::Error_manager>(GetArenaNoVirtual());
  2653. error_manager_ = p;
  2654. }
  2655. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.error_manager)
  2656. return error_manager_;
  2657. }
  2658. inline void Dispatch_response_msg::set_allocated_error_manager(::message::Error_manager* error_manager) {
  2659. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2660. if (message_arena == NULL) {
  2661. delete reinterpret_cast< ::google::protobuf::MessageLite*>(error_manager_);
  2662. }
  2663. if (error_manager) {
  2664. ::google::protobuf::Arena* submessage_arena = NULL;
  2665. if (message_arena != submessage_arena) {
  2666. error_manager = ::google::protobuf::internal::GetOwnedMessage(
  2667. message_arena, error_manager, submessage_arena);
  2668. }
  2669. set_has_error_manager();
  2670. } else {
  2671. clear_has_error_manager();
  2672. }
  2673. error_manager_ = error_manager;
  2674. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.error_manager)
  2675. }
  2676. // -------------------------------------------------------------------
  2677. // Catcher_data
  2678. // required .message.Dispatch_device_type dispatch_device_type = 1;
  2679. inline bool Catcher_data::has_dispatch_device_type() const {
  2680. return (_has_bits_[0] & 0x00040000u) != 0;
  2681. }
  2682. inline void Catcher_data::set_has_dispatch_device_type() {
  2683. _has_bits_[0] |= 0x00040000u;
  2684. }
  2685. inline void Catcher_data::clear_has_dispatch_device_type() {
  2686. _has_bits_[0] &= ~0x00040000u;
  2687. }
  2688. inline void Catcher_data::clear_dispatch_device_type() {
  2689. dispatch_device_type_ = 101;
  2690. clear_has_dispatch_device_type();
  2691. }
  2692. inline ::message::Dispatch_device_type Catcher_data::dispatch_device_type() const {
  2693. // @@protoc_insertion_point(field_get:message.Catcher_data.dispatch_device_type)
  2694. return static_cast< ::message::Dispatch_device_type >(dispatch_device_type_);
  2695. }
  2696. inline void Catcher_data::set_dispatch_device_type(::message::Dispatch_device_type value) {
  2697. assert(::message::Dispatch_device_type_IsValid(value));
  2698. set_has_dispatch_device_type();
  2699. dispatch_device_type_ = value;
  2700. // @@protoc_insertion_point(field_set:message.Catcher_data.dispatch_device_type)
  2701. }
  2702. // required .message.Dispatch_device_status dispatch_device_status = 2;
  2703. inline bool Catcher_data::has_dispatch_device_status() const {
  2704. return (_has_bits_[0] & 0x00000008u) != 0;
  2705. }
  2706. inline void Catcher_data::set_has_dispatch_device_status() {
  2707. _has_bits_[0] |= 0x00000008u;
  2708. }
  2709. inline void Catcher_data::clear_has_dispatch_device_status() {
  2710. _has_bits_[0] &= ~0x00000008u;
  2711. }
  2712. inline void Catcher_data::clear_dispatch_device_status() {
  2713. dispatch_device_status_ = 0;
  2714. clear_has_dispatch_device_status();
  2715. }
  2716. inline ::message::Dispatch_device_status Catcher_data::dispatch_device_status() const {
  2717. // @@protoc_insertion_point(field_get:message.Catcher_data.dispatch_device_status)
  2718. return static_cast< ::message::Dispatch_device_status >(dispatch_device_status_);
  2719. }
  2720. inline void Catcher_data::set_dispatch_device_status(::message::Dispatch_device_status value) {
  2721. assert(::message::Dispatch_device_status_IsValid(value));
  2722. set_has_dispatch_device_status();
  2723. dispatch_device_status_ = value;
  2724. // @@protoc_insertion_point(field_set:message.Catcher_data.dispatch_device_status)
  2725. }
  2726. // required int32 device_id = 3;
  2727. inline bool Catcher_data::has_device_id() const {
  2728. return (_has_bits_[0] & 0x00000010u) != 0;
  2729. }
  2730. inline void Catcher_data::set_has_device_id() {
  2731. _has_bits_[0] |= 0x00000010u;
  2732. }
  2733. inline void Catcher_data::clear_has_device_id() {
  2734. _has_bits_[0] &= ~0x00000010u;
  2735. }
  2736. inline void Catcher_data::clear_device_id() {
  2737. device_id_ = 0;
  2738. clear_has_device_id();
  2739. }
  2740. inline ::google::protobuf::int32 Catcher_data::device_id() const {
  2741. // @@protoc_insertion_point(field_get:message.Catcher_data.device_id)
  2742. return device_id_;
  2743. }
  2744. inline void Catcher_data::set_device_id(::google::protobuf::int32 value) {
  2745. set_has_device_id();
  2746. device_id_ = value;
  2747. // @@protoc_insertion_point(field_set:message.Catcher_data.device_id)
  2748. }
  2749. // optional .message.Hardware_device_status actual_device_status = 4;
  2750. inline bool Catcher_data::has_actual_device_status() const {
  2751. return (_has_bits_[0] & 0x00000020u) != 0;
  2752. }
  2753. inline void Catcher_data::set_has_actual_device_status() {
  2754. _has_bits_[0] |= 0x00000020u;
  2755. }
  2756. inline void Catcher_data::clear_has_actual_device_status() {
  2757. _has_bits_[0] &= ~0x00000020u;
  2758. }
  2759. inline void Catcher_data::clear_actual_device_status() {
  2760. actual_device_status_ = 0;
  2761. clear_has_actual_device_status();
  2762. }
  2763. inline ::message::Hardware_device_status Catcher_data::actual_device_status() const {
  2764. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_device_status)
  2765. return static_cast< ::message::Hardware_device_status >(actual_device_status_);
  2766. }
  2767. inline void Catcher_data::set_actual_device_status(::message::Hardware_device_status value) {
  2768. assert(::message::Hardware_device_status_IsValid(value));
  2769. set_has_actual_device_status();
  2770. actual_device_status_ = value;
  2771. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_device_status)
  2772. }
  2773. // optional .message.Load_status actual_load_status = 5;
  2774. inline bool Catcher_data::has_actual_load_status() const {
  2775. return (_has_bits_[0] & 0x00000040u) != 0;
  2776. }
  2777. inline void Catcher_data::set_has_actual_load_status() {
  2778. _has_bits_[0] |= 0x00000040u;
  2779. }
  2780. inline void Catcher_data::clear_has_actual_load_status() {
  2781. _has_bits_[0] &= ~0x00000040u;
  2782. }
  2783. inline void Catcher_data::clear_actual_load_status() {
  2784. actual_load_status_ = 0;
  2785. clear_has_actual_load_status();
  2786. }
  2787. inline ::message::Load_status Catcher_data::actual_load_status() const {
  2788. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_load_status)
  2789. return static_cast< ::message::Load_status >(actual_load_status_);
  2790. }
  2791. inline void Catcher_data::set_actual_load_status(::message::Load_status value) {
  2792. assert(::message::Load_status_IsValid(value));
  2793. set_has_actual_load_status();
  2794. actual_load_status_ = value;
  2795. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_load_status)
  2796. }
  2797. // optional int32 actual_coordinates_id = 6;
  2798. inline bool Catcher_data::has_actual_coordinates_id() const {
  2799. return (_has_bits_[0] & 0x00000080u) != 0;
  2800. }
  2801. inline void Catcher_data::set_has_actual_coordinates_id() {
  2802. _has_bits_[0] |= 0x00000080u;
  2803. }
  2804. inline void Catcher_data::clear_has_actual_coordinates_id() {
  2805. _has_bits_[0] &= ~0x00000080u;
  2806. }
  2807. inline void Catcher_data::clear_actual_coordinates_id() {
  2808. actual_coordinates_id_ = 0;
  2809. clear_has_actual_coordinates_id();
  2810. }
  2811. inline ::google::protobuf::int32 Catcher_data::actual_coordinates_id() const {
  2812. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_coordinates_id)
  2813. return actual_coordinates_id_;
  2814. }
  2815. inline void Catcher_data::set_actual_coordinates_id(::google::protobuf::int32 value) {
  2816. set_has_actual_coordinates_id();
  2817. actual_coordinates_id_ = value;
  2818. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_coordinates_id)
  2819. }
  2820. // optional float actual_x = 7;
  2821. inline bool Catcher_data::has_actual_x() const {
  2822. return (_has_bits_[0] & 0x00000100u) != 0;
  2823. }
  2824. inline void Catcher_data::set_has_actual_x() {
  2825. _has_bits_[0] |= 0x00000100u;
  2826. }
  2827. inline void Catcher_data::clear_has_actual_x() {
  2828. _has_bits_[0] &= ~0x00000100u;
  2829. }
  2830. inline void Catcher_data::clear_actual_x() {
  2831. actual_x_ = 0;
  2832. clear_has_actual_x();
  2833. }
  2834. inline float Catcher_data::actual_x() const {
  2835. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_x)
  2836. return actual_x_;
  2837. }
  2838. inline void Catcher_data::set_actual_x(float value) {
  2839. set_has_actual_x();
  2840. actual_x_ = value;
  2841. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_x)
  2842. }
  2843. // optional float actual_y = 8;
  2844. inline bool Catcher_data::has_actual_y() const {
  2845. return (_has_bits_[0] & 0x00000200u) != 0;
  2846. }
  2847. inline void Catcher_data::set_has_actual_y() {
  2848. _has_bits_[0] |= 0x00000200u;
  2849. }
  2850. inline void Catcher_data::clear_has_actual_y() {
  2851. _has_bits_[0] &= ~0x00000200u;
  2852. }
  2853. inline void Catcher_data::clear_actual_y() {
  2854. actual_y_ = 0;
  2855. clear_has_actual_y();
  2856. }
  2857. inline float Catcher_data::actual_y() const {
  2858. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_y)
  2859. return actual_y_;
  2860. }
  2861. inline void Catcher_data::set_actual_y(float value) {
  2862. set_has_actual_y();
  2863. actual_y_ = value;
  2864. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_y)
  2865. }
  2866. // optional float actual_b = 9;
  2867. inline bool Catcher_data::has_actual_b() const {
  2868. return (_has_bits_[0] & 0x00000400u) != 0;
  2869. }
  2870. inline void Catcher_data::set_has_actual_b() {
  2871. _has_bits_[0] |= 0x00000400u;
  2872. }
  2873. inline void Catcher_data::clear_has_actual_b() {
  2874. _has_bits_[0] &= ~0x00000400u;
  2875. }
  2876. inline void Catcher_data::clear_actual_b() {
  2877. actual_b_ = 0;
  2878. clear_has_actual_b();
  2879. }
  2880. inline float Catcher_data::actual_b() const {
  2881. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_b)
  2882. return actual_b_;
  2883. }
  2884. inline void Catcher_data::set_actual_b(float value) {
  2885. set_has_actual_b();
  2886. actual_b_ = value;
  2887. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_b)
  2888. }
  2889. // optional float actual_z = 10;
  2890. inline bool Catcher_data::has_actual_z() const {
  2891. return (_has_bits_[0] & 0x00000800u) != 0;
  2892. }
  2893. inline void Catcher_data::set_has_actual_z() {
  2894. _has_bits_[0] |= 0x00000800u;
  2895. }
  2896. inline void Catcher_data::clear_has_actual_z() {
  2897. _has_bits_[0] &= ~0x00000800u;
  2898. }
  2899. inline void Catcher_data::clear_actual_z() {
  2900. actual_z_ = 0;
  2901. clear_has_actual_z();
  2902. }
  2903. inline float Catcher_data::actual_z() const {
  2904. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_z)
  2905. return actual_z_;
  2906. }
  2907. inline void Catcher_data::set_actual_z(float value) {
  2908. set_has_actual_z();
  2909. actual_z_ = value;
  2910. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_z)
  2911. }
  2912. // optional float actual_d1 = 11;
  2913. inline bool Catcher_data::has_actual_d1() const {
  2914. return (_has_bits_[0] & 0x00001000u) != 0;
  2915. }
  2916. inline void Catcher_data::set_has_actual_d1() {
  2917. _has_bits_[0] |= 0x00001000u;
  2918. }
  2919. inline void Catcher_data::clear_has_actual_d1() {
  2920. _has_bits_[0] &= ~0x00001000u;
  2921. }
  2922. inline void Catcher_data::clear_actual_d1() {
  2923. actual_d1_ = 0;
  2924. clear_has_actual_d1();
  2925. }
  2926. inline float Catcher_data::actual_d1() const {
  2927. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_d1)
  2928. return actual_d1_;
  2929. }
  2930. inline void Catcher_data::set_actual_d1(float value) {
  2931. set_has_actual_d1();
  2932. actual_d1_ = value;
  2933. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_d1)
  2934. }
  2935. // optional float actual_d2 = 12;
  2936. inline bool Catcher_data::has_actual_d2() const {
  2937. return (_has_bits_[0] & 0x00002000u) != 0;
  2938. }
  2939. inline void Catcher_data::set_has_actual_d2() {
  2940. _has_bits_[0] |= 0x00002000u;
  2941. }
  2942. inline void Catcher_data::clear_has_actual_d2() {
  2943. _has_bits_[0] &= ~0x00002000u;
  2944. }
  2945. inline void Catcher_data::clear_actual_d2() {
  2946. actual_d2_ = 0;
  2947. clear_has_actual_d2();
  2948. }
  2949. inline float Catcher_data::actual_d2() const {
  2950. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_d2)
  2951. return actual_d2_;
  2952. }
  2953. inline void Catcher_data::set_actual_d2(float value) {
  2954. set_has_actual_d2();
  2955. actual_d2_ = value;
  2956. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_d2)
  2957. }
  2958. // optional .message.Clamp_motion actual_clamp_motion1 = 13;
  2959. inline bool Catcher_data::has_actual_clamp_motion1() const {
  2960. return (_has_bits_[0] & 0x00004000u) != 0;
  2961. }
  2962. inline void Catcher_data::set_has_actual_clamp_motion1() {
  2963. _has_bits_[0] |= 0x00004000u;
  2964. }
  2965. inline void Catcher_data::clear_has_actual_clamp_motion1() {
  2966. _has_bits_[0] &= ~0x00004000u;
  2967. }
  2968. inline void Catcher_data::clear_actual_clamp_motion1() {
  2969. actual_clamp_motion1_ = 0;
  2970. clear_has_actual_clamp_motion1();
  2971. }
  2972. inline ::message::Clamp_motion Catcher_data::actual_clamp_motion1() const {
  2973. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_clamp_motion1)
  2974. return static_cast< ::message::Clamp_motion >(actual_clamp_motion1_);
  2975. }
  2976. inline void Catcher_data::set_actual_clamp_motion1(::message::Clamp_motion value) {
  2977. assert(::message::Clamp_motion_IsValid(value));
  2978. set_has_actual_clamp_motion1();
  2979. actual_clamp_motion1_ = value;
  2980. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_clamp_motion1)
  2981. }
  2982. // optional .message.Clamp_motion actual_clamp_motion2 = 14;
  2983. inline bool Catcher_data::has_actual_clamp_motion2() const {
  2984. return (_has_bits_[0] & 0x00008000u) != 0;
  2985. }
  2986. inline void Catcher_data::set_has_actual_clamp_motion2() {
  2987. _has_bits_[0] |= 0x00008000u;
  2988. }
  2989. inline void Catcher_data::clear_has_actual_clamp_motion2() {
  2990. _has_bits_[0] &= ~0x00008000u;
  2991. }
  2992. inline void Catcher_data::clear_actual_clamp_motion2() {
  2993. actual_clamp_motion2_ = 0;
  2994. clear_has_actual_clamp_motion2();
  2995. }
  2996. inline ::message::Clamp_motion Catcher_data::actual_clamp_motion2() const {
  2997. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_clamp_motion2)
  2998. return static_cast< ::message::Clamp_motion >(actual_clamp_motion2_);
  2999. }
  3000. inline void Catcher_data::set_actual_clamp_motion2(::message::Clamp_motion value) {
  3001. assert(::message::Clamp_motion_IsValid(value));
  3002. set_has_actual_clamp_motion2();
  3003. actual_clamp_motion2_ = value;
  3004. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_clamp_motion2)
  3005. }
  3006. // optional .message.Clamp_motion actual_clamp_motion3 = 15;
  3007. inline bool Catcher_data::has_actual_clamp_motion3() const {
  3008. return (_has_bits_[0] & 0x00010000u) != 0;
  3009. }
  3010. inline void Catcher_data::set_has_actual_clamp_motion3() {
  3011. _has_bits_[0] |= 0x00010000u;
  3012. }
  3013. inline void Catcher_data::clear_has_actual_clamp_motion3() {
  3014. _has_bits_[0] &= ~0x00010000u;
  3015. }
  3016. inline void Catcher_data::clear_actual_clamp_motion3() {
  3017. actual_clamp_motion3_ = 0;
  3018. clear_has_actual_clamp_motion3();
  3019. }
  3020. inline ::message::Clamp_motion Catcher_data::actual_clamp_motion3() const {
  3021. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_clamp_motion3)
  3022. return static_cast< ::message::Clamp_motion >(actual_clamp_motion3_);
  3023. }
  3024. inline void Catcher_data::set_actual_clamp_motion3(::message::Clamp_motion value) {
  3025. assert(::message::Clamp_motion_IsValid(value));
  3026. set_has_actual_clamp_motion3();
  3027. actual_clamp_motion3_ = value;
  3028. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_clamp_motion3)
  3029. }
  3030. // optional .message.Clamp_motion actual_clamp_motion4 = 16;
  3031. inline bool Catcher_data::has_actual_clamp_motion4() const {
  3032. return (_has_bits_[0] & 0x00020000u) != 0;
  3033. }
  3034. inline void Catcher_data::set_has_actual_clamp_motion4() {
  3035. _has_bits_[0] |= 0x00020000u;
  3036. }
  3037. inline void Catcher_data::clear_has_actual_clamp_motion4() {
  3038. _has_bits_[0] &= ~0x00020000u;
  3039. }
  3040. inline void Catcher_data::clear_actual_clamp_motion4() {
  3041. actual_clamp_motion4_ = 0;
  3042. clear_has_actual_clamp_motion4();
  3043. }
  3044. inline ::message::Clamp_motion Catcher_data::actual_clamp_motion4() const {
  3045. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_clamp_motion4)
  3046. return static_cast< ::message::Clamp_motion >(actual_clamp_motion4_);
  3047. }
  3048. inline void Catcher_data::set_actual_clamp_motion4(::message::Clamp_motion value) {
  3049. assert(::message::Clamp_motion_IsValid(value));
  3050. set_has_actual_clamp_motion4();
  3051. actual_clamp_motion4_ = value;
  3052. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_clamp_motion4)
  3053. }
  3054. // optional string actual_error_code = 17;
  3055. inline bool Catcher_data::has_actual_error_code() const {
  3056. return (_has_bits_[0] & 0x00000001u) != 0;
  3057. }
  3058. inline void Catcher_data::set_has_actual_error_code() {
  3059. _has_bits_[0] |= 0x00000001u;
  3060. }
  3061. inline void Catcher_data::clear_has_actual_error_code() {
  3062. _has_bits_[0] &= ~0x00000001u;
  3063. }
  3064. inline void Catcher_data::clear_actual_error_code() {
  3065. actual_error_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3066. clear_has_actual_error_code();
  3067. }
  3068. inline const ::std::string& Catcher_data::actual_error_code() const {
  3069. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_error_code)
  3070. return actual_error_code_.GetNoArena();
  3071. }
  3072. inline void Catcher_data::set_actual_error_code(const ::std::string& value) {
  3073. set_has_actual_error_code();
  3074. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3075. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_error_code)
  3076. }
  3077. #if LANG_CXX11
  3078. inline void Catcher_data::set_actual_error_code(::std::string&& value) {
  3079. set_has_actual_error_code();
  3080. actual_error_code_.SetNoArena(
  3081. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3082. // @@protoc_insertion_point(field_set_rvalue:message.Catcher_data.actual_error_code)
  3083. }
  3084. #endif
  3085. inline void Catcher_data::set_actual_error_code(const char* value) {
  3086. GOOGLE_DCHECK(value != NULL);
  3087. set_has_actual_error_code();
  3088. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3089. // @@protoc_insertion_point(field_set_char:message.Catcher_data.actual_error_code)
  3090. }
  3091. inline void Catcher_data::set_actual_error_code(const char* value, size_t size) {
  3092. set_has_actual_error_code();
  3093. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3094. ::std::string(reinterpret_cast<const char*>(value), size));
  3095. // @@protoc_insertion_point(field_set_pointer:message.Catcher_data.actual_error_code)
  3096. }
  3097. inline ::std::string* Catcher_data::mutable_actual_error_code() {
  3098. set_has_actual_error_code();
  3099. // @@protoc_insertion_point(field_mutable:message.Catcher_data.actual_error_code)
  3100. return actual_error_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3101. }
  3102. inline ::std::string* Catcher_data::release_actual_error_code() {
  3103. // @@protoc_insertion_point(field_release:message.Catcher_data.actual_error_code)
  3104. if (!has_actual_error_code()) {
  3105. return NULL;
  3106. }
  3107. clear_has_actual_error_code();
  3108. return actual_error_code_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3109. }
  3110. inline void Catcher_data::set_allocated_actual_error_code(::std::string* actual_error_code) {
  3111. if (actual_error_code != NULL) {
  3112. set_has_actual_error_code();
  3113. } else {
  3114. clear_has_actual_error_code();
  3115. }
  3116. actual_error_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_error_code);
  3117. // @@protoc_insertion_point(field_set_allocated:message.Catcher_data.actual_error_code)
  3118. }
  3119. // optional string actual_warning_code = 18;
  3120. inline bool Catcher_data::has_actual_warning_code() const {
  3121. return (_has_bits_[0] & 0x00000002u) != 0;
  3122. }
  3123. inline void Catcher_data::set_has_actual_warning_code() {
  3124. _has_bits_[0] |= 0x00000002u;
  3125. }
  3126. inline void Catcher_data::clear_has_actual_warning_code() {
  3127. _has_bits_[0] &= ~0x00000002u;
  3128. }
  3129. inline void Catcher_data::clear_actual_warning_code() {
  3130. actual_warning_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3131. clear_has_actual_warning_code();
  3132. }
  3133. inline const ::std::string& Catcher_data::actual_warning_code() const {
  3134. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_warning_code)
  3135. return actual_warning_code_.GetNoArena();
  3136. }
  3137. inline void Catcher_data::set_actual_warning_code(const ::std::string& value) {
  3138. set_has_actual_warning_code();
  3139. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3140. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_warning_code)
  3141. }
  3142. #if LANG_CXX11
  3143. inline void Catcher_data::set_actual_warning_code(::std::string&& value) {
  3144. set_has_actual_warning_code();
  3145. actual_warning_code_.SetNoArena(
  3146. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3147. // @@protoc_insertion_point(field_set_rvalue:message.Catcher_data.actual_warning_code)
  3148. }
  3149. #endif
  3150. inline void Catcher_data::set_actual_warning_code(const char* value) {
  3151. GOOGLE_DCHECK(value != NULL);
  3152. set_has_actual_warning_code();
  3153. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3154. // @@protoc_insertion_point(field_set_char:message.Catcher_data.actual_warning_code)
  3155. }
  3156. inline void Catcher_data::set_actual_warning_code(const char* value, size_t size) {
  3157. set_has_actual_warning_code();
  3158. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3159. ::std::string(reinterpret_cast<const char*>(value), size));
  3160. // @@protoc_insertion_point(field_set_pointer:message.Catcher_data.actual_warning_code)
  3161. }
  3162. inline ::std::string* Catcher_data::mutable_actual_warning_code() {
  3163. set_has_actual_warning_code();
  3164. // @@protoc_insertion_point(field_mutable:message.Catcher_data.actual_warning_code)
  3165. return actual_warning_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3166. }
  3167. inline ::std::string* Catcher_data::release_actual_warning_code() {
  3168. // @@protoc_insertion_point(field_release:message.Catcher_data.actual_warning_code)
  3169. if (!has_actual_warning_code()) {
  3170. return NULL;
  3171. }
  3172. clear_has_actual_warning_code();
  3173. return actual_warning_code_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3174. }
  3175. inline void Catcher_data::set_allocated_actual_warning_code(::std::string* actual_warning_code) {
  3176. if (actual_warning_code != NULL) {
  3177. set_has_actual_warning_code();
  3178. } else {
  3179. clear_has_actual_warning_code();
  3180. }
  3181. actual_warning_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_warning_code);
  3182. // @@protoc_insertion_point(field_set_allocated:message.Catcher_data.actual_warning_code)
  3183. }
  3184. // optional string actual_error_description = 19;
  3185. inline bool Catcher_data::has_actual_error_description() const {
  3186. return (_has_bits_[0] & 0x00000004u) != 0;
  3187. }
  3188. inline void Catcher_data::set_has_actual_error_description() {
  3189. _has_bits_[0] |= 0x00000004u;
  3190. }
  3191. inline void Catcher_data::clear_has_actual_error_description() {
  3192. _has_bits_[0] &= ~0x00000004u;
  3193. }
  3194. inline void Catcher_data::clear_actual_error_description() {
  3195. actual_error_description_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3196. clear_has_actual_error_description();
  3197. }
  3198. inline const ::std::string& Catcher_data::actual_error_description() const {
  3199. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_error_description)
  3200. return actual_error_description_.GetNoArena();
  3201. }
  3202. inline void Catcher_data::set_actual_error_description(const ::std::string& value) {
  3203. set_has_actual_error_description();
  3204. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3205. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_error_description)
  3206. }
  3207. #if LANG_CXX11
  3208. inline void Catcher_data::set_actual_error_description(::std::string&& value) {
  3209. set_has_actual_error_description();
  3210. actual_error_description_.SetNoArena(
  3211. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3212. // @@protoc_insertion_point(field_set_rvalue:message.Catcher_data.actual_error_description)
  3213. }
  3214. #endif
  3215. inline void Catcher_data::set_actual_error_description(const char* value) {
  3216. GOOGLE_DCHECK(value != NULL);
  3217. set_has_actual_error_description();
  3218. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3219. // @@protoc_insertion_point(field_set_char:message.Catcher_data.actual_error_description)
  3220. }
  3221. inline void Catcher_data::set_actual_error_description(const char* value, size_t size) {
  3222. set_has_actual_error_description();
  3223. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3224. ::std::string(reinterpret_cast<const char*>(value), size));
  3225. // @@protoc_insertion_point(field_set_pointer:message.Catcher_data.actual_error_description)
  3226. }
  3227. inline ::std::string* Catcher_data::mutable_actual_error_description() {
  3228. set_has_actual_error_description();
  3229. // @@protoc_insertion_point(field_mutable:message.Catcher_data.actual_error_description)
  3230. return actual_error_description_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3231. }
  3232. inline ::std::string* Catcher_data::release_actual_error_description() {
  3233. // @@protoc_insertion_point(field_release:message.Catcher_data.actual_error_description)
  3234. if (!has_actual_error_description()) {
  3235. return NULL;
  3236. }
  3237. clear_has_actual_error_description();
  3238. return actual_error_description_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3239. }
  3240. inline void Catcher_data::set_allocated_actual_error_description(::std::string* actual_error_description) {
  3241. if (actual_error_description != NULL) {
  3242. set_has_actual_error_description();
  3243. } else {
  3244. clear_has_actual_error_description();
  3245. }
  3246. actual_error_description_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_error_description);
  3247. // @@protoc_insertion_point(field_set_allocated:message.Catcher_data.actual_error_description)
  3248. }
  3249. // -------------------------------------------------------------------
  3250. // Carrier_data
  3251. // required .message.Dispatch_device_type dispatch_device_type = 1;
  3252. inline bool Carrier_data::has_dispatch_device_type() const {
  3253. return (_has_bits_[0] & 0x00040000u) != 0;
  3254. }
  3255. inline void Carrier_data::set_has_dispatch_device_type() {
  3256. _has_bits_[0] |= 0x00040000u;
  3257. }
  3258. inline void Carrier_data::clear_has_dispatch_device_type() {
  3259. _has_bits_[0] &= ~0x00040000u;
  3260. }
  3261. inline void Carrier_data::clear_dispatch_device_type() {
  3262. dispatch_device_type_ = 101;
  3263. clear_has_dispatch_device_type();
  3264. }
  3265. inline ::message::Dispatch_device_type Carrier_data::dispatch_device_type() const {
  3266. // @@protoc_insertion_point(field_get:message.Carrier_data.dispatch_device_type)
  3267. return static_cast< ::message::Dispatch_device_type >(dispatch_device_type_);
  3268. }
  3269. inline void Carrier_data::set_dispatch_device_type(::message::Dispatch_device_type value) {
  3270. assert(::message::Dispatch_device_type_IsValid(value));
  3271. set_has_dispatch_device_type();
  3272. dispatch_device_type_ = value;
  3273. // @@protoc_insertion_point(field_set:message.Carrier_data.dispatch_device_type)
  3274. }
  3275. // required .message.Dispatch_device_status dispatch_device_status = 2;
  3276. inline bool Carrier_data::has_dispatch_device_status() const {
  3277. return (_has_bits_[0] & 0x00000008u) != 0;
  3278. }
  3279. inline void Carrier_data::set_has_dispatch_device_status() {
  3280. _has_bits_[0] |= 0x00000008u;
  3281. }
  3282. inline void Carrier_data::clear_has_dispatch_device_status() {
  3283. _has_bits_[0] &= ~0x00000008u;
  3284. }
  3285. inline void Carrier_data::clear_dispatch_device_status() {
  3286. dispatch_device_status_ = 0;
  3287. clear_has_dispatch_device_status();
  3288. }
  3289. inline ::message::Dispatch_device_status Carrier_data::dispatch_device_status() const {
  3290. // @@protoc_insertion_point(field_get:message.Carrier_data.dispatch_device_status)
  3291. return static_cast< ::message::Dispatch_device_status >(dispatch_device_status_);
  3292. }
  3293. inline void Carrier_data::set_dispatch_device_status(::message::Dispatch_device_status value) {
  3294. assert(::message::Dispatch_device_status_IsValid(value));
  3295. set_has_dispatch_device_status();
  3296. dispatch_device_status_ = value;
  3297. // @@protoc_insertion_point(field_set:message.Carrier_data.dispatch_device_status)
  3298. }
  3299. // required int32 device_id = 3;
  3300. inline bool Carrier_data::has_device_id() const {
  3301. return (_has_bits_[0] & 0x00000010u) != 0;
  3302. }
  3303. inline void Carrier_data::set_has_device_id() {
  3304. _has_bits_[0] |= 0x00000010u;
  3305. }
  3306. inline void Carrier_data::clear_has_device_id() {
  3307. _has_bits_[0] &= ~0x00000010u;
  3308. }
  3309. inline void Carrier_data::clear_device_id() {
  3310. device_id_ = 0;
  3311. clear_has_device_id();
  3312. }
  3313. inline ::google::protobuf::int32 Carrier_data::device_id() const {
  3314. // @@protoc_insertion_point(field_get:message.Carrier_data.device_id)
  3315. return device_id_;
  3316. }
  3317. inline void Carrier_data::set_device_id(::google::protobuf::int32 value) {
  3318. set_has_device_id();
  3319. device_id_ = value;
  3320. // @@protoc_insertion_point(field_set:message.Carrier_data.device_id)
  3321. }
  3322. // optional .message.Hardware_device_status actual_device_status = 4;
  3323. inline bool Carrier_data::has_actual_device_status() const {
  3324. return (_has_bits_[0] & 0x00000020u) != 0;
  3325. }
  3326. inline void Carrier_data::set_has_actual_device_status() {
  3327. _has_bits_[0] |= 0x00000020u;
  3328. }
  3329. inline void Carrier_data::clear_has_actual_device_status() {
  3330. _has_bits_[0] &= ~0x00000020u;
  3331. }
  3332. inline void Carrier_data::clear_actual_device_status() {
  3333. actual_device_status_ = 0;
  3334. clear_has_actual_device_status();
  3335. }
  3336. inline ::message::Hardware_device_status Carrier_data::actual_device_status() const {
  3337. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_device_status)
  3338. return static_cast< ::message::Hardware_device_status >(actual_device_status_);
  3339. }
  3340. inline void Carrier_data::set_actual_device_status(::message::Hardware_device_status value) {
  3341. assert(::message::Hardware_device_status_IsValid(value));
  3342. set_has_actual_device_status();
  3343. actual_device_status_ = value;
  3344. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_device_status)
  3345. }
  3346. // optional .message.Load_status actual_load_status = 5;
  3347. inline bool Carrier_data::has_actual_load_status() const {
  3348. return (_has_bits_[0] & 0x00000040u) != 0;
  3349. }
  3350. inline void Carrier_data::set_has_actual_load_status() {
  3351. _has_bits_[0] |= 0x00000040u;
  3352. }
  3353. inline void Carrier_data::clear_has_actual_load_status() {
  3354. _has_bits_[0] &= ~0x00000040u;
  3355. }
  3356. inline void Carrier_data::clear_actual_load_status() {
  3357. actual_load_status_ = 0;
  3358. clear_has_actual_load_status();
  3359. }
  3360. inline ::message::Load_status Carrier_data::actual_load_status() const {
  3361. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_load_status)
  3362. return static_cast< ::message::Load_status >(actual_load_status_);
  3363. }
  3364. inline void Carrier_data::set_actual_load_status(::message::Load_status value) {
  3365. assert(::message::Load_status_IsValid(value));
  3366. set_has_actual_load_status();
  3367. actual_load_status_ = value;
  3368. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_load_status)
  3369. }
  3370. // optional int32 actual_coordinates_id = 6;
  3371. inline bool Carrier_data::has_actual_coordinates_id() const {
  3372. return (_has_bits_[0] & 0x00000080u) != 0;
  3373. }
  3374. inline void Carrier_data::set_has_actual_coordinates_id() {
  3375. _has_bits_[0] |= 0x00000080u;
  3376. }
  3377. inline void Carrier_data::clear_has_actual_coordinates_id() {
  3378. _has_bits_[0] &= ~0x00000080u;
  3379. }
  3380. inline void Carrier_data::clear_actual_coordinates_id() {
  3381. actual_coordinates_id_ = 0;
  3382. clear_has_actual_coordinates_id();
  3383. }
  3384. inline ::google::protobuf::int32 Carrier_data::actual_coordinates_id() const {
  3385. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_coordinates_id)
  3386. return actual_coordinates_id_;
  3387. }
  3388. inline void Carrier_data::set_actual_coordinates_id(::google::protobuf::int32 value) {
  3389. set_has_actual_coordinates_id();
  3390. actual_coordinates_id_ = value;
  3391. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_coordinates_id)
  3392. }
  3393. // optional float actual_x = 7;
  3394. inline bool Carrier_data::has_actual_x() const {
  3395. return (_has_bits_[0] & 0x00000100u) != 0;
  3396. }
  3397. inline void Carrier_data::set_has_actual_x() {
  3398. _has_bits_[0] |= 0x00000100u;
  3399. }
  3400. inline void Carrier_data::clear_has_actual_x() {
  3401. _has_bits_[0] &= ~0x00000100u;
  3402. }
  3403. inline void Carrier_data::clear_actual_x() {
  3404. actual_x_ = 0;
  3405. clear_has_actual_x();
  3406. }
  3407. inline float Carrier_data::actual_x() const {
  3408. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_x)
  3409. return actual_x_;
  3410. }
  3411. inline void Carrier_data::set_actual_x(float value) {
  3412. set_has_actual_x();
  3413. actual_x_ = value;
  3414. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_x)
  3415. }
  3416. // optional float actual_y = 8;
  3417. inline bool Carrier_data::has_actual_y() const {
  3418. return (_has_bits_[0] & 0x00000200u) != 0;
  3419. }
  3420. inline void Carrier_data::set_has_actual_y() {
  3421. _has_bits_[0] |= 0x00000200u;
  3422. }
  3423. inline void Carrier_data::clear_has_actual_y() {
  3424. _has_bits_[0] &= ~0x00000200u;
  3425. }
  3426. inline void Carrier_data::clear_actual_y() {
  3427. actual_y_ = 0;
  3428. clear_has_actual_y();
  3429. }
  3430. inline float Carrier_data::actual_y() const {
  3431. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_y)
  3432. return actual_y_;
  3433. }
  3434. inline void Carrier_data::set_actual_y(float value) {
  3435. set_has_actual_y();
  3436. actual_y_ = value;
  3437. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_y)
  3438. }
  3439. // optional float actual_z = 9;
  3440. inline bool Carrier_data::has_actual_z() const {
  3441. return (_has_bits_[0] & 0x00000400u) != 0;
  3442. }
  3443. inline void Carrier_data::set_has_actual_z() {
  3444. _has_bits_[0] |= 0x00000400u;
  3445. }
  3446. inline void Carrier_data::clear_has_actual_z() {
  3447. _has_bits_[0] &= ~0x00000400u;
  3448. }
  3449. inline void Carrier_data::clear_actual_z() {
  3450. actual_z_ = 0;
  3451. clear_has_actual_z();
  3452. }
  3453. inline float Carrier_data::actual_z() const {
  3454. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_z)
  3455. return actual_z_;
  3456. }
  3457. inline void Carrier_data::set_actual_z(float value) {
  3458. set_has_actual_z();
  3459. actual_z_ = value;
  3460. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_z)
  3461. }
  3462. // optional float actual_y1 = 10;
  3463. inline bool Carrier_data::has_actual_y1() const {
  3464. return (_has_bits_[0] & 0x00000800u) != 0;
  3465. }
  3466. inline void Carrier_data::set_has_actual_y1() {
  3467. _has_bits_[0] |= 0x00000800u;
  3468. }
  3469. inline void Carrier_data::clear_has_actual_y1() {
  3470. _has_bits_[0] &= ~0x00000800u;
  3471. }
  3472. inline void Carrier_data::clear_actual_y1() {
  3473. actual_y1_ = 0;
  3474. clear_has_actual_y1();
  3475. }
  3476. inline float Carrier_data::actual_y1() const {
  3477. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_y1)
  3478. return actual_y1_;
  3479. }
  3480. inline void Carrier_data::set_actual_y1(float value) {
  3481. set_has_actual_y1();
  3482. actual_y1_ = value;
  3483. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_y1)
  3484. }
  3485. // optional float actual_y2 = 11;
  3486. inline bool Carrier_data::has_actual_y2() const {
  3487. return (_has_bits_[0] & 0x00001000u) != 0;
  3488. }
  3489. inline void Carrier_data::set_has_actual_y2() {
  3490. _has_bits_[0] |= 0x00001000u;
  3491. }
  3492. inline void Carrier_data::clear_has_actual_y2() {
  3493. _has_bits_[0] &= ~0x00001000u;
  3494. }
  3495. inline void Carrier_data::clear_actual_y2() {
  3496. actual_y2_ = 0;
  3497. clear_has_actual_y2();
  3498. }
  3499. inline float Carrier_data::actual_y2() const {
  3500. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_y2)
  3501. return actual_y2_;
  3502. }
  3503. inline void Carrier_data::set_actual_y2(float value) {
  3504. set_has_actual_y2();
  3505. actual_y2_ = value;
  3506. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_y2)
  3507. }
  3508. // optional .message.Clamp_motion actual_clamp_motion1 = 12;
  3509. inline bool Carrier_data::has_actual_clamp_motion1() const {
  3510. return (_has_bits_[0] & 0x00002000u) != 0;
  3511. }
  3512. inline void Carrier_data::set_has_actual_clamp_motion1() {
  3513. _has_bits_[0] |= 0x00002000u;
  3514. }
  3515. inline void Carrier_data::clear_has_actual_clamp_motion1() {
  3516. _has_bits_[0] &= ~0x00002000u;
  3517. }
  3518. inline void Carrier_data::clear_actual_clamp_motion1() {
  3519. actual_clamp_motion1_ = 0;
  3520. clear_has_actual_clamp_motion1();
  3521. }
  3522. inline ::message::Clamp_motion Carrier_data::actual_clamp_motion1() const {
  3523. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_clamp_motion1)
  3524. return static_cast< ::message::Clamp_motion >(actual_clamp_motion1_);
  3525. }
  3526. inline void Carrier_data::set_actual_clamp_motion1(::message::Clamp_motion value) {
  3527. assert(::message::Clamp_motion_IsValid(value));
  3528. set_has_actual_clamp_motion1();
  3529. actual_clamp_motion1_ = value;
  3530. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_clamp_motion1)
  3531. }
  3532. // optional .message.Clamp_motion actual_clamp_motion2 = 13;
  3533. inline bool Carrier_data::has_actual_clamp_motion2() const {
  3534. return (_has_bits_[0] & 0x00004000u) != 0;
  3535. }
  3536. inline void Carrier_data::set_has_actual_clamp_motion2() {
  3537. _has_bits_[0] |= 0x00004000u;
  3538. }
  3539. inline void Carrier_data::clear_has_actual_clamp_motion2() {
  3540. _has_bits_[0] &= ~0x00004000u;
  3541. }
  3542. inline void Carrier_data::clear_actual_clamp_motion2() {
  3543. actual_clamp_motion2_ = 0;
  3544. clear_has_actual_clamp_motion2();
  3545. }
  3546. inline ::message::Clamp_motion Carrier_data::actual_clamp_motion2() const {
  3547. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_clamp_motion2)
  3548. return static_cast< ::message::Clamp_motion >(actual_clamp_motion2_);
  3549. }
  3550. inline void Carrier_data::set_actual_clamp_motion2(::message::Clamp_motion value) {
  3551. assert(::message::Clamp_motion_IsValid(value));
  3552. set_has_actual_clamp_motion2();
  3553. actual_clamp_motion2_ = value;
  3554. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_clamp_motion2)
  3555. }
  3556. // optional .message.Small_sports_car_motion actual_small_sports_car_motion = 14;
  3557. inline bool Carrier_data::has_actual_small_sports_car_motion() const {
  3558. return (_has_bits_[0] & 0x00008000u) != 0;
  3559. }
  3560. inline void Carrier_data::set_has_actual_small_sports_car_motion() {
  3561. _has_bits_[0] |= 0x00008000u;
  3562. }
  3563. inline void Carrier_data::clear_has_actual_small_sports_car_motion() {
  3564. _has_bits_[0] &= ~0x00008000u;
  3565. }
  3566. inline void Carrier_data::clear_actual_small_sports_car_motion() {
  3567. actual_small_sports_car_motion_ = 0;
  3568. clear_has_actual_small_sports_car_motion();
  3569. }
  3570. inline ::message::Small_sports_car_motion Carrier_data::actual_small_sports_car_motion() const {
  3571. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_small_sports_car_motion)
  3572. return static_cast< ::message::Small_sports_car_motion >(actual_small_sports_car_motion_);
  3573. }
  3574. inline void Carrier_data::set_actual_small_sports_car_motion(::message::Small_sports_car_motion value) {
  3575. assert(::message::Small_sports_car_motion_IsValid(value));
  3576. set_has_actual_small_sports_car_motion();
  3577. actual_small_sports_car_motion_ = value;
  3578. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_small_sports_car_motion)
  3579. }
  3580. // optional .message.Joint_motion actual_joint_motion_x1 = 15;
  3581. inline bool Carrier_data::has_actual_joint_motion_x1() const {
  3582. return (_has_bits_[0] & 0x00010000u) != 0;
  3583. }
  3584. inline void Carrier_data::set_has_actual_joint_motion_x1() {
  3585. _has_bits_[0] |= 0x00010000u;
  3586. }
  3587. inline void Carrier_data::clear_has_actual_joint_motion_x1() {
  3588. _has_bits_[0] &= ~0x00010000u;
  3589. }
  3590. inline void Carrier_data::clear_actual_joint_motion_x1() {
  3591. actual_joint_motion_x1_ = 0;
  3592. clear_has_actual_joint_motion_x1();
  3593. }
  3594. inline ::message::Joint_motion Carrier_data::actual_joint_motion_x1() const {
  3595. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_joint_motion_x1)
  3596. return static_cast< ::message::Joint_motion >(actual_joint_motion_x1_);
  3597. }
  3598. inline void Carrier_data::set_actual_joint_motion_x1(::message::Joint_motion value) {
  3599. assert(::message::Joint_motion_IsValid(value));
  3600. set_has_actual_joint_motion_x1();
  3601. actual_joint_motion_x1_ = value;
  3602. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_joint_motion_x1)
  3603. }
  3604. // optional .message.Joint_motion actual_joint_motion_x2 = 16;
  3605. inline bool Carrier_data::has_actual_joint_motion_x2() const {
  3606. return (_has_bits_[0] & 0x00020000u) != 0;
  3607. }
  3608. inline void Carrier_data::set_has_actual_joint_motion_x2() {
  3609. _has_bits_[0] |= 0x00020000u;
  3610. }
  3611. inline void Carrier_data::clear_has_actual_joint_motion_x2() {
  3612. _has_bits_[0] &= ~0x00020000u;
  3613. }
  3614. inline void Carrier_data::clear_actual_joint_motion_x2() {
  3615. actual_joint_motion_x2_ = 0;
  3616. clear_has_actual_joint_motion_x2();
  3617. }
  3618. inline ::message::Joint_motion Carrier_data::actual_joint_motion_x2() const {
  3619. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_joint_motion_x2)
  3620. return static_cast< ::message::Joint_motion >(actual_joint_motion_x2_);
  3621. }
  3622. inline void Carrier_data::set_actual_joint_motion_x2(::message::Joint_motion value) {
  3623. assert(::message::Joint_motion_IsValid(value));
  3624. set_has_actual_joint_motion_x2();
  3625. actual_joint_motion_x2_ = value;
  3626. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_joint_motion_x2)
  3627. }
  3628. // optional string actual_error_code = 17;
  3629. inline bool Carrier_data::has_actual_error_code() const {
  3630. return (_has_bits_[0] & 0x00000001u) != 0;
  3631. }
  3632. inline void Carrier_data::set_has_actual_error_code() {
  3633. _has_bits_[0] |= 0x00000001u;
  3634. }
  3635. inline void Carrier_data::clear_has_actual_error_code() {
  3636. _has_bits_[0] &= ~0x00000001u;
  3637. }
  3638. inline void Carrier_data::clear_actual_error_code() {
  3639. actual_error_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3640. clear_has_actual_error_code();
  3641. }
  3642. inline const ::std::string& Carrier_data::actual_error_code() const {
  3643. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_error_code)
  3644. return actual_error_code_.GetNoArena();
  3645. }
  3646. inline void Carrier_data::set_actual_error_code(const ::std::string& value) {
  3647. set_has_actual_error_code();
  3648. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3649. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_error_code)
  3650. }
  3651. #if LANG_CXX11
  3652. inline void Carrier_data::set_actual_error_code(::std::string&& value) {
  3653. set_has_actual_error_code();
  3654. actual_error_code_.SetNoArena(
  3655. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3656. // @@protoc_insertion_point(field_set_rvalue:message.Carrier_data.actual_error_code)
  3657. }
  3658. #endif
  3659. inline void Carrier_data::set_actual_error_code(const char* value) {
  3660. GOOGLE_DCHECK(value != NULL);
  3661. set_has_actual_error_code();
  3662. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3663. // @@protoc_insertion_point(field_set_char:message.Carrier_data.actual_error_code)
  3664. }
  3665. inline void Carrier_data::set_actual_error_code(const char* value, size_t size) {
  3666. set_has_actual_error_code();
  3667. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3668. ::std::string(reinterpret_cast<const char*>(value), size));
  3669. // @@protoc_insertion_point(field_set_pointer:message.Carrier_data.actual_error_code)
  3670. }
  3671. inline ::std::string* Carrier_data::mutable_actual_error_code() {
  3672. set_has_actual_error_code();
  3673. // @@protoc_insertion_point(field_mutable:message.Carrier_data.actual_error_code)
  3674. return actual_error_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3675. }
  3676. inline ::std::string* Carrier_data::release_actual_error_code() {
  3677. // @@protoc_insertion_point(field_release:message.Carrier_data.actual_error_code)
  3678. if (!has_actual_error_code()) {
  3679. return NULL;
  3680. }
  3681. clear_has_actual_error_code();
  3682. return actual_error_code_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3683. }
  3684. inline void Carrier_data::set_allocated_actual_error_code(::std::string* actual_error_code) {
  3685. if (actual_error_code != NULL) {
  3686. set_has_actual_error_code();
  3687. } else {
  3688. clear_has_actual_error_code();
  3689. }
  3690. actual_error_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_error_code);
  3691. // @@protoc_insertion_point(field_set_allocated:message.Carrier_data.actual_error_code)
  3692. }
  3693. // optional string actual_warning_code = 18;
  3694. inline bool Carrier_data::has_actual_warning_code() const {
  3695. return (_has_bits_[0] & 0x00000002u) != 0;
  3696. }
  3697. inline void Carrier_data::set_has_actual_warning_code() {
  3698. _has_bits_[0] |= 0x00000002u;
  3699. }
  3700. inline void Carrier_data::clear_has_actual_warning_code() {
  3701. _has_bits_[0] &= ~0x00000002u;
  3702. }
  3703. inline void Carrier_data::clear_actual_warning_code() {
  3704. actual_warning_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3705. clear_has_actual_warning_code();
  3706. }
  3707. inline const ::std::string& Carrier_data::actual_warning_code() const {
  3708. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_warning_code)
  3709. return actual_warning_code_.GetNoArena();
  3710. }
  3711. inline void Carrier_data::set_actual_warning_code(const ::std::string& value) {
  3712. set_has_actual_warning_code();
  3713. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3714. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_warning_code)
  3715. }
  3716. #if LANG_CXX11
  3717. inline void Carrier_data::set_actual_warning_code(::std::string&& value) {
  3718. set_has_actual_warning_code();
  3719. actual_warning_code_.SetNoArena(
  3720. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3721. // @@protoc_insertion_point(field_set_rvalue:message.Carrier_data.actual_warning_code)
  3722. }
  3723. #endif
  3724. inline void Carrier_data::set_actual_warning_code(const char* value) {
  3725. GOOGLE_DCHECK(value != NULL);
  3726. set_has_actual_warning_code();
  3727. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3728. // @@protoc_insertion_point(field_set_char:message.Carrier_data.actual_warning_code)
  3729. }
  3730. inline void Carrier_data::set_actual_warning_code(const char* value, size_t size) {
  3731. set_has_actual_warning_code();
  3732. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3733. ::std::string(reinterpret_cast<const char*>(value), size));
  3734. // @@protoc_insertion_point(field_set_pointer:message.Carrier_data.actual_warning_code)
  3735. }
  3736. inline ::std::string* Carrier_data::mutable_actual_warning_code() {
  3737. set_has_actual_warning_code();
  3738. // @@protoc_insertion_point(field_mutable:message.Carrier_data.actual_warning_code)
  3739. return actual_warning_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3740. }
  3741. inline ::std::string* Carrier_data::release_actual_warning_code() {
  3742. // @@protoc_insertion_point(field_release:message.Carrier_data.actual_warning_code)
  3743. if (!has_actual_warning_code()) {
  3744. return NULL;
  3745. }
  3746. clear_has_actual_warning_code();
  3747. return actual_warning_code_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3748. }
  3749. inline void Carrier_data::set_allocated_actual_warning_code(::std::string* actual_warning_code) {
  3750. if (actual_warning_code != NULL) {
  3751. set_has_actual_warning_code();
  3752. } else {
  3753. clear_has_actual_warning_code();
  3754. }
  3755. actual_warning_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_warning_code);
  3756. // @@protoc_insertion_point(field_set_allocated:message.Carrier_data.actual_warning_code)
  3757. }
  3758. // optional string actual_error_description = 19;
  3759. inline bool Carrier_data::has_actual_error_description() const {
  3760. return (_has_bits_[0] & 0x00000004u) != 0;
  3761. }
  3762. inline void Carrier_data::set_has_actual_error_description() {
  3763. _has_bits_[0] |= 0x00000004u;
  3764. }
  3765. inline void Carrier_data::clear_has_actual_error_description() {
  3766. _has_bits_[0] &= ~0x00000004u;
  3767. }
  3768. inline void Carrier_data::clear_actual_error_description() {
  3769. actual_error_description_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3770. clear_has_actual_error_description();
  3771. }
  3772. inline const ::std::string& Carrier_data::actual_error_description() const {
  3773. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_error_description)
  3774. return actual_error_description_.GetNoArena();
  3775. }
  3776. inline void Carrier_data::set_actual_error_description(const ::std::string& value) {
  3777. set_has_actual_error_description();
  3778. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3779. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_error_description)
  3780. }
  3781. #if LANG_CXX11
  3782. inline void Carrier_data::set_actual_error_description(::std::string&& value) {
  3783. set_has_actual_error_description();
  3784. actual_error_description_.SetNoArena(
  3785. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3786. // @@protoc_insertion_point(field_set_rvalue:message.Carrier_data.actual_error_description)
  3787. }
  3788. #endif
  3789. inline void Carrier_data::set_actual_error_description(const char* value) {
  3790. GOOGLE_DCHECK(value != NULL);
  3791. set_has_actual_error_description();
  3792. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3793. // @@protoc_insertion_point(field_set_char:message.Carrier_data.actual_error_description)
  3794. }
  3795. inline void Carrier_data::set_actual_error_description(const char* value, size_t size) {
  3796. set_has_actual_error_description();
  3797. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3798. ::std::string(reinterpret_cast<const char*>(value), size));
  3799. // @@protoc_insertion_point(field_set_pointer:message.Carrier_data.actual_error_description)
  3800. }
  3801. inline ::std::string* Carrier_data::mutable_actual_error_description() {
  3802. set_has_actual_error_description();
  3803. // @@protoc_insertion_point(field_mutable:message.Carrier_data.actual_error_description)
  3804. return actual_error_description_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3805. }
  3806. inline ::std::string* Carrier_data::release_actual_error_description() {
  3807. // @@protoc_insertion_point(field_release:message.Carrier_data.actual_error_description)
  3808. if (!has_actual_error_description()) {
  3809. return NULL;
  3810. }
  3811. clear_has_actual_error_description();
  3812. return actual_error_description_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3813. }
  3814. inline void Carrier_data::set_allocated_actual_error_description(::std::string* actual_error_description) {
  3815. if (actual_error_description != NULL) {
  3816. set_has_actual_error_description();
  3817. } else {
  3818. clear_has_actual_error_description();
  3819. }
  3820. actual_error_description_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_error_description);
  3821. // @@protoc_insertion_point(field_set_allocated:message.Carrier_data.actual_error_description)
  3822. }
  3823. // -------------------------------------------------------------------
  3824. // Passageway_data
  3825. // required .message.Dispatch_device_type dispatch_device_type = 1;
  3826. inline bool Passageway_data::has_dispatch_device_type() const {
  3827. return (_has_bits_[0] & 0x00010000u) != 0;
  3828. }
  3829. inline void Passageway_data::set_has_dispatch_device_type() {
  3830. _has_bits_[0] |= 0x00010000u;
  3831. }
  3832. inline void Passageway_data::clear_has_dispatch_device_type() {
  3833. _has_bits_[0] &= ~0x00010000u;
  3834. }
  3835. inline void Passageway_data::clear_dispatch_device_type() {
  3836. dispatch_device_type_ = 101;
  3837. clear_has_dispatch_device_type();
  3838. }
  3839. inline ::message::Dispatch_device_type Passageway_data::dispatch_device_type() const {
  3840. // @@protoc_insertion_point(field_get:message.Passageway_data.dispatch_device_type)
  3841. return static_cast< ::message::Dispatch_device_type >(dispatch_device_type_);
  3842. }
  3843. inline void Passageway_data::set_dispatch_device_type(::message::Dispatch_device_type value) {
  3844. assert(::message::Dispatch_device_type_IsValid(value));
  3845. set_has_dispatch_device_type();
  3846. dispatch_device_type_ = value;
  3847. // @@protoc_insertion_point(field_set:message.Passageway_data.dispatch_device_type)
  3848. }
  3849. // required .message.Dispatch_device_status dispatch_device_status = 2;
  3850. inline bool Passageway_data::has_dispatch_device_status() const {
  3851. return (_has_bits_[0] & 0x00000008u) != 0;
  3852. }
  3853. inline void Passageway_data::set_has_dispatch_device_status() {
  3854. _has_bits_[0] |= 0x00000008u;
  3855. }
  3856. inline void Passageway_data::clear_has_dispatch_device_status() {
  3857. _has_bits_[0] &= ~0x00000008u;
  3858. }
  3859. inline void Passageway_data::clear_dispatch_device_status() {
  3860. dispatch_device_status_ = 0;
  3861. clear_has_dispatch_device_status();
  3862. }
  3863. inline ::message::Dispatch_device_status Passageway_data::dispatch_device_status() const {
  3864. // @@protoc_insertion_point(field_get:message.Passageway_data.dispatch_device_status)
  3865. return static_cast< ::message::Dispatch_device_status >(dispatch_device_status_);
  3866. }
  3867. inline void Passageway_data::set_dispatch_device_status(::message::Dispatch_device_status value) {
  3868. assert(::message::Dispatch_device_status_IsValid(value));
  3869. set_has_dispatch_device_status();
  3870. dispatch_device_status_ = value;
  3871. // @@protoc_insertion_point(field_set:message.Passageway_data.dispatch_device_status)
  3872. }
  3873. // required int32 device_id = 3;
  3874. inline bool Passageway_data::has_device_id() const {
  3875. return (_has_bits_[0] & 0x00000010u) != 0;
  3876. }
  3877. inline void Passageway_data::set_has_device_id() {
  3878. _has_bits_[0] |= 0x00000010u;
  3879. }
  3880. inline void Passageway_data::clear_has_device_id() {
  3881. _has_bits_[0] &= ~0x00000010u;
  3882. }
  3883. inline void Passageway_data::clear_device_id() {
  3884. device_id_ = 0;
  3885. clear_has_device_id();
  3886. }
  3887. inline ::google::protobuf::int32 Passageway_data::device_id() const {
  3888. // @@protoc_insertion_point(field_get:message.Passageway_data.device_id)
  3889. return device_id_;
  3890. }
  3891. inline void Passageway_data::set_device_id(::google::protobuf::int32 value) {
  3892. set_has_device_id();
  3893. device_id_ = value;
  3894. // @@protoc_insertion_point(field_set:message.Passageway_data.device_id)
  3895. }
  3896. // optional .message.Hardware_device_status actual_device_status = 4;
  3897. inline bool Passageway_data::has_actual_device_status() const {
  3898. return (_has_bits_[0] & 0x00000020u) != 0;
  3899. }
  3900. inline void Passageway_data::set_has_actual_device_status() {
  3901. _has_bits_[0] |= 0x00000020u;
  3902. }
  3903. inline void Passageway_data::clear_has_actual_device_status() {
  3904. _has_bits_[0] &= ~0x00000020u;
  3905. }
  3906. inline void Passageway_data::clear_actual_device_status() {
  3907. actual_device_status_ = 0;
  3908. clear_has_actual_device_status();
  3909. }
  3910. inline ::message::Hardware_device_status Passageway_data::actual_device_status() const {
  3911. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_device_status)
  3912. return static_cast< ::message::Hardware_device_status >(actual_device_status_);
  3913. }
  3914. inline void Passageway_data::set_actual_device_status(::message::Hardware_device_status value) {
  3915. assert(::message::Hardware_device_status_IsValid(value));
  3916. set_has_actual_device_status();
  3917. actual_device_status_ = value;
  3918. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_device_status)
  3919. }
  3920. // optional .message.Load_status actual_inside_load_status = 5;
  3921. inline bool Passageway_data::has_actual_inside_load_status() const {
  3922. return (_has_bits_[0] & 0x00000040u) != 0;
  3923. }
  3924. inline void Passageway_data::set_has_actual_inside_load_status() {
  3925. _has_bits_[0] |= 0x00000040u;
  3926. }
  3927. inline void Passageway_data::clear_has_actual_inside_load_status() {
  3928. _has_bits_[0] &= ~0x00000040u;
  3929. }
  3930. inline void Passageway_data::clear_actual_inside_load_status() {
  3931. actual_inside_load_status_ = 0;
  3932. clear_has_actual_inside_load_status();
  3933. }
  3934. inline ::message::Load_status Passageway_data::actual_inside_load_status() const {
  3935. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_inside_load_status)
  3936. return static_cast< ::message::Load_status >(actual_inside_load_status_);
  3937. }
  3938. inline void Passageway_data::set_actual_inside_load_status(::message::Load_status value) {
  3939. assert(::message::Load_status_IsValid(value));
  3940. set_has_actual_inside_load_status();
  3941. actual_inside_load_status_ = value;
  3942. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_inside_load_status)
  3943. }
  3944. // optional .message.Load_status actual_outside_load_status = 6;
  3945. inline bool Passageway_data::has_actual_outside_load_status() const {
  3946. return (_has_bits_[0] & 0x00000080u) != 0;
  3947. }
  3948. inline void Passageway_data::set_has_actual_outside_load_status() {
  3949. _has_bits_[0] |= 0x00000080u;
  3950. }
  3951. inline void Passageway_data::clear_has_actual_outside_load_status() {
  3952. _has_bits_[0] &= ~0x00000080u;
  3953. }
  3954. inline void Passageway_data::clear_actual_outside_load_status() {
  3955. actual_outside_load_status_ = 0;
  3956. clear_has_actual_outside_load_status();
  3957. }
  3958. inline ::message::Load_status Passageway_data::actual_outside_load_status() const {
  3959. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_outside_load_status)
  3960. return static_cast< ::message::Load_status >(actual_outside_load_status_);
  3961. }
  3962. inline void Passageway_data::set_actual_outside_load_status(::message::Load_status value) {
  3963. assert(::message::Load_status_IsValid(value));
  3964. set_has_actual_outside_load_status();
  3965. actual_outside_load_status_ = value;
  3966. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_outside_load_status)
  3967. }
  3968. // optional .message.Overstep_the_boundary actual_front_overstep_the_boundary = 7;
  3969. inline bool Passageway_data::has_actual_front_overstep_the_boundary() const {
  3970. return (_has_bits_[0] & 0x00000100u) != 0;
  3971. }
  3972. inline void Passageway_data::set_has_actual_front_overstep_the_boundary() {
  3973. _has_bits_[0] |= 0x00000100u;
  3974. }
  3975. inline void Passageway_data::clear_has_actual_front_overstep_the_boundary() {
  3976. _has_bits_[0] &= ~0x00000100u;
  3977. }
  3978. inline void Passageway_data::clear_actual_front_overstep_the_boundary() {
  3979. actual_front_overstep_the_boundary_ = 0;
  3980. clear_has_actual_front_overstep_the_boundary();
  3981. }
  3982. inline ::message::Overstep_the_boundary Passageway_data::actual_front_overstep_the_boundary() const {
  3983. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_front_overstep_the_boundary)
  3984. return static_cast< ::message::Overstep_the_boundary >(actual_front_overstep_the_boundary_);
  3985. }
  3986. inline void Passageway_data::set_actual_front_overstep_the_boundary(::message::Overstep_the_boundary value) {
  3987. assert(::message::Overstep_the_boundary_IsValid(value));
  3988. set_has_actual_front_overstep_the_boundary();
  3989. actual_front_overstep_the_boundary_ = value;
  3990. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_front_overstep_the_boundary)
  3991. }
  3992. // optional .message.Overstep_the_boundary actual_back_overstep_the_boundary = 8;
  3993. inline bool Passageway_data::has_actual_back_overstep_the_boundary() const {
  3994. return (_has_bits_[0] & 0x00000200u) != 0;
  3995. }
  3996. inline void Passageway_data::set_has_actual_back_overstep_the_boundary() {
  3997. _has_bits_[0] |= 0x00000200u;
  3998. }
  3999. inline void Passageway_data::clear_has_actual_back_overstep_the_boundary() {
  4000. _has_bits_[0] &= ~0x00000200u;
  4001. }
  4002. inline void Passageway_data::clear_actual_back_overstep_the_boundary() {
  4003. actual_back_overstep_the_boundary_ = 0;
  4004. clear_has_actual_back_overstep_the_boundary();
  4005. }
  4006. inline ::message::Overstep_the_boundary Passageway_data::actual_back_overstep_the_boundary() const {
  4007. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_back_overstep_the_boundary)
  4008. return static_cast< ::message::Overstep_the_boundary >(actual_back_overstep_the_boundary_);
  4009. }
  4010. inline void Passageway_data::set_actual_back_overstep_the_boundary(::message::Overstep_the_boundary value) {
  4011. assert(::message::Overstep_the_boundary_IsValid(value));
  4012. set_has_actual_back_overstep_the_boundary();
  4013. actual_back_overstep_the_boundary_ = value;
  4014. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_back_overstep_the_boundary)
  4015. }
  4016. // optional .message.Overstep_the_boundary actual_height_overstep_the_boundary = 9;
  4017. inline bool Passageway_data::has_actual_height_overstep_the_boundary() const {
  4018. return (_has_bits_[0] & 0x00000400u) != 0;
  4019. }
  4020. inline void Passageway_data::set_has_actual_height_overstep_the_boundary() {
  4021. _has_bits_[0] |= 0x00000400u;
  4022. }
  4023. inline void Passageway_data::clear_has_actual_height_overstep_the_boundary() {
  4024. _has_bits_[0] &= ~0x00000400u;
  4025. }
  4026. inline void Passageway_data::clear_actual_height_overstep_the_boundary() {
  4027. actual_height_overstep_the_boundary_ = 0;
  4028. clear_has_actual_height_overstep_the_boundary();
  4029. }
  4030. inline ::message::Overstep_the_boundary Passageway_data::actual_height_overstep_the_boundary() const {
  4031. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_height_overstep_the_boundary)
  4032. return static_cast< ::message::Overstep_the_boundary >(actual_height_overstep_the_boundary_);
  4033. }
  4034. inline void Passageway_data::set_actual_height_overstep_the_boundary(::message::Overstep_the_boundary value) {
  4035. assert(::message::Overstep_the_boundary_IsValid(value));
  4036. set_has_actual_height_overstep_the_boundary();
  4037. actual_height_overstep_the_boundary_ = value;
  4038. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_height_overstep_the_boundary)
  4039. }
  4040. // optional .message.Load_status actual_outside_door_sensor = 10;
  4041. inline bool Passageway_data::has_actual_outside_door_sensor() const {
  4042. return (_has_bits_[0] & 0x00000800u) != 0;
  4043. }
  4044. inline void Passageway_data::set_has_actual_outside_door_sensor() {
  4045. _has_bits_[0] |= 0x00000800u;
  4046. }
  4047. inline void Passageway_data::clear_has_actual_outside_door_sensor() {
  4048. _has_bits_[0] &= ~0x00000800u;
  4049. }
  4050. inline void Passageway_data::clear_actual_outside_door_sensor() {
  4051. actual_outside_door_sensor_ = 0;
  4052. clear_has_actual_outside_door_sensor();
  4053. }
  4054. inline ::message::Load_status Passageway_data::actual_outside_door_sensor() const {
  4055. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_outside_door_sensor)
  4056. return static_cast< ::message::Load_status >(actual_outside_door_sensor_);
  4057. }
  4058. inline void Passageway_data::set_actual_outside_door_sensor(::message::Load_status value) {
  4059. assert(::message::Load_status_IsValid(value));
  4060. set_has_actual_outside_door_sensor();
  4061. actual_outside_door_sensor_ = value;
  4062. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_outside_door_sensor)
  4063. }
  4064. // optional .message.Door_motion actual_inside_door_motion = 11;
  4065. inline bool Passageway_data::has_actual_inside_door_motion() const {
  4066. return (_has_bits_[0] & 0x00001000u) != 0;
  4067. }
  4068. inline void Passageway_data::set_has_actual_inside_door_motion() {
  4069. _has_bits_[0] |= 0x00001000u;
  4070. }
  4071. inline void Passageway_data::clear_has_actual_inside_door_motion() {
  4072. _has_bits_[0] &= ~0x00001000u;
  4073. }
  4074. inline void Passageway_data::clear_actual_inside_door_motion() {
  4075. actual_inside_door_motion_ = 0;
  4076. clear_has_actual_inside_door_motion();
  4077. }
  4078. inline ::message::Door_motion Passageway_data::actual_inside_door_motion() const {
  4079. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_inside_door_motion)
  4080. return static_cast< ::message::Door_motion >(actual_inside_door_motion_);
  4081. }
  4082. inline void Passageway_data::set_actual_inside_door_motion(::message::Door_motion value) {
  4083. assert(::message::Door_motion_IsValid(value));
  4084. set_has_actual_inside_door_motion();
  4085. actual_inside_door_motion_ = value;
  4086. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_inside_door_motion)
  4087. }
  4088. // optional .message.Door_motion actual_outside_door_motion = 12;
  4089. inline bool Passageway_data::has_actual_outside_door_motion() const {
  4090. return (_has_bits_[0] & 0x00002000u) != 0;
  4091. }
  4092. inline void Passageway_data::set_has_actual_outside_door_motion() {
  4093. _has_bits_[0] |= 0x00002000u;
  4094. }
  4095. inline void Passageway_data::clear_has_actual_outside_door_motion() {
  4096. _has_bits_[0] &= ~0x00002000u;
  4097. }
  4098. inline void Passageway_data::clear_actual_outside_door_motion() {
  4099. actual_outside_door_motion_ = 0;
  4100. clear_has_actual_outside_door_motion();
  4101. }
  4102. inline ::message::Door_motion Passageway_data::actual_outside_door_motion() const {
  4103. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_outside_door_motion)
  4104. return static_cast< ::message::Door_motion >(actual_outside_door_motion_);
  4105. }
  4106. inline void Passageway_data::set_actual_outside_door_motion(::message::Door_motion value) {
  4107. assert(::message::Door_motion_IsValid(value));
  4108. set_has_actual_outside_door_motion();
  4109. actual_outside_door_motion_ = value;
  4110. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_outside_door_motion)
  4111. }
  4112. // optional .message.Load_status actual_turntable_load_status = 13;
  4113. inline bool Passageway_data::has_actual_turntable_load_status() const {
  4114. return (_has_bits_[0] & 0x00004000u) != 0;
  4115. }
  4116. inline void Passageway_data::set_has_actual_turntable_load_status() {
  4117. _has_bits_[0] |= 0x00004000u;
  4118. }
  4119. inline void Passageway_data::clear_has_actual_turntable_load_status() {
  4120. _has_bits_[0] &= ~0x00004000u;
  4121. }
  4122. inline void Passageway_data::clear_actual_turntable_load_status() {
  4123. actual_turntable_load_status_ = 0;
  4124. clear_has_actual_turntable_load_status();
  4125. }
  4126. inline ::message::Load_status Passageway_data::actual_turntable_load_status() const {
  4127. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_turntable_load_status)
  4128. return static_cast< ::message::Load_status >(actual_turntable_load_status_);
  4129. }
  4130. inline void Passageway_data::set_actual_turntable_load_status(::message::Load_status value) {
  4131. assert(::message::Load_status_IsValid(value));
  4132. set_has_actual_turntable_load_status();
  4133. actual_turntable_load_status_ = value;
  4134. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_turntable_load_status)
  4135. }
  4136. // optional .message.Turntable_direction actual_turntable_direction = 14;
  4137. inline bool Passageway_data::has_actual_turntable_direction() const {
  4138. return (_has_bits_[0] & 0x00008000u) != 0;
  4139. }
  4140. inline void Passageway_data::set_has_actual_turntable_direction() {
  4141. _has_bits_[0] |= 0x00008000u;
  4142. }
  4143. inline void Passageway_data::clear_has_actual_turntable_direction() {
  4144. _has_bits_[0] &= ~0x00008000u;
  4145. }
  4146. inline void Passageway_data::clear_actual_turntable_direction() {
  4147. actual_turntable_direction_ = 0;
  4148. clear_has_actual_turntable_direction();
  4149. }
  4150. inline ::message::Turntable_direction Passageway_data::actual_turntable_direction() const {
  4151. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_turntable_direction)
  4152. return static_cast< ::message::Turntable_direction >(actual_turntable_direction_);
  4153. }
  4154. inline void Passageway_data::set_actual_turntable_direction(::message::Turntable_direction value) {
  4155. assert(::message::Turntable_direction_IsValid(value));
  4156. set_has_actual_turntable_direction();
  4157. actual_turntable_direction_ = value;
  4158. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_turntable_direction)
  4159. }
  4160. // optional string actual_error_code = 15;
  4161. inline bool Passageway_data::has_actual_error_code() const {
  4162. return (_has_bits_[0] & 0x00000001u) != 0;
  4163. }
  4164. inline void Passageway_data::set_has_actual_error_code() {
  4165. _has_bits_[0] |= 0x00000001u;
  4166. }
  4167. inline void Passageway_data::clear_has_actual_error_code() {
  4168. _has_bits_[0] &= ~0x00000001u;
  4169. }
  4170. inline void Passageway_data::clear_actual_error_code() {
  4171. actual_error_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4172. clear_has_actual_error_code();
  4173. }
  4174. inline const ::std::string& Passageway_data::actual_error_code() const {
  4175. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_error_code)
  4176. return actual_error_code_.GetNoArena();
  4177. }
  4178. inline void Passageway_data::set_actual_error_code(const ::std::string& value) {
  4179. set_has_actual_error_code();
  4180. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  4181. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_error_code)
  4182. }
  4183. #if LANG_CXX11
  4184. inline void Passageway_data::set_actual_error_code(::std::string&& value) {
  4185. set_has_actual_error_code();
  4186. actual_error_code_.SetNoArena(
  4187. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  4188. // @@protoc_insertion_point(field_set_rvalue:message.Passageway_data.actual_error_code)
  4189. }
  4190. #endif
  4191. inline void Passageway_data::set_actual_error_code(const char* value) {
  4192. GOOGLE_DCHECK(value != NULL);
  4193. set_has_actual_error_code();
  4194. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  4195. // @@protoc_insertion_point(field_set_char:message.Passageway_data.actual_error_code)
  4196. }
  4197. inline void Passageway_data::set_actual_error_code(const char* value, size_t size) {
  4198. set_has_actual_error_code();
  4199. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  4200. ::std::string(reinterpret_cast<const char*>(value), size));
  4201. // @@protoc_insertion_point(field_set_pointer:message.Passageway_data.actual_error_code)
  4202. }
  4203. inline ::std::string* Passageway_data::mutable_actual_error_code() {
  4204. set_has_actual_error_code();
  4205. // @@protoc_insertion_point(field_mutable:message.Passageway_data.actual_error_code)
  4206. return actual_error_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4207. }
  4208. inline ::std::string* Passageway_data::release_actual_error_code() {
  4209. // @@protoc_insertion_point(field_release:message.Passageway_data.actual_error_code)
  4210. if (!has_actual_error_code()) {
  4211. return NULL;
  4212. }
  4213. clear_has_actual_error_code();
  4214. return actual_error_code_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4215. }
  4216. inline void Passageway_data::set_allocated_actual_error_code(::std::string* actual_error_code) {
  4217. if (actual_error_code != NULL) {
  4218. set_has_actual_error_code();
  4219. } else {
  4220. clear_has_actual_error_code();
  4221. }
  4222. actual_error_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_error_code);
  4223. // @@protoc_insertion_point(field_set_allocated:message.Passageway_data.actual_error_code)
  4224. }
  4225. // optional string actual_warning_code = 16;
  4226. inline bool Passageway_data::has_actual_warning_code() const {
  4227. return (_has_bits_[0] & 0x00000002u) != 0;
  4228. }
  4229. inline void Passageway_data::set_has_actual_warning_code() {
  4230. _has_bits_[0] |= 0x00000002u;
  4231. }
  4232. inline void Passageway_data::clear_has_actual_warning_code() {
  4233. _has_bits_[0] &= ~0x00000002u;
  4234. }
  4235. inline void Passageway_data::clear_actual_warning_code() {
  4236. actual_warning_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4237. clear_has_actual_warning_code();
  4238. }
  4239. inline const ::std::string& Passageway_data::actual_warning_code() const {
  4240. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_warning_code)
  4241. return actual_warning_code_.GetNoArena();
  4242. }
  4243. inline void Passageway_data::set_actual_warning_code(const ::std::string& value) {
  4244. set_has_actual_warning_code();
  4245. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  4246. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_warning_code)
  4247. }
  4248. #if LANG_CXX11
  4249. inline void Passageway_data::set_actual_warning_code(::std::string&& value) {
  4250. set_has_actual_warning_code();
  4251. actual_warning_code_.SetNoArena(
  4252. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  4253. // @@protoc_insertion_point(field_set_rvalue:message.Passageway_data.actual_warning_code)
  4254. }
  4255. #endif
  4256. inline void Passageway_data::set_actual_warning_code(const char* value) {
  4257. GOOGLE_DCHECK(value != NULL);
  4258. set_has_actual_warning_code();
  4259. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  4260. // @@protoc_insertion_point(field_set_char:message.Passageway_data.actual_warning_code)
  4261. }
  4262. inline void Passageway_data::set_actual_warning_code(const char* value, size_t size) {
  4263. set_has_actual_warning_code();
  4264. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  4265. ::std::string(reinterpret_cast<const char*>(value), size));
  4266. // @@protoc_insertion_point(field_set_pointer:message.Passageway_data.actual_warning_code)
  4267. }
  4268. inline ::std::string* Passageway_data::mutable_actual_warning_code() {
  4269. set_has_actual_warning_code();
  4270. // @@protoc_insertion_point(field_mutable:message.Passageway_data.actual_warning_code)
  4271. return actual_warning_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4272. }
  4273. inline ::std::string* Passageway_data::release_actual_warning_code() {
  4274. // @@protoc_insertion_point(field_release:message.Passageway_data.actual_warning_code)
  4275. if (!has_actual_warning_code()) {
  4276. return NULL;
  4277. }
  4278. clear_has_actual_warning_code();
  4279. return actual_warning_code_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4280. }
  4281. inline void Passageway_data::set_allocated_actual_warning_code(::std::string* actual_warning_code) {
  4282. if (actual_warning_code != NULL) {
  4283. set_has_actual_warning_code();
  4284. } else {
  4285. clear_has_actual_warning_code();
  4286. }
  4287. actual_warning_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_warning_code);
  4288. // @@protoc_insertion_point(field_set_allocated:message.Passageway_data.actual_warning_code)
  4289. }
  4290. // optional string actual_error_description = 17;
  4291. inline bool Passageway_data::has_actual_error_description() const {
  4292. return (_has_bits_[0] & 0x00000004u) != 0;
  4293. }
  4294. inline void Passageway_data::set_has_actual_error_description() {
  4295. _has_bits_[0] |= 0x00000004u;
  4296. }
  4297. inline void Passageway_data::clear_has_actual_error_description() {
  4298. _has_bits_[0] &= ~0x00000004u;
  4299. }
  4300. inline void Passageway_data::clear_actual_error_description() {
  4301. actual_error_description_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4302. clear_has_actual_error_description();
  4303. }
  4304. inline const ::std::string& Passageway_data::actual_error_description() const {
  4305. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_error_description)
  4306. return actual_error_description_.GetNoArena();
  4307. }
  4308. inline void Passageway_data::set_actual_error_description(const ::std::string& value) {
  4309. set_has_actual_error_description();
  4310. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  4311. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_error_description)
  4312. }
  4313. #if LANG_CXX11
  4314. inline void Passageway_data::set_actual_error_description(::std::string&& value) {
  4315. set_has_actual_error_description();
  4316. actual_error_description_.SetNoArena(
  4317. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  4318. // @@protoc_insertion_point(field_set_rvalue:message.Passageway_data.actual_error_description)
  4319. }
  4320. #endif
  4321. inline void Passageway_data::set_actual_error_description(const char* value) {
  4322. GOOGLE_DCHECK(value != NULL);
  4323. set_has_actual_error_description();
  4324. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  4325. // @@protoc_insertion_point(field_set_char:message.Passageway_data.actual_error_description)
  4326. }
  4327. inline void Passageway_data::set_actual_error_description(const char* value, size_t size) {
  4328. set_has_actual_error_description();
  4329. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  4330. ::std::string(reinterpret_cast<const char*>(value), size));
  4331. // @@protoc_insertion_point(field_set_pointer:message.Passageway_data.actual_error_description)
  4332. }
  4333. inline ::std::string* Passageway_data::mutable_actual_error_description() {
  4334. set_has_actual_error_description();
  4335. // @@protoc_insertion_point(field_mutable:message.Passageway_data.actual_error_description)
  4336. return actual_error_description_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4337. }
  4338. inline ::std::string* Passageway_data::release_actual_error_description() {
  4339. // @@protoc_insertion_point(field_release:message.Passageway_data.actual_error_description)
  4340. if (!has_actual_error_description()) {
  4341. return NULL;
  4342. }
  4343. clear_has_actual_error_description();
  4344. return actual_error_description_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4345. }
  4346. inline void Passageway_data::set_allocated_actual_error_description(::std::string* actual_error_description) {
  4347. if (actual_error_description != NULL) {
  4348. set_has_actual_error_description();
  4349. } else {
  4350. clear_has_actual_error_description();
  4351. }
  4352. actual_error_description_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_error_description);
  4353. // @@protoc_insertion_point(field_set_allocated:message.Passageway_data.actual_error_description)
  4354. }
  4355. // -------------------------------------------------------------------
  4356. // Dispatch_manager_status_msg
  4357. // required .message.Base_info base_info = 1;
  4358. inline bool Dispatch_manager_status_msg::has_base_info() const {
  4359. return (_has_bits_[0] & 0x00000001u) != 0;
  4360. }
  4361. inline void Dispatch_manager_status_msg::set_has_base_info() {
  4362. _has_bits_[0] |= 0x00000001u;
  4363. }
  4364. inline void Dispatch_manager_status_msg::clear_has_base_info() {
  4365. _has_bits_[0] &= ~0x00000001u;
  4366. }
  4367. inline const ::message::Base_info& Dispatch_manager_status_msg::_internal_base_info() const {
  4368. return *base_info_;
  4369. }
  4370. inline const ::message::Base_info& Dispatch_manager_status_msg::base_info() const {
  4371. const ::message::Base_info* p = base_info_;
  4372. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.base_info)
  4373. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  4374. &::message::_Base_info_default_instance_);
  4375. }
  4376. inline ::message::Base_info* Dispatch_manager_status_msg::release_base_info() {
  4377. // @@protoc_insertion_point(field_release:message.Dispatch_manager_status_msg.base_info)
  4378. clear_has_base_info();
  4379. ::message::Base_info* temp = base_info_;
  4380. base_info_ = NULL;
  4381. return temp;
  4382. }
  4383. inline ::message::Base_info* Dispatch_manager_status_msg::mutable_base_info() {
  4384. set_has_base_info();
  4385. if (base_info_ == NULL) {
  4386. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  4387. base_info_ = p;
  4388. }
  4389. // @@protoc_insertion_point(field_mutable:message.Dispatch_manager_status_msg.base_info)
  4390. return base_info_;
  4391. }
  4392. inline void Dispatch_manager_status_msg::set_allocated_base_info(::message::Base_info* base_info) {
  4393. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  4394. if (message_arena == NULL) {
  4395. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  4396. }
  4397. if (base_info) {
  4398. ::google::protobuf::Arena* submessage_arena = NULL;
  4399. if (message_arena != submessage_arena) {
  4400. base_info = ::google::protobuf::internal::GetOwnedMessage(
  4401. message_arena, base_info, submessage_arena);
  4402. }
  4403. set_has_base_info();
  4404. } else {
  4405. clear_has_base_info();
  4406. }
  4407. base_info_ = base_info;
  4408. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_manager_status_msg.base_info)
  4409. }
  4410. // required int32 dispatch_id = 2;
  4411. inline bool Dispatch_manager_status_msg::has_dispatch_id() const {
  4412. return (_has_bits_[0] & 0x00000002u) != 0;
  4413. }
  4414. inline void Dispatch_manager_status_msg::set_has_dispatch_id() {
  4415. _has_bits_[0] |= 0x00000002u;
  4416. }
  4417. inline void Dispatch_manager_status_msg::clear_has_dispatch_id() {
  4418. _has_bits_[0] &= ~0x00000002u;
  4419. }
  4420. inline void Dispatch_manager_status_msg::clear_dispatch_id() {
  4421. dispatch_id_ = 0;
  4422. clear_has_dispatch_id();
  4423. }
  4424. inline ::google::protobuf::int32 Dispatch_manager_status_msg::dispatch_id() const {
  4425. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.dispatch_id)
  4426. return dispatch_id_;
  4427. }
  4428. inline void Dispatch_manager_status_msg::set_dispatch_id(::google::protobuf::int32 value) {
  4429. set_has_dispatch_id();
  4430. dispatch_id_ = value;
  4431. // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.dispatch_id)
  4432. }
  4433. // required .message.Dispatch_manager_status dispatch_manager_status = 3;
  4434. inline bool Dispatch_manager_status_msg::has_dispatch_manager_status() const {
  4435. return (_has_bits_[0] & 0x00000004u) != 0;
  4436. }
  4437. inline void Dispatch_manager_status_msg::set_has_dispatch_manager_status() {
  4438. _has_bits_[0] |= 0x00000004u;
  4439. }
  4440. inline void Dispatch_manager_status_msg::clear_has_dispatch_manager_status() {
  4441. _has_bits_[0] &= ~0x00000004u;
  4442. }
  4443. inline void Dispatch_manager_status_msg::clear_dispatch_manager_status() {
  4444. dispatch_manager_status_ = 0;
  4445. clear_has_dispatch_manager_status();
  4446. }
  4447. inline ::message::Dispatch_manager_status Dispatch_manager_status_msg::dispatch_manager_status() const {
  4448. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.dispatch_manager_status)
  4449. return static_cast< ::message::Dispatch_manager_status >(dispatch_manager_status_);
  4450. }
  4451. inline void Dispatch_manager_status_msg::set_dispatch_manager_status(::message::Dispatch_manager_status value) {
  4452. assert(::message::Dispatch_manager_status_IsValid(value));
  4453. set_has_dispatch_manager_status();
  4454. dispatch_manager_status_ = value;
  4455. // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.dispatch_manager_status)
  4456. }
  4457. // repeated .message.Catcher_data catcher_data_map = 4;
  4458. inline int Dispatch_manager_status_msg::catcher_data_map_size() const {
  4459. return catcher_data_map_.size();
  4460. }
  4461. inline void Dispatch_manager_status_msg::clear_catcher_data_map() {
  4462. catcher_data_map_.Clear();
  4463. }
  4464. inline ::message::Catcher_data* Dispatch_manager_status_msg::mutable_catcher_data_map(int index) {
  4465. // @@protoc_insertion_point(field_mutable:message.Dispatch_manager_status_msg.catcher_data_map)
  4466. return catcher_data_map_.Mutable(index);
  4467. }
  4468. inline ::google::protobuf::RepeatedPtrField< ::message::Catcher_data >*
  4469. Dispatch_manager_status_msg::mutable_catcher_data_map() {
  4470. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.catcher_data_map)
  4471. return &catcher_data_map_;
  4472. }
  4473. inline const ::message::Catcher_data& Dispatch_manager_status_msg::catcher_data_map(int index) const {
  4474. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.catcher_data_map)
  4475. return catcher_data_map_.Get(index);
  4476. }
  4477. inline ::message::Catcher_data* Dispatch_manager_status_msg::add_catcher_data_map() {
  4478. // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.catcher_data_map)
  4479. return catcher_data_map_.Add();
  4480. }
  4481. inline const ::google::protobuf::RepeatedPtrField< ::message::Catcher_data >&
  4482. Dispatch_manager_status_msg::catcher_data_map() const {
  4483. // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.catcher_data_map)
  4484. return catcher_data_map_;
  4485. }
  4486. // repeated .message.Carrier_data carrier_data_map = 5;
  4487. inline int Dispatch_manager_status_msg::carrier_data_map_size() const {
  4488. return carrier_data_map_.size();
  4489. }
  4490. inline void Dispatch_manager_status_msg::clear_carrier_data_map() {
  4491. carrier_data_map_.Clear();
  4492. }
  4493. inline ::message::Carrier_data* Dispatch_manager_status_msg::mutable_carrier_data_map(int index) {
  4494. // @@protoc_insertion_point(field_mutable:message.Dispatch_manager_status_msg.carrier_data_map)
  4495. return carrier_data_map_.Mutable(index);
  4496. }
  4497. inline ::google::protobuf::RepeatedPtrField< ::message::Carrier_data >*
  4498. Dispatch_manager_status_msg::mutable_carrier_data_map() {
  4499. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.carrier_data_map)
  4500. return &carrier_data_map_;
  4501. }
  4502. inline const ::message::Carrier_data& Dispatch_manager_status_msg::carrier_data_map(int index) const {
  4503. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.carrier_data_map)
  4504. return carrier_data_map_.Get(index);
  4505. }
  4506. inline ::message::Carrier_data* Dispatch_manager_status_msg::add_carrier_data_map() {
  4507. // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.carrier_data_map)
  4508. return carrier_data_map_.Add();
  4509. }
  4510. inline const ::google::protobuf::RepeatedPtrField< ::message::Carrier_data >&
  4511. Dispatch_manager_status_msg::carrier_data_map() const {
  4512. // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.carrier_data_map)
  4513. return carrier_data_map_;
  4514. }
  4515. // repeated .message.Passageway_data passageway_data_map = 6;
  4516. inline int Dispatch_manager_status_msg::passageway_data_map_size() const {
  4517. return passageway_data_map_.size();
  4518. }
  4519. inline void Dispatch_manager_status_msg::clear_passageway_data_map() {
  4520. passageway_data_map_.Clear();
  4521. }
  4522. inline ::message::Passageway_data* Dispatch_manager_status_msg::mutable_passageway_data_map(int index) {
  4523. // @@protoc_insertion_point(field_mutable:message.Dispatch_manager_status_msg.passageway_data_map)
  4524. return passageway_data_map_.Mutable(index);
  4525. }
  4526. inline ::google::protobuf::RepeatedPtrField< ::message::Passageway_data >*
  4527. Dispatch_manager_status_msg::mutable_passageway_data_map() {
  4528. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.passageway_data_map)
  4529. return &passageway_data_map_;
  4530. }
  4531. inline const ::message::Passageway_data& Dispatch_manager_status_msg::passageway_data_map(int index) const {
  4532. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.passageway_data_map)
  4533. return passageway_data_map_.Get(index);
  4534. }
  4535. inline ::message::Passageway_data* Dispatch_manager_status_msg::add_passageway_data_map() {
  4536. // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.passageway_data_map)
  4537. return passageway_data_map_.Add();
  4538. }
  4539. inline const ::google::protobuf::RepeatedPtrField< ::message::Passageway_data >&
  4540. Dispatch_manager_status_msg::passageway_data_map() const {
  4541. // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.passageway_data_map)
  4542. return passageway_data_map_;
  4543. }
  4544. // -------------------------------------------------------------------
  4545. // Dispatch_manager_data_msg
  4546. #ifdef __GNUC__
  4547. #pragma GCC diagnostic pop
  4548. #endif // __GNUC__
  4549. // -------------------------------------------------------------------
  4550. // -------------------------------------------------------------------
  4551. // -------------------------------------------------------------------
  4552. // -------------------------------------------------------------------
  4553. // -------------------------------------------------------------------
  4554. // -------------------------------------------------------------------
  4555. // -------------------------------------------------------------------
  4556. // @@protoc_insertion_point(namespace_scope)
  4557. } // namespace message
  4558. namespace google {
  4559. namespace protobuf {
  4560. template <> struct is_proto_enum< ::message::Terminal_status> : ::std::true_type {};
  4561. template <>
  4562. inline const EnumDescriptor* GetEnumDescriptor< ::message::Terminal_status>() {
  4563. return ::message::Terminal_status_descriptor();
  4564. }
  4565. template <> struct is_proto_enum< ::message::Passageway_direction> : ::std::true_type {};
  4566. template <>
  4567. inline const EnumDescriptor* GetEnumDescriptor< ::message::Passageway_direction>() {
  4568. return ::message::Passageway_direction_descriptor();
  4569. }
  4570. template <> struct is_proto_enum< ::message::Dispatch_motion_direction> : ::std::true_type {};
  4571. template <>
  4572. inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_motion_direction>() {
  4573. return ::message::Dispatch_motion_direction_descriptor();
  4574. }
  4575. template <> struct is_proto_enum< ::message::Dispatch_manager_status> : ::std::true_type {};
  4576. template <>
  4577. inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_manager_status>() {
  4578. return ::message::Dispatch_manager_status_descriptor();
  4579. }
  4580. template <> struct is_proto_enum< ::message::Dispatch_device_status> : ::std::true_type {};
  4581. template <>
  4582. inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_device_status>() {
  4583. return ::message::Dispatch_device_status_descriptor();
  4584. }
  4585. template <> struct is_proto_enum< ::message::Dispatch_task_level> : ::std::true_type {};
  4586. template <>
  4587. inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_task_level>() {
  4588. return ::message::Dispatch_task_level_descriptor();
  4589. }
  4590. template <> struct is_proto_enum< ::message::Clamp_motion> : ::std::true_type {};
  4591. template <>
  4592. inline const EnumDescriptor* GetEnumDescriptor< ::message::Clamp_motion>() {
  4593. return ::message::Clamp_motion_descriptor();
  4594. }
  4595. template <> struct is_proto_enum< ::message::Joint_motion> : ::std::true_type {};
  4596. template <>
  4597. inline const EnumDescriptor* GetEnumDescriptor< ::message::Joint_motion>() {
  4598. return ::message::Joint_motion_descriptor();
  4599. }
  4600. template <> struct is_proto_enum< ::message::Small_sports_car_motion> : ::std::true_type {};
  4601. template <>
  4602. inline const EnumDescriptor* GetEnumDescriptor< ::message::Small_sports_car_motion>() {
  4603. return ::message::Small_sports_car_motion_descriptor();
  4604. }
  4605. template <> struct is_proto_enum< ::message::Respons_status> : ::std::true_type {};
  4606. template <>
  4607. inline const EnumDescriptor* GetEnumDescriptor< ::message::Respons_status>() {
  4608. return ::message::Respons_status_descriptor();
  4609. }
  4610. template <> struct is_proto_enum< ::message::Hardware_device_status> : ::std::true_type {};
  4611. template <>
  4612. inline const EnumDescriptor* GetEnumDescriptor< ::message::Hardware_device_status>() {
  4613. return ::message::Hardware_device_status_descriptor();
  4614. }
  4615. template <> struct is_proto_enum< ::message::Load_status> : ::std::true_type {};
  4616. template <>
  4617. inline const EnumDescriptor* GetEnumDescriptor< ::message::Load_status>() {
  4618. return ::message::Load_status_descriptor();
  4619. }
  4620. template <> struct is_proto_enum< ::message::Turntable_direction> : ::std::true_type {};
  4621. template <>
  4622. inline const EnumDescriptor* GetEnumDescriptor< ::message::Turntable_direction>() {
  4623. return ::message::Turntable_direction_descriptor();
  4624. }
  4625. template <> struct is_proto_enum< ::message::Door_motion> : ::std::true_type {};
  4626. template <>
  4627. inline const EnumDescriptor* GetEnumDescriptor< ::message::Door_motion>() {
  4628. return ::message::Door_motion_descriptor();
  4629. }
  4630. template <> struct is_proto_enum< ::message::Overstep_the_boundary> : ::std::true_type {};
  4631. template <>
  4632. inline const EnumDescriptor* GetEnumDescriptor< ::message::Overstep_the_boundary>() {
  4633. return ::message::Overstep_the_boundary_descriptor();
  4634. }
  4635. } // namespace protobuf
  4636. } // namespace google
  4637. // @@protoc_insertion_point(global_scope)
  4638. #endif // PROTOBUF_INCLUDED_dispatch_5fmessage_2eproto