parkspace_allocation_message.pb.h 199 KB

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