extension_set.h 61 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234
  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2008 Google Inc. All rights reserved.
  3. // https://developers.google.com/protocol-buffers/
  4. //
  5. // Redistribution and use in source and binary forms, with or without
  6. // modification, are permitted provided that the following conditions are
  7. // met:
  8. //
  9. // * Redistributions of source code must retain the above copyright
  10. // notice, this list of conditions and the following disclaimer.
  11. // * Redistributions in binary form must reproduce the above
  12. // copyright notice, this list of conditions and the following disclaimer
  13. // in the documentation and/or other materials provided with the
  14. // distribution.
  15. // * Neither the name of Google Inc. nor the names of its
  16. // contributors may be used to endorse or promote products derived from
  17. // this software without specific prior written permission.
  18. //
  19. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. // Author: kenton@google.com (Kenton Varda)
  31. // Based on original Protocol Buffers design by
  32. // Sanjay Ghemawat, Jeff Dean, and others.
  33. //
  34. // This header is logically internal, but is made public because it is used
  35. // from protocol-compiler-generated code, which may reside in other components.
  36. #ifndef GOOGLE_PROTOBUF_EXTENSION_SET_H__
  37. #define GOOGLE_PROTOBUF_EXTENSION_SET_H__
  38. #include <vector>
  39. #include <map>
  40. #include <utility>
  41. #include <string>
  42. #include <google/protobuf/stubs/common.h>
  43. #include <google/protobuf/repeated_field.h>
  44. namespace google {
  45. namespace protobuf {
  46. class Descriptor; // descriptor.h
  47. class FieldDescriptor; // descriptor.h
  48. class DescriptorPool; // descriptor.h
  49. class MessageLite; // message_lite.h
  50. class Message; // message.h
  51. class MessageFactory; // message.h
  52. class UnknownFieldSet; // unknown_field_set.h
  53. namespace io {
  54. class CodedInputStream; // coded_stream.h
  55. class CodedOutputStream; // coded_stream.h
  56. }
  57. namespace internal {
  58. class FieldSkipper; // wire_format_lite.h
  59. }
  60. }
  61. namespace protobuf {
  62. namespace internal {
  63. // Used to store values of type WireFormatLite::FieldType without having to
  64. // #include wire_format_lite.h. Also, ensures that we use only one byte to
  65. // store these values, which is important to keep the layout of
  66. // ExtensionSet::Extension small.
  67. typedef uint8 FieldType;
  68. // A function which, given an integer value, returns true if the number
  69. // matches one of the defined values for the corresponding enum type. This
  70. // is used with RegisterEnumExtension, below.
  71. typedef bool EnumValidityFunc(int number);
  72. // Version of the above which takes an argument. This is needed to deal with
  73. // extensions that are not compiled in.
  74. typedef bool EnumValidityFuncWithArg(const void* arg, int number);
  75. // Information about a registered extension.
  76. struct ExtensionInfo {
  77. inline ExtensionInfo() {}
  78. inline ExtensionInfo(FieldType type_param, bool isrepeated, bool ispacked)
  79. : type(type_param), is_repeated(isrepeated), is_packed(ispacked),
  80. descriptor(NULL) {}
  81. FieldType type;
  82. bool is_repeated;
  83. bool is_packed;
  84. struct EnumValidityCheck {
  85. EnumValidityFuncWithArg* func;
  86. const void* arg;
  87. };
  88. union {
  89. EnumValidityCheck enum_validity_check;
  90. const MessageLite* message_prototype;
  91. };
  92. // The descriptor for this extension, if one exists and is known. May be
  93. // NULL. Must not be NULL if the descriptor for the extension does not
  94. // live in the same pool as the descriptor for the containing type.
  95. const FieldDescriptor* descriptor;
  96. };
  97. // Abstract interface for an object which looks up extension definitions. Used
  98. // when parsing.
  99. class LIBPROTOBUF_EXPORT ExtensionFinder {
  100. public:
  101. virtual ~ExtensionFinder();
  102. // Find the extension with the given containing type and number.
  103. virtual bool Find(int number, ExtensionInfo* output) = 0;
  104. };
  105. // Implementation of ExtensionFinder which finds extensions defined in .proto
  106. // files which have been compiled into the binary.
  107. class LIBPROTOBUF_EXPORT GeneratedExtensionFinder : public ExtensionFinder {
  108. public:
  109. GeneratedExtensionFinder(const MessageLite* containing_type)
  110. : containing_type_(containing_type) {}
  111. virtual ~GeneratedExtensionFinder() {}
  112. // Returns true and fills in *output if found, otherwise returns false.
  113. virtual bool Find(int number, ExtensionInfo* output);
  114. private:
  115. const MessageLite* containing_type_;
  116. };
  117. // A FieldSkipper used for parsing MessageSet.
  118. class MessageSetFieldSkipper;
  119. // Note: extension_set_heavy.cc defines DescriptorPoolExtensionFinder for
  120. // finding extensions from a DescriptorPool.
  121. // This is an internal helper class intended for use within the protocol buffer
  122. // library and generated classes. Clients should not use it directly. Instead,
  123. // use the generated accessors such as GetExtension() of the class being
  124. // extended.
  125. //
  126. // This class manages extensions for a protocol message object. The
  127. // message's HasExtension(), GetExtension(), MutableExtension(), and
  128. // ClearExtension() methods are just thin wrappers around the embedded
  129. // ExtensionSet. When parsing, if a tag number is encountered which is
  130. // inside one of the message type's extension ranges, the tag is passed
  131. // off to the ExtensionSet for parsing. Etc.
  132. class LIBPROTOBUF_EXPORT ExtensionSet {
  133. public:
  134. ExtensionSet();
  135. ~ExtensionSet();
  136. // These are called at startup by protocol-compiler-generated code to
  137. // register known extensions. The registrations are used by ParseField()
  138. // to look up extensions for parsed field numbers. Note that dynamic parsing
  139. // does not use ParseField(); only protocol-compiler-generated parsing
  140. // methods do.
  141. static void RegisterExtension(const MessageLite* containing_type,
  142. int number, FieldType type,
  143. bool is_repeated, bool is_packed);
  144. static void RegisterEnumExtension(const MessageLite* containing_type,
  145. int number, FieldType type,
  146. bool is_repeated, bool is_packed,
  147. EnumValidityFunc* is_valid);
  148. static void RegisterMessageExtension(const MessageLite* containing_type,
  149. int number, FieldType type,
  150. bool is_repeated, bool is_packed,
  151. const MessageLite* prototype);
  152. // =================================================================
  153. // Add all fields which are currently present to the given vector. This
  154. // is useful to implement Reflection::ListFields().
  155. void AppendToList(const Descriptor* containing_type,
  156. const DescriptorPool* pool,
  157. vector<const FieldDescriptor*>* output) const;
  158. // =================================================================
  159. // Accessors
  160. //
  161. // Generated message classes include type-safe templated wrappers around
  162. // these methods. Generally you should use those rather than call these
  163. // directly, unless you are doing low-level memory management.
  164. //
  165. // When calling any of these accessors, the extension number requested
  166. // MUST exist in the DescriptorPool provided to the constructor. Otheriwse,
  167. // the method will fail an assert. Normally, though, you would not call
  168. // these directly; you would either call the generated accessors of your
  169. // message class (e.g. GetExtension()) or you would call the accessors
  170. // of the reflection interface. In both cases, it is impossible to
  171. // trigger this assert failure: the generated accessors only accept
  172. // linked-in extension types as parameters, while the Reflection interface
  173. // requires you to provide the FieldDescriptor describing the extension.
  174. //
  175. // When calling any of these accessors, a protocol-compiler-generated
  176. // implementation of the extension corresponding to the number MUST
  177. // be linked in, and the FieldDescriptor used to refer to it MUST be
  178. // the one generated by that linked-in code. Otherwise, the method will
  179. // die on an assert failure. The message objects returned by the message
  180. // accessors are guaranteed to be of the correct linked-in type.
  181. //
  182. // These methods pretty much match Reflection except that:
  183. // - They're not virtual.
  184. // - They identify fields by number rather than FieldDescriptors.
  185. // - They identify enum values using integers rather than descriptors.
  186. // - Strings provide Mutable() in addition to Set() accessors.
  187. bool Has(int number) const;
  188. int ExtensionSize(int number) const; // Size of a repeated extension.
  189. int NumExtensions() const; // The number of extensions
  190. FieldType ExtensionType(int number) const;
  191. void ClearExtension(int number);
  192. // singular fields -------------------------------------------------
  193. int32 GetInt32 (int number, int32 default_value) const;
  194. int64 GetInt64 (int number, int64 default_value) const;
  195. uint32 GetUInt32(int number, uint32 default_value) const;
  196. uint64 GetUInt64(int number, uint64 default_value) const;
  197. float GetFloat (int number, float default_value) const;
  198. double GetDouble(int number, double default_value) const;
  199. bool GetBool (int number, bool default_value) const;
  200. int GetEnum (int number, int default_value) const;
  201. const string & GetString (int number, const string& default_value) const;
  202. const MessageLite& GetMessage(int number,
  203. const MessageLite& default_value) const;
  204. const MessageLite& GetMessage(int number, const Descriptor* message_type,
  205. MessageFactory* factory) const;
  206. // |descriptor| may be NULL so long as it is known that the descriptor for
  207. // the extension lives in the same pool as the descriptor for the containing
  208. // type.
  209. #define desc const FieldDescriptor* descriptor // avoid line wrapping
  210. void SetInt32 (int number, FieldType type, int32 value, desc);
  211. void SetInt64 (int number, FieldType type, int64 value, desc);
  212. void SetUInt32(int number, FieldType type, uint32 value, desc);
  213. void SetUInt64(int number, FieldType type, uint64 value, desc);
  214. void SetFloat (int number, FieldType type, float value, desc);
  215. void SetDouble(int number, FieldType type, double value, desc);
  216. void SetBool (int number, FieldType type, bool value, desc);
  217. void SetEnum (int number, FieldType type, int value, desc);
  218. void SetString(int number, FieldType type, const string& value, desc);
  219. string * MutableString (int number, FieldType type, desc);
  220. MessageLite* MutableMessage(int number, FieldType type,
  221. const MessageLite& prototype, desc);
  222. MessageLite* MutableMessage(const FieldDescriptor* decsriptor,
  223. MessageFactory* factory);
  224. // Adds the given message to the ExtensionSet, taking ownership of the
  225. // message object. Existing message with the same number will be deleted.
  226. // If "message" is NULL, this is equivalent to "ClearExtension(number)".
  227. void SetAllocatedMessage(int number, FieldType type,
  228. const FieldDescriptor* descriptor,
  229. MessageLite* message);
  230. MessageLite* ReleaseMessage(int number, const MessageLite& prototype);
  231. MessageLite* ReleaseMessage(const FieldDescriptor* descriptor,
  232. MessageFactory* factory);
  233. #undef desc
  234. // repeated fields -------------------------------------------------
  235. // Fetches a RepeatedField extension by number; returns |default_value|
  236. // if no such extension exists. User should not touch this directly; it is
  237. // used by the GetRepeatedExtension() method.
  238. const void* GetRawRepeatedField(int number, const void* default_value) const;
  239. // Fetches a mutable version of a RepeatedField extension by number,
  240. // instantiating one if none exists. Similar to above, user should not use
  241. // this directly; it underlies MutableRepeatedExtension().
  242. void* MutableRawRepeatedField(int number, FieldType field_type,
  243. bool packed, const FieldDescriptor* desc);
  244. // This is an overload of MutableRawRepeatedField to maintain compatibility
  245. // with old code using a previous API. This version of
  246. // MutableRawRepeatedField() will GOOGLE_CHECK-fail on a missing extension.
  247. // (E.g.: borg/clients/internal/proto1/proto2_reflection.cc.)
  248. void* MutableRawRepeatedField(int number);
  249. int32 GetRepeatedInt32 (int number, int index) const;
  250. int64 GetRepeatedInt64 (int number, int index) const;
  251. uint32 GetRepeatedUInt32(int number, int index) const;
  252. uint64 GetRepeatedUInt64(int number, int index) const;
  253. float GetRepeatedFloat (int number, int index) const;
  254. double GetRepeatedDouble(int number, int index) const;
  255. bool GetRepeatedBool (int number, int index) const;
  256. int GetRepeatedEnum (int number, int index) const;
  257. const string & GetRepeatedString (int number, int index) const;
  258. const MessageLite& GetRepeatedMessage(int number, int index) const;
  259. void SetRepeatedInt32 (int number, int index, int32 value);
  260. void SetRepeatedInt64 (int number, int index, int64 value);
  261. void SetRepeatedUInt32(int number, int index, uint32 value);
  262. void SetRepeatedUInt64(int number, int index, uint64 value);
  263. void SetRepeatedFloat (int number, int index, float value);
  264. void SetRepeatedDouble(int number, int index, double value);
  265. void SetRepeatedBool (int number, int index, bool value);
  266. void SetRepeatedEnum (int number, int index, int value);
  267. void SetRepeatedString(int number, int index, const string& value);
  268. string * MutableRepeatedString (int number, int index);
  269. MessageLite* MutableRepeatedMessage(int number, int index);
  270. #define desc const FieldDescriptor* descriptor // avoid line wrapping
  271. void AddInt32 (int number, FieldType type, bool packed, int32 value, desc);
  272. void AddInt64 (int number, FieldType type, bool packed, int64 value, desc);
  273. void AddUInt32(int number, FieldType type, bool packed, uint32 value, desc);
  274. void AddUInt64(int number, FieldType type, bool packed, uint64 value, desc);
  275. void AddFloat (int number, FieldType type, bool packed, float value, desc);
  276. void AddDouble(int number, FieldType type, bool packed, double value, desc);
  277. void AddBool (int number, FieldType type, bool packed, bool value, desc);
  278. void AddEnum (int number, FieldType type, bool packed, int value, desc);
  279. void AddString(int number, FieldType type, const string& value, desc);
  280. string * AddString (int number, FieldType type, desc);
  281. MessageLite* AddMessage(int number, FieldType type,
  282. const MessageLite& prototype, desc);
  283. MessageLite* AddMessage(const FieldDescriptor* descriptor,
  284. MessageFactory* factory);
  285. #undef desc
  286. void RemoveLast(int number);
  287. MessageLite* ReleaseLast(int number);
  288. void SwapElements(int number, int index1, int index2);
  289. // -----------------------------------------------------------------
  290. // TODO(kenton): Hardcore memory management accessors
  291. // =================================================================
  292. // convenience methods for implementing methods of Message
  293. //
  294. // These could all be implemented in terms of the other methods of this
  295. // class, but providing them here helps keep the generated code size down.
  296. void Clear();
  297. void MergeFrom(const ExtensionSet& other);
  298. void Swap(ExtensionSet* other);
  299. void SwapExtension(ExtensionSet* other, int number);
  300. bool IsInitialized() const;
  301. // Parses a single extension from the input. The input should start out
  302. // positioned immediately after the tag.
  303. bool ParseField(uint32 tag, io::CodedInputStream* input,
  304. ExtensionFinder* extension_finder,
  305. FieldSkipper* field_skipper);
  306. // Specific versions for lite or full messages (constructs the appropriate
  307. // FieldSkipper automatically). |containing_type| is the default
  308. // instance for the containing message; it is used only to look up the
  309. // extension by number. See RegisterExtension(), above. Unlike the other
  310. // methods of ExtensionSet, this only works for generated message types --
  311. // it looks up extensions registered using RegisterExtension().
  312. bool ParseField(uint32 tag, io::CodedInputStream* input,
  313. const MessageLite* containing_type);
  314. bool ParseField(uint32 tag, io::CodedInputStream* input,
  315. const Message* containing_type,
  316. UnknownFieldSet* unknown_fields);
  317. bool ParseField(uint32 tag, io::CodedInputStream* input,
  318. const MessageLite* containing_type,
  319. io::CodedOutputStream* unknown_fields);
  320. // Parse an entire message in MessageSet format. Such messages have no
  321. // fields, only extensions.
  322. bool ParseMessageSet(io::CodedInputStream* input,
  323. ExtensionFinder* extension_finder,
  324. MessageSetFieldSkipper* field_skipper);
  325. // Specific versions for lite or full messages (constructs the appropriate
  326. // FieldSkipper automatically).
  327. bool ParseMessageSet(io::CodedInputStream* input,
  328. const MessageLite* containing_type);
  329. bool ParseMessageSet(io::CodedInputStream* input,
  330. const Message* containing_type,
  331. UnknownFieldSet* unknown_fields);
  332. // Write all extension fields with field numbers in the range
  333. // [start_field_number, end_field_number)
  334. // to the output stream, using the cached sizes computed when ByteSize() was
  335. // last called. Note that the range bounds are inclusive-exclusive.
  336. void SerializeWithCachedSizes(int start_field_number,
  337. int end_field_number,
  338. io::CodedOutputStream* output) const;
  339. // Same as SerializeWithCachedSizes, but without any bounds checking.
  340. // The caller must ensure that target has sufficient capacity for the
  341. // serialized extensions.
  342. //
  343. // Returns a pointer past the last written byte.
  344. uint8* SerializeWithCachedSizesToArray(int start_field_number,
  345. int end_field_number,
  346. uint8* target) const;
  347. // Like above but serializes in MessageSet format.
  348. void SerializeMessageSetWithCachedSizes(io::CodedOutputStream* output) const;
  349. uint8* SerializeMessageSetWithCachedSizesToArray(uint8* target) const;
  350. // Returns the total serialized size of all the extensions.
  351. int ByteSize() const;
  352. // Like ByteSize() but uses MessageSet format.
  353. int MessageSetByteSize() const;
  354. // Returns (an estimate of) the total number of bytes used for storing the
  355. // extensions in memory, excluding sizeof(*this). If the ExtensionSet is
  356. // for a lite message (and thus possibly contains lite messages), the results
  357. // are undefined (might work, might crash, might corrupt data, might not even
  358. // be linked in). It's up to the protocol compiler to avoid calling this on
  359. // such ExtensionSets (easy enough since lite messages don't implement
  360. // SpaceUsed()).
  361. int SpaceUsedExcludingSelf() const;
  362. private:
  363. // Interface of a lazily parsed singular message extension.
  364. class LIBPROTOBUF_EXPORT LazyMessageExtension {
  365. public:
  366. LazyMessageExtension() {}
  367. virtual ~LazyMessageExtension() {}
  368. virtual LazyMessageExtension* New() const = 0;
  369. virtual const MessageLite& GetMessage(
  370. const MessageLite& prototype) const = 0;
  371. virtual MessageLite* MutableMessage(const MessageLite& prototype) = 0;
  372. virtual void SetAllocatedMessage(MessageLite *message) = 0;
  373. virtual MessageLite* ReleaseMessage(const MessageLite& prototype) = 0;
  374. virtual bool IsInitialized() const = 0;
  375. virtual int ByteSize() const = 0;
  376. virtual int SpaceUsed() const = 0;
  377. virtual void MergeFrom(const LazyMessageExtension& other) = 0;
  378. virtual void Clear() = 0;
  379. virtual bool ReadMessage(const MessageLite& prototype,
  380. io::CodedInputStream* input) = 0;
  381. virtual void WriteMessage(int number,
  382. io::CodedOutputStream* output) const = 0;
  383. virtual uint8* WriteMessageToArray(int number, uint8* target) const = 0;
  384. private:
  385. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(LazyMessageExtension);
  386. };
  387. struct Extension {
  388. // The order of these fields packs Extension into 24 bytes when using 8
  389. // byte alignment. Consider this when adding or removing fields here.
  390. union {
  391. int32 int32_value;
  392. int64 int64_value;
  393. uint32 uint32_value;
  394. uint64 uint64_value;
  395. float float_value;
  396. double double_value;
  397. bool bool_value;
  398. int enum_value;
  399. string* string_value;
  400. MessageLite* message_value;
  401. LazyMessageExtension* lazymessage_value;
  402. RepeatedField <int32 >* repeated_int32_value;
  403. RepeatedField <int64 >* repeated_int64_value;
  404. RepeatedField <uint32 >* repeated_uint32_value;
  405. RepeatedField <uint64 >* repeated_uint64_value;
  406. RepeatedField <float >* repeated_float_value;
  407. RepeatedField <double >* repeated_double_value;
  408. RepeatedField <bool >* repeated_bool_value;
  409. RepeatedField <int >* repeated_enum_value;
  410. RepeatedPtrField<string >* repeated_string_value;
  411. RepeatedPtrField<MessageLite>* repeated_message_value;
  412. };
  413. FieldType type;
  414. bool is_repeated;
  415. // For singular types, indicates if the extension is "cleared". This
  416. // happens when an extension is set and then later cleared by the caller.
  417. // We want to keep the Extension object around for reuse, so instead of
  418. // removing it from the map, we just set is_cleared = true. This has no
  419. // meaning for repeated types; for those, the size of the RepeatedField
  420. // simply becomes zero when cleared.
  421. bool is_cleared : 4;
  422. // For singular message types, indicates whether lazy parsing is enabled
  423. // for this extension. This field is only valid when type == TYPE_MESSAGE
  424. // and !is_repeated because we only support lazy parsing for singular
  425. // message types currently. If is_lazy = true, the extension is stored in
  426. // lazymessage_value. Otherwise, the extension will be message_value.
  427. bool is_lazy : 4;
  428. // For repeated types, this indicates if the [packed=true] option is set.
  429. bool is_packed;
  430. // For packed fields, the size of the packed data is recorded here when
  431. // ByteSize() is called then used during serialization.
  432. // TODO(kenton): Use atomic<int> when C++ supports it.
  433. mutable int cached_size;
  434. // The descriptor for this extension, if one exists and is known. May be
  435. // NULL. Must not be NULL if the descriptor for the extension does not
  436. // live in the same pool as the descriptor for the containing type.
  437. const FieldDescriptor* descriptor;
  438. // Some helper methods for operations on a single Extension.
  439. void SerializeFieldWithCachedSizes(
  440. int number,
  441. io::CodedOutputStream* output) const;
  442. uint8* SerializeFieldWithCachedSizesToArray(
  443. int number,
  444. uint8* target) const;
  445. void SerializeMessageSetItemWithCachedSizes(
  446. int number,
  447. io::CodedOutputStream* output) const;
  448. uint8* SerializeMessageSetItemWithCachedSizesToArray(
  449. int number,
  450. uint8* target) const;
  451. int ByteSize(int number) const;
  452. int MessageSetItemByteSize(int number) const;
  453. void Clear();
  454. int GetSize() const;
  455. void Free();
  456. int SpaceUsedExcludingSelf() const;
  457. };
  458. // Returns true and fills field_number and extension if extension is found.
  459. // Note to support packed repeated field compatibility, it also fills whether
  460. // the tag on wire is packed, which can be different from
  461. // extension->is_packed (whether packed=true is specified).
  462. bool FindExtensionInfoFromTag(uint32 tag, ExtensionFinder* extension_finder,
  463. int* field_number, ExtensionInfo* extension,
  464. bool* was_packed_on_wire);
  465. // Returns true and fills extension if extension is found.
  466. // Note to support packed repeated field compatibility, it also fills whether
  467. // the tag on wire is packed, which can be different from
  468. // extension->is_packed (whether packed=true is specified).
  469. bool FindExtensionInfoFromFieldNumber(int wire_type, int field_number,
  470. ExtensionFinder* extension_finder,
  471. ExtensionInfo* extension,
  472. bool* was_packed_on_wire);
  473. // Parses a single extension from the input. The input should start out
  474. // positioned immediately after the wire tag. This method is called in
  475. // ParseField() after field number and was_packed_on_wire is extracted from
  476. // the wire tag and ExtensionInfo is found by the field number.
  477. bool ParseFieldWithExtensionInfo(int field_number,
  478. bool was_packed_on_wire,
  479. const ExtensionInfo& extension,
  480. io::CodedInputStream* input,
  481. FieldSkipper* field_skipper);
  482. // Like ParseField(), but this method may parse singular message extensions
  483. // lazily depending on the value of FLAGS_eagerly_parse_message_sets.
  484. bool ParseFieldMaybeLazily(int wire_type, int field_number,
  485. io::CodedInputStream* input,
  486. ExtensionFinder* extension_finder,
  487. MessageSetFieldSkipper* field_skipper);
  488. // Gets the extension with the given number, creating it if it does not
  489. // already exist. Returns true if the extension did not already exist.
  490. bool MaybeNewExtension(int number, const FieldDescriptor* descriptor,
  491. Extension** result);
  492. // Parse a single MessageSet item -- called just after the item group start
  493. // tag has been read.
  494. bool ParseMessageSetItem(io::CodedInputStream* input,
  495. ExtensionFinder* extension_finder,
  496. MessageSetFieldSkipper* field_skipper);
  497. // Hack: RepeatedPtrFieldBase declares ExtensionSet as a friend. This
  498. // friendship should automatically extend to ExtensionSet::Extension, but
  499. // unfortunately some older compilers (e.g. GCC 3.4.4) do not implement this
  500. // correctly. So, we must provide helpers for calling methods of that
  501. // class.
  502. // Defined in extension_set_heavy.cc.
  503. static inline int RepeatedMessage_SpaceUsedExcludingSelf(
  504. RepeatedPtrFieldBase* field);
  505. // The Extension struct is small enough to be passed by value, so we use it
  506. // directly as the value type in the map rather than use pointers. We use
  507. // a map rather than hash_map here because we expect most ExtensionSets will
  508. // only contain a small number of extensions whereas hash_map is optimized
  509. // for 100 elements or more. Also, we want AppendToList() to order fields
  510. // by field number.
  511. std::map<int, Extension> extensions_;
  512. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ExtensionSet);
  513. };
  514. // These are just for convenience...
  515. inline void ExtensionSet::SetString(int number, FieldType type,
  516. const string& value,
  517. const FieldDescriptor* descriptor) {
  518. MutableString(number, type, descriptor)->assign(value);
  519. }
  520. inline void ExtensionSet::SetRepeatedString(int number, int index,
  521. const string& value) {
  522. MutableRepeatedString(number, index)->assign(value);
  523. }
  524. inline void ExtensionSet::AddString(int number, FieldType type,
  525. const string& value,
  526. const FieldDescriptor* descriptor) {
  527. AddString(number, type, descriptor)->assign(value);
  528. }
  529. // ===================================================================
  530. // Glue for generated extension accessors
  531. // -------------------------------------------------------------------
  532. // Template magic
  533. // First we have a set of classes representing "type traits" for different
  534. // field types. A type traits class knows how to implement basic accessors
  535. // for extensions of a particular type given an ExtensionSet. The signature
  536. // for a type traits class looks like this:
  537. //
  538. // class TypeTraits {
  539. // public:
  540. // typedef ? ConstType;
  541. // typedef ? MutableType;
  542. // // TypeTraits for singular fields and repeated fields will define the
  543. // // symbol "Singular" or "Repeated" respectively. These two symbols will
  544. // // be used in extension accessors to distinguish between singular
  545. // // extensions and repeated extensions. If the TypeTraits for the passed
  546. // // in extension doesn't have the expected symbol defined, it means the
  547. // // user is passing a repeated extension to a singular accessor, or the
  548. // // opposite. In that case the C++ compiler will generate an error
  549. // // message "no matching member function" to inform the user.
  550. // typedef ? Singular
  551. // typedef ? Repeated
  552. //
  553. // static inline ConstType Get(int number, const ExtensionSet& set);
  554. // static inline void Set(int number, ConstType value, ExtensionSet* set);
  555. // static inline MutableType Mutable(int number, ExtensionSet* set);
  556. //
  557. // // Variants for repeated fields.
  558. // static inline ConstType Get(int number, const ExtensionSet& set,
  559. // int index);
  560. // static inline void Set(int number, int index,
  561. // ConstType value, ExtensionSet* set);
  562. // static inline MutableType Mutable(int number, int index,
  563. // ExtensionSet* set);
  564. // static inline void Add(int number, ConstType value, ExtensionSet* set);
  565. // static inline MutableType Add(int number, ExtensionSet* set);
  566. // };
  567. //
  568. // Not all of these methods make sense for all field types. For example, the
  569. // "Mutable" methods only make sense for strings and messages, and the
  570. // repeated methods only make sense for repeated types. So, each type
  571. // traits class implements only the set of methods from this signature that it
  572. // actually supports. This will cause a compiler error if the user tries to
  573. // access an extension using a method that doesn't make sense for its type.
  574. // For example, if "foo" is an extension of type "optional int32", then if you
  575. // try to write code like:
  576. // my_message.MutableExtension(foo)
  577. // you will get a compile error because PrimitiveTypeTraits<int32> does not
  578. // have a "Mutable()" method.
  579. // -------------------------------------------------------------------
  580. // PrimitiveTypeTraits
  581. // Since the ExtensionSet has different methods for each primitive type,
  582. // we must explicitly define the methods of the type traits class for each
  583. // known type.
  584. template <typename Type>
  585. class PrimitiveTypeTraits {
  586. public:
  587. typedef Type ConstType;
  588. typedef Type MutableType;
  589. typedef PrimitiveTypeTraits<Type> Singular;
  590. static inline ConstType Get(int number, const ExtensionSet& set,
  591. ConstType default_value);
  592. static inline void Set(int number, FieldType field_type,
  593. ConstType value, ExtensionSet* set);
  594. };
  595. template <typename Type>
  596. class RepeatedPrimitiveTypeTraits {
  597. public:
  598. typedef Type ConstType;
  599. typedef Type MutableType;
  600. typedef RepeatedPrimitiveTypeTraits<Type> Repeated;
  601. typedef RepeatedField<Type> RepeatedFieldType;
  602. static inline Type Get(int number, const ExtensionSet& set, int index);
  603. static inline void Set(int number, int index, Type value, ExtensionSet* set);
  604. static inline void Add(int number, FieldType field_type,
  605. bool is_packed, Type value, ExtensionSet* set);
  606. static inline const RepeatedField<ConstType>&
  607. GetRepeated(int number, const ExtensionSet& set);
  608. static inline RepeatedField<Type>*
  609. MutableRepeated(int number, FieldType field_type,
  610. bool is_packed, ExtensionSet* set);
  611. static const RepeatedFieldType* GetDefaultRepeatedField();
  612. };
  613. // Declared here so that this can be friended below.
  614. void InitializeDefaultRepeatedFields();
  615. void DestroyDefaultRepeatedFields();
  616. class LIBPROTOBUF_EXPORT RepeatedPrimitiveGenericTypeTraits {
  617. private:
  618. template<typename Type> friend class RepeatedPrimitiveTypeTraits;
  619. friend void InitializeDefaultRepeatedFields();
  620. friend void DestroyDefaultRepeatedFields();
  621. static const RepeatedField<int32>* default_repeated_field_int32_;
  622. static const RepeatedField<int64>* default_repeated_field_int64_;
  623. static const RepeatedField<uint32>* default_repeated_field_uint32_;
  624. static const RepeatedField<uint64>* default_repeated_field_uint64_;
  625. static const RepeatedField<double>* default_repeated_field_double_;
  626. static const RepeatedField<float>* default_repeated_field_float_;
  627. static const RepeatedField<bool>* default_repeated_field_bool_;
  628. };
  629. #define PROTOBUF_DEFINE_PRIMITIVE_TYPE(TYPE, METHOD) \
  630. template<> inline TYPE PrimitiveTypeTraits<TYPE>::Get( \
  631. int number, const ExtensionSet& set, TYPE default_value) { \
  632. return set.Get##METHOD(number, default_value); \
  633. } \
  634. template<> inline void PrimitiveTypeTraits<TYPE>::Set( \
  635. int number, FieldType field_type, TYPE value, ExtensionSet* set) { \
  636. set->Set##METHOD(number, field_type, value, NULL); \
  637. } \
  638. \
  639. template<> inline TYPE RepeatedPrimitiveTypeTraits<TYPE>::Get( \
  640. int number, const ExtensionSet& set, int index) { \
  641. return set.GetRepeated##METHOD(number, index); \
  642. } \
  643. template<> inline void RepeatedPrimitiveTypeTraits<TYPE>::Set( \
  644. int number, int index, TYPE value, ExtensionSet* set) { \
  645. set->SetRepeated##METHOD(number, index, value); \
  646. } \
  647. template<> inline void RepeatedPrimitiveTypeTraits<TYPE>::Add( \
  648. int number, FieldType field_type, bool is_packed, \
  649. TYPE value, ExtensionSet* set) { \
  650. set->Add##METHOD(number, field_type, is_packed, value, NULL); \
  651. } \
  652. template<> inline const RepeatedField<TYPE>* \
  653. RepeatedPrimitiveTypeTraits<TYPE>::GetDefaultRepeatedField() { \
  654. return RepeatedPrimitiveGenericTypeTraits:: \
  655. default_repeated_field_##TYPE##_; \
  656. } \
  657. template<> inline const RepeatedField<TYPE>& \
  658. RepeatedPrimitiveTypeTraits<TYPE>::GetRepeated(int number, \
  659. const ExtensionSet& set) { \
  660. return *reinterpret_cast<const RepeatedField<TYPE>*>( \
  661. set.GetRawRepeatedField( \
  662. number, GetDefaultRepeatedField())); \
  663. } \
  664. template<> inline RepeatedField<TYPE>* \
  665. RepeatedPrimitiveTypeTraits<TYPE>::MutableRepeated(int number, \
  666. FieldType field_type, \
  667. bool is_packed, \
  668. ExtensionSet* set) { \
  669. return reinterpret_cast<RepeatedField<TYPE>*>( \
  670. set->MutableRawRepeatedField(number, field_type, is_packed, NULL)); \
  671. }
  672. PROTOBUF_DEFINE_PRIMITIVE_TYPE( int32, Int32)
  673. PROTOBUF_DEFINE_PRIMITIVE_TYPE( int64, Int64)
  674. PROTOBUF_DEFINE_PRIMITIVE_TYPE(uint32, UInt32)
  675. PROTOBUF_DEFINE_PRIMITIVE_TYPE(uint64, UInt64)
  676. PROTOBUF_DEFINE_PRIMITIVE_TYPE( float, Float)
  677. PROTOBUF_DEFINE_PRIMITIVE_TYPE(double, Double)
  678. PROTOBUF_DEFINE_PRIMITIVE_TYPE( bool, Bool)
  679. #undef PROTOBUF_DEFINE_PRIMITIVE_TYPE
  680. // -------------------------------------------------------------------
  681. // StringTypeTraits
  682. // Strings support both Set() and Mutable().
  683. class LIBPROTOBUF_EXPORT StringTypeTraits {
  684. public:
  685. typedef const string& ConstType;
  686. typedef string* MutableType;
  687. typedef StringTypeTraits Singular;
  688. static inline const string& Get(int number, const ExtensionSet& set,
  689. ConstType default_value) {
  690. return set.GetString(number, default_value);
  691. }
  692. static inline void Set(int number, FieldType field_type,
  693. const string& value, ExtensionSet* set) {
  694. set->SetString(number, field_type, value, NULL);
  695. }
  696. static inline string* Mutable(int number, FieldType field_type,
  697. ExtensionSet* set) {
  698. return set->MutableString(number, field_type, NULL);
  699. }
  700. };
  701. class LIBPROTOBUF_EXPORT RepeatedStringTypeTraits {
  702. public:
  703. typedef const string& ConstType;
  704. typedef string* MutableType;
  705. typedef RepeatedStringTypeTraits Repeated;
  706. typedef RepeatedPtrField<string> RepeatedFieldType;
  707. static inline const string& Get(int number, const ExtensionSet& set,
  708. int index) {
  709. return set.GetRepeatedString(number, index);
  710. }
  711. static inline void Set(int number, int index,
  712. const string& value, ExtensionSet* set) {
  713. set->SetRepeatedString(number, index, value);
  714. }
  715. static inline string* Mutable(int number, int index, ExtensionSet* set) {
  716. return set->MutableRepeatedString(number, index);
  717. }
  718. static inline void Add(int number, FieldType field_type,
  719. bool /*is_packed*/, const string& value,
  720. ExtensionSet* set) {
  721. set->AddString(number, field_type, value, NULL);
  722. }
  723. static inline string* Add(int number, FieldType field_type,
  724. ExtensionSet* set) {
  725. return set->AddString(number, field_type, NULL);
  726. }
  727. static inline const RepeatedPtrField<string>&
  728. GetRepeated(int number, const ExtensionSet& set) {
  729. return *reinterpret_cast<const RepeatedPtrField<string>*>(
  730. set.GetRawRepeatedField(number, GetDefaultRepeatedField()));
  731. }
  732. static inline RepeatedPtrField<string>*
  733. MutableRepeated(int number, FieldType field_type,
  734. bool is_packed, ExtensionSet* set) {
  735. return reinterpret_cast<RepeatedPtrField<string>*>(
  736. set->MutableRawRepeatedField(number, field_type,
  737. is_packed, NULL));
  738. }
  739. static const RepeatedFieldType* GetDefaultRepeatedField() {
  740. return default_repeated_field_;
  741. }
  742. private:
  743. friend void InitializeDefaultRepeatedFields();
  744. friend void DestroyDefaultRepeatedFields();
  745. static const RepeatedFieldType *default_repeated_field_;
  746. };
  747. // -------------------------------------------------------------------
  748. // EnumTypeTraits
  749. // ExtensionSet represents enums using integers internally, so we have to
  750. // static_cast around.
  751. template <typename Type, bool IsValid(int)>
  752. class EnumTypeTraits {
  753. public:
  754. typedef Type ConstType;
  755. typedef Type MutableType;
  756. typedef EnumTypeTraits<Type, IsValid> Singular;
  757. static inline ConstType Get(int number, const ExtensionSet& set,
  758. ConstType default_value) {
  759. return static_cast<Type>(set.GetEnum(number, default_value));
  760. }
  761. static inline void Set(int number, FieldType field_type,
  762. ConstType value, ExtensionSet* set) {
  763. GOOGLE_DCHECK(IsValid(value));
  764. set->SetEnum(number, field_type, value, NULL);
  765. }
  766. };
  767. template <typename Type, bool IsValid(int)>
  768. class RepeatedEnumTypeTraits {
  769. public:
  770. typedef Type ConstType;
  771. typedef Type MutableType;
  772. typedef RepeatedEnumTypeTraits<Type, IsValid> Repeated;
  773. typedef RepeatedField<Type> RepeatedFieldType;
  774. static inline ConstType Get(int number, const ExtensionSet& set, int index) {
  775. return static_cast<Type>(set.GetRepeatedEnum(number, index));
  776. }
  777. static inline void Set(int number, int index,
  778. ConstType value, ExtensionSet* set) {
  779. GOOGLE_DCHECK(IsValid(value));
  780. set->SetRepeatedEnum(number, index, value);
  781. }
  782. static inline void Add(int number, FieldType field_type,
  783. bool is_packed, ConstType value, ExtensionSet* set) {
  784. GOOGLE_DCHECK(IsValid(value));
  785. set->AddEnum(number, field_type, is_packed, value, NULL);
  786. }
  787. static inline const RepeatedField<Type>& GetRepeated(int number,
  788. const ExtensionSet&
  789. set) {
  790. // Hack: the `Extension` struct stores a RepeatedField<int> for enums.
  791. // RepeatedField<int> cannot implicitly convert to RepeatedField<EnumType>
  792. // so we need to do some casting magic. See message.h for similar
  793. // contortions for non-extension fields.
  794. return *reinterpret_cast<const RepeatedField<Type>*>(
  795. set.GetRawRepeatedField(number, GetDefaultRepeatedField()));
  796. }
  797. static inline RepeatedField<Type>* MutableRepeated(int number,
  798. FieldType field_type,
  799. bool is_packed,
  800. ExtensionSet* set) {
  801. return reinterpret_cast<RepeatedField<Type>*>(
  802. set->MutableRawRepeatedField(number, field_type, is_packed, NULL));
  803. }
  804. static const RepeatedFieldType* GetDefaultRepeatedField() {
  805. // Hack: as noted above, repeated enum fields are internally stored as a
  806. // RepeatedField<int>. We need to be able to instantiate global static
  807. // objects to return as default (empty) repeated fields on non-existent
  808. // extensions. We would not be able to know a-priori all of the enum types
  809. // (values of |Type|) to instantiate all of these, so we just re-use int32's
  810. // default repeated field object.
  811. return reinterpret_cast<const RepeatedField<Type>*>(
  812. RepeatedPrimitiveTypeTraits<int32>::GetDefaultRepeatedField());
  813. }
  814. };
  815. // -------------------------------------------------------------------
  816. // MessageTypeTraits
  817. // ExtensionSet guarantees that when manipulating extensions with message
  818. // types, the implementation used will be the compiled-in class representing
  819. // that type. So, we can static_cast down to the exact type we expect.
  820. template <typename Type>
  821. class MessageTypeTraits {
  822. public:
  823. typedef const Type& ConstType;
  824. typedef Type* MutableType;
  825. typedef MessageTypeTraits<Type> Singular;
  826. static inline ConstType Get(int number, const ExtensionSet& set,
  827. ConstType default_value) {
  828. return static_cast<const Type&>(
  829. set.GetMessage(number, default_value));
  830. }
  831. static inline MutableType Mutable(int number, FieldType field_type,
  832. ExtensionSet* set) {
  833. return static_cast<Type*>(
  834. set->MutableMessage(number, field_type, Type::default_instance(), NULL));
  835. }
  836. static inline void SetAllocated(int number, FieldType field_type,
  837. MutableType message, ExtensionSet* set) {
  838. set->SetAllocatedMessage(number, field_type, NULL, message);
  839. }
  840. static inline MutableType Release(int number, FieldType /* field_type */,
  841. ExtensionSet* set) {
  842. return static_cast<Type*>(set->ReleaseMessage(
  843. number, Type::default_instance()));
  844. }
  845. };
  846. // forward declaration
  847. class RepeatedMessageGenericTypeTraits;
  848. template <typename Type>
  849. class RepeatedMessageTypeTraits {
  850. public:
  851. typedef const Type& ConstType;
  852. typedef Type* MutableType;
  853. typedef RepeatedMessageTypeTraits<Type> Repeated;
  854. typedef RepeatedPtrField<Type> RepeatedFieldType;
  855. static inline ConstType Get(int number, const ExtensionSet& set, int index) {
  856. return static_cast<const Type&>(set.GetRepeatedMessage(number, index));
  857. }
  858. static inline MutableType Mutable(int number, int index, ExtensionSet* set) {
  859. return static_cast<Type*>(set->MutableRepeatedMessage(number, index));
  860. }
  861. static inline MutableType Add(int number, FieldType field_type,
  862. ExtensionSet* set) {
  863. return static_cast<Type*>(
  864. set->AddMessage(number, field_type, Type::default_instance(), NULL));
  865. }
  866. static inline const RepeatedPtrField<Type>& GetRepeated(int number,
  867. const ExtensionSet&
  868. set) {
  869. // See notes above in RepeatedEnumTypeTraits::GetRepeated(): same
  870. // casting hack applies here, because a RepeatedPtrField<MessageLite>
  871. // cannot naturally become a RepeatedPtrType<Type> even though Type is
  872. // presumably a message. google::protobuf::Message goes through similar contortions
  873. // with a reinterpret_cast<>.
  874. return *reinterpret_cast<const RepeatedPtrField<Type>*>(
  875. set.GetRawRepeatedField(number, GetDefaultRepeatedField()));
  876. }
  877. static inline RepeatedPtrField<Type>* MutableRepeated(int number,
  878. FieldType field_type,
  879. bool is_packed,
  880. ExtensionSet* set) {
  881. return reinterpret_cast<RepeatedPtrField<Type>*>(
  882. set->MutableRawRepeatedField(number, field_type, is_packed, NULL));
  883. }
  884. static const RepeatedFieldType* GetDefaultRepeatedField();
  885. };
  886. // This class exists only to hold a generic default empty repeated field for all
  887. // message-type repeated field extensions.
  888. class LIBPROTOBUF_EXPORT RepeatedMessageGenericTypeTraits {
  889. public:
  890. typedef RepeatedPtrField< ::google::protobuf::MessageLite*> RepeatedFieldType;
  891. private:
  892. template<typename Type> friend class RepeatedMessageTypeTraits;
  893. friend void InitializeDefaultRepeatedFields();
  894. friend void DestroyDefaultRepeatedFields();
  895. static const RepeatedFieldType* default_repeated_field_;
  896. };
  897. template<typename Type> inline
  898. const typename RepeatedMessageTypeTraits<Type>::RepeatedFieldType*
  899. RepeatedMessageTypeTraits<Type>::GetDefaultRepeatedField() {
  900. return reinterpret_cast<const RepeatedFieldType*>(
  901. RepeatedMessageGenericTypeTraits::default_repeated_field_);
  902. }
  903. // -------------------------------------------------------------------
  904. // ExtensionIdentifier
  905. // This is the type of actual extension objects. E.g. if you have:
  906. // extends Foo with optional int32 bar = 1234;
  907. // then "bar" will be defined in C++ as:
  908. // ExtensionIdentifier<Foo, PrimitiveTypeTraits<int32>, 1, false> bar(1234);
  909. //
  910. // Note that we could, in theory, supply the field number as a template
  911. // parameter, and thus make an instance of ExtensionIdentifier have no
  912. // actual contents. However, if we did that, then using at extension
  913. // identifier would not necessarily cause the compiler to output any sort
  914. // of reference to any simple defined in the extension's .pb.o file. Some
  915. // linkers will actually drop object files that are not explicitly referenced,
  916. // but that would be bad because it would cause this extension to not be
  917. // registered at static initialization, and therefore using it would crash.
  918. template <typename ExtendeeType, typename TypeTraitsType,
  919. FieldType field_type, bool is_packed>
  920. class ExtensionIdentifier {
  921. public:
  922. typedef TypeTraitsType TypeTraits;
  923. typedef ExtendeeType Extendee;
  924. ExtensionIdentifier(int number, typename TypeTraits::ConstType default_value)
  925. : number_(number), default_value_(default_value) {}
  926. inline int number() const { return number_; }
  927. typename TypeTraits::ConstType default_value() const {
  928. return default_value_;
  929. }
  930. private:
  931. const int number_;
  932. typename TypeTraits::ConstType default_value_;
  933. };
  934. // -------------------------------------------------------------------
  935. // Generated accessors
  936. // This macro should be expanded in the context of a generated type which
  937. // has extensions.
  938. //
  939. // We use "_proto_TypeTraits" as a type name below because "TypeTraits"
  940. // causes problems if the class has a nested message or enum type with that
  941. // name and "_TypeTraits" is technically reserved for the C++ library since
  942. // it starts with an underscore followed by a capital letter.
  943. //
  944. // For similar reason, we use "_field_type" and "_is_packed" as parameter names
  945. // below, so that "field_type" and "is_packed" can be used as field names.
  946. #define GOOGLE_PROTOBUF_EXTENSION_ACCESSORS(CLASSNAME) \
  947. /* Has, Size, Clear */ \
  948. template <typename _proto_TypeTraits, \
  949. ::google::protobuf::internal::FieldType _field_type, \
  950. bool _is_packed> \
  951. inline bool HasExtension( \
  952. const ::google::protobuf::internal::ExtensionIdentifier< \
  953. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id) const { \
  954. return _extensions_.Has(id.number()); \
  955. } \
  956. \
  957. template <typename _proto_TypeTraits, \
  958. ::google::protobuf::internal::FieldType _field_type, \
  959. bool _is_packed> \
  960. inline void ClearExtension( \
  961. const ::google::protobuf::internal::ExtensionIdentifier< \
  962. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id) { \
  963. _extensions_.ClearExtension(id.number()); \
  964. } \
  965. \
  966. template <typename _proto_TypeTraits, \
  967. ::google::protobuf::internal::FieldType _field_type, \
  968. bool _is_packed> \
  969. inline int ExtensionSize( \
  970. const ::google::protobuf::internal::ExtensionIdentifier< \
  971. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id) const { \
  972. return _extensions_.ExtensionSize(id.number()); \
  973. } \
  974. \
  975. /* Singular accessors */ \
  976. template <typename _proto_TypeTraits, \
  977. ::google::protobuf::internal::FieldType _field_type, \
  978. bool _is_packed> \
  979. inline typename _proto_TypeTraits::Singular::ConstType GetExtension( \
  980. const ::google::protobuf::internal::ExtensionIdentifier< \
  981. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id) const { \
  982. return _proto_TypeTraits::Get(id.number(), _extensions_, \
  983. id.default_value()); \
  984. } \
  985. \
  986. template <typename _proto_TypeTraits, \
  987. ::google::protobuf::internal::FieldType _field_type, \
  988. bool _is_packed> \
  989. inline typename _proto_TypeTraits::Singular::MutableType MutableExtension( \
  990. const ::google::protobuf::internal::ExtensionIdentifier< \
  991. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id) { \
  992. return _proto_TypeTraits::Mutable(id.number(), _field_type, \
  993. &_extensions_); \
  994. } \
  995. \
  996. template <typename _proto_TypeTraits, \
  997. ::google::protobuf::internal::FieldType _field_type, \
  998. bool _is_packed> \
  999. inline void SetExtension( \
  1000. const ::google::protobuf::internal::ExtensionIdentifier< \
  1001. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id, \
  1002. typename _proto_TypeTraits::Singular::ConstType value) { \
  1003. _proto_TypeTraits::Set(id.number(), _field_type, value, &_extensions_); \
  1004. } \
  1005. \
  1006. template <typename _proto_TypeTraits, \
  1007. ::google::protobuf::internal::FieldType _field_type, \
  1008. bool _is_packed> \
  1009. inline void SetAllocatedExtension( \
  1010. const ::google::protobuf::internal::ExtensionIdentifier< \
  1011. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id, \
  1012. typename _proto_TypeTraits::Singular::MutableType value) { \
  1013. _proto_TypeTraits::SetAllocated(id.number(), _field_type, \
  1014. value, &_extensions_); \
  1015. } \
  1016. template <typename _proto_TypeTraits, \
  1017. ::google::protobuf::internal::FieldType _field_type, \
  1018. bool _is_packed> \
  1019. inline typename _proto_TypeTraits::Singular::MutableType ReleaseExtension( \
  1020. const ::google::protobuf::internal::ExtensionIdentifier< \
  1021. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id) { \
  1022. return _proto_TypeTraits::Release(id.number(), _field_type, \
  1023. &_extensions_); \
  1024. } \
  1025. \
  1026. /* Repeated accessors */ \
  1027. template <typename _proto_TypeTraits, \
  1028. ::google::protobuf::internal::FieldType _field_type, \
  1029. bool _is_packed> \
  1030. inline typename _proto_TypeTraits::Repeated::ConstType GetExtension( \
  1031. const ::google::protobuf::internal::ExtensionIdentifier< \
  1032. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id, \
  1033. int index) const { \
  1034. return _proto_TypeTraits::Get(id.number(), _extensions_, index); \
  1035. } \
  1036. \
  1037. template <typename _proto_TypeTraits, \
  1038. ::google::protobuf::internal::FieldType _field_type, \
  1039. bool _is_packed> \
  1040. inline typename _proto_TypeTraits::Repeated::MutableType MutableExtension( \
  1041. const ::google::protobuf::internal::ExtensionIdentifier< \
  1042. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id, \
  1043. int index) { \
  1044. return _proto_TypeTraits::Mutable(id.number(), index, &_extensions_); \
  1045. } \
  1046. \
  1047. template <typename _proto_TypeTraits, \
  1048. ::google::protobuf::internal::FieldType _field_type, \
  1049. bool _is_packed> \
  1050. inline void SetExtension( \
  1051. const ::google::protobuf::internal::ExtensionIdentifier< \
  1052. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id, \
  1053. int index, typename _proto_TypeTraits::Repeated::ConstType value) { \
  1054. _proto_TypeTraits::Set(id.number(), index, value, &_extensions_); \
  1055. } \
  1056. \
  1057. template <typename _proto_TypeTraits, \
  1058. ::google::protobuf::internal::FieldType _field_type, \
  1059. bool _is_packed> \
  1060. inline typename _proto_TypeTraits::Repeated::MutableType AddExtension( \
  1061. const ::google::protobuf::internal::ExtensionIdentifier< \
  1062. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id) { \
  1063. return _proto_TypeTraits::Add(id.number(), _field_type, &_extensions_); \
  1064. } \
  1065. \
  1066. template <typename _proto_TypeTraits, \
  1067. ::google::protobuf::internal::FieldType _field_type, \
  1068. bool _is_packed> \
  1069. inline void AddExtension( \
  1070. const ::google::protobuf::internal::ExtensionIdentifier< \
  1071. CLASSNAME, _proto_TypeTraits, _field_type, _is_packed>& id, \
  1072. typename _proto_TypeTraits::Repeated::ConstType value) { \
  1073. _proto_TypeTraits::Add(id.number(), _field_type, _is_packed, \
  1074. value, &_extensions_); \
  1075. } \
  1076. \
  1077. template <typename _proto_TypeTraits, \
  1078. ::google::protobuf::internal::FieldType _field_type, \
  1079. bool _is_packed> \
  1080. inline const typename _proto_TypeTraits::Repeated::RepeatedFieldType& \
  1081. GetRepeatedExtension( \
  1082. const ::google::protobuf::internal::ExtensionIdentifier< \
  1083. CLASSNAME, _proto_TypeTraits, _field_type, \
  1084. _is_packed>& id) const { \
  1085. return _proto_TypeTraits::GetRepeated(id.number(), _extensions_); \
  1086. } \
  1087. \
  1088. template <typename _proto_TypeTraits, \
  1089. ::google::protobuf::internal::FieldType _field_type, \
  1090. bool _is_packed> \
  1091. inline typename _proto_TypeTraits::Repeated::RepeatedFieldType* \
  1092. MutableRepeatedExtension( \
  1093. const ::google::protobuf::internal::ExtensionIdentifier< \
  1094. CLASSNAME, _proto_TypeTraits, _field_type, \
  1095. _is_packed>& id) { \
  1096. return _proto_TypeTraits::MutableRepeated(id.number(), _field_type, \
  1097. _is_packed, &_extensions_); \
  1098. }
  1099. } // namespace internal
  1100. } // namespace protobuf
  1101. } // namespace google
  1102. #endif // GOOGLE_PROTOBUF_EXTENSION_SET_H__