123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: message_base.proto
- #include "message_base.pb.h"
- #include <algorithm>
- #include <google/protobuf/stubs/common.h>
- #include <google/protobuf/stubs/port.h>
- #include <google/protobuf/stubs/once.h>
- #include <google/protobuf/io/coded_stream.h>
- #include <google/protobuf/wire_format_lite_inl.h>
- #include <google/protobuf/descriptor.h>
- #include <google/protobuf/generated_message_reflection.h>
- #include <google/protobuf/reflection_ops.h>
- #include <google/protobuf/wire_format.h>
- // This is a temporary google only hack
- #ifdef GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- #include "third_party/protobuf/version.h"
- #endif
- // @@protoc_insertion_point(includes)
- namespace message {
- class Base_infoDefaultTypeInternal {
- public:
- ::google::protobuf::internal::ExplicitlyConstructed<Base_info>
- _instance;
- } _Base_info_default_instance_;
- class Base_msgDefaultTypeInternal {
- public:
- ::google::protobuf::internal::ExplicitlyConstructed<Base_msg>
- _instance;
- } _Base_msg_default_instance_;
- class Error_managerDefaultTypeInternal {
- public:
- ::google::protobuf::internal::ExplicitlyConstructed<Error_manager>
- _instance;
- } _Error_manager_default_instance_;
- class Locate_informationDefaultTypeInternal {
- public:
- ::google::protobuf::internal::ExplicitlyConstructed<Locate_information>
- _instance;
- } _Locate_information_default_instance_;
- class Car_infoDefaultTypeInternal {
- public:
- ::google::protobuf::internal::ExplicitlyConstructed<Car_info>
- _instance;
- } _Car_info_default_instance_;
- class Parkspace_infoDefaultTypeInternal {
- public:
- ::google::protobuf::internal::ExplicitlyConstructed<Parkspace_info>
- _instance;
- } _Parkspace_info_default_instance_;
- } // namespace message
- namespace protobuf_message_5fbase_2eproto {
- void InitDefaultsBase_infoImpl() {
- GOOGLE_PROTOBUF_VERIFY_VERSION;
- #ifdef GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- ::google::protobuf::internal::InitProtobufDefaultsForceUnique();
- #else
- ::google::protobuf::internal::InitProtobufDefaults();
- #endif // GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- {
- void* ptr = &::message::_Base_info_default_instance_;
- new (ptr) ::message::Base_info();
- ::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
- }
- ::message::Base_info::InitAsDefaultInstance();
- }
- void InitDefaultsBase_info() {
- static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
- ::google::protobuf::GoogleOnceInit(&once, &InitDefaultsBase_infoImpl);
- }
- void InitDefaultsBase_msgImpl() {
- GOOGLE_PROTOBUF_VERIFY_VERSION;
- #ifdef GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- ::google::protobuf::internal::InitProtobufDefaultsForceUnique();
- #else
- ::google::protobuf::internal::InitProtobufDefaults();
- #endif // GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- protobuf_message_5fbase_2eproto::InitDefaultsBase_info();
- {
- void* ptr = &::message::_Base_msg_default_instance_;
- new (ptr) ::message::Base_msg();
- ::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
- }
- ::message::Base_msg::InitAsDefaultInstance();
- }
- void InitDefaultsBase_msg() {
- static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
- ::google::protobuf::GoogleOnceInit(&once, &InitDefaultsBase_msgImpl);
- }
- void InitDefaultsError_managerImpl() {
- GOOGLE_PROTOBUF_VERIFY_VERSION;
- #ifdef GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- ::google::protobuf::internal::InitProtobufDefaultsForceUnique();
- #else
- ::google::protobuf::internal::InitProtobufDefaults();
- #endif // GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- {
- void* ptr = &::message::_Error_manager_default_instance_;
- new (ptr) ::message::Error_manager();
- ::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
- }
- ::message::Error_manager::InitAsDefaultInstance();
- }
- void InitDefaultsError_manager() {
- static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
- ::google::protobuf::GoogleOnceInit(&once, &InitDefaultsError_managerImpl);
- }
- void InitDefaultsLocate_informationImpl() {
- GOOGLE_PROTOBUF_VERIFY_VERSION;
- #ifdef GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- ::google::protobuf::internal::InitProtobufDefaultsForceUnique();
- #else
- ::google::protobuf::internal::InitProtobufDefaults();
- #endif // GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- {
- void* ptr = &::message::_Locate_information_default_instance_;
- new (ptr) ::message::Locate_information();
- ::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
- }
- ::message::Locate_information::InitAsDefaultInstance();
- }
- void InitDefaultsLocate_information() {
- static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
- ::google::protobuf::GoogleOnceInit(&once, &InitDefaultsLocate_informationImpl);
- }
- void InitDefaultsCar_infoImpl() {
- GOOGLE_PROTOBUF_VERIFY_VERSION;
- #ifdef GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- ::google::protobuf::internal::InitProtobufDefaultsForceUnique();
- #else
- ::google::protobuf::internal::InitProtobufDefaults();
- #endif // GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- {
- void* ptr = &::message::_Car_info_default_instance_;
- new (ptr) ::message::Car_info();
- ::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
- }
- ::message::Car_info::InitAsDefaultInstance();
- }
- void InitDefaultsCar_info() {
- static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
- ::google::protobuf::GoogleOnceInit(&once, &InitDefaultsCar_infoImpl);
- }
- void InitDefaultsParkspace_infoImpl() {
- GOOGLE_PROTOBUF_VERIFY_VERSION;
- #ifdef GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- ::google::protobuf::internal::InitProtobufDefaultsForceUnique();
- #else
- ::google::protobuf::internal::InitProtobufDefaults();
- #endif // GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
- protobuf_message_5fbase_2eproto::InitDefaultsCar_info();
- {
- void* ptr = &::message::_Parkspace_info_default_instance_;
- new (ptr) ::message::Parkspace_info();
- ::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
- }
- ::message::Parkspace_info::InitAsDefaultInstance();
- }
- void InitDefaultsParkspace_info() {
- static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
- ::google::protobuf::GoogleOnceInit(&once, &InitDefaultsParkspace_infoImpl);
- }
- ::google::protobuf::Metadata file_level_metadata[6];
- const ::google::protobuf::EnumDescriptor* file_level_enum_descriptors[10];
- const ::google::protobuf::uint32 TableStruct::offsets[] GOOGLE_PROTOBUF_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Base_info, _has_bits_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Base_info, _internal_metadata_),
- ~0u, // no _extensions_
- ~0u, // no _oneof_case_
- ~0u, // no _weak_field_map_
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Base_info, msg_type_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Base_info, timeout_ms_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Base_info, sender_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Base_info, receiver_),
- 0,
- 1,
- 2,
- 3,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Base_msg, _has_bits_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Base_msg, _internal_metadata_),
- ~0u, // no _extensions_
- ~0u, // no _oneof_case_
- ~0u, // no _weak_field_map_
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Base_msg, base_info_),
- 0,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Error_manager, _has_bits_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Error_manager, _internal_metadata_),
- ~0u, // no _extensions_
- ~0u, // no _oneof_case_
- ~0u, // no _weak_field_map_
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Error_manager, error_code_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Error_manager, error_level_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Error_manager, error_description_),
- 1,
- 2,
- 0,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Locate_information, _has_bits_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Locate_information, _internal_metadata_),
- ~0u, // no _extensions_
- ~0u, // no _oneof_case_
- ~0u, // no _weak_field_map_
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Locate_information, locate_x_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Locate_information, locate_y_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Locate_information, locate_angle_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Locate_information, locate_length_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Locate_information, locate_width_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Locate_information, locate_height_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Locate_information, locate_wheel_base_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Locate_information, locate_wheel_width_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Locate_information, locate_correct_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Locate_information, locate_front_theta_),
- 0,
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Car_info, _has_bits_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Car_info, _internal_metadata_),
- ~0u, // no _extensions_
- ~0u, // no _oneof_case_
- ~0u, // no _weak_field_map_
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Car_info, car_length_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Car_info, car_width_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Car_info, car_height_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Car_info, license_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Car_info, car_wheel_base_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Car_info, car_wheel_width_),
- 1,
- 2,
- 3,
- 0,
- 4,
- 5,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, _has_bits_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, _internal_metadata_),
- ~0u, // no _extensions_
- ~0u, // no _oneof_case_
- ~0u, // no _weak_field_map_
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, parkingspace_index_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, parkingspace_type_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, parkingspace_unit_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, parkingspace_room_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, parkingspace_direction_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, parkingspace_floor_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, parkingspace_width_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, parkingspace_height_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, parkingspace_status_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, car_info_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, entry_time_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, leave_time_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, parkspace_path_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, path_estimate_time_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::message::Parkspace_info, parkspace_status_target_),
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 2,
- 0,
- 1,
- 12,
- 13,
- 14,
- };
- static const ::google::protobuf::internal::MigrationSchema schemas[] GOOGLE_PROTOBUF_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
- { 0, 9, sizeof(::message::Base_info)},
- { 13, 19, sizeof(::message::Base_msg)},
- { 20, 28, sizeof(::message::Error_manager)},
- { 31, 46, sizeof(::message::Locate_information)},
- { 56, 67, sizeof(::message::Car_info)},
- { 73, 93, sizeof(::message::Parkspace_info)},
- };
- static ::google::protobuf::Message const * const file_default_instances[] = {
- reinterpret_cast<const ::google::protobuf::Message*>(&::message::_Base_info_default_instance_),
- reinterpret_cast<const ::google::protobuf::Message*>(&::message::_Base_msg_default_instance_),
- reinterpret_cast<const ::google::protobuf::Message*>(&::message::_Error_manager_default_instance_),
- reinterpret_cast<const ::google::protobuf::Message*>(&::message::_Locate_information_default_instance_),
- reinterpret_cast<const ::google::protobuf::Message*>(&::message::_Car_info_default_instance_),
- reinterpret_cast<const ::google::protobuf::Message*>(&::message::_Parkspace_info_default_instance_),
- };
- void protobuf_AssignDescriptors() {
- AddDescriptors();
- ::google::protobuf::MessageFactory* factory = NULL;
- AssignDescriptors(
- "message_base.proto", schemas, file_default_instances, TableStruct::offsets, factory,
- file_level_metadata, file_level_enum_descriptors, NULL);
- }
- void protobuf_AssignDescriptorsOnce() {
- static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
- ::google::protobuf::GoogleOnceInit(&once, &protobuf_AssignDescriptors);
- }
- void protobuf_RegisterTypes(const ::std::string&) GOOGLE_PROTOBUF_ATTRIBUTE_COLD;
- void protobuf_RegisterTypes(const ::std::string&) {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::internal::RegisterAllTypes(file_level_metadata, 6);
- }
- void AddDescriptorsImpl() {
- InitDefaults();
- static const char descriptor[] GOOGLE_PROTOBUF_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
- "\n\022message_base.proto\022\007message\"\266\001\n\tBase_i"
- "nfo\0222\n\010msg_type\030\001 \002(\0162\025.message.Message_"
- "type:\teBase_msg\022\025\n\ntimeout_ms\030\002 \001(\005:\0010\022-"
- "\n\006sender\030\003 \002(\0162\025.message.Communicator:\006e"
- "Empty\022/\n\010receiver\030\004 \002(\0162\025.message.Commun"
- "icator:\006eEmpty\"1\n\010Base_msg\022%\n\tbase_info\030"
- "\001 \002(\0132\022.message.Base_info\"v\n\rError_manag"
- "er\022\025\n\nerror_code\030\001 \002(\005:\0010\0221\n\013error_level"
- "\030\002 \001(\0162\024.message.Error_level:\006NORMAL\022\033\n\021"
- "error_description\030\003 \001(\t:\000\"\237\002\n\022Locate_inf"
- "ormation\022\023\n\010locate_x\030\001 \001(\002:\0010\022\023\n\010locate_"
- "y\030\002 \001(\002:\0010\022\027\n\014locate_angle\030\003 \001(\002:\0010\022\030\n\rl"
- "ocate_length\030\004 \001(\002:\0010\022\027\n\014locate_width\030\005 "
- "\001(\002:\0010\022\030\n\rlocate_height\030\006 \001(\002:\0010\022\034\n\021loca"
- "te_wheel_base\030\007 \001(\002:\0010\022\035\n\022locate_wheel_w"
- "idth\030\010 \001(\002:\0010\022\035\n\016locate_correct\030\t \001(\010:\005f"
- "alse\022\035\n\022locate_front_theta\030\n \001(\002:\0010\"\230\001\n\010"
- "Car_info\022\025\n\ncar_length\030\001 \001(\002:\0010\022\024\n\tcar_w"
- "idth\030\002 \001(\002:\0010\022\025\n\ncar_height\030\003 \001(\002:\0010\022\021\n\007"
- "license\030\004 \001(\t:\000\022\031\n\016car_wheel_base\030\005 \001(\002:"
- "\0010\022\032\n\017car_wheel_width\030\006 \001(\002:\0010\"\271\004\n\016Parks"
- "pace_info\022\035\n\025parkingspace_index_id\030\001 \001(\005"
- "\0222\n\021parkingspace_type\030\002 \001(\0162\027.message.Pa"
- "rkspace_type\022\034\n\024parkingspace_unit_id\030\003 \001"
- "(\005\022\034\n\024parkingspace_room_id\030\004 \001(\005\0222\n\026park"
- "ingspace_direction\030\005 \001(\0162\022.message.Direc"
- "tion\022\035\n\025parkingspace_floor_id\030\006 \001(\005\022\032\n\022p"
- "arkingspace_width\030\007 \001(\002\022\033\n\023parkingspace_"
- "height\030\010 \001(\002\0226\n\023parkingspace_status\030\t \001("
- "\0162\031.message.Parkspace_status\022#\n\010car_info"
- "\030\n \001(\0132\021.message.Car_info\022\022\n\nentry_time\030"
- "\013 \001(\t\022\022\n\nleave_time\030\014 \001(\t\022/\n\016parkspace_p"
- "ath\030\r \001(\0162\027.message.Parkspace_path\022\032\n\022pa"
- "th_estimate_time\030\016 \001(\002\022:\n\027parkspace_stat"
- "us_target\030\017 \001(\0162\031.message.Parkspace_stat"
- "us*\334\t\n\014Message_type\022\r\n\teBase_msg\020\000\022\020\n\014eC"
- "ommand_msg\020\001\022\026\n\022eLocate_status_msg\020\021\022\027\n\023"
- "eLocate_request_msg\020\022\022\030\n\024eLocate_respons"
- "e_msg\020\023\022\034\n\030eLocate_sift_request_msg\020\024\022\035\n"
- "\031eLocate_sift_response_msg\020\025\022\030\n\024eDispatc"
- "h_status_msg\020!\022\031\n\025eDispatch_request_msg\020"
- "\"\022\032\n\026eDispatch_response_msg\020#\022$\n eParksp"
- "ace_allocation_status_msg\0201\022%\n!eParkspac"
- "e_allocation_request_msg\0202\022&\n\"eParkspace"
- "_allocation_response_msg\0203\022!\n\035eParkspace"
- "_search_request_msg\0204\022\"\n\036eParkspace_sear"
- "ch_response_msg\0205\022\"\n\036eParkspace_release_"
- "request_msg\0206\022#\n\037eParkspace_release_resp"
- "onse_msg\0207\022\'\n#eParkspace_force_update_re"
- "quest_msg\0208\022(\n$eParkspace_force_update_r"
- "esponse_msg\0209\022(\n$eParkspace_confirm_allo"
- "c_request_msg\020:\022)\n%eParkspace_confirm_al"
- "loc_response_msg\020;\022\"\n\036eParkspace_allocat"
- "ion_data_msg\020<\022\036\n\032eStore_command_request"
- "_msg\020A\022\037\n\033eStore_command_response_msg\020B\022"
- "\037\n\033ePickup_command_request_msg\020C\022 \n\034ePic"
- "kup_command_response_msg\020D\022\037\n\032eStoring_p"
- "rocess_statu_msg\020\220\001\022\037\n\032ePicking_process_"
- "statu_msg\020\221\001\022\"\n\035eCentral_controller_stat"
- "u_msg\020\240\001\022#\n\036eEntrance_manual_operation_m"
- "sg\020\260\001\022\"\n\035eProcess_manual_operation_msg\020\261"
- "\001\022\037\n\032eDispatch_plan_request_msg\020\340\001\022 \n\033eD"
- "ispatch_plan_response_msg\020\341\001\022\"\n\035eDispatc"
- "h_control_request_msg\020\342\001\022#\n\036eDispatch_co"
- "ntrol_response_msg\020\343\001\022!\n\034eDispatch_manag"
- "er_status_msg\020\352\001\022\037\n\032eDispatch_manager_da"
- "ta_msg\020\353\001*\242\001\n\014Communicator\022\n\n\006eEmpty\020\000\022\t"
- "\n\005eMain\020\001\022\016\n\teTerminor\020\200\002\022\017\n\neParkspace\020"
- "\200\004\022\016\n\teMeasurer\020\200\006\022\032\n\025eMeasurer_sift_ser"
- "ver\020\201\006\022\026\n\021eDispatch_manager\020\200\010\022\026\n\021eDispa"
- "tch_control\020\201\010**\n\014Process_type\022\014\n\010eStori"
- "ng\020\001\022\014\n\010ePicking\020\002*e\n\013Error_level\022\n\n\006NOR"
- "MAL\020\000\022\024\n\020NEGLIGIBLE_ERROR\020\001\022\017\n\013MINOR_ERR"
- "OR\020\002\022\017\n\013MAJOR_ERROR\020\003\022\022\n\016CRITICAL_ERROR\020"
- "\004*\245\001\n\020Parkspace_status\022\034\n\030eParkspace_sta"
- "tus_unknow\020\000\022\024\n\020eParkspace_empty\020\001\022\027\n\023eP"
- "arkspace_occupied\020\002\022\027\n\023eParkspace_reserv"
- "ed\020\003\022\025\n\021eParkspace_locked\020\004\022\024\n\020eParkspac"
- "e_error\020\005*\?\n\tDirection\022\025\n\021eDirection_unk"
- "now\020\000\022\014\n\010eForward\020\001\022\r\n\teBackward\020\002*l\n\016Pa"
- "rkspace_path\022\017\n\013UNKNOW_PATH\020\000\022\020\n\014OPTIMAL"
- "_PATH\020\001\022\r\n\tLEFT_PATH\020\002\022\016\n\nRIGHT_PATH\020\003\022\030"
- "\n\024TEMPORARY_CACHE_PATH\020\004*m\n\016Parkspace_ty"
- "pe\022\031\n\025UNKNOW_PARKSPACE_TYPE\020\000\022\024\n\020MIN_PAR"
- "KINGSPACE\020\001\022\024\n\020MID_PARKINGSPACE\020\002\022\024\n\020BIG"
- "_PARKINGSPACE\020\003*\335\002\n\tStep_type\022\017\n\013eAlloc_"
- "step\020\000\022\021\n\reMeasure_step\020\001\022\021\n\reCompare_st"
- "ep\020\002\022\022\n\016eDispatch_step\020\003\022\021\n\reConfirm_ste"
- "p\020\004\022\020\n\014eSearch_step\020\005\022\016\n\neWait_step\020\006\022\021\n"
- "\reRelease_step\020\007\022\r\n\teComplete\020\010\022\025\n\021eBack"
- "Confirm_step\020\t\022\026\n\022eBack_compare_step\020\n\022\025"
- "\n\021eBackMeasure_step\020\013\022\023\n\017eBackAlloc_step"
- "\020\014\022\022\n\016eBackWait_step\020\r\022\026\n\022eBackDispatch_"
- "step\020\016\022\024\n\020eBackSearch_step\020\017\022\021\n\reBackCom"
- "plete\020\020*C\n\nStep_statu\022\014\n\010eWaiting\020\000\022\014\n\010e"
- "Working\020\001\022\n\n\006eError\020\002\022\r\n\teFinished\020\003"
- };
- ::google::protobuf::DescriptorPool::InternalAddGeneratedFile(
- descriptor, 3836);
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile(
- "message_base.proto", &protobuf_RegisterTypes);
- }
- void AddDescriptors() {
- static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
- ::google::protobuf::GoogleOnceInit(&once, &AddDescriptorsImpl);
- }
- // Force AddDescriptors() to be called at dynamic initialization time.
- struct StaticDescriptorInitializer {
- StaticDescriptorInitializer() {
- AddDescriptors();
- }
- } static_descriptor_initializer;
- } // namespace protobuf_message_5fbase_2eproto
- namespace message {
- const ::google::protobuf::EnumDescriptor* Message_type_descriptor() {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return protobuf_message_5fbase_2eproto::file_level_enum_descriptors[0];
- }
- bool Message_type_IsValid(int value) {
- switch (value) {
- case 0:
- case 1:
- case 17:
- case 18:
- case 19:
- case 20:
- case 21:
- case 33:
- case 34:
- case 35:
- case 49:
- case 50:
- case 51:
- case 52:
- case 53:
- case 54:
- case 55:
- case 56:
- case 57:
- case 58:
- case 59:
- case 60:
- case 65:
- case 66:
- case 67:
- case 68:
- case 144:
- case 145:
- case 160:
- case 176:
- case 177:
- case 224:
- case 225:
- case 226:
- case 227:
- case 234:
- case 235:
- return true;
- default:
- return false;
- }
- }
- const ::google::protobuf::EnumDescriptor* Communicator_descriptor() {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return protobuf_message_5fbase_2eproto::file_level_enum_descriptors[1];
- }
- bool Communicator_IsValid(int value) {
- switch (value) {
- case 0:
- case 1:
- case 256:
- case 512:
- case 768:
- case 769:
- case 1024:
- case 1025:
- return true;
- default:
- return false;
- }
- }
- const ::google::protobuf::EnumDescriptor* Process_type_descriptor() {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return protobuf_message_5fbase_2eproto::file_level_enum_descriptors[2];
- }
- bool Process_type_IsValid(int value) {
- switch (value) {
- case 1:
- case 2:
- return true;
- default:
- return false;
- }
- }
- const ::google::protobuf::EnumDescriptor* Error_level_descriptor() {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return protobuf_message_5fbase_2eproto::file_level_enum_descriptors[3];
- }
- bool Error_level_IsValid(int value) {
- switch (value) {
- case 0:
- case 1:
- case 2:
- case 3:
- case 4:
- return true;
- default:
- return false;
- }
- }
- const ::google::protobuf::EnumDescriptor* Parkspace_status_descriptor() {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return protobuf_message_5fbase_2eproto::file_level_enum_descriptors[4];
- }
- bool Parkspace_status_IsValid(int value) {
- switch (value) {
- case 0:
- case 1:
- case 2:
- case 3:
- case 4:
- case 5:
- return true;
- default:
- return false;
- }
- }
- const ::google::protobuf::EnumDescriptor* Direction_descriptor() {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return protobuf_message_5fbase_2eproto::file_level_enum_descriptors[5];
- }
- bool Direction_IsValid(int value) {
- switch (value) {
- case 0:
- case 1:
- case 2:
- return true;
- default:
- return false;
- }
- }
- const ::google::protobuf::EnumDescriptor* Parkspace_path_descriptor() {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return protobuf_message_5fbase_2eproto::file_level_enum_descriptors[6];
- }
- bool Parkspace_path_IsValid(int value) {
- switch (value) {
- case 0:
- case 1:
- case 2:
- case 3:
- case 4:
- return true;
- default:
- return false;
- }
- }
- const ::google::protobuf::EnumDescriptor* Parkspace_type_descriptor() {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return protobuf_message_5fbase_2eproto::file_level_enum_descriptors[7];
- }
- bool Parkspace_type_IsValid(int value) {
- switch (value) {
- case 0:
- case 1:
- case 2:
- case 3:
- return true;
- default:
- return false;
- }
- }
- const ::google::protobuf::EnumDescriptor* Step_type_descriptor() {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return protobuf_message_5fbase_2eproto::file_level_enum_descriptors[8];
- }
- bool Step_type_IsValid(int value) {
- switch (value) {
- case 0:
- case 1:
- case 2:
- case 3:
- case 4:
- case 5:
- case 6:
- case 7:
- case 8:
- case 9:
- case 10:
- case 11:
- case 12:
- case 13:
- case 14:
- case 15:
- case 16:
- return true;
- default:
- return false;
- }
- }
- const ::google::protobuf::EnumDescriptor* Step_statu_descriptor() {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return protobuf_message_5fbase_2eproto::file_level_enum_descriptors[9];
- }
- bool Step_statu_IsValid(int value) {
- switch (value) {
- case 0:
- case 1:
- case 2:
- case 3:
- return true;
- default:
- return false;
- }
- }
- // ===================================================================
- void Base_info::InitAsDefaultInstance() {
- }
- #if !defined(_MSC_VER) || _MSC_VER >= 1900
- const int Base_info::kMsgTypeFieldNumber;
- const int Base_info::kTimeoutMsFieldNumber;
- const int Base_info::kSenderFieldNumber;
- const int Base_info::kReceiverFieldNumber;
- #endif // !defined(_MSC_VER) || _MSC_VER >= 1900
- Base_info::Base_info()
- : ::google::protobuf::Message(), _internal_metadata_(NULL) {
- if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) {
- ::protobuf_message_5fbase_2eproto::InitDefaultsBase_info();
- }
- SharedCtor();
- // @@protoc_insertion_point(constructor:message.Base_info)
- }
- Base_info::Base_info(const Base_info& from)
- : ::google::protobuf::Message(),
- _internal_metadata_(NULL),
- _has_bits_(from._has_bits_),
- _cached_size_(0) {
- _internal_metadata_.MergeFrom(from._internal_metadata_);
- ::memcpy(&msg_type_, &from.msg_type_,
- static_cast<size_t>(reinterpret_cast<char*>(&receiver_) -
- reinterpret_cast<char*>(&msg_type_)) + sizeof(receiver_));
- // @@protoc_insertion_point(copy_constructor:message.Base_info)
- }
- void Base_info::SharedCtor() {
- _cached_size_ = 0;
- ::memset(&msg_type_, 0, static_cast<size_t>(
- reinterpret_cast<char*>(&receiver_) -
- reinterpret_cast<char*>(&msg_type_)) + sizeof(receiver_));
- }
- Base_info::~Base_info() {
- // @@protoc_insertion_point(destructor:message.Base_info)
- SharedDtor();
- }
- void Base_info::SharedDtor() {
- }
- void Base_info::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* Base_info::descriptor() {
- ::protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return ::protobuf_message_5fbase_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
- }
- const Base_info& Base_info::default_instance() {
- ::protobuf_message_5fbase_2eproto::InitDefaultsBase_info();
- return *internal_default_instance();
- }
- Base_info* Base_info::New(::google::protobuf::Arena* arena) const {
- Base_info* n = new Base_info;
- if (arena != NULL) {
- arena->Own(n);
- }
- return n;
- }
- void Base_info::Clear() {
- // @@protoc_insertion_point(message_clear_start:message.Base_info)
- ::google::protobuf::uint32 cached_has_bits = 0;
- // Prevent compiler warnings about cached_has_bits being unused
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- if (cached_has_bits & 15u) {
- ::memset(&msg_type_, 0, static_cast<size_t>(
- reinterpret_cast<char*>(&receiver_) -
- reinterpret_cast<char*>(&msg_type_)) + sizeof(receiver_));
- }
- _has_bits_.Clear();
- _internal_metadata_.Clear();
- }
- bool Base_info::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
- ::google::protobuf::uint32 tag;
- // @@protoc_insertion_point(parse_start:message.Base_info)
- for (;;) {
- ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
- tag = p.first;
- if (!p.second) goto handle_unusual;
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // required .message.Message_type msg_type = 1 [default = eBase_msg];
- case 1: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(8u /* 8 & 0xFF */)) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::message::Message_type_IsValid(value)) {
- set_msg_type(static_cast< ::message::Message_type >(value));
- } else {
- mutable_unknown_fields()->AddVarint(
- 1, static_cast< ::google::protobuf::uint64>(value));
- }
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional int32 timeout_ms = 2 [default = 0];
- case 2: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(16u /* 16 & 0xFF */)) {
- set_has_timeout_ms();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &timeout_ms_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // required .message.Communicator sender = 3 [default = eEmpty];
- case 3: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(24u /* 24 & 0xFF */)) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::message::Communicator_IsValid(value)) {
- set_sender(static_cast< ::message::Communicator >(value));
- } else {
- mutable_unknown_fields()->AddVarint(
- 3, static_cast< ::google::protobuf::uint64>(value));
- }
- } else {
- goto handle_unusual;
- }
- break;
- }
- // required .message.Communicator receiver = 4 [default = eEmpty];
- case 4: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(32u /* 32 & 0xFF */)) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::message::Communicator_IsValid(value)) {
- set_receiver(static_cast< ::message::Communicator >(value));
- } else {
- mutable_unknown_fields()->AddVarint(
- 4, static_cast< ::google::protobuf::uint64>(value));
- }
- } else {
- goto handle_unusual;
- }
- break;
- }
- default: {
- handle_unusual:
- if (tag == 0) {
- goto success;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, _internal_metadata_.mutable_unknown_fields()));
- break;
- }
- }
- }
- success:
- // @@protoc_insertion_point(parse_success:message.Base_info)
- return true;
- failure:
- // @@protoc_insertion_point(parse_failure:message.Base_info)
- return false;
- #undef DO_
- }
- void Base_info::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // @@protoc_insertion_point(serialize_start:message.Base_info)
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- // required .message.Message_type msg_type = 1 [default = eBase_msg];
- if (cached_has_bits & 0x00000001u) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->msg_type(), output);
- }
- // optional int32 timeout_ms = 2 [default = 0];
- if (cached_has_bits & 0x00000002u) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->timeout_ms(), output);
- }
- // required .message.Communicator sender = 3 [default = eEmpty];
- if (cached_has_bits & 0x00000004u) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 3, this->sender(), output);
- }
- // required .message.Communicator receiver = 4 [default = eEmpty];
- if (cached_has_bits & 0x00000008u) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 4, this->receiver(), output);
- }
- if (_internal_metadata_.have_unknown_fields()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- _internal_metadata_.unknown_fields(), output);
- }
- // @@protoc_insertion_point(serialize_end:message.Base_info)
- }
- ::google::protobuf::uint8* Base_info::InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const {
- (void)deterministic; // Unused
- // @@protoc_insertion_point(serialize_to_array_start:message.Base_info)
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- // required .message.Message_type msg_type = 1 [default = eBase_msg];
- if (cached_has_bits & 0x00000001u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->msg_type(), target);
- }
- // optional int32 timeout_ms = 2 [default = 0];
- if (cached_has_bits & 0x00000002u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->timeout_ms(), target);
- }
- // required .message.Communicator sender = 3 [default = eEmpty];
- if (cached_has_bits & 0x00000004u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 3, this->sender(), target);
- }
- // required .message.Communicator receiver = 4 [default = eEmpty];
- if (cached_has_bits & 0x00000008u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 4, this->receiver(), target);
- }
- if (_internal_metadata_.have_unknown_fields()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- _internal_metadata_.unknown_fields(), target);
- }
- // @@protoc_insertion_point(serialize_to_array_end:message.Base_info)
- return target;
- }
- size_t Base_info::RequiredFieldsByteSizeFallback() const {
- // @@protoc_insertion_point(required_fields_byte_size_fallback_start:message.Base_info)
- size_t total_size = 0;
- if (has_msg_type()) {
- // required .message.Message_type msg_type = 1 [default = eBase_msg];
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->msg_type());
- }
- if (has_sender()) {
- // required .message.Communicator sender = 3 [default = eEmpty];
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->sender());
- }
- if (has_receiver()) {
- // required .message.Communicator receiver = 4 [default = eEmpty];
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->receiver());
- }
- return total_size;
- }
- size_t Base_info::ByteSizeLong() const {
- // @@protoc_insertion_point(message_byte_size_start:message.Base_info)
- size_t total_size = 0;
- if (_internal_metadata_.have_unknown_fields()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- _internal_metadata_.unknown_fields());
- }
- if (((_has_bits_[0] & 0x0000000d) ^ 0x0000000d) == 0) { // All required fields are present.
- // required .message.Message_type msg_type = 1 [default = eBase_msg];
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->msg_type());
- // required .message.Communicator sender = 3 [default = eEmpty];
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->sender());
- // required .message.Communicator receiver = 4 [default = eEmpty];
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->receiver());
- } else {
- total_size += RequiredFieldsByteSizeFallback();
- }
- // optional int32 timeout_ms = 2 [default = 0];
- if (has_timeout_ms()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->timeout_ms());
- }
- int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = cached_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void Base_info::MergeFrom(const ::google::protobuf::Message& from) {
- // @@protoc_insertion_point(generalized_merge_from_start:message.Base_info)
- GOOGLE_DCHECK_NE(&from, this);
- const Base_info* source =
- ::google::protobuf::internal::DynamicCastToGenerated<const Base_info>(
- &from);
- if (source == NULL) {
- // @@protoc_insertion_point(generalized_merge_from_cast_fail:message.Base_info)
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- // @@protoc_insertion_point(generalized_merge_from_cast_success:message.Base_info)
- MergeFrom(*source);
- }
- }
- void Base_info::MergeFrom(const Base_info& from) {
- // @@protoc_insertion_point(class_specific_merge_from_start:message.Base_info)
- GOOGLE_DCHECK_NE(&from, this);
- _internal_metadata_.MergeFrom(from._internal_metadata_);
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = from._has_bits_[0];
- if (cached_has_bits & 15u) {
- if (cached_has_bits & 0x00000001u) {
- msg_type_ = from.msg_type_;
- }
- if (cached_has_bits & 0x00000002u) {
- timeout_ms_ = from.timeout_ms_;
- }
- if (cached_has_bits & 0x00000004u) {
- sender_ = from.sender_;
- }
- if (cached_has_bits & 0x00000008u) {
- receiver_ = from.receiver_;
- }
- _has_bits_[0] |= cached_has_bits;
- }
- }
- void Base_info::CopyFrom(const ::google::protobuf::Message& from) {
- // @@protoc_insertion_point(generalized_copy_from_start:message.Base_info)
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void Base_info::CopyFrom(const Base_info& from) {
- // @@protoc_insertion_point(class_specific_copy_from_start:message.Base_info)
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool Base_info::IsInitialized() const {
- if ((_has_bits_[0] & 0x0000000d) != 0x0000000d) return false;
- return true;
- }
- void Base_info::Swap(Base_info* other) {
- if (other == this) return;
- InternalSwap(other);
- }
- void Base_info::InternalSwap(Base_info* other) {
- using std::swap;
- swap(msg_type_, other->msg_type_);
- swap(timeout_ms_, other->timeout_ms_);
- swap(sender_, other->sender_);
- swap(receiver_, other->receiver_);
- swap(_has_bits_[0], other->_has_bits_[0]);
- _internal_metadata_.Swap(&other->_internal_metadata_);
- swap(_cached_size_, other->_cached_size_);
- }
- ::google::protobuf::Metadata Base_info::GetMetadata() const {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return ::protobuf_message_5fbase_2eproto::file_level_metadata[kIndexInFileMessages];
- }
- // ===================================================================
- void Base_msg::InitAsDefaultInstance() {
- ::message::_Base_msg_default_instance_._instance.get_mutable()->base_info_ = const_cast< ::message::Base_info*>(
- ::message::Base_info::internal_default_instance());
- }
- #if !defined(_MSC_VER) || _MSC_VER >= 1900
- const int Base_msg::kBaseInfoFieldNumber;
- #endif // !defined(_MSC_VER) || _MSC_VER >= 1900
- Base_msg::Base_msg()
- : ::google::protobuf::Message(), _internal_metadata_(NULL) {
- if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) {
- ::protobuf_message_5fbase_2eproto::InitDefaultsBase_msg();
- }
- SharedCtor();
- // @@protoc_insertion_point(constructor:message.Base_msg)
- }
- Base_msg::Base_msg(const Base_msg& from)
- : ::google::protobuf::Message(),
- _internal_metadata_(NULL),
- _has_bits_(from._has_bits_),
- _cached_size_(0) {
- _internal_metadata_.MergeFrom(from._internal_metadata_);
- if (from.has_base_info()) {
- base_info_ = new ::message::Base_info(*from.base_info_);
- } else {
- base_info_ = NULL;
- }
- // @@protoc_insertion_point(copy_constructor:message.Base_msg)
- }
- void Base_msg::SharedCtor() {
- _cached_size_ = 0;
- base_info_ = NULL;
- }
- Base_msg::~Base_msg() {
- // @@protoc_insertion_point(destructor:message.Base_msg)
- SharedDtor();
- }
- void Base_msg::SharedDtor() {
- if (this != internal_default_instance()) delete base_info_;
- }
- void Base_msg::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* Base_msg::descriptor() {
- ::protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return ::protobuf_message_5fbase_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
- }
- const Base_msg& Base_msg::default_instance() {
- ::protobuf_message_5fbase_2eproto::InitDefaultsBase_msg();
- return *internal_default_instance();
- }
- Base_msg* Base_msg::New(::google::protobuf::Arena* arena) const {
- Base_msg* n = new Base_msg;
- if (arena != NULL) {
- arena->Own(n);
- }
- return n;
- }
- void Base_msg::Clear() {
- // @@protoc_insertion_point(message_clear_start:message.Base_msg)
- ::google::protobuf::uint32 cached_has_bits = 0;
- // Prevent compiler warnings about cached_has_bits being unused
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- if (cached_has_bits & 0x00000001u) {
- GOOGLE_DCHECK(base_info_ != NULL);
- base_info_->Clear();
- }
- _has_bits_.Clear();
- _internal_metadata_.Clear();
- }
- bool Base_msg::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
- ::google::protobuf::uint32 tag;
- // @@protoc_insertion_point(parse_start:message.Base_msg)
- for (;;) {
- ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
- tag = p.first;
- if (!p.second) goto handle_unusual;
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // required .message.Base_info base_info = 1;
- case 1: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) {
- DO_(::google::protobuf::internal::WireFormatLite::ReadMessage(
- input, mutable_base_info()));
- } else {
- goto handle_unusual;
- }
- break;
- }
- default: {
- handle_unusual:
- if (tag == 0) {
- goto success;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, _internal_metadata_.mutable_unknown_fields()));
- break;
- }
- }
- }
- success:
- // @@protoc_insertion_point(parse_success:message.Base_msg)
- return true;
- failure:
- // @@protoc_insertion_point(parse_failure:message.Base_msg)
- return false;
- #undef DO_
- }
- void Base_msg::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // @@protoc_insertion_point(serialize_start:message.Base_msg)
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- // required .message.Base_info base_info = 1;
- if (cached_has_bits & 0x00000001u) {
- ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
- 1, *this->base_info_, output);
- }
- if (_internal_metadata_.have_unknown_fields()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- _internal_metadata_.unknown_fields(), output);
- }
- // @@protoc_insertion_point(serialize_end:message.Base_msg)
- }
- ::google::protobuf::uint8* Base_msg::InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const {
- (void)deterministic; // Unused
- // @@protoc_insertion_point(serialize_to_array_start:message.Base_msg)
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- // required .message.Base_info base_info = 1;
- if (cached_has_bits & 0x00000001u) {
- target = ::google::protobuf::internal::WireFormatLite::
- InternalWriteMessageToArray(
- 1, *this->base_info_, deterministic, target);
- }
- if (_internal_metadata_.have_unknown_fields()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- _internal_metadata_.unknown_fields(), target);
- }
- // @@protoc_insertion_point(serialize_to_array_end:message.Base_msg)
- return target;
- }
- size_t Base_msg::ByteSizeLong() const {
- // @@protoc_insertion_point(message_byte_size_start:message.Base_msg)
- size_t total_size = 0;
- if (_internal_metadata_.have_unknown_fields()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- _internal_metadata_.unknown_fields());
- }
- // required .message.Base_info base_info = 1;
- if (has_base_info()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::MessageSize(
- *this->base_info_);
- }
- int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = cached_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void Base_msg::MergeFrom(const ::google::protobuf::Message& from) {
- // @@protoc_insertion_point(generalized_merge_from_start:message.Base_msg)
- GOOGLE_DCHECK_NE(&from, this);
- const Base_msg* source =
- ::google::protobuf::internal::DynamicCastToGenerated<const Base_msg>(
- &from);
- if (source == NULL) {
- // @@protoc_insertion_point(generalized_merge_from_cast_fail:message.Base_msg)
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- // @@protoc_insertion_point(generalized_merge_from_cast_success:message.Base_msg)
- MergeFrom(*source);
- }
- }
- void Base_msg::MergeFrom(const Base_msg& from) {
- // @@protoc_insertion_point(class_specific_merge_from_start:message.Base_msg)
- GOOGLE_DCHECK_NE(&from, this);
- _internal_metadata_.MergeFrom(from._internal_metadata_);
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- if (from.has_base_info()) {
- mutable_base_info()->::message::Base_info::MergeFrom(from.base_info());
- }
- }
- void Base_msg::CopyFrom(const ::google::protobuf::Message& from) {
- // @@protoc_insertion_point(generalized_copy_from_start:message.Base_msg)
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void Base_msg::CopyFrom(const Base_msg& from) {
- // @@protoc_insertion_point(class_specific_copy_from_start:message.Base_msg)
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool Base_msg::IsInitialized() const {
- if ((_has_bits_[0] & 0x00000001) != 0x00000001) return false;
- if (has_base_info()) {
- if (!this->base_info_->IsInitialized()) return false;
- }
- return true;
- }
- void Base_msg::Swap(Base_msg* other) {
- if (other == this) return;
- InternalSwap(other);
- }
- void Base_msg::InternalSwap(Base_msg* other) {
- using std::swap;
- swap(base_info_, other->base_info_);
- swap(_has_bits_[0], other->_has_bits_[0]);
- _internal_metadata_.Swap(&other->_internal_metadata_);
- swap(_cached_size_, other->_cached_size_);
- }
- ::google::protobuf::Metadata Base_msg::GetMetadata() const {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return ::protobuf_message_5fbase_2eproto::file_level_metadata[kIndexInFileMessages];
- }
- // ===================================================================
- void Error_manager::InitAsDefaultInstance() {
- }
- #if !defined(_MSC_VER) || _MSC_VER >= 1900
- const int Error_manager::kErrorCodeFieldNumber;
- const int Error_manager::kErrorLevelFieldNumber;
- const int Error_manager::kErrorDescriptionFieldNumber;
- #endif // !defined(_MSC_VER) || _MSC_VER >= 1900
- Error_manager::Error_manager()
- : ::google::protobuf::Message(), _internal_metadata_(NULL) {
- if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) {
- ::protobuf_message_5fbase_2eproto::InitDefaultsError_manager();
- }
- SharedCtor();
- // @@protoc_insertion_point(constructor:message.Error_manager)
- }
- Error_manager::Error_manager(const Error_manager& from)
- : ::google::protobuf::Message(),
- _internal_metadata_(NULL),
- _has_bits_(from._has_bits_),
- _cached_size_(0) {
- _internal_metadata_.MergeFrom(from._internal_metadata_);
- error_description_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- if (from.has_error_description()) {
- error_description_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.error_description_);
- }
- ::memcpy(&error_code_, &from.error_code_,
- static_cast<size_t>(reinterpret_cast<char*>(&error_level_) -
- reinterpret_cast<char*>(&error_code_)) + sizeof(error_level_));
- // @@protoc_insertion_point(copy_constructor:message.Error_manager)
- }
- void Error_manager::SharedCtor() {
- _cached_size_ = 0;
- error_description_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- ::memset(&error_code_, 0, static_cast<size_t>(
- reinterpret_cast<char*>(&error_level_) -
- reinterpret_cast<char*>(&error_code_)) + sizeof(error_level_));
- }
- Error_manager::~Error_manager() {
- // @@protoc_insertion_point(destructor:message.Error_manager)
- SharedDtor();
- }
- void Error_manager::SharedDtor() {
- error_description_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- void Error_manager::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* Error_manager::descriptor() {
- ::protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return ::protobuf_message_5fbase_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
- }
- const Error_manager& Error_manager::default_instance() {
- ::protobuf_message_5fbase_2eproto::InitDefaultsError_manager();
- return *internal_default_instance();
- }
- Error_manager* Error_manager::New(::google::protobuf::Arena* arena) const {
- Error_manager* n = new Error_manager;
- if (arena != NULL) {
- arena->Own(n);
- }
- return n;
- }
- void Error_manager::Clear() {
- // @@protoc_insertion_point(message_clear_start:message.Error_manager)
- ::google::protobuf::uint32 cached_has_bits = 0;
- // Prevent compiler warnings about cached_has_bits being unused
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- if (cached_has_bits & 0x00000001u) {
- GOOGLE_DCHECK(!error_description_.IsDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()));
- (*error_description_.UnsafeRawStringPointer())->clear();
- }
- if (cached_has_bits & 6u) {
- ::memset(&error_code_, 0, static_cast<size_t>(
- reinterpret_cast<char*>(&error_level_) -
- reinterpret_cast<char*>(&error_code_)) + sizeof(error_level_));
- }
- _has_bits_.Clear();
- _internal_metadata_.Clear();
- }
- bool Error_manager::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
- ::google::protobuf::uint32 tag;
- // @@protoc_insertion_point(parse_start:message.Error_manager)
- for (;;) {
- ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
- tag = p.first;
- if (!p.second) goto handle_unusual;
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // required int32 error_code = 1 [default = 0];
- case 1: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(8u /* 8 & 0xFF */)) {
- set_has_error_code();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &error_code_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional .message.Error_level error_level = 2 [default = NORMAL];
- case 2: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(16u /* 16 & 0xFF */)) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::message::Error_level_IsValid(value)) {
- set_error_level(static_cast< ::message::Error_level >(value));
- } else {
- mutable_unknown_fields()->AddVarint(
- 2, static_cast< ::google::protobuf::uint64>(value));
- }
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional string error_description = 3 [default = ""];
- case 3: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) {
- DO_(::google::protobuf::internal::WireFormatLite::ReadString(
- input, this->mutable_error_description()));
- ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
- this->error_description().data(), static_cast<int>(this->error_description().length()),
- ::google::protobuf::internal::WireFormat::PARSE,
- "message.Error_manager.error_description");
- } else {
- goto handle_unusual;
- }
- break;
- }
- default: {
- handle_unusual:
- if (tag == 0) {
- goto success;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, _internal_metadata_.mutable_unknown_fields()));
- break;
- }
- }
- }
- success:
- // @@protoc_insertion_point(parse_success:message.Error_manager)
- return true;
- failure:
- // @@protoc_insertion_point(parse_failure:message.Error_manager)
- return false;
- #undef DO_
- }
- void Error_manager::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // @@protoc_insertion_point(serialize_start:message.Error_manager)
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- // required int32 error_code = 1 [default = 0];
- if (cached_has_bits & 0x00000002u) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->error_code(), output);
- }
- // optional .message.Error_level error_level = 2 [default = NORMAL];
- if (cached_has_bits & 0x00000004u) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 2, this->error_level(), output);
- }
- // optional string error_description = 3 [default = ""];
- if (cached_has_bits & 0x00000001u) {
- ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
- this->error_description().data(), static_cast<int>(this->error_description().length()),
- ::google::protobuf::internal::WireFormat::SERIALIZE,
- "message.Error_manager.error_description");
- ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased(
- 3, this->error_description(), output);
- }
- if (_internal_metadata_.have_unknown_fields()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- _internal_metadata_.unknown_fields(), output);
- }
- // @@protoc_insertion_point(serialize_end:message.Error_manager)
- }
- ::google::protobuf::uint8* Error_manager::InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const {
- (void)deterministic; // Unused
- // @@protoc_insertion_point(serialize_to_array_start:message.Error_manager)
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- // required int32 error_code = 1 [default = 0];
- if (cached_has_bits & 0x00000002u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->error_code(), target);
- }
- // optional .message.Error_level error_level = 2 [default = NORMAL];
- if (cached_has_bits & 0x00000004u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 2, this->error_level(), target);
- }
- // optional string error_description = 3 [default = ""];
- if (cached_has_bits & 0x00000001u) {
- ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
- this->error_description().data(), static_cast<int>(this->error_description().length()),
- ::google::protobuf::internal::WireFormat::SERIALIZE,
- "message.Error_manager.error_description");
- target =
- ::google::protobuf::internal::WireFormatLite::WriteStringToArray(
- 3, this->error_description(), target);
- }
- if (_internal_metadata_.have_unknown_fields()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- _internal_metadata_.unknown_fields(), target);
- }
- // @@protoc_insertion_point(serialize_to_array_end:message.Error_manager)
- return target;
- }
- size_t Error_manager::ByteSizeLong() const {
- // @@protoc_insertion_point(message_byte_size_start:message.Error_manager)
- size_t total_size = 0;
- if (_internal_metadata_.have_unknown_fields()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- _internal_metadata_.unknown_fields());
- }
- // required int32 error_code = 1 [default = 0];
- if (has_error_code()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->error_code());
- }
- // optional string error_description = 3 [default = ""];
- if (has_error_description()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::StringSize(
- this->error_description());
- }
- // optional .message.Error_level error_level = 2 [default = NORMAL];
- if (has_error_level()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->error_level());
- }
- int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = cached_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void Error_manager::MergeFrom(const ::google::protobuf::Message& from) {
- // @@protoc_insertion_point(generalized_merge_from_start:message.Error_manager)
- GOOGLE_DCHECK_NE(&from, this);
- const Error_manager* source =
- ::google::protobuf::internal::DynamicCastToGenerated<const Error_manager>(
- &from);
- if (source == NULL) {
- // @@protoc_insertion_point(generalized_merge_from_cast_fail:message.Error_manager)
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- // @@protoc_insertion_point(generalized_merge_from_cast_success:message.Error_manager)
- MergeFrom(*source);
- }
- }
- void Error_manager::MergeFrom(const Error_manager& from) {
- // @@protoc_insertion_point(class_specific_merge_from_start:message.Error_manager)
- GOOGLE_DCHECK_NE(&from, this);
- _internal_metadata_.MergeFrom(from._internal_metadata_);
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = from._has_bits_[0];
- if (cached_has_bits & 7u) {
- if (cached_has_bits & 0x00000001u) {
- set_has_error_description();
- error_description_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.error_description_);
- }
- if (cached_has_bits & 0x00000002u) {
- error_code_ = from.error_code_;
- }
- if (cached_has_bits & 0x00000004u) {
- error_level_ = from.error_level_;
- }
- _has_bits_[0] |= cached_has_bits;
- }
- }
- void Error_manager::CopyFrom(const ::google::protobuf::Message& from) {
- // @@protoc_insertion_point(generalized_copy_from_start:message.Error_manager)
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void Error_manager::CopyFrom(const Error_manager& from) {
- // @@protoc_insertion_point(class_specific_copy_from_start:message.Error_manager)
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool Error_manager::IsInitialized() const {
- if ((_has_bits_[0] & 0x00000002) != 0x00000002) return false;
- return true;
- }
- void Error_manager::Swap(Error_manager* other) {
- if (other == this) return;
- InternalSwap(other);
- }
- void Error_manager::InternalSwap(Error_manager* other) {
- using std::swap;
- error_description_.Swap(&other->error_description_);
- swap(error_code_, other->error_code_);
- swap(error_level_, other->error_level_);
- swap(_has_bits_[0], other->_has_bits_[0]);
- _internal_metadata_.Swap(&other->_internal_metadata_);
- swap(_cached_size_, other->_cached_size_);
- }
- ::google::protobuf::Metadata Error_manager::GetMetadata() const {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return ::protobuf_message_5fbase_2eproto::file_level_metadata[kIndexInFileMessages];
- }
- // ===================================================================
- void Locate_information::InitAsDefaultInstance() {
- }
- #if !defined(_MSC_VER) || _MSC_VER >= 1900
- const int Locate_information::kLocateXFieldNumber;
- const int Locate_information::kLocateYFieldNumber;
- const int Locate_information::kLocateAngleFieldNumber;
- const int Locate_information::kLocateLengthFieldNumber;
- const int Locate_information::kLocateWidthFieldNumber;
- const int Locate_information::kLocateHeightFieldNumber;
- const int Locate_information::kLocateWheelBaseFieldNumber;
- const int Locate_information::kLocateWheelWidthFieldNumber;
- const int Locate_information::kLocateCorrectFieldNumber;
- const int Locate_information::kLocateFrontThetaFieldNumber;
- #endif // !defined(_MSC_VER) || _MSC_VER >= 1900
- Locate_information::Locate_information()
- : ::google::protobuf::Message(), _internal_metadata_(NULL) {
- if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) {
- ::protobuf_message_5fbase_2eproto::InitDefaultsLocate_information();
- }
- SharedCtor();
- // @@protoc_insertion_point(constructor:message.Locate_information)
- }
- Locate_information::Locate_information(const Locate_information& from)
- : ::google::protobuf::Message(),
- _internal_metadata_(NULL),
- _has_bits_(from._has_bits_),
- _cached_size_(0) {
- _internal_metadata_.MergeFrom(from._internal_metadata_);
- ::memcpy(&locate_x_, &from.locate_x_,
- static_cast<size_t>(reinterpret_cast<char*>(&locate_front_theta_) -
- reinterpret_cast<char*>(&locate_x_)) + sizeof(locate_front_theta_));
- // @@protoc_insertion_point(copy_constructor:message.Locate_information)
- }
- void Locate_information::SharedCtor() {
- _cached_size_ = 0;
- ::memset(&locate_x_, 0, static_cast<size_t>(
- reinterpret_cast<char*>(&locate_front_theta_) -
- reinterpret_cast<char*>(&locate_x_)) + sizeof(locate_front_theta_));
- }
- Locate_information::~Locate_information() {
- // @@protoc_insertion_point(destructor:message.Locate_information)
- SharedDtor();
- }
- void Locate_information::SharedDtor() {
- }
- void Locate_information::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* Locate_information::descriptor() {
- ::protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return ::protobuf_message_5fbase_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
- }
- const Locate_information& Locate_information::default_instance() {
- ::protobuf_message_5fbase_2eproto::InitDefaultsLocate_information();
- return *internal_default_instance();
- }
- Locate_information* Locate_information::New(::google::protobuf::Arena* arena) const {
- Locate_information* n = new Locate_information;
- if (arena != NULL) {
- arena->Own(n);
- }
- return n;
- }
- void Locate_information::Clear() {
- // @@protoc_insertion_point(message_clear_start:message.Locate_information)
- ::google::protobuf::uint32 cached_has_bits = 0;
- // Prevent compiler warnings about cached_has_bits being unused
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- if (cached_has_bits & 255u) {
- ::memset(&locate_x_, 0, static_cast<size_t>(
- reinterpret_cast<char*>(&locate_wheel_width_) -
- reinterpret_cast<char*>(&locate_x_)) + sizeof(locate_wheel_width_));
- }
- if (cached_has_bits & 768u) {
- ::memset(&locate_correct_, 0, static_cast<size_t>(
- reinterpret_cast<char*>(&locate_front_theta_) -
- reinterpret_cast<char*>(&locate_correct_)) + sizeof(locate_front_theta_));
- }
- _has_bits_.Clear();
- _internal_metadata_.Clear();
- }
- bool Locate_information::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
- ::google::protobuf::uint32 tag;
- // @@protoc_insertion_point(parse_start:message.Locate_information)
- for (;;) {
- ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
- tag = p.first;
- if (!p.second) goto handle_unusual;
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // optional float locate_x = 1 [default = 0];
- case 1: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(13u /* 13 & 0xFF */)) {
- set_has_locate_x();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &locate_x_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float locate_y = 2 [default = 0];
- case 2: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(21u /* 21 & 0xFF */)) {
- set_has_locate_y();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &locate_y_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float locate_angle = 3 [default = 0];
- case 3: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(29u /* 29 & 0xFF */)) {
- set_has_locate_angle();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &locate_angle_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float locate_length = 4 [default = 0];
- case 4: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(37u /* 37 & 0xFF */)) {
- set_has_locate_length();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &locate_length_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float locate_width = 5 [default = 0];
- case 5: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(45u /* 45 & 0xFF */)) {
- set_has_locate_width();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &locate_width_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float locate_height = 6 [default = 0];
- case 6: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(53u /* 53 & 0xFF */)) {
- set_has_locate_height();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &locate_height_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float locate_wheel_base = 7 [default = 0];
- case 7: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(61u /* 61 & 0xFF */)) {
- set_has_locate_wheel_base();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &locate_wheel_base_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float locate_wheel_width = 8 [default = 0];
- case 8: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(69u /* 69 & 0xFF */)) {
- set_has_locate_wheel_width();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &locate_wheel_width_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional bool locate_correct = 9 [default = false];
- case 9: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(72u /* 72 & 0xFF */)) {
- set_has_locate_correct();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
- input, &locate_correct_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float locate_front_theta = 10 [default = 0];
- case 10: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(85u /* 85 & 0xFF */)) {
- set_has_locate_front_theta();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &locate_front_theta_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- default: {
- handle_unusual:
- if (tag == 0) {
- goto success;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, _internal_metadata_.mutable_unknown_fields()));
- break;
- }
- }
- }
- success:
- // @@protoc_insertion_point(parse_success:message.Locate_information)
- return true;
- failure:
- // @@protoc_insertion_point(parse_failure:message.Locate_information)
- return false;
- #undef DO_
- }
- void Locate_information::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // @@protoc_insertion_point(serialize_start:message.Locate_information)
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- // optional float locate_x = 1 [default = 0];
- if (cached_has_bits & 0x00000001u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(1, this->locate_x(), output);
- }
- // optional float locate_y = 2 [default = 0];
- if (cached_has_bits & 0x00000002u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(2, this->locate_y(), output);
- }
- // optional float locate_angle = 3 [default = 0];
- if (cached_has_bits & 0x00000004u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(3, this->locate_angle(), output);
- }
- // optional float locate_length = 4 [default = 0];
- if (cached_has_bits & 0x00000008u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(4, this->locate_length(), output);
- }
- // optional float locate_width = 5 [default = 0];
- if (cached_has_bits & 0x00000010u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(5, this->locate_width(), output);
- }
- // optional float locate_height = 6 [default = 0];
- if (cached_has_bits & 0x00000020u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(6, this->locate_height(), output);
- }
- // optional float locate_wheel_base = 7 [default = 0];
- if (cached_has_bits & 0x00000040u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(7, this->locate_wheel_base(), output);
- }
- // optional float locate_wheel_width = 8 [default = 0];
- if (cached_has_bits & 0x00000080u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(8, this->locate_wheel_width(), output);
- }
- // optional bool locate_correct = 9 [default = false];
- if (cached_has_bits & 0x00000100u) {
- ::google::protobuf::internal::WireFormatLite::WriteBool(9, this->locate_correct(), output);
- }
- // optional float locate_front_theta = 10 [default = 0];
- if (cached_has_bits & 0x00000200u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(10, this->locate_front_theta(), output);
- }
- if (_internal_metadata_.have_unknown_fields()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- _internal_metadata_.unknown_fields(), output);
- }
- // @@protoc_insertion_point(serialize_end:message.Locate_information)
- }
- ::google::protobuf::uint8* Locate_information::InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const {
- (void)deterministic; // Unused
- // @@protoc_insertion_point(serialize_to_array_start:message.Locate_information)
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- // optional float locate_x = 1 [default = 0];
- if (cached_has_bits & 0x00000001u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(1, this->locate_x(), target);
- }
- // optional float locate_y = 2 [default = 0];
- if (cached_has_bits & 0x00000002u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(2, this->locate_y(), target);
- }
- // optional float locate_angle = 3 [default = 0];
- if (cached_has_bits & 0x00000004u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(3, this->locate_angle(), target);
- }
- // optional float locate_length = 4 [default = 0];
- if (cached_has_bits & 0x00000008u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(4, this->locate_length(), target);
- }
- // optional float locate_width = 5 [default = 0];
- if (cached_has_bits & 0x00000010u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(5, this->locate_width(), target);
- }
- // optional float locate_height = 6 [default = 0];
- if (cached_has_bits & 0x00000020u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(6, this->locate_height(), target);
- }
- // optional float locate_wheel_base = 7 [default = 0];
- if (cached_has_bits & 0x00000040u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(7, this->locate_wheel_base(), target);
- }
- // optional float locate_wheel_width = 8 [default = 0];
- if (cached_has_bits & 0x00000080u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(8, this->locate_wheel_width(), target);
- }
- // optional bool locate_correct = 9 [default = false];
- if (cached_has_bits & 0x00000100u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(9, this->locate_correct(), target);
- }
- // optional float locate_front_theta = 10 [default = 0];
- if (cached_has_bits & 0x00000200u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(10, this->locate_front_theta(), target);
- }
- if (_internal_metadata_.have_unknown_fields()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- _internal_metadata_.unknown_fields(), target);
- }
- // @@protoc_insertion_point(serialize_to_array_end:message.Locate_information)
- return target;
- }
- size_t Locate_information::ByteSizeLong() const {
- // @@protoc_insertion_point(message_byte_size_start:message.Locate_information)
- size_t total_size = 0;
- if (_internal_metadata_.have_unknown_fields()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- _internal_metadata_.unknown_fields());
- }
- if (_has_bits_[0 / 32] & 255u) {
- // optional float locate_x = 1 [default = 0];
- if (has_locate_x()) {
- total_size += 1 + 4;
- }
- // optional float locate_y = 2 [default = 0];
- if (has_locate_y()) {
- total_size += 1 + 4;
- }
- // optional float locate_angle = 3 [default = 0];
- if (has_locate_angle()) {
- total_size += 1 + 4;
- }
- // optional float locate_length = 4 [default = 0];
- if (has_locate_length()) {
- total_size += 1 + 4;
- }
- // optional float locate_width = 5 [default = 0];
- if (has_locate_width()) {
- total_size += 1 + 4;
- }
- // optional float locate_height = 6 [default = 0];
- if (has_locate_height()) {
- total_size += 1 + 4;
- }
- // optional float locate_wheel_base = 7 [default = 0];
- if (has_locate_wheel_base()) {
- total_size += 1 + 4;
- }
- // optional float locate_wheel_width = 8 [default = 0];
- if (has_locate_wheel_width()) {
- total_size += 1 + 4;
- }
- }
- if (_has_bits_[8 / 32] & 768u) {
- // optional bool locate_correct = 9 [default = false];
- if (has_locate_correct()) {
- total_size += 1 + 1;
- }
- // optional float locate_front_theta = 10 [default = 0];
- if (has_locate_front_theta()) {
- total_size += 1 + 4;
- }
- }
- int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = cached_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void Locate_information::MergeFrom(const ::google::protobuf::Message& from) {
- // @@protoc_insertion_point(generalized_merge_from_start:message.Locate_information)
- GOOGLE_DCHECK_NE(&from, this);
- const Locate_information* source =
- ::google::protobuf::internal::DynamicCastToGenerated<const Locate_information>(
- &from);
- if (source == NULL) {
- // @@protoc_insertion_point(generalized_merge_from_cast_fail:message.Locate_information)
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- // @@protoc_insertion_point(generalized_merge_from_cast_success:message.Locate_information)
- MergeFrom(*source);
- }
- }
- void Locate_information::MergeFrom(const Locate_information& from) {
- // @@protoc_insertion_point(class_specific_merge_from_start:message.Locate_information)
- GOOGLE_DCHECK_NE(&from, this);
- _internal_metadata_.MergeFrom(from._internal_metadata_);
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = from._has_bits_[0];
- if (cached_has_bits & 255u) {
- if (cached_has_bits & 0x00000001u) {
- locate_x_ = from.locate_x_;
- }
- if (cached_has_bits & 0x00000002u) {
- locate_y_ = from.locate_y_;
- }
- if (cached_has_bits & 0x00000004u) {
- locate_angle_ = from.locate_angle_;
- }
- if (cached_has_bits & 0x00000008u) {
- locate_length_ = from.locate_length_;
- }
- if (cached_has_bits & 0x00000010u) {
- locate_width_ = from.locate_width_;
- }
- if (cached_has_bits & 0x00000020u) {
- locate_height_ = from.locate_height_;
- }
- if (cached_has_bits & 0x00000040u) {
- locate_wheel_base_ = from.locate_wheel_base_;
- }
- if (cached_has_bits & 0x00000080u) {
- locate_wheel_width_ = from.locate_wheel_width_;
- }
- _has_bits_[0] |= cached_has_bits;
- }
- if (cached_has_bits & 768u) {
- if (cached_has_bits & 0x00000100u) {
- locate_correct_ = from.locate_correct_;
- }
- if (cached_has_bits & 0x00000200u) {
- locate_front_theta_ = from.locate_front_theta_;
- }
- _has_bits_[0] |= cached_has_bits;
- }
- }
- void Locate_information::CopyFrom(const ::google::protobuf::Message& from) {
- // @@protoc_insertion_point(generalized_copy_from_start:message.Locate_information)
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void Locate_information::CopyFrom(const Locate_information& from) {
- // @@protoc_insertion_point(class_specific_copy_from_start:message.Locate_information)
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool Locate_information::IsInitialized() const {
- return true;
- }
- void Locate_information::Swap(Locate_information* other) {
- if (other == this) return;
- InternalSwap(other);
- }
- void Locate_information::InternalSwap(Locate_information* other) {
- using std::swap;
- swap(locate_x_, other->locate_x_);
- swap(locate_y_, other->locate_y_);
- swap(locate_angle_, other->locate_angle_);
- swap(locate_length_, other->locate_length_);
- swap(locate_width_, other->locate_width_);
- swap(locate_height_, other->locate_height_);
- swap(locate_wheel_base_, other->locate_wheel_base_);
- swap(locate_wheel_width_, other->locate_wheel_width_);
- swap(locate_correct_, other->locate_correct_);
- swap(locate_front_theta_, other->locate_front_theta_);
- swap(_has_bits_[0], other->_has_bits_[0]);
- _internal_metadata_.Swap(&other->_internal_metadata_);
- swap(_cached_size_, other->_cached_size_);
- }
- ::google::protobuf::Metadata Locate_information::GetMetadata() const {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return ::protobuf_message_5fbase_2eproto::file_level_metadata[kIndexInFileMessages];
- }
- // ===================================================================
- void Car_info::InitAsDefaultInstance() {
- }
- #if !defined(_MSC_VER) || _MSC_VER >= 1900
- const int Car_info::kCarLengthFieldNumber;
- const int Car_info::kCarWidthFieldNumber;
- const int Car_info::kCarHeightFieldNumber;
- const int Car_info::kLicenseFieldNumber;
- const int Car_info::kCarWheelBaseFieldNumber;
- const int Car_info::kCarWheelWidthFieldNumber;
- #endif // !defined(_MSC_VER) || _MSC_VER >= 1900
- Car_info::Car_info()
- : ::google::protobuf::Message(), _internal_metadata_(NULL) {
- if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) {
- ::protobuf_message_5fbase_2eproto::InitDefaultsCar_info();
- }
- SharedCtor();
- // @@protoc_insertion_point(constructor:message.Car_info)
- }
- Car_info::Car_info(const Car_info& from)
- : ::google::protobuf::Message(),
- _internal_metadata_(NULL),
- _has_bits_(from._has_bits_),
- _cached_size_(0) {
- _internal_metadata_.MergeFrom(from._internal_metadata_);
- license_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- if (from.has_license()) {
- license_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.license_);
- }
- ::memcpy(&car_length_, &from.car_length_,
- static_cast<size_t>(reinterpret_cast<char*>(&car_wheel_width_) -
- reinterpret_cast<char*>(&car_length_)) + sizeof(car_wheel_width_));
- // @@protoc_insertion_point(copy_constructor:message.Car_info)
- }
- void Car_info::SharedCtor() {
- _cached_size_ = 0;
- license_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- ::memset(&car_length_, 0, static_cast<size_t>(
- reinterpret_cast<char*>(&car_wheel_width_) -
- reinterpret_cast<char*>(&car_length_)) + sizeof(car_wheel_width_));
- }
- Car_info::~Car_info() {
- // @@protoc_insertion_point(destructor:message.Car_info)
- SharedDtor();
- }
- void Car_info::SharedDtor() {
- license_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- void Car_info::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* Car_info::descriptor() {
- ::protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return ::protobuf_message_5fbase_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
- }
- const Car_info& Car_info::default_instance() {
- ::protobuf_message_5fbase_2eproto::InitDefaultsCar_info();
- return *internal_default_instance();
- }
- Car_info* Car_info::New(::google::protobuf::Arena* arena) const {
- Car_info* n = new Car_info;
- if (arena != NULL) {
- arena->Own(n);
- }
- return n;
- }
- void Car_info::Clear() {
- // @@protoc_insertion_point(message_clear_start:message.Car_info)
- ::google::protobuf::uint32 cached_has_bits = 0;
- // Prevent compiler warnings about cached_has_bits being unused
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- if (cached_has_bits & 0x00000001u) {
- GOOGLE_DCHECK(!license_.IsDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()));
- (*license_.UnsafeRawStringPointer())->clear();
- }
- if (cached_has_bits & 62u) {
- ::memset(&car_length_, 0, static_cast<size_t>(
- reinterpret_cast<char*>(&car_wheel_width_) -
- reinterpret_cast<char*>(&car_length_)) + sizeof(car_wheel_width_));
- }
- _has_bits_.Clear();
- _internal_metadata_.Clear();
- }
- bool Car_info::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
- ::google::protobuf::uint32 tag;
- // @@protoc_insertion_point(parse_start:message.Car_info)
- for (;;) {
- ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
- tag = p.first;
- if (!p.second) goto handle_unusual;
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // optional float car_length = 1 [default = 0];
- case 1: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(13u /* 13 & 0xFF */)) {
- set_has_car_length();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &car_length_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float car_width = 2 [default = 0];
- case 2: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(21u /* 21 & 0xFF */)) {
- set_has_car_width();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &car_width_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float car_height = 3 [default = 0];
- case 3: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(29u /* 29 & 0xFF */)) {
- set_has_car_height();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &car_height_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional string license = 4 [default = ""];
- case 4: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) {
- DO_(::google::protobuf::internal::WireFormatLite::ReadString(
- input, this->mutable_license()));
- ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
- this->license().data(), static_cast<int>(this->license().length()),
- ::google::protobuf::internal::WireFormat::PARSE,
- "message.Car_info.license");
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float car_wheel_base = 5 [default = 0];
- case 5: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(45u /* 45 & 0xFF */)) {
- set_has_car_wheel_base();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &car_wheel_base_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float car_wheel_width = 6 [default = 0];
- case 6: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(53u /* 53 & 0xFF */)) {
- set_has_car_wheel_width();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &car_wheel_width_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- default: {
- handle_unusual:
- if (tag == 0) {
- goto success;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, _internal_metadata_.mutable_unknown_fields()));
- break;
- }
- }
- }
- success:
- // @@protoc_insertion_point(parse_success:message.Car_info)
- return true;
- failure:
- // @@protoc_insertion_point(parse_failure:message.Car_info)
- return false;
- #undef DO_
- }
- void Car_info::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // @@protoc_insertion_point(serialize_start:message.Car_info)
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- // optional float car_length = 1 [default = 0];
- if (cached_has_bits & 0x00000002u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(1, this->car_length(), output);
- }
- // optional float car_width = 2 [default = 0];
- if (cached_has_bits & 0x00000004u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(2, this->car_width(), output);
- }
- // optional float car_height = 3 [default = 0];
- if (cached_has_bits & 0x00000008u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(3, this->car_height(), output);
- }
- // optional string license = 4 [default = ""];
- if (cached_has_bits & 0x00000001u) {
- ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
- this->license().data(), static_cast<int>(this->license().length()),
- ::google::protobuf::internal::WireFormat::SERIALIZE,
- "message.Car_info.license");
- ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased(
- 4, this->license(), output);
- }
- // optional float car_wheel_base = 5 [default = 0];
- if (cached_has_bits & 0x00000010u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(5, this->car_wheel_base(), output);
- }
- // optional float car_wheel_width = 6 [default = 0];
- if (cached_has_bits & 0x00000020u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(6, this->car_wheel_width(), output);
- }
- if (_internal_metadata_.have_unknown_fields()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- _internal_metadata_.unknown_fields(), output);
- }
- // @@protoc_insertion_point(serialize_end:message.Car_info)
- }
- ::google::protobuf::uint8* Car_info::InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const {
- (void)deterministic; // Unused
- // @@protoc_insertion_point(serialize_to_array_start:message.Car_info)
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- // optional float car_length = 1 [default = 0];
- if (cached_has_bits & 0x00000002u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(1, this->car_length(), target);
- }
- // optional float car_width = 2 [default = 0];
- if (cached_has_bits & 0x00000004u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(2, this->car_width(), target);
- }
- // optional float car_height = 3 [default = 0];
- if (cached_has_bits & 0x00000008u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(3, this->car_height(), target);
- }
- // optional string license = 4 [default = ""];
- if (cached_has_bits & 0x00000001u) {
- ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
- this->license().data(), static_cast<int>(this->license().length()),
- ::google::protobuf::internal::WireFormat::SERIALIZE,
- "message.Car_info.license");
- target =
- ::google::protobuf::internal::WireFormatLite::WriteStringToArray(
- 4, this->license(), target);
- }
- // optional float car_wheel_base = 5 [default = 0];
- if (cached_has_bits & 0x00000010u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(5, this->car_wheel_base(), target);
- }
- // optional float car_wheel_width = 6 [default = 0];
- if (cached_has_bits & 0x00000020u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(6, this->car_wheel_width(), target);
- }
- if (_internal_metadata_.have_unknown_fields()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- _internal_metadata_.unknown_fields(), target);
- }
- // @@protoc_insertion_point(serialize_to_array_end:message.Car_info)
- return target;
- }
- size_t Car_info::ByteSizeLong() const {
- // @@protoc_insertion_point(message_byte_size_start:message.Car_info)
- size_t total_size = 0;
- if (_internal_metadata_.have_unknown_fields()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- _internal_metadata_.unknown_fields());
- }
- if (_has_bits_[0 / 32] & 63u) {
- // optional string license = 4 [default = ""];
- if (has_license()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::StringSize(
- this->license());
- }
- // optional float car_length = 1 [default = 0];
- if (has_car_length()) {
- total_size += 1 + 4;
- }
- // optional float car_width = 2 [default = 0];
- if (has_car_width()) {
- total_size += 1 + 4;
- }
- // optional float car_height = 3 [default = 0];
- if (has_car_height()) {
- total_size += 1 + 4;
- }
- // optional float car_wheel_base = 5 [default = 0];
- if (has_car_wheel_base()) {
- total_size += 1 + 4;
- }
- // optional float car_wheel_width = 6 [default = 0];
- if (has_car_wheel_width()) {
- total_size += 1 + 4;
- }
- }
- int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = cached_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void Car_info::MergeFrom(const ::google::protobuf::Message& from) {
- // @@protoc_insertion_point(generalized_merge_from_start:message.Car_info)
- GOOGLE_DCHECK_NE(&from, this);
- const Car_info* source =
- ::google::protobuf::internal::DynamicCastToGenerated<const Car_info>(
- &from);
- if (source == NULL) {
- // @@protoc_insertion_point(generalized_merge_from_cast_fail:message.Car_info)
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- // @@protoc_insertion_point(generalized_merge_from_cast_success:message.Car_info)
- MergeFrom(*source);
- }
- }
- void Car_info::MergeFrom(const Car_info& from) {
- // @@protoc_insertion_point(class_specific_merge_from_start:message.Car_info)
- GOOGLE_DCHECK_NE(&from, this);
- _internal_metadata_.MergeFrom(from._internal_metadata_);
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = from._has_bits_[0];
- if (cached_has_bits & 63u) {
- if (cached_has_bits & 0x00000001u) {
- set_has_license();
- license_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.license_);
- }
- if (cached_has_bits & 0x00000002u) {
- car_length_ = from.car_length_;
- }
- if (cached_has_bits & 0x00000004u) {
- car_width_ = from.car_width_;
- }
- if (cached_has_bits & 0x00000008u) {
- car_height_ = from.car_height_;
- }
- if (cached_has_bits & 0x00000010u) {
- car_wheel_base_ = from.car_wheel_base_;
- }
- if (cached_has_bits & 0x00000020u) {
- car_wheel_width_ = from.car_wheel_width_;
- }
- _has_bits_[0] |= cached_has_bits;
- }
- }
- void Car_info::CopyFrom(const ::google::protobuf::Message& from) {
- // @@protoc_insertion_point(generalized_copy_from_start:message.Car_info)
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void Car_info::CopyFrom(const Car_info& from) {
- // @@protoc_insertion_point(class_specific_copy_from_start:message.Car_info)
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool Car_info::IsInitialized() const {
- return true;
- }
- void Car_info::Swap(Car_info* other) {
- if (other == this) return;
- InternalSwap(other);
- }
- void Car_info::InternalSwap(Car_info* other) {
- using std::swap;
- license_.Swap(&other->license_);
- swap(car_length_, other->car_length_);
- swap(car_width_, other->car_width_);
- swap(car_height_, other->car_height_);
- swap(car_wheel_base_, other->car_wheel_base_);
- swap(car_wheel_width_, other->car_wheel_width_);
- swap(_has_bits_[0], other->_has_bits_[0]);
- _internal_metadata_.Swap(&other->_internal_metadata_);
- swap(_cached_size_, other->_cached_size_);
- }
- ::google::protobuf::Metadata Car_info::GetMetadata() const {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return ::protobuf_message_5fbase_2eproto::file_level_metadata[kIndexInFileMessages];
- }
- // ===================================================================
- void Parkspace_info::InitAsDefaultInstance() {
- ::message::_Parkspace_info_default_instance_._instance.get_mutable()->car_info_ = const_cast< ::message::Car_info*>(
- ::message::Car_info::internal_default_instance());
- }
- #if !defined(_MSC_VER) || _MSC_VER >= 1900
- const int Parkspace_info::kParkingspaceIndexIdFieldNumber;
- const int Parkspace_info::kParkingspaceTypeFieldNumber;
- const int Parkspace_info::kParkingspaceUnitIdFieldNumber;
- const int Parkspace_info::kParkingspaceRoomIdFieldNumber;
- const int Parkspace_info::kParkingspaceDirectionFieldNumber;
- const int Parkspace_info::kParkingspaceFloorIdFieldNumber;
- const int Parkspace_info::kParkingspaceWidthFieldNumber;
- const int Parkspace_info::kParkingspaceHeightFieldNumber;
- const int Parkspace_info::kParkingspaceStatusFieldNumber;
- const int Parkspace_info::kCarInfoFieldNumber;
- const int Parkspace_info::kEntryTimeFieldNumber;
- const int Parkspace_info::kLeaveTimeFieldNumber;
- const int Parkspace_info::kParkspacePathFieldNumber;
- const int Parkspace_info::kPathEstimateTimeFieldNumber;
- const int Parkspace_info::kParkspaceStatusTargetFieldNumber;
- #endif // !defined(_MSC_VER) || _MSC_VER >= 1900
- Parkspace_info::Parkspace_info()
- : ::google::protobuf::Message(), _internal_metadata_(NULL) {
- if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) {
- ::protobuf_message_5fbase_2eproto::InitDefaultsParkspace_info();
- }
- SharedCtor();
- // @@protoc_insertion_point(constructor:message.Parkspace_info)
- }
- Parkspace_info::Parkspace_info(const Parkspace_info& from)
- : ::google::protobuf::Message(),
- _internal_metadata_(NULL),
- _has_bits_(from._has_bits_),
- _cached_size_(0) {
- _internal_metadata_.MergeFrom(from._internal_metadata_);
- entry_time_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- if (from.has_entry_time()) {
- entry_time_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.entry_time_);
- }
- leave_time_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- if (from.has_leave_time()) {
- leave_time_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.leave_time_);
- }
- if (from.has_car_info()) {
- car_info_ = new ::message::Car_info(*from.car_info_);
- } else {
- car_info_ = NULL;
- }
- ::memcpy(&parkingspace_index_id_, &from.parkingspace_index_id_,
- static_cast<size_t>(reinterpret_cast<char*>(&parkspace_status_target_) -
- reinterpret_cast<char*>(&parkingspace_index_id_)) + sizeof(parkspace_status_target_));
- // @@protoc_insertion_point(copy_constructor:message.Parkspace_info)
- }
- void Parkspace_info::SharedCtor() {
- _cached_size_ = 0;
- entry_time_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- leave_time_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- ::memset(&car_info_, 0, static_cast<size_t>(
- reinterpret_cast<char*>(&parkspace_status_target_) -
- reinterpret_cast<char*>(&car_info_)) + sizeof(parkspace_status_target_));
- }
- Parkspace_info::~Parkspace_info() {
- // @@protoc_insertion_point(destructor:message.Parkspace_info)
- SharedDtor();
- }
- void Parkspace_info::SharedDtor() {
- entry_time_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- leave_time_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- if (this != internal_default_instance()) delete car_info_;
- }
- void Parkspace_info::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* Parkspace_info::descriptor() {
- ::protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return ::protobuf_message_5fbase_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
- }
- const Parkspace_info& Parkspace_info::default_instance() {
- ::protobuf_message_5fbase_2eproto::InitDefaultsParkspace_info();
- return *internal_default_instance();
- }
- Parkspace_info* Parkspace_info::New(::google::protobuf::Arena* arena) const {
- Parkspace_info* n = new Parkspace_info;
- if (arena != NULL) {
- arena->Own(n);
- }
- return n;
- }
- void Parkspace_info::Clear() {
- // @@protoc_insertion_point(message_clear_start:message.Parkspace_info)
- ::google::protobuf::uint32 cached_has_bits = 0;
- // Prevent compiler warnings about cached_has_bits being unused
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- if (cached_has_bits & 7u) {
- if (cached_has_bits & 0x00000001u) {
- GOOGLE_DCHECK(!entry_time_.IsDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()));
- (*entry_time_.UnsafeRawStringPointer())->clear();
- }
- if (cached_has_bits & 0x00000002u) {
- GOOGLE_DCHECK(!leave_time_.IsDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()));
- (*leave_time_.UnsafeRawStringPointer())->clear();
- }
- if (cached_has_bits & 0x00000004u) {
- GOOGLE_DCHECK(car_info_ != NULL);
- car_info_->Clear();
- }
- }
- if (cached_has_bits & 248u) {
- ::memset(&parkingspace_index_id_, 0, static_cast<size_t>(
- reinterpret_cast<char*>(&parkingspace_direction_) -
- reinterpret_cast<char*>(&parkingspace_index_id_)) + sizeof(parkingspace_direction_));
- }
- if (cached_has_bits & 32512u) {
- ::memset(&parkingspace_floor_id_, 0, static_cast<size_t>(
- reinterpret_cast<char*>(&parkspace_status_target_) -
- reinterpret_cast<char*>(&parkingspace_floor_id_)) + sizeof(parkspace_status_target_));
- }
- _has_bits_.Clear();
- _internal_metadata_.Clear();
- }
- bool Parkspace_info::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
- ::google::protobuf::uint32 tag;
- // @@protoc_insertion_point(parse_start:message.Parkspace_info)
- for (;;) {
- ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
- tag = p.first;
- if (!p.second) goto handle_unusual;
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // optional int32 parkingspace_index_id = 1;
- case 1: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(8u /* 8 & 0xFF */)) {
- set_has_parkingspace_index_id();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &parkingspace_index_id_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional .message.Parkspace_type parkingspace_type = 2;
- case 2: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(16u /* 16 & 0xFF */)) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::message::Parkspace_type_IsValid(value)) {
- set_parkingspace_type(static_cast< ::message::Parkspace_type >(value));
- } else {
- mutable_unknown_fields()->AddVarint(
- 2, static_cast< ::google::protobuf::uint64>(value));
- }
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional int32 parkingspace_unit_id = 3;
- case 3: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(24u /* 24 & 0xFF */)) {
- set_has_parkingspace_unit_id();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &parkingspace_unit_id_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional int32 parkingspace_room_id = 4;
- case 4: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(32u /* 32 & 0xFF */)) {
- set_has_parkingspace_room_id();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &parkingspace_room_id_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional .message.Direction parkingspace_direction = 5;
- case 5: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(40u /* 40 & 0xFF */)) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::message::Direction_IsValid(value)) {
- set_parkingspace_direction(static_cast< ::message::Direction >(value));
- } else {
- mutable_unknown_fields()->AddVarint(
- 5, static_cast< ::google::protobuf::uint64>(value));
- }
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional int32 parkingspace_floor_id = 6;
- case 6: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(48u /* 48 & 0xFF */)) {
- set_has_parkingspace_floor_id();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &parkingspace_floor_id_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float parkingspace_width = 7;
- case 7: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(61u /* 61 & 0xFF */)) {
- set_has_parkingspace_width();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &parkingspace_width_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float parkingspace_height = 8;
- case 8: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(69u /* 69 & 0xFF */)) {
- set_has_parkingspace_height();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &parkingspace_height_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional .message.Parkspace_status parkingspace_status = 9;
- case 9: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(72u /* 72 & 0xFF */)) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::message::Parkspace_status_IsValid(value)) {
- set_parkingspace_status(static_cast< ::message::Parkspace_status >(value));
- } else {
- mutable_unknown_fields()->AddVarint(
- 9, static_cast< ::google::protobuf::uint64>(value));
- }
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional .message.Car_info car_info = 10;
- case 10: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(82u /* 82 & 0xFF */)) {
- DO_(::google::protobuf::internal::WireFormatLite::ReadMessage(
- input, mutable_car_info()));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional string entry_time = 11;
- case 11: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(90u /* 90 & 0xFF */)) {
- DO_(::google::protobuf::internal::WireFormatLite::ReadString(
- input, this->mutable_entry_time()));
- ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
- this->entry_time().data(), static_cast<int>(this->entry_time().length()),
- ::google::protobuf::internal::WireFormat::PARSE,
- "message.Parkspace_info.entry_time");
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional string leave_time = 12;
- case 12: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(98u /* 98 & 0xFF */)) {
- DO_(::google::protobuf::internal::WireFormatLite::ReadString(
- input, this->mutable_leave_time()));
- ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
- this->leave_time().data(), static_cast<int>(this->leave_time().length()),
- ::google::protobuf::internal::WireFormat::PARSE,
- "message.Parkspace_info.leave_time");
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional .message.Parkspace_path parkspace_path = 13;
- case 13: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(104u /* 104 & 0xFF */)) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::message::Parkspace_path_IsValid(value)) {
- set_parkspace_path(static_cast< ::message::Parkspace_path >(value));
- } else {
- mutable_unknown_fields()->AddVarint(
- 13, static_cast< ::google::protobuf::uint64>(value));
- }
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional float path_estimate_time = 14;
- case 14: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(117u /* 117 & 0xFF */)) {
- set_has_path_estimate_time();
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
- input, &path_estimate_time_)));
- } else {
- goto handle_unusual;
- }
- break;
- }
- // optional .message.Parkspace_status parkspace_status_target = 15;
- case 15: {
- if (static_cast< ::google::protobuf::uint8>(tag) ==
- static_cast< ::google::protobuf::uint8>(120u /* 120 & 0xFF */)) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::message::Parkspace_status_IsValid(value)) {
- set_parkspace_status_target(static_cast< ::message::Parkspace_status >(value));
- } else {
- mutable_unknown_fields()->AddVarint(
- 15, static_cast< ::google::protobuf::uint64>(value));
- }
- } else {
- goto handle_unusual;
- }
- break;
- }
- default: {
- handle_unusual:
- if (tag == 0) {
- goto success;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, _internal_metadata_.mutable_unknown_fields()));
- break;
- }
- }
- }
- success:
- // @@protoc_insertion_point(parse_success:message.Parkspace_info)
- return true;
- failure:
- // @@protoc_insertion_point(parse_failure:message.Parkspace_info)
- return false;
- #undef DO_
- }
- void Parkspace_info::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // @@protoc_insertion_point(serialize_start:message.Parkspace_info)
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- // optional int32 parkingspace_index_id = 1;
- if (cached_has_bits & 0x00000008u) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->parkingspace_index_id(), output);
- }
- // optional .message.Parkspace_type parkingspace_type = 2;
- if (cached_has_bits & 0x00000010u) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 2, this->parkingspace_type(), output);
- }
- // optional int32 parkingspace_unit_id = 3;
- if (cached_has_bits & 0x00000020u) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(3, this->parkingspace_unit_id(), output);
- }
- // optional int32 parkingspace_room_id = 4;
- if (cached_has_bits & 0x00000040u) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(4, this->parkingspace_room_id(), output);
- }
- // optional .message.Direction parkingspace_direction = 5;
- if (cached_has_bits & 0x00000080u) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 5, this->parkingspace_direction(), output);
- }
- // optional int32 parkingspace_floor_id = 6;
- if (cached_has_bits & 0x00000100u) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(6, this->parkingspace_floor_id(), output);
- }
- // optional float parkingspace_width = 7;
- if (cached_has_bits & 0x00000200u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(7, this->parkingspace_width(), output);
- }
- // optional float parkingspace_height = 8;
- if (cached_has_bits & 0x00000400u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(8, this->parkingspace_height(), output);
- }
- // optional .message.Parkspace_status parkingspace_status = 9;
- if (cached_has_bits & 0x00000800u) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 9, this->parkingspace_status(), output);
- }
- // optional .message.Car_info car_info = 10;
- if (cached_has_bits & 0x00000004u) {
- ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
- 10, *this->car_info_, output);
- }
- // optional string entry_time = 11;
- if (cached_has_bits & 0x00000001u) {
- ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
- this->entry_time().data(), static_cast<int>(this->entry_time().length()),
- ::google::protobuf::internal::WireFormat::SERIALIZE,
- "message.Parkspace_info.entry_time");
- ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased(
- 11, this->entry_time(), output);
- }
- // optional string leave_time = 12;
- if (cached_has_bits & 0x00000002u) {
- ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
- this->leave_time().data(), static_cast<int>(this->leave_time().length()),
- ::google::protobuf::internal::WireFormat::SERIALIZE,
- "message.Parkspace_info.leave_time");
- ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased(
- 12, this->leave_time(), output);
- }
- // optional .message.Parkspace_path parkspace_path = 13;
- if (cached_has_bits & 0x00001000u) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 13, this->parkspace_path(), output);
- }
- // optional float path_estimate_time = 14;
- if (cached_has_bits & 0x00002000u) {
- ::google::protobuf::internal::WireFormatLite::WriteFloat(14, this->path_estimate_time(), output);
- }
- // optional .message.Parkspace_status parkspace_status_target = 15;
- if (cached_has_bits & 0x00004000u) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 15, this->parkspace_status_target(), output);
- }
- if (_internal_metadata_.have_unknown_fields()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- _internal_metadata_.unknown_fields(), output);
- }
- // @@protoc_insertion_point(serialize_end:message.Parkspace_info)
- }
- ::google::protobuf::uint8* Parkspace_info::InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const {
- (void)deterministic; // Unused
- // @@protoc_insertion_point(serialize_to_array_start:message.Parkspace_info)
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = _has_bits_[0];
- // optional int32 parkingspace_index_id = 1;
- if (cached_has_bits & 0x00000008u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->parkingspace_index_id(), target);
- }
- // optional .message.Parkspace_type parkingspace_type = 2;
- if (cached_has_bits & 0x00000010u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 2, this->parkingspace_type(), target);
- }
- // optional int32 parkingspace_unit_id = 3;
- if (cached_has_bits & 0x00000020u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(3, this->parkingspace_unit_id(), target);
- }
- // optional int32 parkingspace_room_id = 4;
- if (cached_has_bits & 0x00000040u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(4, this->parkingspace_room_id(), target);
- }
- // optional .message.Direction parkingspace_direction = 5;
- if (cached_has_bits & 0x00000080u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 5, this->parkingspace_direction(), target);
- }
- // optional int32 parkingspace_floor_id = 6;
- if (cached_has_bits & 0x00000100u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(6, this->parkingspace_floor_id(), target);
- }
- // optional float parkingspace_width = 7;
- if (cached_has_bits & 0x00000200u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(7, this->parkingspace_width(), target);
- }
- // optional float parkingspace_height = 8;
- if (cached_has_bits & 0x00000400u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(8, this->parkingspace_height(), target);
- }
- // optional .message.Parkspace_status parkingspace_status = 9;
- if (cached_has_bits & 0x00000800u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 9, this->parkingspace_status(), target);
- }
- // optional .message.Car_info car_info = 10;
- if (cached_has_bits & 0x00000004u) {
- target = ::google::protobuf::internal::WireFormatLite::
- InternalWriteMessageToArray(
- 10, *this->car_info_, deterministic, target);
- }
- // optional string entry_time = 11;
- if (cached_has_bits & 0x00000001u) {
- ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
- this->entry_time().data(), static_cast<int>(this->entry_time().length()),
- ::google::protobuf::internal::WireFormat::SERIALIZE,
- "message.Parkspace_info.entry_time");
- target =
- ::google::protobuf::internal::WireFormatLite::WriteStringToArray(
- 11, this->entry_time(), target);
- }
- // optional string leave_time = 12;
- if (cached_has_bits & 0x00000002u) {
- ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
- this->leave_time().data(), static_cast<int>(this->leave_time().length()),
- ::google::protobuf::internal::WireFormat::SERIALIZE,
- "message.Parkspace_info.leave_time");
- target =
- ::google::protobuf::internal::WireFormatLite::WriteStringToArray(
- 12, this->leave_time(), target);
- }
- // optional .message.Parkspace_path parkspace_path = 13;
- if (cached_has_bits & 0x00001000u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 13, this->parkspace_path(), target);
- }
- // optional float path_estimate_time = 14;
- if (cached_has_bits & 0x00002000u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(14, this->path_estimate_time(), target);
- }
- // optional .message.Parkspace_status parkspace_status_target = 15;
- if (cached_has_bits & 0x00004000u) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 15, this->parkspace_status_target(), target);
- }
- if (_internal_metadata_.have_unknown_fields()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- _internal_metadata_.unknown_fields(), target);
- }
- // @@protoc_insertion_point(serialize_to_array_end:message.Parkspace_info)
- return target;
- }
- size_t Parkspace_info::ByteSizeLong() const {
- // @@protoc_insertion_point(message_byte_size_start:message.Parkspace_info)
- size_t total_size = 0;
- if (_internal_metadata_.have_unknown_fields()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- _internal_metadata_.unknown_fields());
- }
- if (_has_bits_[0 / 32] & 255u) {
- // optional string entry_time = 11;
- if (has_entry_time()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::StringSize(
- this->entry_time());
- }
- // optional string leave_time = 12;
- if (has_leave_time()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::StringSize(
- this->leave_time());
- }
- // optional .message.Car_info car_info = 10;
- if (has_car_info()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::MessageSize(
- *this->car_info_);
- }
- // optional int32 parkingspace_index_id = 1;
- if (has_parkingspace_index_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->parkingspace_index_id());
- }
- // optional .message.Parkspace_type parkingspace_type = 2;
- if (has_parkingspace_type()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->parkingspace_type());
- }
- // optional int32 parkingspace_unit_id = 3;
- if (has_parkingspace_unit_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->parkingspace_unit_id());
- }
- // optional int32 parkingspace_room_id = 4;
- if (has_parkingspace_room_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->parkingspace_room_id());
- }
- // optional .message.Direction parkingspace_direction = 5;
- if (has_parkingspace_direction()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->parkingspace_direction());
- }
- }
- if (_has_bits_[8 / 32] & 32512u) {
- // optional int32 parkingspace_floor_id = 6;
- if (has_parkingspace_floor_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->parkingspace_floor_id());
- }
- // optional float parkingspace_width = 7;
- if (has_parkingspace_width()) {
- total_size += 1 + 4;
- }
- // optional float parkingspace_height = 8;
- if (has_parkingspace_height()) {
- total_size += 1 + 4;
- }
- // optional .message.Parkspace_status parkingspace_status = 9;
- if (has_parkingspace_status()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->parkingspace_status());
- }
- // optional .message.Parkspace_path parkspace_path = 13;
- if (has_parkspace_path()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->parkspace_path());
- }
- // optional float path_estimate_time = 14;
- if (has_path_estimate_time()) {
- total_size += 1 + 4;
- }
- // optional .message.Parkspace_status parkspace_status_target = 15;
- if (has_parkspace_status_target()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->parkspace_status_target());
- }
- }
- int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = cached_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void Parkspace_info::MergeFrom(const ::google::protobuf::Message& from) {
- // @@protoc_insertion_point(generalized_merge_from_start:message.Parkspace_info)
- GOOGLE_DCHECK_NE(&from, this);
- const Parkspace_info* source =
- ::google::protobuf::internal::DynamicCastToGenerated<const Parkspace_info>(
- &from);
- if (source == NULL) {
- // @@protoc_insertion_point(generalized_merge_from_cast_fail:message.Parkspace_info)
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- // @@protoc_insertion_point(generalized_merge_from_cast_success:message.Parkspace_info)
- MergeFrom(*source);
- }
- }
- void Parkspace_info::MergeFrom(const Parkspace_info& from) {
- // @@protoc_insertion_point(class_specific_merge_from_start:message.Parkspace_info)
- GOOGLE_DCHECK_NE(&from, this);
- _internal_metadata_.MergeFrom(from._internal_metadata_);
- ::google::protobuf::uint32 cached_has_bits = 0;
- (void) cached_has_bits;
- cached_has_bits = from._has_bits_[0];
- if (cached_has_bits & 255u) {
- if (cached_has_bits & 0x00000001u) {
- set_has_entry_time();
- entry_time_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.entry_time_);
- }
- if (cached_has_bits & 0x00000002u) {
- set_has_leave_time();
- leave_time_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.leave_time_);
- }
- if (cached_has_bits & 0x00000004u) {
- mutable_car_info()->::message::Car_info::MergeFrom(from.car_info());
- }
- if (cached_has_bits & 0x00000008u) {
- parkingspace_index_id_ = from.parkingspace_index_id_;
- }
- if (cached_has_bits & 0x00000010u) {
- parkingspace_type_ = from.parkingspace_type_;
- }
- if (cached_has_bits & 0x00000020u) {
- parkingspace_unit_id_ = from.parkingspace_unit_id_;
- }
- if (cached_has_bits & 0x00000040u) {
- parkingspace_room_id_ = from.parkingspace_room_id_;
- }
- if (cached_has_bits & 0x00000080u) {
- parkingspace_direction_ = from.parkingspace_direction_;
- }
- _has_bits_[0] |= cached_has_bits;
- }
- if (cached_has_bits & 32512u) {
- if (cached_has_bits & 0x00000100u) {
- parkingspace_floor_id_ = from.parkingspace_floor_id_;
- }
- if (cached_has_bits & 0x00000200u) {
- parkingspace_width_ = from.parkingspace_width_;
- }
- if (cached_has_bits & 0x00000400u) {
- parkingspace_height_ = from.parkingspace_height_;
- }
- if (cached_has_bits & 0x00000800u) {
- parkingspace_status_ = from.parkingspace_status_;
- }
- if (cached_has_bits & 0x00001000u) {
- parkspace_path_ = from.parkspace_path_;
- }
- if (cached_has_bits & 0x00002000u) {
- path_estimate_time_ = from.path_estimate_time_;
- }
- if (cached_has_bits & 0x00004000u) {
- parkspace_status_target_ = from.parkspace_status_target_;
- }
- _has_bits_[0] |= cached_has_bits;
- }
- }
- void Parkspace_info::CopyFrom(const ::google::protobuf::Message& from) {
- // @@protoc_insertion_point(generalized_copy_from_start:message.Parkspace_info)
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void Parkspace_info::CopyFrom(const Parkspace_info& from) {
- // @@protoc_insertion_point(class_specific_copy_from_start:message.Parkspace_info)
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool Parkspace_info::IsInitialized() const {
- return true;
- }
- void Parkspace_info::Swap(Parkspace_info* other) {
- if (other == this) return;
- InternalSwap(other);
- }
- void Parkspace_info::InternalSwap(Parkspace_info* other) {
- using std::swap;
- entry_time_.Swap(&other->entry_time_);
- leave_time_.Swap(&other->leave_time_);
- swap(car_info_, other->car_info_);
- swap(parkingspace_index_id_, other->parkingspace_index_id_);
- swap(parkingspace_type_, other->parkingspace_type_);
- swap(parkingspace_unit_id_, other->parkingspace_unit_id_);
- swap(parkingspace_room_id_, other->parkingspace_room_id_);
- swap(parkingspace_direction_, other->parkingspace_direction_);
- swap(parkingspace_floor_id_, other->parkingspace_floor_id_);
- swap(parkingspace_width_, other->parkingspace_width_);
- swap(parkingspace_height_, other->parkingspace_height_);
- swap(parkingspace_status_, other->parkingspace_status_);
- swap(parkspace_path_, other->parkspace_path_);
- swap(path_estimate_time_, other->path_estimate_time_);
- swap(parkspace_status_target_, other->parkspace_status_target_);
- swap(_has_bits_[0], other->_has_bits_[0]);
- _internal_metadata_.Swap(&other->_internal_metadata_);
- swap(_cached_size_, other->_cached_size_);
- }
- ::google::protobuf::Metadata Parkspace_info::GetMetadata() const {
- protobuf_message_5fbase_2eproto::protobuf_AssignDescriptorsOnce();
- return ::protobuf_message_5fbase_2eproto::file_level_metadata[kIndexInFileMessages];
- }
- // @@protoc_insertion_point(namespace_scope)
- } // namespace message
- // @@protoc_insertion_point(global_scope)
|