| OLD | NEW |
| 1 // Protocol Buffers - Google's data interchange format | 1 // Protocol Buffers - Google's data interchange format |
| 2 // Copyright 2008 Google Inc. All rights reserved. | 2 // Copyright 2008 Google Inc. All rights reserved. |
| 3 // https://developers.google.com/protocol-buffers/ | 3 // https://developers.google.com/protocol-buffers/ |
| 4 // | 4 // |
| 5 // Redistribution and use in source and binary forms, with or without | 5 // Redistribution and use in source and binary forms, with or without |
| 6 // modification, are permitted provided that the following conditions are | 6 // modification, are permitted provided that the following conditions are |
| 7 // met: | 7 // met: |
| 8 // | 8 // |
| 9 // * Redistributions of source code must retain the above copyright | 9 // * Redistributions of source code must retain the above copyright |
| 10 // notice, this list of conditions and the following disclaimer. | 10 // notice, this list of conditions and the following disclaimer. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 21 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 22 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 22 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 24 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 24 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 29 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 | 30 |
| 31 // The Objective C runtime has complete enough info that most protos don’t end | 31 /** |
| 32 // up using this, so leaving it on is no cost or very little cost. If you | 32 * The Objective C runtime has complete enough info that most protos don’t end |
| 33 // happen to see it causing bloat, this is the way to disable it. If you do | 33 * up using this, so leaving it on is no cost or very little cost. If you |
| 34 // need to disable it, try only disabling it for Release builds as having | 34 * happen to see it causing bloat, this is the way to disable it. If you do |
| 35 // full TextFormat can be useful for debugging. | 35 * need to disable it, try only disabling it for Release builds as having |
| 36 * full TextFormat can be useful for debugging. |
| 37 **/ |
| 36 #ifndef GPBOBJC_SKIP_MESSAGE_TEXTFORMAT_EXTRAS | 38 #ifndef GPBOBJC_SKIP_MESSAGE_TEXTFORMAT_EXTRAS |
| 37 #define GPBOBJC_SKIP_MESSAGE_TEXTFORMAT_EXTRAS 0 | 39 #define GPBOBJC_SKIP_MESSAGE_TEXTFORMAT_EXTRAS 0 |
| 38 #endif | 40 #endif |
| 39 | 41 |
| 40 // Used in the generated code to give sizes to enums. int32_t was chosen based | 42 // Used in the generated code to give sizes to enums. int32_t was chosen based |
| 41 // on the fact that Protocol Buffers enums are limited to this range. | 43 // on the fact that Protocol Buffers enums are limited to this range. |
| 42 #if !__has_feature(objc_fixed_enum) | 44 #if !__has_feature(objc_fixed_enum) |
| 43 #error All supported Xcode versions should support objc_fixed_enum. | 45 #error All supported Xcode versions should support objc_fixed_enum. |
| 44 #endif | 46 #endif |
| 47 |
| 45 // If the headers are imported into Objective-C++, we can run into an issue | 48 // If the headers are imported into Objective-C++, we can run into an issue |
| 46 // where the defintion of NS_ENUM (really CF_ENUM) changes based on the C++ | 49 // where the defintion of NS_ENUM (really CF_ENUM) changes based on the C++ |
| 47 // standard that is in effect. If it isn't C++11 or higher, the definition | 50 // standard that is in effect. If it isn't C++11 or higher, the definition |
| 48 // doesn't allow us to forward declare. We work around this one case by | 51 // doesn't allow us to forward declare. We work around this one case by |
| 49 // providing a local definition. The default case has to use NS_ENUM for the | 52 // providing a local definition. The default case has to use NS_ENUM for the |
| 50 // magic that is Swift bridging of enums. | 53 // magic that is Swift bridging of enums. |
| 51 #if (__cplusplus && __cplusplus < 201103L) | 54 #if (defined(__cplusplus) && __cplusplus && __cplusplus < 201103L) |
| 52 #define GPB_ENUM(X) enum X : int32_t X; enum X : int32_t | 55 #define GPB_ENUM(X) enum X : int32_t X; enum X : int32_t |
| 53 #else | 56 #else |
| 54 #define GPB_ENUM(X) NS_ENUM(int32_t, X) | 57 #define GPB_ENUM(X) NS_ENUM(int32_t, X) |
| 55 #endif | 58 #endif |
| 56 // GPB_ENUM_FWD_DECLARE is used for forward declaring enums, ex: | 59 |
| 57 // GPB_ENUM_FWD_DECLARE(Foo_Enum) | 60 /** |
| 58 // @property (nonatomic) Foo_Enum value; | 61 * GPB_ENUM_FWD_DECLARE is used for forward declaring enums, for example: |
| 62 * |
| 63 * ``` |
| 64 * GPB_ENUM_FWD_DECLARE(Foo_Enum) |
| 65 * @property (nonatomic) Foo_Enum value; |
| 66 * ``` |
| 67 **/ |
| 59 #define GPB_ENUM_FWD_DECLARE(X) enum X : int32_t | 68 #define GPB_ENUM_FWD_DECLARE(X) enum X : int32_t |
| 60 | 69 |
| 61 // Based upon CF_INLINE. Forces inlining in release. | 70 /** |
| 71 * Based upon CF_INLINE. Forces inlining in non DEBUG builds. |
| 72 **/ |
| 62 #if !defined(DEBUG) | 73 #if !defined(DEBUG) |
| 63 #define GPB_INLINE static __inline__ __attribute__((always_inline)) | 74 #define GPB_INLINE static __inline__ __attribute__((always_inline)) |
| 64 #else | 75 #else |
| 65 #define GPB_INLINE static __inline__ | 76 #define GPB_INLINE static __inline__ |
| 66 #endif | 77 #endif |
| 67 | 78 |
| 68 // For use in public headers that might need to deal with ARC. | 79 /** |
| 80 * For use in public headers that might need to deal with ARC. |
| 81 **/ |
| 69 #ifndef GPB_UNSAFE_UNRETAINED | 82 #ifndef GPB_UNSAFE_UNRETAINED |
| 70 #if __has_feature(objc_arc) | 83 #if __has_feature(objc_arc) |
| 71 #define GPB_UNSAFE_UNRETAINED __unsafe_unretained | 84 #define GPB_UNSAFE_UNRETAINED __unsafe_unretained |
| 72 #else | 85 #else |
| 73 #define GPB_UNSAFE_UNRETAINED | 86 #define GPB_UNSAFE_UNRETAINED |
| 74 #endif | 87 #endif |
| 75 #endif | 88 #endif |
| 76 | 89 |
| 77 // If property name starts with init we need to annotate it to get past ARC. | 90 // If property name starts with init we need to annotate it to get past ARC. |
| 78 // http://stackoverflow.com/questions/18723226/how-do-i-annotate-an-objective-c-
property-with-an-objc-method-family/18723227#18723227 | 91 // http://stackoverflow.com/questions/18723226/how-do-i-annotate-an-objective-c-
property-with-an-objc-method-family/18723227#18723227 |
| 92 // |
| 93 // Meant to be used internally by generated code. |
| 79 #define GPB_METHOD_FAMILY_NONE __attribute__((objc_method_family(none))) | 94 #define GPB_METHOD_FAMILY_NONE __attribute__((objc_method_family(none))) |
| 80 | 95 |
| 81 // The protoc-gen-objc version which works with the current version of the | 96 // ---------------------------------------------------------------------------- |
| 82 // generated Objective C sources. In general we don't want to change the | 97 // These version numbers are all internal to the ObjC Protobuf runtime; they |
| 83 // runtime interfaces (or this version) as it means everything has to be | 98 // are used to ensure compatibility between the generated sources and the |
| 84 // regenerated. | 99 // headers being compiled against and/or the version of sources being run |
| 100 // against. |
| 101 // |
| 102 // They are all #defines so the values are captured into every .o file they |
| 103 // are used in and to allow comparisons in the preprocessor. |
| 104 |
| 105 // Current library runtime version. |
| 106 // - Gets bumped when the runtime makes changes to the interfaces between the |
| 107 // generated code and runtime (things added/removed, etc). |
| 108 #define GOOGLE_PROTOBUF_OBJC_VERSION 30002 |
| 109 |
| 110 // Minimum runtime version supported for compiling/running against. |
| 111 // - Gets changed when support for the older generated code is dropped. |
| 112 #define GOOGLE_PROTOBUF_OBJC_MIN_SUPPORTED_VERSION 30001 |
| 113 |
| 114 |
| 115 // This is a legacy constant now frozen in time for old generated code. If |
| 116 // GOOGLE_PROTOBUF_OBJC_MIN_SUPPORTED_VERSION ever gets moved above 30001 then |
| 117 // this should also change to break code compiled with an old runtime that |
| 118 // can't be supported any more. |
| 85 #define GOOGLE_PROTOBUF_OBJC_GEN_VERSION 30001 | 119 #define GOOGLE_PROTOBUF_OBJC_GEN_VERSION 30001 |
| OLD | NEW |