| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: lily.proto
- #ifndef GOOGLE_PROTOBUF_INCLUDED_lily_2eproto_2epb_2eh
- #define GOOGLE_PROTOBUF_INCLUDED_lily_2eproto_2epb_2eh
- #include <limits>
- #include <string>
- #include <type_traits>
- #include "google/protobuf/port_def.inc"
- #if PROTOBUF_VERSION < 4024000
- #error "This file was generated by a newer version of protoc which is"
- #error "incompatible with your Protocol Buffer headers. Please update"
- #error "your headers."
- #endif // PROTOBUF_VERSION
- #if 4024003 < PROTOBUF_MIN_PROTOC_VERSION
- #error "This file was generated by an older version of protoc which is"
- #error "incompatible with your Protocol Buffer headers. Please"
- #error "regenerate this file with a newer version of protoc."
- #endif // PROTOBUF_MIN_PROTOC_VERSION
- #include "google/protobuf/port_undef.inc"
- #include "google/protobuf/io/coded_stream.h"
- #include "google/protobuf/arena.h"
- #include "google/protobuf/arenastring.h"
- #include "google/protobuf/generated_message_bases.h"
- #include "google/protobuf/generated_message_tctable_decl.h"
- #include "google/protobuf/generated_message_util.h"
- #include "google/protobuf/metadata_lite.h"
- #include "google/protobuf/generated_message_reflection.h"
- #include "google/protobuf/message.h"
- #include "google/protobuf/repeated_field.h" // IWYU pragma: export
- #include "google/protobuf/extension_set.h" // IWYU pragma: export
- #include "google/protobuf/map.h" // IWYU pragma: export
- #include "google/protobuf/map_entry.h"
- #include "google/protobuf/map_field_inl.h"
- #include "google/protobuf/unknown_field_set.h"
- #include "google/protobuf/duration.pb.h"
- // @@protoc_insertion_point(includes)
- // Must be included last.
- #include "google/protobuf/port_def.inc"
- #define PROTOBUF_INTERNAL_EXPORT_lily_2eproto
- namespace google {
- namespace protobuf {
- namespace internal {
- class AnyMetadata;
- } // namespace internal
- } // namespace protobuf
- } // namespace google
- // Internal implementation detail -- do not use these members.
- struct TableStruct_lily_2eproto {
- static const ::uint32_t offsets[];
- };
- extern const ::google::protobuf::internal::DescriptorTable
- descriptor_table_lily_2eproto;
- namespace palm {
- namespace lily {
- namespace v1 {
- class EpubBuildRequest;
- struct EpubBuildRequestDefaultTypeInternal;
- extern EpubBuildRequestDefaultTypeInternal _EpubBuildRequest_default_instance_;
- class ExcelModel;
- struct ExcelModelDefaultTypeInternal;
- extern ExcelModelDefaultTypeInternal _ExcelModel_default_instance_;
- class ExcelModel_Sheet;
- struct ExcelModel_SheetDefaultTypeInternal;
- extern ExcelModel_SheetDefaultTypeInternal _ExcelModel_Sheet_default_instance_;
- class ExcelModel_Sheet_Cell;
- struct ExcelModel_Sheet_CellDefaultTypeInternal;
- extern ExcelModel_Sheet_CellDefaultTypeInternal _ExcelModel_Sheet_Cell_default_instance_;
- class S3File;
- struct S3FileDefaultTypeInternal;
- extern S3FileDefaultTypeInternal _S3File_default_instance_;
- class S3GetFileRequest;
- struct S3GetFileRequestDefaultTypeInternal;
- extern S3GetFileRequestDefaultTypeInternal _S3GetFileRequest_default_instance_;
- class S3GetFileResponse;
- struct S3GetFileResponseDefaultTypeInternal;
- extern S3GetFileResponseDefaultTypeInternal _S3GetFileResponse_default_instance_;
- class TexToRequest;
- struct TexToRequestDefaultTypeInternal;
- extern TexToRequestDefaultTypeInternal _TexToRequest_default_instance_;
- class TexToRequest_FilesEntry_DoNotUse;
- struct TexToRequest_FilesEntry_DoNotUseDefaultTypeInternal;
- extern TexToRequest_FilesEntry_DoNotUseDefaultTypeInternal _TexToRequest_FilesEntry_DoNotUse_default_instance_;
- } // namespace v1
- } // namespace lily
- } // namespace palm
- namespace google {
- namespace protobuf {
- } // namespace protobuf
- } // namespace google
- namespace palm {
- namespace lily {
- namespace v1 {
- // ===================================================================
- // -------------------------------------------------------------------
- class ExcelModel_Sheet_Cell final :
- public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:palm.lily.v1.ExcelModel.Sheet.Cell) */ {
- public:
- inline ExcelModel_Sheet_Cell() : ExcelModel_Sheet_Cell(nullptr) {}
- ~ExcelModel_Sheet_Cell() override;
- template<typename = void>
- explicit PROTOBUF_CONSTEXPR ExcelModel_Sheet_Cell(::google::protobuf::internal::ConstantInitialized);
- ExcelModel_Sheet_Cell(const ExcelModel_Sheet_Cell& from);
- ExcelModel_Sheet_Cell(ExcelModel_Sheet_Cell&& from) noexcept
- : ExcelModel_Sheet_Cell() {
- *this = ::std::move(from);
- }
- inline ExcelModel_Sheet_Cell& operator=(const ExcelModel_Sheet_Cell& from) {
- CopyFrom(from);
- return *this;
- }
- inline ExcelModel_Sheet_Cell& operator=(ExcelModel_Sheet_Cell&& from) noexcept {
- if (this == &from) return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- ) {
- InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
- }
- static const ::google::protobuf::Descriptor* descriptor() {
- return GetDescriptor();
- }
- static const ::google::protobuf::Descriptor* GetDescriptor() {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::google::protobuf::Reflection* GetReflection() {
- return default_instance().GetMetadata().reflection;
- }
- static const ExcelModel_Sheet_Cell& default_instance() {
- return *internal_default_instance();
- }
- static inline const ExcelModel_Sheet_Cell* internal_default_instance() {
- return reinterpret_cast<const ExcelModel_Sheet_Cell*>(
- &_ExcelModel_Sheet_Cell_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 0;
- friend void swap(ExcelModel_Sheet_Cell& a, ExcelModel_Sheet_Cell& b) {
- a.Swap(&b);
- }
- inline void Swap(ExcelModel_Sheet_Cell* other) {
- if (other == this) return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena()) {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena()) {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- } else {
- ::google::protobuf::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(ExcelModel_Sheet_Cell* other) {
- if (other == this) return;
- ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
- // implements Message ----------------------------------------------
- ExcelModel_Sheet_Cell* New(::google::protobuf::Arena* arena = nullptr) const final {
- return CreateMaybeMessage<ExcelModel_Sheet_Cell>(arena);
- }
- using ::google::protobuf::Message::CopyFrom;
- void CopyFrom(const ExcelModel_Sheet_Cell& from);
- using ::google::protobuf::Message::MergeFrom;
- void MergeFrom( const ExcelModel_Sheet_Cell& from) {
- ExcelModel_Sheet_Cell::MergeImpl(*this, from);
- }
- private:
- static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg);
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
- ::size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final;
- ::uint8_t* _InternalSerialize(
- ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final;
- int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
- private:
- void SharedCtor(::google::protobuf::Arena* arena);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(ExcelModel_Sheet_Cell* other);
- private:
- friend class ::google::protobuf::internal::AnyMetadata;
- static ::absl::string_view FullMessageName() {
- return "palm.lily.v1.ExcelModel.Sheet.Cell";
- }
- protected:
- explicit ExcelModel_Sheet_Cell(::google::protobuf::Arena* arena);
- public:
- static const ClassData _class_data_;
- const ::google::protobuf::Message::ClassData*GetClassData() const final;
- ::google::protobuf::Metadata GetMetadata() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- enum : int {
- kValFieldNumber = 3,
- kRowFieldNumber = 1,
- kColFieldNumber = 2,
- };
- // string val = 3;
- void clear_val() ;
- const std::string& val() const;
- template <typename Arg_ = const std::string&, typename... Args_>
- void set_val(Arg_&& arg, Args_... args);
- std::string* mutable_val();
- PROTOBUF_NODISCARD std::string* release_val();
- void set_allocated_val(std::string* ptr);
- private:
- const std::string& _internal_val() const;
- inline PROTOBUF_ALWAYS_INLINE void _internal_set_val(
- const std::string& value);
- std::string* _internal_mutable_val();
- public:
- // uint32 row = 1;
- void clear_row() ;
- ::uint32_t row() const;
- void set_row(::uint32_t value);
- private:
- ::uint32_t _internal_row() const;
- void _internal_set_row(::uint32_t value);
- public:
- // uint32 col = 2;
- void clear_col() ;
- ::uint32_t col() const;
- void set_col(::uint32_t value);
- private:
- ::uint32_t _internal_col() const;
- void _internal_set_col(::uint32_t value);
- public:
- // @@protoc_insertion_point(class_scope:palm.lily.v1.ExcelModel.Sheet.Cell)
- private:
- class _Internal;
- friend class ::google::protobuf::internal::TcParser;
- static const ::google::protobuf::internal::TcParseTable<2, 3, 0, 46, 2> _table_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_ {
- ::google::protobuf::internal::ArenaStringPtr val_;
- ::uint32_t row_;
- ::uint32_t col_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- PROTOBUF_TSAN_DECLARE_MEMBER
- };
- union { Impl_ _impl_; };
- friend struct ::TableStruct_lily_2eproto;
- };// -------------------------------------------------------------------
- class ExcelModel_Sheet final :
- public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:palm.lily.v1.ExcelModel.Sheet) */ {
- public:
- inline ExcelModel_Sheet() : ExcelModel_Sheet(nullptr) {}
- ~ExcelModel_Sheet() override;
- template<typename = void>
- explicit PROTOBUF_CONSTEXPR ExcelModel_Sheet(::google::protobuf::internal::ConstantInitialized);
- ExcelModel_Sheet(const ExcelModel_Sheet& from);
- ExcelModel_Sheet(ExcelModel_Sheet&& from) noexcept
- : ExcelModel_Sheet() {
- *this = ::std::move(from);
- }
- inline ExcelModel_Sheet& operator=(const ExcelModel_Sheet& from) {
- CopyFrom(from);
- return *this;
- }
- inline ExcelModel_Sheet& operator=(ExcelModel_Sheet&& from) noexcept {
- if (this == &from) return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- ) {
- InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
- }
- static const ::google::protobuf::Descriptor* descriptor() {
- return GetDescriptor();
- }
- static const ::google::protobuf::Descriptor* GetDescriptor() {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::google::protobuf::Reflection* GetReflection() {
- return default_instance().GetMetadata().reflection;
- }
- static const ExcelModel_Sheet& default_instance() {
- return *internal_default_instance();
- }
- static inline const ExcelModel_Sheet* internal_default_instance() {
- return reinterpret_cast<const ExcelModel_Sheet*>(
- &_ExcelModel_Sheet_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 1;
- friend void swap(ExcelModel_Sheet& a, ExcelModel_Sheet& b) {
- a.Swap(&b);
- }
- inline void Swap(ExcelModel_Sheet* other) {
- if (other == this) return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena()) {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena()) {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- } else {
- ::google::protobuf::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(ExcelModel_Sheet* other) {
- if (other == this) return;
- ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
- // implements Message ----------------------------------------------
- ExcelModel_Sheet* New(::google::protobuf::Arena* arena = nullptr) const final {
- return CreateMaybeMessage<ExcelModel_Sheet>(arena);
- }
- using ::google::protobuf::Message::CopyFrom;
- void CopyFrom(const ExcelModel_Sheet& from);
- using ::google::protobuf::Message::MergeFrom;
- void MergeFrom( const ExcelModel_Sheet& from) {
- ExcelModel_Sheet::MergeImpl(*this, from);
- }
- private:
- static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg);
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
- ::size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final;
- ::uint8_t* _InternalSerialize(
- ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final;
- int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
- private:
- void SharedCtor(::google::protobuf::Arena* arena);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(ExcelModel_Sheet* other);
- private:
- friend class ::google::protobuf::internal::AnyMetadata;
- static ::absl::string_view FullMessageName() {
- return "palm.lily.v1.ExcelModel.Sheet";
- }
- protected:
- explicit ExcelModel_Sheet(::google::protobuf::Arena* arena);
- public:
- static const ClassData _class_data_;
- const ::google::protobuf::Message::ClassData*GetClassData() const final;
- ::google::protobuf::Metadata GetMetadata() const final;
- // nested types ----------------------------------------------------
- typedef ExcelModel_Sheet_Cell Cell;
- // accessors -------------------------------------------------------
- enum : int {
- kCellsFieldNumber = 2,
- kNameFieldNumber = 1,
- };
- // repeated .palm.lily.v1.ExcelModel.Sheet.Cell cells = 2;
- int cells_size() const;
- private:
- int _internal_cells_size() const;
- public:
- void clear_cells() ;
- ::palm::lily::v1::ExcelModel_Sheet_Cell* mutable_cells(int index);
- ::google::protobuf::RepeatedPtrField< ::palm::lily::v1::ExcelModel_Sheet_Cell >*
- mutable_cells();
- private:
- const ::google::protobuf::RepeatedPtrField<::palm::lily::v1::ExcelModel_Sheet_Cell>& _internal_cells() const;
- ::google::protobuf::RepeatedPtrField<::palm::lily::v1::ExcelModel_Sheet_Cell>* _internal_mutable_cells();
- public:
- const ::palm::lily::v1::ExcelModel_Sheet_Cell& cells(int index) const;
- ::palm::lily::v1::ExcelModel_Sheet_Cell* add_cells();
- const ::google::protobuf::RepeatedPtrField< ::palm::lily::v1::ExcelModel_Sheet_Cell >&
- cells() const;
- // string name = 1;
- void clear_name() ;
- const std::string& name() const;
- template <typename Arg_ = const std::string&, typename... Args_>
- void set_name(Arg_&& arg, Args_... args);
- std::string* mutable_name();
- PROTOBUF_NODISCARD std::string* release_name();
- void set_allocated_name(std::string* ptr);
- private:
- const std::string& _internal_name() const;
- inline PROTOBUF_ALWAYS_INLINE void _internal_set_name(
- const std::string& value);
- std::string* _internal_mutable_name();
- public:
- // @@protoc_insertion_point(class_scope:palm.lily.v1.ExcelModel.Sheet)
- private:
- class _Internal;
- friend class ::google::protobuf::internal::TcParser;
- static const ::google::protobuf::internal::TcParseTable<1, 2, 1, 42, 2> _table_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_ {
- ::google::protobuf::RepeatedPtrField< ::palm::lily::v1::ExcelModel_Sheet_Cell > cells_;
- ::google::protobuf::internal::ArenaStringPtr name_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- PROTOBUF_TSAN_DECLARE_MEMBER
- };
- union { Impl_ _impl_; };
- friend struct ::TableStruct_lily_2eproto;
- };// -------------------------------------------------------------------
- class ExcelModel final :
- public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:palm.lily.v1.ExcelModel) */ {
- public:
- inline ExcelModel() : ExcelModel(nullptr) {}
- ~ExcelModel() override;
- template<typename = void>
- explicit PROTOBUF_CONSTEXPR ExcelModel(::google::protobuf::internal::ConstantInitialized);
- ExcelModel(const ExcelModel& from);
- ExcelModel(ExcelModel&& from) noexcept
- : ExcelModel() {
- *this = ::std::move(from);
- }
- inline ExcelModel& operator=(const ExcelModel& from) {
- CopyFrom(from);
- return *this;
- }
- inline ExcelModel& operator=(ExcelModel&& from) noexcept {
- if (this == &from) return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- ) {
- InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
- }
- static const ::google::protobuf::Descriptor* descriptor() {
- return GetDescriptor();
- }
- static const ::google::protobuf::Descriptor* GetDescriptor() {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::google::protobuf::Reflection* GetReflection() {
- return default_instance().GetMetadata().reflection;
- }
- static const ExcelModel& default_instance() {
- return *internal_default_instance();
- }
- static inline const ExcelModel* internal_default_instance() {
- return reinterpret_cast<const ExcelModel*>(
- &_ExcelModel_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 2;
- friend void swap(ExcelModel& a, ExcelModel& b) {
- a.Swap(&b);
- }
- inline void Swap(ExcelModel* other) {
- if (other == this) return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena()) {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena()) {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- } else {
- ::google::protobuf::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(ExcelModel* other) {
- if (other == this) return;
- ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
- // implements Message ----------------------------------------------
- ExcelModel* New(::google::protobuf::Arena* arena = nullptr) const final {
- return CreateMaybeMessage<ExcelModel>(arena);
- }
- using ::google::protobuf::Message::CopyFrom;
- void CopyFrom(const ExcelModel& from);
- using ::google::protobuf::Message::MergeFrom;
- void MergeFrom( const ExcelModel& from) {
- ExcelModel::MergeImpl(*this, from);
- }
- private:
- static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg);
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
- ::size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final;
- ::uint8_t* _InternalSerialize(
- ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final;
- int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
- private:
- void SharedCtor(::google::protobuf::Arena* arena);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(ExcelModel* other);
- private:
- friend class ::google::protobuf::internal::AnyMetadata;
- static ::absl::string_view FullMessageName() {
- return "palm.lily.v1.ExcelModel";
- }
- protected:
- explicit ExcelModel(::google::protobuf::Arena* arena);
- public:
- static const ClassData _class_data_;
- const ::google::protobuf::Message::ClassData*GetClassData() const final;
- ::google::protobuf::Metadata GetMetadata() const final;
- // nested types ----------------------------------------------------
- typedef ExcelModel_Sheet Sheet;
- // accessors -------------------------------------------------------
- enum : int {
- kSheetsFieldNumber = 1,
- };
- // repeated .palm.lily.v1.ExcelModel.Sheet sheets = 1;
- int sheets_size() const;
- private:
- int _internal_sheets_size() const;
- public:
- void clear_sheets() ;
- ::palm::lily::v1::ExcelModel_Sheet* mutable_sheets(int index);
- ::google::protobuf::RepeatedPtrField< ::palm::lily::v1::ExcelModel_Sheet >*
- mutable_sheets();
- private:
- const ::google::protobuf::RepeatedPtrField<::palm::lily::v1::ExcelModel_Sheet>& _internal_sheets() const;
- ::google::protobuf::RepeatedPtrField<::palm::lily::v1::ExcelModel_Sheet>* _internal_mutable_sheets();
- public:
- const ::palm::lily::v1::ExcelModel_Sheet& sheets(int index) const;
- ::palm::lily::v1::ExcelModel_Sheet* add_sheets();
- const ::google::protobuf::RepeatedPtrField< ::palm::lily::v1::ExcelModel_Sheet >&
- sheets() const;
- // @@protoc_insertion_point(class_scope:palm.lily.v1.ExcelModel)
- private:
- class _Internal;
- friend class ::google::protobuf::internal::TcParser;
- static const ::google::protobuf::internal::TcParseTable<0, 1, 1, 0, 2> _table_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_ {
- ::google::protobuf::RepeatedPtrField< ::palm::lily::v1::ExcelModel_Sheet > sheets_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- PROTOBUF_TSAN_DECLARE_MEMBER
- };
- union { Impl_ _impl_; };
- friend struct ::TableStruct_lily_2eproto;
- };// -------------------------------------------------------------------
- class S3File final :
- public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:palm.lily.v1.S3File) */ {
- public:
- inline S3File() : S3File(nullptr) {}
- ~S3File() override;
- template<typename = void>
- explicit PROTOBUF_CONSTEXPR S3File(::google::protobuf::internal::ConstantInitialized);
- S3File(const S3File& from);
- S3File(S3File&& from) noexcept
- : S3File() {
- *this = ::std::move(from);
- }
- inline S3File& operator=(const S3File& from) {
- CopyFrom(from);
- return *this;
- }
- inline S3File& operator=(S3File&& from) noexcept {
- if (this == &from) return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- ) {
- InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
- }
- static const ::google::protobuf::Descriptor* descriptor() {
- return GetDescriptor();
- }
- static const ::google::protobuf::Descriptor* GetDescriptor() {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::google::protobuf::Reflection* GetReflection() {
- return default_instance().GetMetadata().reflection;
- }
- static const S3File& default_instance() {
- return *internal_default_instance();
- }
- static inline const S3File* internal_default_instance() {
- return reinterpret_cast<const S3File*>(
- &_S3File_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 3;
- friend void swap(S3File& a, S3File& b) {
- a.Swap(&b);
- }
- inline void Swap(S3File* other) {
- if (other == this) return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena()) {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena()) {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- } else {
- ::google::protobuf::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(S3File* other) {
- if (other == this) return;
- ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
- // implements Message ----------------------------------------------
- S3File* New(::google::protobuf::Arena* arena = nullptr) const final {
- return CreateMaybeMessage<S3File>(arena);
- }
- using ::google::protobuf::Message::CopyFrom;
- void CopyFrom(const S3File& from);
- using ::google::protobuf::Message::MergeFrom;
- void MergeFrom( const S3File& from) {
- S3File::MergeImpl(*this, from);
- }
- private:
- static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg);
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
- ::size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final;
- ::uint8_t* _InternalSerialize(
- ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final;
- int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
- private:
- void SharedCtor(::google::protobuf::Arena* arena);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(S3File* other);
- private:
- friend class ::google::protobuf::internal::AnyMetadata;
- static ::absl::string_view FullMessageName() {
- return "palm.lily.v1.S3File";
- }
- protected:
- explicit S3File(::google::protobuf::Arena* arena);
- public:
- static const ClassData _class_data_;
- const ::google::protobuf::Message::ClassData*GetClassData() const final;
- ::google::protobuf::Metadata GetMetadata() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- enum : int {
- kBucketFieldNumber = 1,
- kNameFieldNumber = 2,
- kContentTypeFieldNumber = 9,
- };
- // string bucket = 1;
- void clear_bucket() ;
- const std::string& bucket() const;
- template <typename Arg_ = const std::string&, typename... Args_>
- void set_bucket(Arg_&& arg, Args_... args);
- std::string* mutable_bucket();
- PROTOBUF_NODISCARD std::string* release_bucket();
- void set_allocated_bucket(std::string* ptr);
- private:
- const std::string& _internal_bucket() const;
- inline PROTOBUF_ALWAYS_INLINE void _internal_set_bucket(
- const std::string& value);
- std::string* _internal_mutable_bucket();
- public:
- // string name = 2;
- void clear_name() ;
- const std::string& name() const;
- template <typename Arg_ = const std::string&, typename... Args_>
- void set_name(Arg_&& arg, Args_... args);
- std::string* mutable_name();
- PROTOBUF_NODISCARD std::string* release_name();
- void set_allocated_name(std::string* ptr);
- private:
- const std::string& _internal_name() const;
- inline PROTOBUF_ALWAYS_INLINE void _internal_set_name(
- const std::string& value);
- std::string* _internal_mutable_name();
- public:
- // string content_type = 9;
- void clear_content_type() ;
- const std::string& content_type() const;
- template <typename Arg_ = const std::string&, typename... Args_>
- void set_content_type(Arg_&& arg, Args_... args);
- std::string* mutable_content_type();
- PROTOBUF_NODISCARD std::string* release_content_type();
- void set_allocated_content_type(std::string* ptr);
- private:
- const std::string& _internal_content_type() const;
- inline PROTOBUF_ALWAYS_INLINE void _internal_set_content_type(
- const std::string& value);
- std::string* _internal_mutable_content_type();
- public:
- // @@protoc_insertion_point(class_scope:palm.lily.v1.S3File)
- private:
- class _Internal;
- friend class ::google::protobuf::internal::TcParser;
- static const ::google::protobuf::internal::TcParseTable<1, 3, 0, 50, 2> _table_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_ {
- ::google::protobuf::internal::ArenaStringPtr bucket_;
- ::google::protobuf::internal::ArenaStringPtr name_;
- ::google::protobuf::internal::ArenaStringPtr content_type_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- PROTOBUF_TSAN_DECLARE_MEMBER
- };
- union { Impl_ _impl_; };
- friend struct ::TableStruct_lily_2eproto;
- };// -------------------------------------------------------------------
- class S3GetFileRequest final :
- public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:palm.lily.v1.S3GetFileRequest) */ {
- public:
- inline S3GetFileRequest() : S3GetFileRequest(nullptr) {}
- ~S3GetFileRequest() override;
- template<typename = void>
- explicit PROTOBUF_CONSTEXPR S3GetFileRequest(::google::protobuf::internal::ConstantInitialized);
- S3GetFileRequest(const S3GetFileRequest& from);
- S3GetFileRequest(S3GetFileRequest&& from) noexcept
- : S3GetFileRequest() {
- *this = ::std::move(from);
- }
- inline S3GetFileRequest& operator=(const S3GetFileRequest& from) {
- CopyFrom(from);
- return *this;
- }
- inline S3GetFileRequest& operator=(S3GetFileRequest&& from) noexcept {
- if (this == &from) return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- ) {
- InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
- }
- static const ::google::protobuf::Descriptor* descriptor() {
- return GetDescriptor();
- }
- static const ::google::protobuf::Descriptor* GetDescriptor() {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::google::protobuf::Reflection* GetReflection() {
- return default_instance().GetMetadata().reflection;
- }
- static const S3GetFileRequest& default_instance() {
- return *internal_default_instance();
- }
- static inline const S3GetFileRequest* internal_default_instance() {
- return reinterpret_cast<const S3GetFileRequest*>(
- &_S3GetFileRequest_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 4;
- friend void swap(S3GetFileRequest& a, S3GetFileRequest& b) {
- a.Swap(&b);
- }
- inline void Swap(S3GetFileRequest* other) {
- if (other == this) return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena()) {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena()) {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- } else {
- ::google::protobuf::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(S3GetFileRequest* other) {
- if (other == this) return;
- ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
- // implements Message ----------------------------------------------
- S3GetFileRequest* New(::google::protobuf::Arena* arena = nullptr) const final {
- return CreateMaybeMessage<S3GetFileRequest>(arena);
- }
- using ::google::protobuf::Message::CopyFrom;
- void CopyFrom(const S3GetFileRequest& from);
- using ::google::protobuf::Message::MergeFrom;
- void MergeFrom( const S3GetFileRequest& from) {
- S3GetFileRequest::MergeImpl(*this, from);
- }
- private:
- static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg);
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
- ::size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final;
- ::uint8_t* _InternalSerialize(
- ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final;
- int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
- private:
- void SharedCtor(::google::protobuf::Arena* arena);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(S3GetFileRequest* other);
- private:
- friend class ::google::protobuf::internal::AnyMetadata;
- static ::absl::string_view FullMessageName() {
- return "palm.lily.v1.S3GetFileRequest";
- }
- protected:
- explicit S3GetFileRequest(::google::protobuf::Arena* arena);
- public:
- static const ClassData _class_data_;
- const ::google::protobuf::Message::ClassData*GetClassData() const final;
- ::google::protobuf::Metadata GetMetadata() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- enum : int {
- kBucketFieldNumber = 1,
- kNameFieldNumber = 2,
- kTtlFieldNumber = 9,
- };
- // string bucket = 1;
- void clear_bucket() ;
- const std::string& bucket() const;
- template <typename Arg_ = const std::string&, typename... Args_>
- void set_bucket(Arg_&& arg, Args_... args);
- std::string* mutable_bucket();
- PROTOBUF_NODISCARD std::string* release_bucket();
- void set_allocated_bucket(std::string* ptr);
- private:
- const std::string& _internal_bucket() const;
- inline PROTOBUF_ALWAYS_INLINE void _internal_set_bucket(
- const std::string& value);
- std::string* _internal_mutable_bucket();
- public:
- // string name = 2;
- void clear_name() ;
- const std::string& name() const;
- template <typename Arg_ = const std::string&, typename... Args_>
- void set_name(Arg_&& arg, Args_... args);
- std::string* mutable_name();
- PROTOBUF_NODISCARD std::string* release_name();
- void set_allocated_name(std::string* ptr);
- private:
- const std::string& _internal_name() const;
- inline PROTOBUF_ALWAYS_INLINE void _internal_set_name(
- const std::string& value);
- std::string* _internal_mutable_name();
- public:
- // .google.protobuf.Duration ttl = 9;
- bool has_ttl() const;
- void clear_ttl() ;
- const ::google::protobuf::Duration& ttl() const;
- PROTOBUF_NODISCARD ::google::protobuf::Duration* release_ttl();
- ::google::protobuf::Duration* mutable_ttl();
- void set_allocated_ttl(::google::protobuf::Duration* value);
- void unsafe_arena_set_allocated_ttl(::google::protobuf::Duration* value);
- ::google::protobuf::Duration* unsafe_arena_release_ttl();
- private:
- const ::google::protobuf::Duration& _internal_ttl() const;
- ::google::protobuf::Duration* _internal_mutable_ttl();
- public:
- // @@protoc_insertion_point(class_scope:palm.lily.v1.S3GetFileRequest)
- private:
- class _Internal;
- friend class ::google::protobuf::internal::TcParser;
- static const ::google::protobuf::internal::TcParseTable<1, 3, 1, 48, 2> _table_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_ {
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- ::google::protobuf::internal::ArenaStringPtr bucket_;
- ::google::protobuf::internal::ArenaStringPtr name_;
- ::google::protobuf::Duration* ttl_;
- PROTOBUF_TSAN_DECLARE_MEMBER
- };
- union { Impl_ _impl_; };
- friend struct ::TableStruct_lily_2eproto;
- };// -------------------------------------------------------------------
- class S3GetFileResponse final :
- public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:palm.lily.v1.S3GetFileResponse) */ {
- public:
- inline S3GetFileResponse() : S3GetFileResponse(nullptr) {}
- ~S3GetFileResponse() override;
- template<typename = void>
- explicit PROTOBUF_CONSTEXPR S3GetFileResponse(::google::protobuf::internal::ConstantInitialized);
- S3GetFileResponse(const S3GetFileResponse& from);
- S3GetFileResponse(S3GetFileResponse&& from) noexcept
- : S3GetFileResponse() {
- *this = ::std::move(from);
- }
- inline S3GetFileResponse& operator=(const S3GetFileResponse& from) {
- CopyFrom(from);
- return *this;
- }
- inline S3GetFileResponse& operator=(S3GetFileResponse&& from) noexcept {
- if (this == &from) return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- ) {
- InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
- }
- static const ::google::protobuf::Descriptor* descriptor() {
- return GetDescriptor();
- }
- static const ::google::protobuf::Descriptor* GetDescriptor() {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::google::protobuf::Reflection* GetReflection() {
- return default_instance().GetMetadata().reflection;
- }
- static const S3GetFileResponse& default_instance() {
- return *internal_default_instance();
- }
- static inline const S3GetFileResponse* internal_default_instance() {
- return reinterpret_cast<const S3GetFileResponse*>(
- &_S3GetFileResponse_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 5;
- friend void swap(S3GetFileResponse& a, S3GetFileResponse& b) {
- a.Swap(&b);
- }
- inline void Swap(S3GetFileResponse* other) {
- if (other == this) return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena()) {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena()) {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- } else {
- ::google::protobuf::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(S3GetFileResponse* other) {
- if (other == this) return;
- ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
- // implements Message ----------------------------------------------
- S3GetFileResponse* New(::google::protobuf::Arena* arena = nullptr) const final {
- return CreateMaybeMessage<S3GetFileResponse>(arena);
- }
- using ::google::protobuf::Message::CopyFrom;
- void CopyFrom(const S3GetFileResponse& from);
- using ::google::protobuf::Message::MergeFrom;
- void MergeFrom( const S3GetFileResponse& from) {
- S3GetFileResponse::MergeImpl(*this, from);
- }
- private:
- static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg);
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
- ::size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final;
- ::uint8_t* _InternalSerialize(
- ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final;
- int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
- private:
- void SharedCtor(::google::protobuf::Arena* arena);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(S3GetFileResponse* other);
- private:
- friend class ::google::protobuf::internal::AnyMetadata;
- static ::absl::string_view FullMessageName() {
- return "palm.lily.v1.S3GetFileResponse";
- }
- protected:
- explicit S3GetFileResponse(::google::protobuf::Arena* arena);
- public:
- static const ClassData _class_data_;
- const ::google::protobuf::Message::ClassData*GetClassData() const final;
- ::google::protobuf::Metadata GetMetadata() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- enum : int {
- kUrlFieldNumber = 1,
- };
- // string url = 1;
- void clear_url() ;
- const std::string& url() const;
- template <typename Arg_ = const std::string&, typename... Args_>
- void set_url(Arg_&& arg, Args_... args);
- std::string* mutable_url();
- PROTOBUF_NODISCARD std::string* release_url();
- void set_allocated_url(std::string* ptr);
- private:
- const std::string& _internal_url() const;
- inline PROTOBUF_ALWAYS_INLINE void _internal_set_url(
- const std::string& value);
- std::string* _internal_mutable_url();
- public:
- // @@protoc_insertion_point(class_scope:palm.lily.v1.S3GetFileResponse)
- private:
- class _Internal;
- friend class ::google::protobuf::internal::TcParser;
- static const ::google::protobuf::internal::TcParseTable<0, 1, 0, 42, 2> _table_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_ {
- ::google::protobuf::internal::ArenaStringPtr url_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- PROTOBUF_TSAN_DECLARE_MEMBER
- };
- union { Impl_ _impl_; };
- friend struct ::TableStruct_lily_2eproto;
- };// -------------------------------------------------------------------
- class TexToRequest_FilesEntry_DoNotUse final : public ::google::protobuf::internal::MapEntry<TexToRequest_FilesEntry_DoNotUse,
- std::string, std::string,
- ::google::protobuf::internal::WireFormatLite::TYPE_STRING,
- ::google::protobuf::internal::WireFormatLite::TYPE_BYTES> {
- public:
- typedef ::google::protobuf::internal::MapEntry<TexToRequest_FilesEntry_DoNotUse,
- std::string, std::string,
- ::google::protobuf::internal::WireFormatLite::TYPE_STRING,
- ::google::protobuf::internal::WireFormatLite::TYPE_BYTES> SuperType;
- TexToRequest_FilesEntry_DoNotUse();
- template <typename = void>
- explicit PROTOBUF_CONSTEXPR TexToRequest_FilesEntry_DoNotUse(
- ::google::protobuf::internal::ConstantInitialized);
- explicit TexToRequest_FilesEntry_DoNotUse(::google::protobuf::Arena* arena);
- void MergeFrom(const TexToRequest_FilesEntry_DoNotUse& other);
- static const TexToRequest_FilesEntry_DoNotUse* internal_default_instance() { return reinterpret_cast<const TexToRequest_FilesEntry_DoNotUse*>(&_TexToRequest_FilesEntry_DoNotUse_default_instance_); }
- static bool ValidateKey(std::string* s) {
- return ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(s->data(), static_cast<int>(s->size()), ::google::protobuf::internal::WireFormatLite::PARSE, "palm.lily.v1.TexToRequest.FilesEntry.key");
- }
- static bool ValidateValue(void*) { return true; }
- using ::google::protobuf::Message::MergeFrom;
- ::google::protobuf::Metadata GetMetadata() const final;
- friend struct ::TableStruct_lily_2eproto;
- };
- // -------------------------------------------------------------------
- class TexToRequest final :
- public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:palm.lily.v1.TexToRequest) */ {
- public:
- inline TexToRequest() : TexToRequest(nullptr) {}
- ~TexToRequest() override;
- template<typename = void>
- explicit PROTOBUF_CONSTEXPR TexToRequest(::google::protobuf::internal::ConstantInitialized);
- TexToRequest(const TexToRequest& from);
- TexToRequest(TexToRequest&& from) noexcept
- : TexToRequest() {
- *this = ::std::move(from);
- }
- inline TexToRequest& operator=(const TexToRequest& from) {
- CopyFrom(from);
- return *this;
- }
- inline TexToRequest& operator=(TexToRequest&& from) noexcept {
- if (this == &from) return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- ) {
- InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
- }
- static const ::google::protobuf::Descriptor* descriptor() {
- return GetDescriptor();
- }
- static const ::google::protobuf::Descriptor* GetDescriptor() {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::google::protobuf::Reflection* GetReflection() {
- return default_instance().GetMetadata().reflection;
- }
- static const TexToRequest& default_instance() {
- return *internal_default_instance();
- }
- static inline const TexToRequest* internal_default_instance() {
- return reinterpret_cast<const TexToRequest*>(
- &_TexToRequest_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 7;
- friend void swap(TexToRequest& a, TexToRequest& b) {
- a.Swap(&b);
- }
- inline void Swap(TexToRequest* other) {
- if (other == this) return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena()) {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena()) {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- } else {
- ::google::protobuf::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(TexToRequest* other) {
- if (other == this) return;
- ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
- // implements Message ----------------------------------------------
- TexToRequest* New(::google::protobuf::Arena* arena = nullptr) const final {
- return CreateMaybeMessage<TexToRequest>(arena);
- }
- using ::google::protobuf::Message::CopyFrom;
- void CopyFrom(const TexToRequest& from);
- using ::google::protobuf::Message::MergeFrom;
- void MergeFrom( const TexToRequest& from) {
- TexToRequest::MergeImpl(*this, from);
- }
- private:
- static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg);
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
- ::size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final;
- ::uint8_t* _InternalSerialize(
- ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final;
- int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
- private:
- void SharedCtor(::google::protobuf::Arena* arena);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(TexToRequest* other);
- private:
- friend class ::google::protobuf::internal::AnyMetadata;
- static ::absl::string_view FullMessageName() {
- return "palm.lily.v1.TexToRequest";
- }
- protected:
- explicit TexToRequest(::google::protobuf::Arena* arena);
- public:
- static const ClassData _class_data_;
- const ::google::protobuf::Message::ClassData*GetClassData() const final;
- ::google::protobuf::Metadata GetMetadata() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- enum : int {
- kFilesFieldNumber = 2,
- kTitleFieldNumber = 1,
- kOwnerFieldNumber = 8,
- kTtlFieldNumber = 7,
- kPublishedFieldNumber = 9,
- };
- // map<string, bytes> files = 2;
- int files_size() const;
- private:
- int _internal_files_size() const;
- public:
- void clear_files() ;
- const ::google::protobuf::Map<std::string, std::string>& files() const;
- ::google::protobuf::Map<std::string, std::string>* mutable_files();
- private:
- const ::google::protobuf::Map<std::string, std::string>& _internal_files() const;
- ::google::protobuf::Map<std::string, std::string>* _internal_mutable_files();
- public:
- // string title = 1;
- void clear_title() ;
- const std::string& title() const;
- template <typename Arg_ = const std::string&, typename... Args_>
- void set_title(Arg_&& arg, Args_... args);
- std::string* mutable_title();
- PROTOBUF_NODISCARD std::string* release_title();
- void set_allocated_title(std::string* ptr);
- private:
- const std::string& _internal_title() const;
- inline PROTOBUF_ALWAYS_INLINE void _internal_set_title(
- const std::string& value);
- std::string* _internal_mutable_title();
- public:
- // optional string owner = 8;
- bool has_owner() const;
- void clear_owner() ;
- const std::string& owner() const;
- template <typename Arg_ = const std::string&, typename... Args_>
- void set_owner(Arg_&& arg, Args_... args);
- std::string* mutable_owner();
- PROTOBUF_NODISCARD std::string* release_owner();
- void set_allocated_owner(std::string* ptr);
- private:
- const std::string& _internal_owner() const;
- inline PROTOBUF_ALWAYS_INLINE void _internal_set_owner(
- const std::string& value);
- std::string* _internal_mutable_owner();
- public:
- // optional .google.protobuf.Duration ttl = 7;
- bool has_ttl() const;
- void clear_ttl() ;
- const ::google::protobuf::Duration& ttl() const;
- PROTOBUF_NODISCARD ::google::protobuf::Duration* release_ttl();
- ::google::protobuf::Duration* mutable_ttl();
- void set_allocated_ttl(::google::protobuf::Duration* value);
- void unsafe_arena_set_allocated_ttl(::google::protobuf::Duration* value);
- ::google::protobuf::Duration* unsafe_arena_release_ttl();
- private:
- const ::google::protobuf::Duration& _internal_ttl() const;
- ::google::protobuf::Duration* _internal_mutable_ttl();
- public:
- // bool published = 9;
- void clear_published() ;
- bool published() const;
- void set_published(bool value);
- private:
- bool _internal_published() const;
- void _internal_set_published(bool value);
- public:
- // @@protoc_insertion_point(class_scope:palm.lily.v1.TexToRequest)
- private:
- class _Internal;
- friend class ::google::protobuf::internal::TcParser;
- static const ::google::protobuf::internal::TcParseTable<2, 5, 2, 49, 2> _table_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_ {
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- ::google::protobuf::internal::MapField<TexToRequest_FilesEntry_DoNotUse, std::string, std::string,
- ::google::protobuf::internal::WireFormatLite::TYPE_STRING,
- ::google::protobuf::internal::WireFormatLite::TYPE_BYTES>
- files_;
- ::google::protobuf::internal::ArenaStringPtr title_;
- ::google::protobuf::internal::ArenaStringPtr owner_;
- ::google::protobuf::Duration* ttl_;
- bool published_;
- PROTOBUF_TSAN_DECLARE_MEMBER
- };
- union { Impl_ _impl_; };
- friend struct ::TableStruct_lily_2eproto;
- };// -------------------------------------------------------------------
- class EpubBuildRequest final :
- public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:palm.lily.v1.EpubBuildRequest) */ {
- public:
- inline EpubBuildRequest() : EpubBuildRequest(nullptr) {}
- template<typename = void>
- explicit PROTOBUF_CONSTEXPR EpubBuildRequest(::google::protobuf::internal::ConstantInitialized);
- EpubBuildRequest(const EpubBuildRequest& from);
- EpubBuildRequest(EpubBuildRequest&& from) noexcept
- : EpubBuildRequest() {
- *this = ::std::move(from);
- }
- inline EpubBuildRequest& operator=(const EpubBuildRequest& from) {
- CopyFrom(from);
- return *this;
- }
- inline EpubBuildRequest& operator=(EpubBuildRequest&& from) noexcept {
- if (this == &from) return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- ) {
- InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
- }
- static const ::google::protobuf::Descriptor* descriptor() {
- return GetDescriptor();
- }
- static const ::google::protobuf::Descriptor* GetDescriptor() {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::google::protobuf::Reflection* GetReflection() {
- return default_instance().GetMetadata().reflection;
- }
- static const EpubBuildRequest& default_instance() {
- return *internal_default_instance();
- }
- static inline const EpubBuildRequest* internal_default_instance() {
- return reinterpret_cast<const EpubBuildRequest*>(
- &_EpubBuildRequest_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 8;
- friend void swap(EpubBuildRequest& a, EpubBuildRequest& b) {
- a.Swap(&b);
- }
- inline void Swap(EpubBuildRequest* other) {
- if (other == this) return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena()) {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena()) {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- } else {
- ::google::protobuf::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(EpubBuildRequest* other) {
- if (other == this) return;
- ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
- // implements Message ----------------------------------------------
- EpubBuildRequest* New(::google::protobuf::Arena* arena = nullptr) const final {
- return CreateMaybeMessage<EpubBuildRequest>(arena);
- }
- using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom;
- inline void CopyFrom(const EpubBuildRequest& from) {
- ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from);
- }
- using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom;
- void MergeFrom(const EpubBuildRequest& from) {
- ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from);
- }
- public:
- private:
- friend class ::google::protobuf::internal::AnyMetadata;
- static ::absl::string_view FullMessageName() {
- return "palm.lily.v1.EpubBuildRequest";
- }
- protected:
- explicit EpubBuildRequest(::google::protobuf::Arena* arena);
- public:
- static const ClassData _class_data_;
- const ::google::protobuf::Message::ClassData*GetClassData() const final;
- ::google::protobuf::Metadata GetMetadata() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // @@protoc_insertion_point(class_scope:palm.lily.v1.EpubBuildRequest)
- private:
- class _Internal;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_ {
- PROTOBUF_TSAN_DECLARE_MEMBER
- };
- friend struct ::TableStruct_lily_2eproto;
- };
- // ===================================================================
- // ===================================================================
- #ifdef __GNUC__
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wstrict-aliasing"
- #endif // __GNUC__
- // -------------------------------------------------------------------
- // ExcelModel_Sheet_Cell
- // uint32 row = 1;
- inline void ExcelModel_Sheet_Cell::clear_row() {
- _impl_.row_ = 0u;
- }
- inline ::uint32_t ExcelModel_Sheet_Cell::row() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.ExcelModel.Sheet.Cell.row)
- return _internal_row();
- }
- inline void ExcelModel_Sheet_Cell::set_row(::uint32_t value) {
- _internal_set_row(value);
- // @@protoc_insertion_point(field_set:palm.lily.v1.ExcelModel.Sheet.Cell.row)
- }
- inline ::uint32_t ExcelModel_Sheet_Cell::_internal_row() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.row_;
- }
- inline void ExcelModel_Sheet_Cell::_internal_set_row(::uint32_t value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.row_ = value;
- }
- // uint32 col = 2;
- inline void ExcelModel_Sheet_Cell::clear_col() {
- _impl_.col_ = 0u;
- }
- inline ::uint32_t ExcelModel_Sheet_Cell::col() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.ExcelModel.Sheet.Cell.col)
- return _internal_col();
- }
- inline void ExcelModel_Sheet_Cell::set_col(::uint32_t value) {
- _internal_set_col(value);
- // @@protoc_insertion_point(field_set:palm.lily.v1.ExcelModel.Sheet.Cell.col)
- }
- inline ::uint32_t ExcelModel_Sheet_Cell::_internal_col() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.col_;
- }
- inline void ExcelModel_Sheet_Cell::_internal_set_col(::uint32_t value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.col_ = value;
- }
- // string val = 3;
- inline void ExcelModel_Sheet_Cell::clear_val() {
- _impl_.val_.ClearToEmpty();
- }
- inline const std::string& ExcelModel_Sheet_Cell::val() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.ExcelModel.Sheet.Cell.val)
- return _internal_val();
- }
- template <typename Arg_, typename... Args_>
- inline PROTOBUF_ALWAYS_INLINE void ExcelModel_Sheet_Cell::set_val(Arg_&& arg,
- Args_... args) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.val_.Set(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
- // @@protoc_insertion_point(field_set:palm.lily.v1.ExcelModel.Sheet.Cell.val)
- }
- inline std::string* ExcelModel_Sheet_Cell::mutable_val() {
- std::string* _s = _internal_mutable_val();
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.ExcelModel.Sheet.Cell.val)
- return _s;
- }
- inline const std::string& ExcelModel_Sheet_Cell::_internal_val() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.val_.Get();
- }
- inline void ExcelModel_Sheet_Cell::_internal_set_val(const std::string& value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.val_.Set(value, GetArenaForAllocation());
- }
- inline std::string* ExcelModel_Sheet_Cell::_internal_mutable_val() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- return _impl_.val_.Mutable( GetArenaForAllocation());
- }
- inline std::string* ExcelModel_Sheet_Cell::release_val() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- // @@protoc_insertion_point(field_release:palm.lily.v1.ExcelModel.Sheet.Cell.val)
- return _impl_.val_.Release();
- }
- inline void ExcelModel_Sheet_Cell::set_allocated_val(std::string* value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_.val_.SetAllocated(value, GetArenaForAllocation());
- #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
- if (_impl_.val_.IsDefault()) {
- _impl_.val_.Set("", GetArenaForAllocation());
- }
- #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
- // @@protoc_insertion_point(field_set_allocated:palm.lily.v1.ExcelModel.Sheet.Cell.val)
- }
- // -------------------------------------------------------------------
- // ExcelModel_Sheet
- // string name = 1;
- inline void ExcelModel_Sheet::clear_name() {
- _impl_.name_.ClearToEmpty();
- }
- inline const std::string& ExcelModel_Sheet::name() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.ExcelModel.Sheet.name)
- return _internal_name();
- }
- template <typename Arg_, typename... Args_>
- inline PROTOBUF_ALWAYS_INLINE void ExcelModel_Sheet::set_name(Arg_&& arg,
- Args_... args) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.name_.Set(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
- // @@protoc_insertion_point(field_set:palm.lily.v1.ExcelModel.Sheet.name)
- }
- inline std::string* ExcelModel_Sheet::mutable_name() {
- std::string* _s = _internal_mutable_name();
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.ExcelModel.Sheet.name)
- return _s;
- }
- inline const std::string& ExcelModel_Sheet::_internal_name() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.name_.Get();
- }
- inline void ExcelModel_Sheet::_internal_set_name(const std::string& value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.name_.Set(value, GetArenaForAllocation());
- }
- inline std::string* ExcelModel_Sheet::_internal_mutable_name() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- return _impl_.name_.Mutable( GetArenaForAllocation());
- }
- inline std::string* ExcelModel_Sheet::release_name() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- // @@protoc_insertion_point(field_release:palm.lily.v1.ExcelModel.Sheet.name)
- return _impl_.name_.Release();
- }
- inline void ExcelModel_Sheet::set_allocated_name(std::string* value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_.name_.SetAllocated(value, GetArenaForAllocation());
- #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
- if (_impl_.name_.IsDefault()) {
- _impl_.name_.Set("", GetArenaForAllocation());
- }
- #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
- // @@protoc_insertion_point(field_set_allocated:palm.lily.v1.ExcelModel.Sheet.name)
- }
- // repeated .palm.lily.v1.ExcelModel.Sheet.Cell cells = 2;
- inline int ExcelModel_Sheet::_internal_cells_size() const {
- return _internal_cells().size();
- }
- inline int ExcelModel_Sheet::cells_size() const {
- return _internal_cells_size();
- }
- inline void ExcelModel_Sheet::clear_cells() {
- _internal_mutable_cells()->Clear();
- }
- inline ::palm::lily::v1::ExcelModel_Sheet_Cell* ExcelModel_Sheet::mutable_cells(int index) {
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.ExcelModel.Sheet.cells)
- return _internal_mutable_cells()->Mutable(index);
- }
- inline ::google::protobuf::RepeatedPtrField< ::palm::lily::v1::ExcelModel_Sheet_Cell >*
- ExcelModel_Sheet::mutable_cells() {
- // @@protoc_insertion_point(field_mutable_list:palm.lily.v1.ExcelModel.Sheet.cells)
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- return _internal_mutable_cells();
- }
- inline const ::palm::lily::v1::ExcelModel_Sheet_Cell& ExcelModel_Sheet::cells(int index) const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.ExcelModel.Sheet.cells)
- return _internal_cells().Get(index);
- }
- inline ::palm::lily::v1::ExcelModel_Sheet_Cell* ExcelModel_Sheet::add_cells() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ::palm::lily::v1::ExcelModel_Sheet_Cell* _add = _internal_mutable_cells()->Add();
- // @@protoc_insertion_point(field_add:palm.lily.v1.ExcelModel.Sheet.cells)
- return _add;
- }
- inline const ::google::protobuf::RepeatedPtrField< ::palm::lily::v1::ExcelModel_Sheet_Cell >&
- ExcelModel_Sheet::cells() const {
- // @@protoc_insertion_point(field_list:palm.lily.v1.ExcelModel.Sheet.cells)
- return _internal_cells();
- }
- inline const ::google::protobuf::RepeatedPtrField<::palm::lily::v1::ExcelModel_Sheet_Cell>&
- ExcelModel_Sheet::_internal_cells() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.cells_;
- }
- inline ::google::protobuf::RepeatedPtrField<::palm::lily::v1::ExcelModel_Sheet_Cell>*
- ExcelModel_Sheet::_internal_mutable_cells() {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return &_impl_.cells_;
- }
- // -------------------------------------------------------------------
- // ExcelModel
- // repeated .palm.lily.v1.ExcelModel.Sheet sheets = 1;
- inline int ExcelModel::_internal_sheets_size() const {
- return _internal_sheets().size();
- }
- inline int ExcelModel::sheets_size() const {
- return _internal_sheets_size();
- }
- inline void ExcelModel::clear_sheets() {
- _internal_mutable_sheets()->Clear();
- }
- inline ::palm::lily::v1::ExcelModel_Sheet* ExcelModel::mutable_sheets(int index) {
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.ExcelModel.sheets)
- return _internal_mutable_sheets()->Mutable(index);
- }
- inline ::google::protobuf::RepeatedPtrField< ::palm::lily::v1::ExcelModel_Sheet >*
- ExcelModel::mutable_sheets() {
- // @@protoc_insertion_point(field_mutable_list:palm.lily.v1.ExcelModel.sheets)
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- return _internal_mutable_sheets();
- }
- inline const ::palm::lily::v1::ExcelModel_Sheet& ExcelModel::sheets(int index) const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.ExcelModel.sheets)
- return _internal_sheets().Get(index);
- }
- inline ::palm::lily::v1::ExcelModel_Sheet* ExcelModel::add_sheets() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ::palm::lily::v1::ExcelModel_Sheet* _add = _internal_mutable_sheets()->Add();
- // @@protoc_insertion_point(field_add:palm.lily.v1.ExcelModel.sheets)
- return _add;
- }
- inline const ::google::protobuf::RepeatedPtrField< ::palm::lily::v1::ExcelModel_Sheet >&
- ExcelModel::sheets() const {
- // @@protoc_insertion_point(field_list:palm.lily.v1.ExcelModel.sheets)
- return _internal_sheets();
- }
- inline const ::google::protobuf::RepeatedPtrField<::palm::lily::v1::ExcelModel_Sheet>&
- ExcelModel::_internal_sheets() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.sheets_;
- }
- inline ::google::protobuf::RepeatedPtrField<::palm::lily::v1::ExcelModel_Sheet>*
- ExcelModel::_internal_mutable_sheets() {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return &_impl_.sheets_;
- }
- // -------------------------------------------------------------------
- // S3File
- // string bucket = 1;
- inline void S3File::clear_bucket() {
- _impl_.bucket_.ClearToEmpty();
- }
- inline const std::string& S3File::bucket() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.S3File.bucket)
- return _internal_bucket();
- }
- template <typename Arg_, typename... Args_>
- inline PROTOBUF_ALWAYS_INLINE void S3File::set_bucket(Arg_&& arg,
- Args_... args) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.bucket_.Set(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
- // @@protoc_insertion_point(field_set:palm.lily.v1.S3File.bucket)
- }
- inline std::string* S3File::mutable_bucket() {
- std::string* _s = _internal_mutable_bucket();
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.S3File.bucket)
- return _s;
- }
- inline const std::string& S3File::_internal_bucket() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.bucket_.Get();
- }
- inline void S3File::_internal_set_bucket(const std::string& value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.bucket_.Set(value, GetArenaForAllocation());
- }
- inline std::string* S3File::_internal_mutable_bucket() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- return _impl_.bucket_.Mutable( GetArenaForAllocation());
- }
- inline std::string* S3File::release_bucket() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- // @@protoc_insertion_point(field_release:palm.lily.v1.S3File.bucket)
- return _impl_.bucket_.Release();
- }
- inline void S3File::set_allocated_bucket(std::string* value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_.bucket_.SetAllocated(value, GetArenaForAllocation());
- #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
- if (_impl_.bucket_.IsDefault()) {
- _impl_.bucket_.Set("", GetArenaForAllocation());
- }
- #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
- // @@protoc_insertion_point(field_set_allocated:palm.lily.v1.S3File.bucket)
- }
- // string name = 2;
- inline void S3File::clear_name() {
- _impl_.name_.ClearToEmpty();
- }
- inline const std::string& S3File::name() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.S3File.name)
- return _internal_name();
- }
- template <typename Arg_, typename... Args_>
- inline PROTOBUF_ALWAYS_INLINE void S3File::set_name(Arg_&& arg,
- Args_... args) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.name_.Set(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
- // @@protoc_insertion_point(field_set:palm.lily.v1.S3File.name)
- }
- inline std::string* S3File::mutable_name() {
- std::string* _s = _internal_mutable_name();
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.S3File.name)
- return _s;
- }
- inline const std::string& S3File::_internal_name() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.name_.Get();
- }
- inline void S3File::_internal_set_name(const std::string& value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.name_.Set(value, GetArenaForAllocation());
- }
- inline std::string* S3File::_internal_mutable_name() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- return _impl_.name_.Mutable( GetArenaForAllocation());
- }
- inline std::string* S3File::release_name() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- // @@protoc_insertion_point(field_release:palm.lily.v1.S3File.name)
- return _impl_.name_.Release();
- }
- inline void S3File::set_allocated_name(std::string* value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_.name_.SetAllocated(value, GetArenaForAllocation());
- #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
- if (_impl_.name_.IsDefault()) {
- _impl_.name_.Set("", GetArenaForAllocation());
- }
- #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
- // @@protoc_insertion_point(field_set_allocated:palm.lily.v1.S3File.name)
- }
- // string content_type = 9;
- inline void S3File::clear_content_type() {
- _impl_.content_type_.ClearToEmpty();
- }
- inline const std::string& S3File::content_type() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.S3File.content_type)
- return _internal_content_type();
- }
- template <typename Arg_, typename... Args_>
- inline PROTOBUF_ALWAYS_INLINE void S3File::set_content_type(Arg_&& arg,
- Args_... args) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.content_type_.Set(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
- // @@protoc_insertion_point(field_set:palm.lily.v1.S3File.content_type)
- }
- inline std::string* S3File::mutable_content_type() {
- std::string* _s = _internal_mutable_content_type();
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.S3File.content_type)
- return _s;
- }
- inline const std::string& S3File::_internal_content_type() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.content_type_.Get();
- }
- inline void S3File::_internal_set_content_type(const std::string& value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.content_type_.Set(value, GetArenaForAllocation());
- }
- inline std::string* S3File::_internal_mutable_content_type() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- return _impl_.content_type_.Mutable( GetArenaForAllocation());
- }
- inline std::string* S3File::release_content_type() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- // @@protoc_insertion_point(field_release:palm.lily.v1.S3File.content_type)
- return _impl_.content_type_.Release();
- }
- inline void S3File::set_allocated_content_type(std::string* value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_.content_type_.SetAllocated(value, GetArenaForAllocation());
- #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
- if (_impl_.content_type_.IsDefault()) {
- _impl_.content_type_.Set("", GetArenaForAllocation());
- }
- #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
- // @@protoc_insertion_point(field_set_allocated:palm.lily.v1.S3File.content_type)
- }
- // -------------------------------------------------------------------
- // S3GetFileRequest
- // string bucket = 1;
- inline void S3GetFileRequest::clear_bucket() {
- _impl_.bucket_.ClearToEmpty();
- }
- inline const std::string& S3GetFileRequest::bucket() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.S3GetFileRequest.bucket)
- return _internal_bucket();
- }
- template <typename Arg_, typename... Args_>
- inline PROTOBUF_ALWAYS_INLINE void S3GetFileRequest::set_bucket(Arg_&& arg,
- Args_... args) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.bucket_.Set(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
- // @@protoc_insertion_point(field_set:palm.lily.v1.S3GetFileRequest.bucket)
- }
- inline std::string* S3GetFileRequest::mutable_bucket() {
- std::string* _s = _internal_mutable_bucket();
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.S3GetFileRequest.bucket)
- return _s;
- }
- inline const std::string& S3GetFileRequest::_internal_bucket() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.bucket_.Get();
- }
- inline void S3GetFileRequest::_internal_set_bucket(const std::string& value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.bucket_.Set(value, GetArenaForAllocation());
- }
- inline std::string* S3GetFileRequest::_internal_mutable_bucket() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- return _impl_.bucket_.Mutable( GetArenaForAllocation());
- }
- inline std::string* S3GetFileRequest::release_bucket() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- // @@protoc_insertion_point(field_release:palm.lily.v1.S3GetFileRequest.bucket)
- return _impl_.bucket_.Release();
- }
- inline void S3GetFileRequest::set_allocated_bucket(std::string* value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_.bucket_.SetAllocated(value, GetArenaForAllocation());
- #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
- if (_impl_.bucket_.IsDefault()) {
- _impl_.bucket_.Set("", GetArenaForAllocation());
- }
- #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
- // @@protoc_insertion_point(field_set_allocated:palm.lily.v1.S3GetFileRequest.bucket)
- }
- // string name = 2;
- inline void S3GetFileRequest::clear_name() {
- _impl_.name_.ClearToEmpty();
- }
- inline const std::string& S3GetFileRequest::name() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.S3GetFileRequest.name)
- return _internal_name();
- }
- template <typename Arg_, typename... Args_>
- inline PROTOBUF_ALWAYS_INLINE void S3GetFileRequest::set_name(Arg_&& arg,
- Args_... args) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.name_.Set(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
- // @@protoc_insertion_point(field_set:palm.lily.v1.S3GetFileRequest.name)
- }
- inline std::string* S3GetFileRequest::mutable_name() {
- std::string* _s = _internal_mutable_name();
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.S3GetFileRequest.name)
- return _s;
- }
- inline const std::string& S3GetFileRequest::_internal_name() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.name_.Get();
- }
- inline void S3GetFileRequest::_internal_set_name(const std::string& value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.name_.Set(value, GetArenaForAllocation());
- }
- inline std::string* S3GetFileRequest::_internal_mutable_name() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- return _impl_.name_.Mutable( GetArenaForAllocation());
- }
- inline std::string* S3GetFileRequest::release_name() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- // @@protoc_insertion_point(field_release:palm.lily.v1.S3GetFileRequest.name)
- return _impl_.name_.Release();
- }
- inline void S3GetFileRequest::set_allocated_name(std::string* value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_.name_.SetAllocated(value, GetArenaForAllocation());
- #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
- if (_impl_.name_.IsDefault()) {
- _impl_.name_.Set("", GetArenaForAllocation());
- }
- #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
- // @@protoc_insertion_point(field_set_allocated:palm.lily.v1.S3GetFileRequest.name)
- }
- // .google.protobuf.Duration ttl = 9;
- inline bool S3GetFileRequest::has_ttl() const {
- bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0;
- PROTOBUF_ASSUME(!value || _impl_.ttl_ != nullptr);
- return value;
- }
- inline const ::google::protobuf::Duration& S3GetFileRequest::_internal_ttl() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- const ::google::protobuf::Duration* p = _impl_.ttl_;
- return p != nullptr ? *p : reinterpret_cast<const ::google::protobuf::Duration&>(::google::protobuf::_Duration_default_instance_);
- }
- inline const ::google::protobuf::Duration& S3GetFileRequest::ttl() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.S3GetFileRequest.ttl)
- return _internal_ttl();
- }
- inline void S3GetFileRequest::unsafe_arena_set_allocated_ttl(::google::protobuf::Duration* value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- if (GetArenaForAllocation() == nullptr) {
- delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.ttl_);
- }
- _impl_.ttl_ = reinterpret_cast<::google::protobuf::Duration*>(value);
- if (value != nullptr) {
- _impl_._has_bits_[0] |= 0x00000001u;
- } else {
- _impl_._has_bits_[0] &= ~0x00000001u;
- }
- // @@protoc_insertion_point(field_unsafe_arena_set_allocated:palm.lily.v1.S3GetFileRequest.ttl)
- }
- inline ::google::protobuf::Duration* S3GetFileRequest::release_ttl() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_._has_bits_[0] &= ~0x00000001u;
- ::google::protobuf::Duration* released = _impl_.ttl_;
- _impl_.ttl_ = nullptr;
- #ifdef PROTOBUF_FORCE_COPY_IN_RELEASE
- auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released);
- released = ::google::protobuf::internal::DuplicateIfNonNull(released);
- if (GetArenaForAllocation() == nullptr) {
- delete old;
- }
- #else // PROTOBUF_FORCE_COPY_IN_RELEASE
- if (GetArenaForAllocation() != nullptr) {
- released = ::google::protobuf::internal::DuplicateIfNonNull(released);
- }
- #endif // !PROTOBUF_FORCE_COPY_IN_RELEASE
- return released;
- }
- inline ::google::protobuf::Duration* S3GetFileRequest::unsafe_arena_release_ttl() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- // @@protoc_insertion_point(field_release:palm.lily.v1.S3GetFileRequest.ttl)
- _impl_._has_bits_[0] &= ~0x00000001u;
- ::google::protobuf::Duration* temp = _impl_.ttl_;
- _impl_.ttl_ = nullptr;
- return temp;
- }
- inline ::google::protobuf::Duration* S3GetFileRequest::_internal_mutable_ttl() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_._has_bits_[0] |= 0x00000001u;
- if (_impl_.ttl_ == nullptr) {
- auto* p = CreateMaybeMessage<::google::protobuf::Duration>(GetArenaForAllocation());
- _impl_.ttl_ = reinterpret_cast<::google::protobuf::Duration*>(p);
- }
- return _impl_.ttl_;
- }
- inline ::google::protobuf::Duration* S3GetFileRequest::mutable_ttl() {
- ::google::protobuf::Duration* _msg = _internal_mutable_ttl();
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.S3GetFileRequest.ttl)
- return _msg;
- }
- inline void S3GetFileRequest::set_allocated_ttl(::google::protobuf::Duration* value) {
- ::google::protobuf::Arena* message_arena = GetArenaForAllocation();
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- if (message_arena == nullptr) {
- delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.ttl_);
- }
- if (value != nullptr) {
- ::google::protobuf::Arena* submessage_arena =
- ::google::protobuf::Arena::InternalGetOwningArena(reinterpret_cast<::google::protobuf::MessageLite*>(value));
- if (message_arena != submessage_arena) {
- value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena);
- }
- _impl_._has_bits_[0] |= 0x00000001u;
- } else {
- _impl_._has_bits_[0] &= ~0x00000001u;
- }
- _impl_.ttl_ = reinterpret_cast<::google::protobuf::Duration*>(value);
- // @@protoc_insertion_point(field_set_allocated:palm.lily.v1.S3GetFileRequest.ttl)
- }
- // -------------------------------------------------------------------
- // S3GetFileResponse
- // string url = 1;
- inline void S3GetFileResponse::clear_url() {
- _impl_.url_.ClearToEmpty();
- }
- inline const std::string& S3GetFileResponse::url() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.S3GetFileResponse.url)
- return _internal_url();
- }
- template <typename Arg_, typename... Args_>
- inline PROTOBUF_ALWAYS_INLINE void S3GetFileResponse::set_url(Arg_&& arg,
- Args_... args) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.url_.Set(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
- // @@protoc_insertion_point(field_set:palm.lily.v1.S3GetFileResponse.url)
- }
- inline std::string* S3GetFileResponse::mutable_url() {
- std::string* _s = _internal_mutable_url();
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.S3GetFileResponse.url)
- return _s;
- }
- inline const std::string& S3GetFileResponse::_internal_url() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.url_.Get();
- }
- inline void S3GetFileResponse::_internal_set_url(const std::string& value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.url_.Set(value, GetArenaForAllocation());
- }
- inline std::string* S3GetFileResponse::_internal_mutable_url() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- return _impl_.url_.Mutable( GetArenaForAllocation());
- }
- inline std::string* S3GetFileResponse::release_url() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- // @@protoc_insertion_point(field_release:palm.lily.v1.S3GetFileResponse.url)
- return _impl_.url_.Release();
- }
- inline void S3GetFileResponse::set_allocated_url(std::string* value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_.url_.SetAllocated(value, GetArenaForAllocation());
- #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
- if (_impl_.url_.IsDefault()) {
- _impl_.url_.Set("", GetArenaForAllocation());
- }
- #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
- // @@protoc_insertion_point(field_set_allocated:palm.lily.v1.S3GetFileResponse.url)
- }
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // TexToRequest
- // string title = 1;
- inline void TexToRequest::clear_title() {
- _impl_.title_.ClearToEmpty();
- }
- inline const std::string& TexToRequest::title() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.TexToRequest.title)
- return _internal_title();
- }
- template <typename Arg_, typename... Args_>
- inline PROTOBUF_ALWAYS_INLINE void TexToRequest::set_title(Arg_&& arg,
- Args_... args) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.title_.Set(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
- // @@protoc_insertion_point(field_set:palm.lily.v1.TexToRequest.title)
- }
- inline std::string* TexToRequest::mutable_title() {
- std::string* _s = _internal_mutable_title();
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.TexToRequest.title)
- return _s;
- }
- inline const std::string& TexToRequest::_internal_title() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.title_.Get();
- }
- inline void TexToRequest::_internal_set_title(const std::string& value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.title_.Set(value, GetArenaForAllocation());
- }
- inline std::string* TexToRequest::_internal_mutable_title() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- return _impl_.title_.Mutable( GetArenaForAllocation());
- }
- inline std::string* TexToRequest::release_title() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- // @@protoc_insertion_point(field_release:palm.lily.v1.TexToRequest.title)
- return _impl_.title_.Release();
- }
- inline void TexToRequest::set_allocated_title(std::string* value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_.title_.SetAllocated(value, GetArenaForAllocation());
- #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
- if (_impl_.title_.IsDefault()) {
- _impl_.title_.Set("", GetArenaForAllocation());
- }
- #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
- // @@protoc_insertion_point(field_set_allocated:palm.lily.v1.TexToRequest.title)
- }
- // map<string, bytes> files = 2;
- inline int TexToRequest::_internal_files_size() const {
- return _internal_files().size();
- }
- inline int TexToRequest::files_size() const {
- return _internal_files_size();
- }
- inline void TexToRequest::clear_files() {
- _impl_.files_.Clear();
- }
- inline const ::google::protobuf::Map<std::string, std::string>& TexToRequest::_internal_files() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.files_.GetMap();
- }
- inline const ::google::protobuf::Map<std::string, std::string>& TexToRequest::files() const {
- // @@protoc_insertion_point(field_map:palm.lily.v1.TexToRequest.files)
- return _internal_files();
- }
- inline ::google::protobuf::Map<std::string, std::string>* TexToRequest::_internal_mutable_files() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- return _impl_.files_.MutableMap();
- }
- inline ::google::protobuf::Map<std::string, std::string>* TexToRequest::mutable_files() {
- // @@protoc_insertion_point(field_mutable_map:palm.lily.v1.TexToRequest.files)
- return _internal_mutable_files();
- }
- // optional .google.protobuf.Duration ttl = 7;
- inline bool TexToRequest::has_ttl() const {
- bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0;
- PROTOBUF_ASSUME(!value || _impl_.ttl_ != nullptr);
- return value;
- }
- inline const ::google::protobuf::Duration& TexToRequest::_internal_ttl() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- const ::google::protobuf::Duration* p = _impl_.ttl_;
- return p != nullptr ? *p : reinterpret_cast<const ::google::protobuf::Duration&>(::google::protobuf::_Duration_default_instance_);
- }
- inline const ::google::protobuf::Duration& TexToRequest::ttl() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.TexToRequest.ttl)
- return _internal_ttl();
- }
- inline void TexToRequest::unsafe_arena_set_allocated_ttl(::google::protobuf::Duration* value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- if (GetArenaForAllocation() == nullptr) {
- delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.ttl_);
- }
- _impl_.ttl_ = reinterpret_cast<::google::protobuf::Duration*>(value);
- if (value != nullptr) {
- _impl_._has_bits_[0] |= 0x00000002u;
- } else {
- _impl_._has_bits_[0] &= ~0x00000002u;
- }
- // @@protoc_insertion_point(field_unsafe_arena_set_allocated:palm.lily.v1.TexToRequest.ttl)
- }
- inline ::google::protobuf::Duration* TexToRequest::release_ttl() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_._has_bits_[0] &= ~0x00000002u;
- ::google::protobuf::Duration* released = _impl_.ttl_;
- _impl_.ttl_ = nullptr;
- #ifdef PROTOBUF_FORCE_COPY_IN_RELEASE
- auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released);
- released = ::google::protobuf::internal::DuplicateIfNonNull(released);
- if (GetArenaForAllocation() == nullptr) {
- delete old;
- }
- #else // PROTOBUF_FORCE_COPY_IN_RELEASE
- if (GetArenaForAllocation() != nullptr) {
- released = ::google::protobuf::internal::DuplicateIfNonNull(released);
- }
- #endif // !PROTOBUF_FORCE_COPY_IN_RELEASE
- return released;
- }
- inline ::google::protobuf::Duration* TexToRequest::unsafe_arena_release_ttl() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- // @@protoc_insertion_point(field_release:palm.lily.v1.TexToRequest.ttl)
- _impl_._has_bits_[0] &= ~0x00000002u;
- ::google::protobuf::Duration* temp = _impl_.ttl_;
- _impl_.ttl_ = nullptr;
- return temp;
- }
- inline ::google::protobuf::Duration* TexToRequest::_internal_mutable_ttl() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_._has_bits_[0] |= 0x00000002u;
- if (_impl_.ttl_ == nullptr) {
- auto* p = CreateMaybeMessage<::google::protobuf::Duration>(GetArenaForAllocation());
- _impl_.ttl_ = reinterpret_cast<::google::protobuf::Duration*>(p);
- }
- return _impl_.ttl_;
- }
- inline ::google::protobuf::Duration* TexToRequest::mutable_ttl() {
- ::google::protobuf::Duration* _msg = _internal_mutable_ttl();
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.TexToRequest.ttl)
- return _msg;
- }
- inline void TexToRequest::set_allocated_ttl(::google::protobuf::Duration* value) {
- ::google::protobuf::Arena* message_arena = GetArenaForAllocation();
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- if (message_arena == nullptr) {
- delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.ttl_);
- }
- if (value != nullptr) {
- ::google::protobuf::Arena* submessage_arena =
- ::google::protobuf::Arena::InternalGetOwningArena(reinterpret_cast<::google::protobuf::MessageLite*>(value));
- if (message_arena != submessage_arena) {
- value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena);
- }
- _impl_._has_bits_[0] |= 0x00000002u;
- } else {
- _impl_._has_bits_[0] &= ~0x00000002u;
- }
- _impl_.ttl_ = reinterpret_cast<::google::protobuf::Duration*>(value);
- // @@protoc_insertion_point(field_set_allocated:palm.lily.v1.TexToRequest.ttl)
- }
- // optional string owner = 8;
- inline bool TexToRequest::has_owner() const {
- bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0;
- return value;
- }
- inline void TexToRequest::clear_owner() {
- _impl_.owner_.ClearToEmpty();
- _impl_._has_bits_[0] &= ~0x00000001u;
- }
- inline const std::string& TexToRequest::owner() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.TexToRequest.owner)
- return _internal_owner();
- }
- template <typename Arg_, typename... Args_>
- inline PROTOBUF_ALWAYS_INLINE void TexToRequest::set_owner(Arg_&& arg,
- Args_... args) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_._has_bits_[0] |= 0x00000001u;
- _impl_.owner_.Set(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
- // @@protoc_insertion_point(field_set:palm.lily.v1.TexToRequest.owner)
- }
- inline std::string* TexToRequest::mutable_owner() {
- std::string* _s = _internal_mutable_owner();
- // @@protoc_insertion_point(field_mutable:palm.lily.v1.TexToRequest.owner)
- return _s;
- }
- inline const std::string& TexToRequest::_internal_owner() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.owner_.Get();
- }
- inline void TexToRequest::_internal_set_owner(const std::string& value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_._has_bits_[0] |= 0x00000001u;
- _impl_.owner_.Set(value, GetArenaForAllocation());
- }
- inline std::string* TexToRequest::_internal_mutable_owner() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- _impl_._has_bits_[0] |= 0x00000001u;
- return _impl_.owner_.Mutable( GetArenaForAllocation());
- }
- inline std::string* TexToRequest::release_owner() {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- // @@protoc_insertion_point(field_release:palm.lily.v1.TexToRequest.owner)
- if ((_impl_._has_bits_[0] & 0x00000001u) == 0) {
- return nullptr;
- }
- _impl_._has_bits_[0] &= ~0x00000001u;
- auto* released = _impl_.owner_.Release();
- #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
- _impl_.owner_.Set("", GetArenaForAllocation());
- #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
- return released;
- }
- inline void TexToRequest::set_allocated_owner(std::string* value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- if (value != nullptr) {
- _impl_._has_bits_[0] |= 0x00000001u;
- } else {
- _impl_._has_bits_[0] &= ~0x00000001u;
- }
- _impl_.owner_.SetAllocated(value, GetArenaForAllocation());
- #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
- if (_impl_.owner_.IsDefault()) {
- _impl_.owner_.Set("", GetArenaForAllocation());
- }
- #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
- // @@protoc_insertion_point(field_set_allocated:palm.lily.v1.TexToRequest.owner)
- }
- // bool published = 9;
- inline void TexToRequest::clear_published() {
- _impl_.published_ = false;
- }
- inline bool TexToRequest::published() const {
- // @@protoc_insertion_point(field_get:palm.lily.v1.TexToRequest.published)
- return _internal_published();
- }
- inline void TexToRequest::set_published(bool value) {
- _internal_set_published(value);
- // @@protoc_insertion_point(field_set:palm.lily.v1.TexToRequest.published)
- }
- inline bool TexToRequest::_internal_published() const {
- PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
- return _impl_.published_;
- }
- inline void TexToRequest::_internal_set_published(bool value) {
- PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
- ;
- _impl_.published_ = value;
- }
- // -------------------------------------------------------------------
- // EpubBuildRequest
- #ifdef __GNUC__
- #pragma GCC diagnostic pop
- #endif // __GNUC__
- // @@protoc_insertion_point(namespace_scope)
- } // namespace v1
- } // namespace lily
- } // namespace palm
- // @@protoc_insertion_point(global_scope)
- #include "google/protobuf/port_undef.inc"
- #endif // GOOGLE_PROTOBUF_INCLUDED_lily_2eproto_2epb_2eh
|