common.h 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226
  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) and others
  31. //
  32. // Contains basic types and utilities used by the rest of the library.
  33. #ifndef GOOGLE_PROTOBUF_COMMON_H__
  34. #define GOOGLE_PROTOBUF_COMMON_H__
  35. #include <assert.h>
  36. #include <stdlib.h>
  37. #include <cstddef>
  38. #include <string>
  39. #include <string.h>
  40. #if defined(__osf__)
  41. // Tru64 lacks stdint.h, but has inttypes.h which defines a superset of
  42. // what stdint.h would define.
  43. #include <inttypes.h>
  44. #elif !defined(_MSC_VER)
  45. #include <stdint.h>
  46. #endif
  47. #ifndef PROTOBUF_USE_EXCEPTIONS
  48. #if defined(_MSC_VER) && defined(_CPPUNWIND)
  49. #define PROTOBUF_USE_EXCEPTIONS 1
  50. #elif defined(__EXCEPTIONS)
  51. #define PROTOBUF_USE_EXCEPTIONS 1
  52. #else
  53. #define PROTOBUF_USE_EXCEPTIONS 0
  54. #endif
  55. #endif
  56. #if PROTOBUF_USE_EXCEPTIONS
  57. #include <exception>
  58. #endif
  59. #if defined(_WIN32) && defined(GetMessage)
  60. // Allow GetMessage to be used as a valid method name in protobuf classes.
  61. // windows.h defines GetMessage() as a macro. Let's re-define it as an inline
  62. // function. The inline function should be equivalent for C++ users.
  63. inline BOOL GetMessage_Win32(
  64. LPMSG lpMsg, HWND hWnd,
  65. UINT wMsgFilterMin, UINT wMsgFilterMax) {
  66. return GetMessage(lpMsg, hWnd, wMsgFilterMin, wMsgFilterMax);
  67. }
  68. #undef GetMessage
  69. inline BOOL GetMessage(
  70. LPMSG lpMsg, HWND hWnd,
  71. UINT wMsgFilterMin, UINT wMsgFilterMax) {
  72. return GetMessage_Win32(lpMsg, hWnd, wMsgFilterMin, wMsgFilterMax);
  73. }
  74. #endif
  75. namespace std {}
  76. namespace google {
  77. namespace protobuf {
  78. #undef GOOGLE_DISALLOW_EVIL_CONSTRUCTORS
  79. #define GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
  80. TypeName(const TypeName&); \
  81. void operator=(const TypeName&)
  82. #if defined(_MSC_VER) && defined(PROTOBUF_USE_DLLS)
  83. #ifdef LIBPROTOBUF_EXPORTS
  84. #define LIBPROTOBUF_EXPORT __declspec(dllexport)
  85. #else
  86. #define LIBPROTOBUF_EXPORT __declspec(dllimport)
  87. #endif
  88. #ifdef LIBPROTOC_EXPORTS
  89. #define LIBPROTOC_EXPORT __declspec(dllexport)
  90. #else
  91. #define LIBPROTOC_EXPORT __declspec(dllimport)
  92. #endif
  93. #else
  94. #define LIBPROTOBUF_EXPORT
  95. #define LIBPROTOC_EXPORT
  96. #endif
  97. namespace internal {
  98. // Some of these constants are macros rather than const ints so that they can
  99. // be used in #if directives.
  100. // The current version, represented as a single integer to make comparison
  101. // easier: major * 10^6 + minor * 10^3 + micro
  102. #define GOOGLE_PROTOBUF_VERSION 2006001
  103. // The minimum library version which works with the current version of the
  104. // headers.
  105. #define GOOGLE_PROTOBUF_MIN_LIBRARY_VERSION 2006000
  106. // The minimum header version which works with the current version of
  107. // the library. This constant should only be used by protoc's C++ code
  108. // generator.
  109. static const int kMinHeaderVersionForLibrary = 2006000;
  110. // The minimum protoc version which works with the current version of the
  111. // headers.
  112. #define GOOGLE_PROTOBUF_MIN_PROTOC_VERSION 2006000
  113. // The minimum header version which works with the current version of
  114. // protoc. This constant should only be used in VerifyVersion().
  115. static const int kMinHeaderVersionForProtoc = 2006000;
  116. // Verifies that the headers and libraries are compatible. Use the macro
  117. // below to call this.
  118. void LIBPROTOBUF_EXPORT VerifyVersion(int headerVersion, int minLibraryVersion,
  119. const char* filename);
  120. // Converts a numeric version number to a string.
  121. std::string LIBPROTOBUF_EXPORT VersionString(int version);
  122. } // namespace internal
  123. // Place this macro in your main() function (or somewhere before you attempt
  124. // to use the protobuf library) to verify that the version you link against
  125. // matches the headers you compiled against. If a version mismatch is
  126. // detected, the process will abort.
  127. #define GOOGLE_PROTOBUF_VERIFY_VERSION \
  128. ::google::protobuf::internal::VerifyVersion( \
  129. GOOGLE_PROTOBUF_VERSION, GOOGLE_PROTOBUF_MIN_LIBRARY_VERSION, \
  130. __FILE__)
  131. // ===================================================================
  132. // from google3/base/port.h
  133. typedef unsigned int uint;
  134. #ifdef _MSC_VER
  135. typedef __int8 int8;
  136. typedef __int16 int16;
  137. typedef __int32 int32;
  138. typedef __int64 int64;
  139. typedef unsigned __int8 uint8;
  140. typedef unsigned __int16 uint16;
  141. typedef unsigned __int32 uint32;
  142. typedef unsigned __int64 uint64;
  143. #else
  144. typedef int8_t int8;
  145. typedef int16_t int16;
  146. typedef int32_t int32;
  147. typedef int64_t int64;
  148. typedef uint8_t uint8;
  149. typedef uint16_t uint16;
  150. typedef uint32_t uint32;
  151. typedef uint64_t uint64;
  152. #endif
  153. // long long macros to be used because gcc and vc++ use different suffixes,
  154. // and different size specifiers in format strings
  155. #undef GOOGLE_LONGLONG
  156. #undef GOOGLE_ULONGLONG
  157. #undef GOOGLE_LL_FORMAT
  158. #ifdef _MSC_VER
  159. #define GOOGLE_LONGLONG(x) x##I64
  160. #define GOOGLE_ULONGLONG(x) x##UI64
  161. #define GOOGLE_LL_FORMAT "I64" // As in printf("%I64d", ...)
  162. #else
  163. #define GOOGLE_LONGLONG(x) x##LL
  164. #define GOOGLE_ULONGLONG(x) x##ULL
  165. #define GOOGLE_LL_FORMAT "ll" // As in "%lld". Note that "q" is poor form also.
  166. #endif
  167. static const int32 kint32max = 0x7FFFFFFF;
  168. static const int32 kint32min = -kint32max - 1;
  169. static const int64 kint64max = GOOGLE_LONGLONG(0x7FFFFFFFFFFFFFFF);
  170. static const int64 kint64min = -kint64max - 1;
  171. static const uint32 kuint32max = 0xFFFFFFFFu;
  172. static const uint64 kuint64max = GOOGLE_ULONGLONG(0xFFFFFFFFFFFFFFFF);
  173. // -------------------------------------------------------------------
  174. // Annotations: Some parts of the code have been annotated in ways that might
  175. // be useful to some compilers or tools, but are not supported universally.
  176. // You can #define these annotations yourself if the default implementation
  177. // is not right for you.
  178. #ifndef GOOGLE_ATTRIBUTE_ALWAYS_INLINE
  179. #if defined(__GNUC__) && (__GNUC__ > 3 ||(__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
  180. // For functions we want to force inline.
  181. // Introduced in gcc 3.1.
  182. #define GOOGLE_ATTRIBUTE_ALWAYS_INLINE __attribute__ ((always_inline))
  183. #else
  184. // Other compilers will have to figure it out for themselves.
  185. #define GOOGLE_ATTRIBUTE_ALWAYS_INLINE
  186. #endif
  187. #endif
  188. #ifndef GOOGLE_ATTRIBUTE_DEPRECATED
  189. #ifdef __GNUC__
  190. // If the method/variable/type is used anywhere, produce a warning.
  191. #define GOOGLE_ATTRIBUTE_DEPRECATED __attribute__((deprecated))
  192. #else
  193. #define GOOGLE_ATTRIBUTE_DEPRECATED
  194. #endif
  195. #endif
  196. #ifndef GOOGLE_PREDICT_TRUE
  197. #ifdef __GNUC__
  198. // Provided at least since GCC 3.0.
  199. #define GOOGLE_PREDICT_TRUE(x) (__builtin_expect(!!(x), 1))
  200. #else
  201. #define GOOGLE_PREDICT_TRUE
  202. #endif
  203. #endif
  204. // Delimits a block of code which may write to memory which is simultaneously
  205. // written by other threads, but which has been determined to be thread-safe
  206. // (e.g. because it is an idempotent write).
  207. #ifndef GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN
  208. #define GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN()
  209. #endif
  210. #ifndef GOOGLE_SAFE_CONCURRENT_WRITES_END
  211. #define GOOGLE_SAFE_CONCURRENT_WRITES_END()
  212. #endif
  213. // ===================================================================
  214. // from google3/base/basictypes.h
  215. // The GOOGLE_ARRAYSIZE(arr) macro returns the # of elements in an array arr.
  216. // The expression is a compile-time constant, and therefore can be
  217. // used in defining new arrays, for example.
  218. //
  219. // GOOGLE_ARRAYSIZE catches a few type errors. If you see a compiler error
  220. //
  221. // "warning: division by zero in ..."
  222. //
  223. // when using GOOGLE_ARRAYSIZE, you are (wrongfully) giving it a pointer.
  224. // You should only use GOOGLE_ARRAYSIZE on statically allocated arrays.
  225. //
  226. // The following comments are on the implementation details, and can
  227. // be ignored by the users.
  228. //
  229. // ARRAYSIZE(arr) works by inspecting sizeof(arr) (the # of bytes in
  230. // the array) and sizeof(*(arr)) (the # of bytes in one array
  231. // element). If the former is divisible by the latter, perhaps arr is
  232. // indeed an array, in which case the division result is the # of
  233. // elements in the array. Otherwise, arr cannot possibly be an array,
  234. // and we generate a compiler error to prevent the code from
  235. // compiling.
  236. //
  237. // Since the size of bool is implementation-defined, we need to cast
  238. // !(sizeof(a) & sizeof(*(a))) to size_t in order to ensure the final
  239. // result has type size_t.
  240. //
  241. // This macro is not perfect as it wrongfully accepts certain
  242. // pointers, namely where the pointer size is divisible by the pointee
  243. // size. Since all our code has to go through a 32-bit compiler,
  244. // where a pointer is 4 bytes, this means all pointers to a type whose
  245. // size is 3 or greater than 4 will be (righteously) rejected.
  246. //
  247. // Kudos to Jorg Brown for this simple and elegant implementation.
  248. #undef GOOGLE_ARRAYSIZE
  249. #define GOOGLE_ARRAYSIZE(a) \
  250. ((sizeof(a) / sizeof(*(a))) / \
  251. static_cast<size_t>(!(sizeof(a) % sizeof(*(a)))))
  252. namespace internal {
  253. // Use implicit_cast as a safe version of static_cast or const_cast
  254. // for upcasting in the type hierarchy (i.e. casting a pointer to Foo
  255. // to a pointer to SuperclassOfFoo or casting a pointer to Foo to
  256. // a const pointer to Foo).
  257. // When you use implicit_cast, the compiler checks that the cast is safe.
  258. // Such explicit implicit_casts are necessary in surprisingly many
  259. // situations where C++ demands an exact type match instead of an
  260. // argument type convertable to a target type.
  261. //
  262. // The From type can be inferred, so the preferred syntax for using
  263. // implicit_cast is the same as for static_cast etc.:
  264. //
  265. // implicit_cast<ToType>(expr)
  266. //
  267. // implicit_cast would have been part of the C++ standard library,
  268. // but the proposal was submitted too late. It will probably make
  269. // its way into the language in the future.
  270. template<typename To, typename From>
  271. inline To implicit_cast(From const &f) {
  272. return f;
  273. }
  274. // When you upcast (that is, cast a pointer from type Foo to type
  275. // SuperclassOfFoo), it's fine to use implicit_cast<>, since upcasts
  276. // always succeed. When you downcast (that is, cast a pointer from
  277. // type Foo to type SubclassOfFoo), static_cast<> isn't safe, because
  278. // how do you know the pointer is really of type SubclassOfFoo? It
  279. // could be a bare Foo, or of type DifferentSubclassOfFoo. Thus,
  280. // when you downcast, you should use this macro. In debug mode, we
  281. // use dynamic_cast<> to double-check the downcast is legal (we die
  282. // if it's not). In normal mode, we do the efficient static_cast<>
  283. // instead. Thus, it's important to test in debug mode to make sure
  284. // the cast is legal!
  285. // This is the only place in the code we should use dynamic_cast<>.
  286. // In particular, you SHOULDN'T be using dynamic_cast<> in order to
  287. // do RTTI (eg code like this:
  288. // if (dynamic_cast<Subclass1>(foo)) HandleASubclass1Object(foo);
  289. // if (dynamic_cast<Subclass2>(foo)) HandleASubclass2Object(foo);
  290. // You should design the code some other way not to need this.
  291. template<typename To, typename From> // use like this: down_cast<T*>(foo);
  292. inline To down_cast(From* f) { // so we only accept pointers
  293. // Ensures that To is a sub-type of From *. This test is here only
  294. // for compile-time type checking, and has no overhead in an
  295. // optimized build at run-time, as it will be optimized away
  296. // completely.
  297. if (false) {
  298. implicit_cast<From*, To>(0);
  299. }
  300. #if !defined(NDEBUG) && !defined(GOOGLE_PROTOBUF_NO_RTTI)
  301. assert(f == NULL || dynamic_cast<To>(f) != NULL); // RTTI: debug mode only!
  302. #endif
  303. return static_cast<To>(f);
  304. }
  305. } // namespace internal
  306. // We made these internal so that they would show up as such in the docs,
  307. // but we don't want to stick "internal::" in front of them everywhere.
  308. using internal::implicit_cast;
  309. using internal::down_cast;
  310. // The COMPILE_ASSERT macro can be used to verify that a compile time
  311. // expression is true. For example, you could use it to verify the
  312. // size of a static array:
  313. //
  314. // COMPILE_ASSERT(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES,
  315. // content_type_names_incorrect_size);
  316. //
  317. // or to make sure a struct is smaller than a certain size:
  318. //
  319. // COMPILE_ASSERT(sizeof(foo) < 128, foo_too_large);
  320. //
  321. // The second argument to the macro is the name of the variable. If
  322. // the expression is false, most compilers will issue a warning/error
  323. // containing the name of the variable.
  324. namespace internal {
  325. template <bool>
  326. struct CompileAssert {
  327. };
  328. } // namespace internal
  329. #undef GOOGLE_COMPILE_ASSERT
  330. #define GOOGLE_COMPILE_ASSERT(expr, msg) \
  331. typedef ::google::protobuf::internal::CompileAssert<(bool(expr))> \
  332. msg[bool(expr) ? 1 : -1]
  333. // Implementation details of COMPILE_ASSERT:
  334. //
  335. // - COMPILE_ASSERT works by defining an array type that has -1
  336. // elements (and thus is invalid) when the expression is false.
  337. //
  338. // - The simpler definition
  339. //
  340. // #define COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]
  341. //
  342. // does not work, as gcc supports variable-length arrays whose sizes
  343. // are determined at run-time (this is gcc's extension and not part
  344. // of the C++ standard). As a result, gcc fails to reject the
  345. // following code with the simple definition:
  346. //
  347. // int foo;
  348. // COMPILE_ASSERT(foo, msg); // not supposed to compile as foo is
  349. // // not a compile-time constant.
  350. //
  351. // - By using the type CompileAssert<(bool(expr))>, we ensures that
  352. // expr is a compile-time constant. (Template arguments must be
  353. // determined at compile-time.)
  354. //
  355. // - The outter parentheses in CompileAssert<(bool(expr))> are necessary
  356. // to work around a bug in gcc 3.4.4 and 4.0.1. If we had written
  357. //
  358. // CompileAssert<bool(expr)>
  359. //
  360. // instead, these compilers will refuse to compile
  361. //
  362. // COMPILE_ASSERT(5 > 0, some_message);
  363. //
  364. // (They seem to think the ">" in "5 > 0" marks the end of the
  365. // template argument list.)
  366. //
  367. // - The array size is (bool(expr) ? 1 : -1), instead of simply
  368. //
  369. // ((expr) ? 1 : -1).
  370. //
  371. // This is to avoid running into a bug in MS VC 7.1, which
  372. // causes ((0.0) ? 1 : -1) to incorrectly evaluate to 1.
  373. // ===================================================================
  374. // from google3/base/scoped_ptr.h
  375. namespace internal {
  376. // This is an implementation designed to match the anticipated future TR2
  377. // implementation of the scoped_ptr class, and its closely-related brethren,
  378. // scoped_array, scoped_ptr_malloc, and make_scoped_ptr.
  379. template <class C> class scoped_ptr;
  380. template <class C> class scoped_array;
  381. // A scoped_ptr<T> is like a T*, except that the destructor of scoped_ptr<T>
  382. // automatically deletes the pointer it holds (if any).
  383. // That is, scoped_ptr<T> owns the T object that it points to.
  384. // Like a T*, a scoped_ptr<T> may hold either NULL or a pointer to a T object.
  385. //
  386. // The size of a scoped_ptr is small:
  387. // sizeof(scoped_ptr<C>) == sizeof(C*)
  388. template <class C>
  389. class scoped_ptr {
  390. public:
  391. // The element type
  392. typedef C element_type;
  393. // Constructor. Defaults to intializing with NULL.
  394. // There is no way to create an uninitialized scoped_ptr.
  395. // The input parameter must be allocated with new.
  396. explicit scoped_ptr(C* p = NULL) : ptr_(p) { }
  397. // Destructor. If there is a C object, delete it.
  398. // We don't need to test ptr_ == NULL because C++ does that for us.
  399. ~scoped_ptr() {
  400. enum { type_must_be_complete = sizeof(C) };
  401. delete ptr_;
  402. }
  403. // Reset. Deletes the current owned object, if any.
  404. // Then takes ownership of a new object, if given.
  405. // this->reset(this->get()) works.
  406. void reset(C* p = NULL) {
  407. if (p != ptr_) {
  408. enum { type_must_be_complete = sizeof(C) };
  409. delete ptr_;
  410. ptr_ = p;
  411. }
  412. }
  413. // Accessors to get the owned object.
  414. // operator* and operator-> will assert() if there is no current object.
  415. C& operator*() const {
  416. assert(ptr_ != NULL);
  417. return *ptr_;
  418. }
  419. C* operator->() const {
  420. assert(ptr_ != NULL);
  421. return ptr_;
  422. }
  423. C* get() const { return ptr_; }
  424. // Comparison operators.
  425. // These return whether two scoped_ptr refer to the same object, not just to
  426. // two different but equal objects.
  427. bool operator==(C* p) const { return ptr_ == p; }
  428. bool operator!=(C* p) const { return ptr_ != p; }
  429. // Swap two scoped pointers.
  430. void swap(scoped_ptr& p2) {
  431. C* tmp = ptr_;
  432. ptr_ = p2.ptr_;
  433. p2.ptr_ = tmp;
  434. }
  435. // Release a pointer.
  436. // The return value is the current pointer held by this object.
  437. // If this object holds a NULL pointer, the return value is NULL.
  438. // After this operation, this object will hold a NULL pointer,
  439. // and will not own the object any more.
  440. C* release() {
  441. C* retVal = ptr_;
  442. ptr_ = NULL;
  443. return retVal;
  444. }
  445. private:
  446. C* ptr_;
  447. // Forbid comparison of scoped_ptr types. If C2 != C, it totally doesn't
  448. // make sense, and if C2 == C, it still doesn't make sense because you should
  449. // never have the same object owned by two different scoped_ptrs.
  450. template <class C2> bool operator==(scoped_ptr<C2> const& p2) const;
  451. template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const;
  452. // Disallow evil constructors
  453. scoped_ptr(const scoped_ptr&);
  454. void operator=(const scoped_ptr&);
  455. };
  456. // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate
  457. // with new [] and the destructor deletes objects with delete [].
  458. //
  459. // As with scoped_ptr<C>, a scoped_array<C> either points to an object
  460. // or is NULL. A scoped_array<C> owns the object that it points to.
  461. //
  462. // Size: sizeof(scoped_array<C>) == sizeof(C*)
  463. template <class C>
  464. class scoped_array {
  465. public:
  466. // The element type
  467. typedef C element_type;
  468. // Constructor. Defaults to intializing with NULL.
  469. // There is no way to create an uninitialized scoped_array.
  470. // The input parameter must be allocated with new [].
  471. explicit scoped_array(C* p = NULL) : array_(p) { }
  472. // Destructor. If there is a C object, delete it.
  473. // We don't need to test ptr_ == NULL because C++ does that for us.
  474. ~scoped_array() {
  475. enum { type_must_be_complete = sizeof(C) };
  476. delete[] array_;
  477. }
  478. // Reset. Deletes the current owned object, if any.
  479. // Then takes ownership of a new object, if given.
  480. // this->reset(this->get()) works.
  481. void reset(C* p = NULL) {
  482. if (p != array_) {
  483. enum { type_must_be_complete = sizeof(C) };
  484. delete[] array_;
  485. array_ = p;
  486. }
  487. }
  488. // Get one element of the current object.
  489. // Will assert() if there is no current object, or index i is negative.
  490. C& operator[](std::ptrdiff_t i) const {
  491. assert(i >= 0);
  492. assert(array_ != NULL);
  493. return array_[i];
  494. }
  495. // Get a pointer to the zeroth element of the current object.
  496. // If there is no current object, return NULL.
  497. C* get() const {
  498. return array_;
  499. }
  500. // Comparison operators.
  501. // These return whether two scoped_array refer to the same object, not just to
  502. // two different but equal objects.
  503. bool operator==(C* p) const { return array_ == p; }
  504. bool operator!=(C* p) const { return array_ != p; }
  505. // Swap two scoped arrays.
  506. void swap(scoped_array& p2) {
  507. C* tmp = array_;
  508. array_ = p2.array_;
  509. p2.array_ = tmp;
  510. }
  511. // Release an array.
  512. // The return value is the current pointer held by this object.
  513. // If this object holds a NULL pointer, the return value is NULL.
  514. // After this operation, this object will hold a NULL pointer,
  515. // and will not own the object any more.
  516. C* release() {
  517. C* retVal = array_;
  518. array_ = NULL;
  519. return retVal;
  520. }
  521. private:
  522. C* array_;
  523. // Forbid comparison of different scoped_array types.
  524. template <class C2> bool operator==(scoped_array<C2> const& p2) const;
  525. template <class C2> bool operator!=(scoped_array<C2> const& p2) const;
  526. // Disallow evil constructors
  527. scoped_array(const scoped_array&);
  528. void operator=(const scoped_array&);
  529. };
  530. } // namespace internal
  531. // We made these internal so that they would show up as such in the docs,
  532. // but we don't want to stick "internal::" in front of them everywhere.
  533. using internal::scoped_ptr;
  534. using internal::scoped_array;
  535. // ===================================================================
  536. // emulates google3/base/logging.h
  537. enum LogLevel {
  538. LOGLEVEL_INFO, // Informational. This is never actually used by
  539. // libprotobuf.
  540. LOGLEVEL_WARNING, // Warns about issues that, although not technically a
  541. // problem now, could cause problems in the future. For
  542. // example, a // warning will be printed when parsing a
  543. // message that is near the message size limit.
  544. LOGLEVEL_ERROR, // An error occurred which should never happen during
  545. // normal use.
  546. LOGLEVEL_FATAL, // An error occurred from which the library cannot
  547. // recover. This usually indicates a programming error
  548. // in the code which calls the library, especially when
  549. // compiled in debug mode.
  550. #ifdef NDEBUG
  551. LOGLEVEL_DFATAL = LOGLEVEL_ERROR
  552. #else
  553. LOGLEVEL_DFATAL = LOGLEVEL_FATAL
  554. #endif
  555. };
  556. namespace internal {
  557. class LogFinisher;
  558. class LIBPROTOBUF_EXPORT LogMessage {
  559. public:
  560. LogMessage(LogLevel level, const char* filename, int line);
  561. ~LogMessage();
  562. LogMessage& operator<<(const std::string& value);
  563. LogMessage& operator<<(const char* value);
  564. LogMessage& operator<<(char value);
  565. LogMessage& operator<<(int value);
  566. LogMessage& operator<<(uint value);
  567. LogMessage& operator<<(long value);
  568. LogMessage& operator<<(unsigned long value);
  569. LogMessage& operator<<(double value);
  570. private:
  571. friend class LogFinisher;
  572. void Finish();
  573. LogLevel level_;
  574. const char* filename_;
  575. int line_;
  576. std::string message_;
  577. };
  578. // Used to make the entire "LOG(BLAH) << etc." expression have a void return
  579. // type and print a newline after each message.
  580. class LIBPROTOBUF_EXPORT LogFinisher {
  581. public:
  582. void operator=(LogMessage& other);
  583. };
  584. } // namespace internal
  585. // Undef everything in case we're being mixed with some other Google library
  586. // which already defined them itself. Presumably all Google libraries will
  587. // support the same syntax for these so it should not be a big deal if they
  588. // end up using our definitions instead.
  589. #undef GOOGLE_LOG
  590. #undef GOOGLE_LOG_IF
  591. #undef GOOGLE_CHECK
  592. #undef GOOGLE_CHECK_OK
  593. #undef GOOGLE_CHECK_EQ
  594. #undef GOOGLE_CHECK_NE
  595. #undef GOOGLE_CHECK_LT
  596. #undef GOOGLE_CHECK_LE
  597. #undef GOOGLE_CHECK_GT
  598. #undef GOOGLE_CHECK_GE
  599. #undef GOOGLE_CHECK_NOTNULL
  600. #undef GOOGLE_DLOG
  601. #undef GOOGLE_DCHECK
  602. #undef GOOGLE_DCHECK_EQ
  603. #undef GOOGLE_DCHECK_NE
  604. #undef GOOGLE_DCHECK_LT
  605. #undef GOOGLE_DCHECK_LE
  606. #undef GOOGLE_DCHECK_GT
  607. #undef GOOGLE_DCHECK_GE
  608. #define GOOGLE_LOG(LEVEL) \
  609. ::google::protobuf::internal::LogFinisher() = \
  610. ::google::protobuf::internal::LogMessage( \
  611. ::google::protobuf::LOGLEVEL_##LEVEL, __FILE__, __LINE__)
  612. #define GOOGLE_LOG_IF(LEVEL, CONDITION) \
  613. !(CONDITION) ? (void)0 : GOOGLE_LOG(LEVEL)
  614. #define GOOGLE_CHECK(EXPRESSION) \
  615. GOOGLE_LOG_IF(FATAL, !(EXPRESSION)) << "CHECK failed: " #EXPRESSION ": "
  616. #define GOOGLE_CHECK_OK(A) GOOGLE_CHECK(A)
  617. #define GOOGLE_CHECK_EQ(A, B) GOOGLE_CHECK((A) == (B))
  618. #define GOOGLE_CHECK_NE(A, B) GOOGLE_CHECK((A) != (B))
  619. #define GOOGLE_CHECK_LT(A, B) GOOGLE_CHECK((A) < (B))
  620. #define GOOGLE_CHECK_LE(A, B) GOOGLE_CHECK((A) <= (B))
  621. #define GOOGLE_CHECK_GT(A, B) GOOGLE_CHECK((A) > (B))
  622. #define GOOGLE_CHECK_GE(A, B) GOOGLE_CHECK((A) >= (B))
  623. namespace internal {
  624. template<typename T>
  625. T* CheckNotNull(const char* /* file */, int /* line */,
  626. const char* name, T* val) {
  627. if (val == NULL) {
  628. GOOGLE_LOG(FATAL) << name;
  629. }
  630. return val;
  631. }
  632. } // namespace internal
  633. #define GOOGLE_CHECK_NOTNULL(A) \
  634. internal::CheckNotNull(__FILE__, __LINE__, "'" #A "' must not be NULL", (A))
  635. #ifdef NDEBUG
  636. #define GOOGLE_DLOG GOOGLE_LOG_IF(INFO, false)
  637. #define GOOGLE_DCHECK(EXPRESSION) while(false) GOOGLE_CHECK(EXPRESSION)
  638. #define GOOGLE_DCHECK_EQ(A, B) GOOGLE_DCHECK((A) == (B))
  639. #define GOOGLE_DCHECK_NE(A, B) GOOGLE_DCHECK((A) != (B))
  640. #define GOOGLE_DCHECK_LT(A, B) GOOGLE_DCHECK((A) < (B))
  641. #define GOOGLE_DCHECK_LE(A, B) GOOGLE_DCHECK((A) <= (B))
  642. #define GOOGLE_DCHECK_GT(A, B) GOOGLE_DCHECK((A) > (B))
  643. #define GOOGLE_DCHECK_GE(A, B) GOOGLE_DCHECK((A) >= (B))
  644. #else // NDEBUG
  645. #define GOOGLE_DLOG GOOGLE_LOG
  646. #define GOOGLE_DCHECK GOOGLE_CHECK
  647. #define GOOGLE_DCHECK_EQ GOOGLE_CHECK_EQ
  648. #define GOOGLE_DCHECK_NE GOOGLE_CHECK_NE
  649. #define GOOGLE_DCHECK_LT GOOGLE_CHECK_LT
  650. #define GOOGLE_DCHECK_LE GOOGLE_CHECK_LE
  651. #define GOOGLE_DCHECK_GT GOOGLE_CHECK_GT
  652. #define GOOGLE_DCHECK_GE GOOGLE_CHECK_GE
  653. #endif // !NDEBUG
  654. typedef void LogHandler(LogLevel level, const char* filename, int line,
  655. const std::string& message);
  656. // The protobuf library sometimes writes warning and error messages to
  657. // stderr. These messages are primarily useful for developers, but may
  658. // also help end users figure out a problem. If you would prefer that
  659. // these messages be sent somewhere other than stderr, call SetLogHandler()
  660. // to set your own handler. This returns the old handler. Set the handler
  661. // to NULL to ignore log messages (but see also LogSilencer, below).
  662. //
  663. // Obviously, SetLogHandler is not thread-safe. You should only call it
  664. // at initialization time, and probably not from library code. If you
  665. // simply want to suppress log messages temporarily (e.g. because you
  666. // have some code that tends to trigger them frequently and you know
  667. // the warnings are not important to you), use the LogSilencer class
  668. // below.
  669. LIBPROTOBUF_EXPORT LogHandler* SetLogHandler(LogHandler* new_func);
  670. // Create a LogSilencer if you want to temporarily suppress all log
  671. // messages. As long as any LogSilencer objects exist, non-fatal
  672. // log messages will be discarded (the current LogHandler will *not*
  673. // be called). Constructing a LogSilencer is thread-safe. You may
  674. // accidentally suppress log messages occurring in another thread, but
  675. // since messages are generally for debugging purposes only, this isn't
  676. // a big deal. If you want to intercept log messages, use SetLogHandler().
  677. class LIBPROTOBUF_EXPORT LogSilencer {
  678. public:
  679. LogSilencer();
  680. ~LogSilencer();
  681. };
  682. // ===================================================================
  683. // emulates google3/base/callback.h
  684. // Abstract interface for a callback. When calling an RPC, you must provide
  685. // a Closure to call when the procedure completes. See the Service interface
  686. // in service.h.
  687. //
  688. // To automatically construct a Closure which calls a particular function or
  689. // method with a particular set of parameters, use the NewCallback() function.
  690. // Example:
  691. // void FooDone(const FooResponse* response) {
  692. // ...
  693. // }
  694. //
  695. // void CallFoo() {
  696. // ...
  697. // // When done, call FooDone() and pass it a pointer to the response.
  698. // Closure* callback = NewCallback(&FooDone, response);
  699. // // Make the call.
  700. // service->Foo(controller, request, response, callback);
  701. // }
  702. //
  703. // Example that calls a method:
  704. // class Handler {
  705. // public:
  706. // ...
  707. //
  708. // void FooDone(const FooResponse* response) {
  709. // ...
  710. // }
  711. //
  712. // void CallFoo() {
  713. // ...
  714. // // When done, call FooDone() and pass it a pointer to the response.
  715. // Closure* callback = NewCallback(this, &Handler::FooDone, response);
  716. // // Make the call.
  717. // service->Foo(controller, request, response, callback);
  718. // }
  719. // };
  720. //
  721. // Currently NewCallback() supports binding zero, one, or two arguments.
  722. //
  723. // Callbacks created with NewCallback() automatically delete themselves when
  724. // executed. They should be used when a callback is to be called exactly
  725. // once (usually the case with RPC callbacks). If a callback may be called
  726. // a different number of times (including zero), create it with
  727. // NewPermanentCallback() instead. You are then responsible for deleting the
  728. // callback (using the "delete" keyword as normal).
  729. //
  730. // Note that NewCallback() is a bit touchy regarding argument types. Generally,
  731. // the values you provide for the parameter bindings must exactly match the
  732. // types accepted by the callback function. For example:
  733. // void Foo(string s);
  734. // NewCallback(&Foo, "foo"); // WON'T WORK: const char* != string
  735. // NewCallback(&Foo, string("foo")); // WORKS
  736. // Also note that the arguments cannot be references:
  737. // void Foo(const string& s);
  738. // string my_str;
  739. // NewCallback(&Foo, my_str); // WON'T WORK: Can't use referecnes.
  740. // However, correctly-typed pointers will work just fine.
  741. class LIBPROTOBUF_EXPORT Closure {
  742. public:
  743. Closure() {}
  744. virtual ~Closure();
  745. virtual void Run() = 0;
  746. private:
  747. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Closure);
  748. };
  749. namespace internal {
  750. class LIBPROTOBUF_EXPORT FunctionClosure0 : public Closure {
  751. public:
  752. typedef void (*FunctionType)();
  753. FunctionClosure0(FunctionType function, bool self_deleting)
  754. : function_(function), self_deleting_(self_deleting) {}
  755. ~FunctionClosure0();
  756. void Run() {
  757. bool needs_delete = self_deleting_; // read in case callback deletes
  758. function_();
  759. if (needs_delete) delete this;
  760. }
  761. private:
  762. FunctionType function_;
  763. bool self_deleting_;
  764. };
  765. template <typename Class>
  766. class MethodClosure0 : public Closure {
  767. public:
  768. typedef void (Class::*MethodType)();
  769. MethodClosure0(Class* object, MethodType method, bool self_deleting)
  770. : object_(object), method_(method), self_deleting_(self_deleting) {}
  771. ~MethodClosure0() {}
  772. void Run() {
  773. bool needs_delete = self_deleting_; // read in case callback deletes
  774. (object_->*method_)();
  775. if (needs_delete) delete this;
  776. }
  777. private:
  778. Class* object_;
  779. MethodType method_;
  780. bool self_deleting_;
  781. };
  782. template <typename Arg1>
  783. class FunctionClosure1 : public Closure {
  784. public:
  785. typedef void (*FunctionType)(Arg1 arg1);
  786. FunctionClosure1(FunctionType function, bool self_deleting,
  787. Arg1 arg1)
  788. : function_(function), self_deleting_(self_deleting),
  789. arg1_(arg1) {}
  790. ~FunctionClosure1() {}
  791. void Run() {
  792. bool needs_delete = self_deleting_; // read in case callback deletes
  793. function_(arg1_);
  794. if (needs_delete) delete this;
  795. }
  796. private:
  797. FunctionType function_;
  798. bool self_deleting_;
  799. Arg1 arg1_;
  800. };
  801. template <typename Class, typename Arg1>
  802. class MethodClosure1 : public Closure {
  803. public:
  804. typedef void (Class::*MethodType)(Arg1 arg1);
  805. MethodClosure1(Class* object, MethodType method, bool self_deleting,
  806. Arg1 arg1)
  807. : object_(object), method_(method), self_deleting_(self_deleting),
  808. arg1_(arg1) {}
  809. ~MethodClosure1() {}
  810. void Run() {
  811. bool needs_delete = self_deleting_; // read in case callback deletes
  812. (object_->*method_)(arg1_);
  813. if (needs_delete) delete this;
  814. }
  815. private:
  816. Class* object_;
  817. MethodType method_;
  818. bool self_deleting_;
  819. Arg1 arg1_;
  820. };
  821. template <typename Arg1, typename Arg2>
  822. class FunctionClosure2 : public Closure {
  823. public:
  824. typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
  825. FunctionClosure2(FunctionType function, bool self_deleting,
  826. Arg1 arg1, Arg2 arg2)
  827. : function_(function), self_deleting_(self_deleting),
  828. arg1_(arg1), arg2_(arg2) {}
  829. ~FunctionClosure2() {}
  830. void Run() {
  831. bool needs_delete = self_deleting_; // read in case callback deletes
  832. function_(arg1_, arg2_);
  833. if (needs_delete) delete this;
  834. }
  835. private:
  836. FunctionType function_;
  837. bool self_deleting_;
  838. Arg1 arg1_;
  839. Arg2 arg2_;
  840. };
  841. template <typename Class, typename Arg1, typename Arg2>
  842. class MethodClosure2 : public Closure {
  843. public:
  844. typedef void (Class::*MethodType)(Arg1 arg1, Arg2 arg2);
  845. MethodClosure2(Class* object, MethodType method, bool self_deleting,
  846. Arg1 arg1, Arg2 arg2)
  847. : object_(object), method_(method), self_deleting_(self_deleting),
  848. arg1_(arg1), arg2_(arg2) {}
  849. ~MethodClosure2() {}
  850. void Run() {
  851. bool needs_delete = self_deleting_; // read in case callback deletes
  852. (object_->*method_)(arg1_, arg2_);
  853. if (needs_delete) delete this;
  854. }
  855. private:
  856. Class* object_;
  857. MethodType method_;
  858. bool self_deleting_;
  859. Arg1 arg1_;
  860. Arg2 arg2_;
  861. };
  862. } // namespace internal
  863. // See Closure.
  864. inline Closure* NewCallback(void (*function)()) {
  865. return new internal::FunctionClosure0(function, true);
  866. }
  867. // See Closure.
  868. inline Closure* NewPermanentCallback(void (*function)()) {
  869. return new internal::FunctionClosure0(function, false);
  870. }
  871. // See Closure.
  872. template <typename Class>
  873. inline Closure* NewCallback(Class* object, void (Class::*method)()) {
  874. return new internal::MethodClosure0<Class>(object, method, true);
  875. }
  876. // See Closure.
  877. template <typename Class>
  878. inline Closure* NewPermanentCallback(Class* object, void (Class::*method)()) {
  879. return new internal::MethodClosure0<Class>(object, method, false);
  880. }
  881. // See Closure.
  882. template <typename Arg1>
  883. inline Closure* NewCallback(void (*function)(Arg1),
  884. Arg1 arg1) {
  885. return new internal::FunctionClosure1<Arg1>(function, true, arg1);
  886. }
  887. // See Closure.
  888. template <typename Arg1>
  889. inline Closure* NewPermanentCallback(void (*function)(Arg1),
  890. Arg1 arg1) {
  891. return new internal::FunctionClosure1<Arg1>(function, false, arg1);
  892. }
  893. // See Closure.
  894. template <typename Class, typename Arg1>
  895. inline Closure* NewCallback(Class* object, void (Class::*method)(Arg1),
  896. Arg1 arg1) {
  897. return new internal::MethodClosure1<Class, Arg1>(object, method, true, arg1);
  898. }
  899. // See Closure.
  900. template <typename Class, typename Arg1>
  901. inline Closure* NewPermanentCallback(Class* object, void (Class::*method)(Arg1),
  902. Arg1 arg1) {
  903. return new internal::MethodClosure1<Class, Arg1>(object, method, false, arg1);
  904. }
  905. // See Closure.
  906. template <typename Arg1, typename Arg2>
  907. inline Closure* NewCallback(void (*function)(Arg1, Arg2),
  908. Arg1 arg1, Arg2 arg2) {
  909. return new internal::FunctionClosure2<Arg1, Arg2>(
  910. function, true, arg1, arg2);
  911. }
  912. // See Closure.
  913. template <typename Arg1, typename Arg2>
  914. inline Closure* NewPermanentCallback(void (*function)(Arg1, Arg2),
  915. Arg1 arg1, Arg2 arg2) {
  916. return new internal::FunctionClosure2<Arg1, Arg2>(
  917. function, false, arg1, arg2);
  918. }
  919. // See Closure.
  920. template <typename Class, typename Arg1, typename Arg2>
  921. inline Closure* NewCallback(Class* object, void (Class::*method)(Arg1, Arg2),
  922. Arg1 arg1, Arg2 arg2) {
  923. return new internal::MethodClosure2<Class, Arg1, Arg2>(
  924. object, method, true, arg1, arg2);
  925. }
  926. // See Closure.
  927. template <typename Class, typename Arg1, typename Arg2>
  928. inline Closure* NewPermanentCallback(
  929. Class* object, void (Class::*method)(Arg1, Arg2),
  930. Arg1 arg1, Arg2 arg2) {
  931. return new internal::MethodClosure2<Class, Arg1, Arg2>(
  932. object, method, false, arg1, arg2);
  933. }
  934. // A function which does nothing. Useful for creating no-op callbacks, e.g.:
  935. // Closure* nothing = NewCallback(&DoNothing);
  936. void LIBPROTOBUF_EXPORT DoNothing();
  937. // ===================================================================
  938. // emulates google3/base/mutex.h
  939. namespace internal {
  940. // A Mutex is a non-reentrant (aka non-recursive) mutex. At most one thread T
  941. // may hold a mutex at a given time. If T attempts to Lock() the same Mutex
  942. // while holding it, T will deadlock.
  943. class LIBPROTOBUF_EXPORT Mutex {
  944. public:
  945. // Create a Mutex that is not held by anybody.
  946. Mutex();
  947. // Destructor
  948. ~Mutex();
  949. // Block if necessary until this Mutex is free, then acquire it exclusively.
  950. void Lock();
  951. // Release this Mutex. Caller must hold it exclusively.
  952. void Unlock();
  953. // Crash if this Mutex is not held exclusively by this thread.
  954. // May fail to crash when it should; will never crash when it should not.
  955. void AssertHeld();
  956. private:
  957. struct Internal;
  958. Internal* mInternal;
  959. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Mutex);
  960. };
  961. // MutexLock(mu) acquires mu when constructed and releases it when destroyed.
  962. class LIBPROTOBUF_EXPORT MutexLock {
  963. public:
  964. explicit MutexLock(Mutex *mu) : mu_(mu) { this->mu_->Lock(); }
  965. ~MutexLock() { this->mu_->Unlock(); }
  966. private:
  967. Mutex *const mu_;
  968. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(MutexLock);
  969. };
  970. // TODO(kenton): Implement these? Hard to implement portably.
  971. typedef MutexLock ReaderMutexLock;
  972. typedef MutexLock WriterMutexLock;
  973. // MutexLockMaybe is like MutexLock, but is a no-op when mu is NULL.
  974. class LIBPROTOBUF_EXPORT MutexLockMaybe {
  975. public:
  976. explicit MutexLockMaybe(Mutex *mu) :
  977. mu_(mu) { if (this->mu_ != NULL) { this->mu_->Lock(); } }
  978. ~MutexLockMaybe() { if (this->mu_ != NULL) { this->mu_->Unlock(); } }
  979. private:
  980. Mutex *const mu_;
  981. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(MutexLockMaybe);
  982. };
  983. } // namespace internal
  984. // We made these internal so that they would show up as such in the docs,
  985. // but we don't want to stick "internal::" in front of them everywhere.
  986. using internal::Mutex;
  987. using internal::MutexLock;
  988. using internal::ReaderMutexLock;
  989. using internal::WriterMutexLock;
  990. using internal::MutexLockMaybe;
  991. // ===================================================================
  992. // from google3/util/utf8/public/unilib.h
  993. namespace internal {
  994. // Checks if the buffer contains structurally-valid UTF-8. Implemented in
  995. // structurally_valid.cc.
  996. LIBPROTOBUF_EXPORT bool IsStructurallyValidUTF8(const char* buf, int len);
  997. } // namespace internal
  998. // ===================================================================
  999. // from google3/util/endian/endian.h
  1000. LIBPROTOBUF_EXPORT uint32 ghtonl(uint32 x);
  1001. // ===================================================================
  1002. // Shutdown support.
  1003. // Shut down the entire protocol buffers library, deleting all static-duration
  1004. // objects allocated by the library or by generated .pb.cc files.
  1005. //
  1006. // There are two reasons you might want to call this:
  1007. // * You use a draconian definition of "memory leak" in which you expect
  1008. // every single malloc() to have a corresponding free(), even for objects
  1009. // which live until program exit.
  1010. // * You are writing a dynamically-loaded library which needs to clean up
  1011. // after itself when the library is unloaded.
  1012. //
  1013. // It is safe to call this multiple times. However, it is not safe to use
  1014. // any other part of the protocol buffers library after
  1015. // ShutdownProtobufLibrary() has been called.
  1016. LIBPROTOBUF_EXPORT void ShutdownProtobufLibrary();
  1017. namespace internal {
  1018. // Register a function to be called when ShutdownProtocolBuffers() is called.
  1019. LIBPROTOBUF_EXPORT void OnShutdown(void (*func)());
  1020. } // namespace internal
  1021. #if PROTOBUF_USE_EXCEPTIONS
  1022. class FatalException : public std::exception {
  1023. public:
  1024. FatalException(const char* filename, int line, const std::string& message)
  1025. : filename_(filename), line_(line), message_(message) {}
  1026. virtual ~FatalException() throw();
  1027. virtual const char* what() const throw();
  1028. const char* filename() const { return filename_; }
  1029. int line() const { return line_; }
  1030. const std::string& message() const { return message_; }
  1031. private:
  1032. const char* filename_;
  1033. const int line_;
  1034. const std::string message_;
  1035. };
  1036. #endif
  1037. // This is at the end of the file instead of the beginning to work around a bug
  1038. // in some versions of MSVC.
  1039. using namespace std; // Don't do this at home, kids.
  1040. } // namespace protobuf
  1041. } // namespace google
  1042. #endif // GOOGLE_PROTOBUF_COMMON_H__