parkspace_allocation_message.pb.h 226 KB

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