dispatch_message.pb.h 197 KB

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