dispatch_message.pb.h 199 KB

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