summaryrefslogtreecommitdiff
path: root/objectivec
AgeCommit message (Collapse)Author
2016-03-17Shrink ObjC overhead (generated size and some runtime sizes)Thomas Van Lenten
NOTE: This is a binary breaking change as structure sizes have changed size and/or order. - Drop capturing field options, no other options were captured and other mobile targeted languages don't try to capture this sort information (saved 8 bytes for every field defined (in static data and again in field descriptor instance size data). - No longer generate/compile in the messages/enums in descriptor.proto. If developers need it, they should generate it and compile it in. Reduced the overhead of the core library. - Compute the number of has_bits actually needs to avoid over reserving. - Let the boolean single fields store via a has_bit to avoid storage, makes the common cases of the instance size smaller. - Reorder some flags and down size the enums to contain the bits needed. - Reorder the items in the structures to manually ensure they are are packed better (especially when generating 64bit code - 8 bytes for every field, 16 bytes for every extension, instance sizes 8 bytes also). - Split off the structure initialization so when the default is zero, the generated static storage doesn't need to reserve the space. This is batched at the message level, so all the fields for the message have to have zero defaults to get the saves. By definition all proto3 syntax files fall into this case but it also saves space for the proto2 that use the standard defaults. (saves 8 bytes of static data for every field that had a zero default) - Don't track the enums defined by a message. Nothing in the runtime needs it and it was just generation and runtime overhead. (saves 8 bytes per enum) - Ensure EnumDescriptors are started up threadsafe in all cases. - Split some of the Descriptor initialization into multiple methods so the generated code isn't padded with lots of zero/nil args. - Change how oneof info is feed to the runtime enabling us to generate less static data (8 bytes saved per oneof for 64bit). - Change how enum value informat is capture to pack the data and only decode it if it ends up being needed. Avoids padding issues causing bloat of 64bit, and removes the needs for extra pointers in addition to the data (just the data and one pointer now).
2016-03-08Fix up handing of fields with leading names that should be all caps.Thomas Van Lenten
Add a compile test to confirm things are working as expected.
2016-03-07HeaderDoc support in the library and generated sourcesThomas Van Lenten
- Convert most of the core library headers over to HeaderDoc format. - Switch the generated comments over to HeaderDoc. - Create GPBCodedOutputStream_PackagePrivate and move some things into there that should be more internal.
2016-02-18Support ObjC Generic CollectionsThomas Van Lenten
- Extend GPB*ObjectDictionary to support generic syntax. - Update the generator to output generics so the enclosed type is exposed for compiler checks. - Use generics in a the public interfaces. - Update the generated sources that are checked in.
2016-02-16Bump up travis to Xcode 7.2Thomas Van Lenten
- Update simulator versions used. - Mark the iOS tests as flaky while trying to dig out the root cause.
2016-02-11Rewrap the lineDongjoon Hyun
2016-02-03Remove redundant `the` in comments.Dongjoon Hyun
2016-01-29Integrate from google internal.Jisi Liu
Java files are moved to un-do the hack in the prevous commit, which moved the java files to the original position for integration.
2016-01-12Merge pull request #1129 from dongjoon-hyun/fix_typos_in_README_and_CHANGESFeng Xiao
Fix typos in README.md/CHANGES.txt
2016-01-12Release the semaphore in dealloc, fixing leak.Thomas Van Lenten
2016-01-11Fix typos in README.md/CHANGES.txtDongjoon Hyun
2016-01-07Remove the stale reference to test no longer around, and keep the ↵Thomas Van Lenten
performance test limited to just performance tests.
2016-01-05Update objectivec/google/protobuf/Type.pbobjc.mThomas Van Lenten
commit e841bac4fcf47f809e089a70d5f84ac37b3883df seems to have updated the generated .pbobjc.h but not the .pbobjc.m to match.
2016-01-05Have the tests rely on the autocreator behaviors.Thomas Van Lenten
Incase developers look at the tests for examples, have them rely on the autocreators also.
2015-12-21Merge branch master into v3.0.0-beta-2Feng Xiao
2015-12-17Drop all use of OSSpinLockThomas Van Lenten
Apple engineers have pointed out that OSSpinLocks are vulnerable to live locking on iOS in cases of priority inversion: . http://mjtsai.com/blog/2015/12/16/osspinlock-is-unsafe/ . https://lists.swift.org/pipermail/swift-dev/Week-of-Mon-20151214/000372.html - Use a dispatch_semaphore_t within the extension registry. - Use a dispatch_semaphore_t for protecting autocreation within messages. - Drop the custom/internal GPBString class since we don't have really good numbers to judge the locking replacements and it isn't required. We can always bring it back with real data in the future.
2015-12-11Down-integrate from internal code base.Feng Xiao
2015-12-10Update the min toolchain for iOS/OS X to be Xcode 7Thomas Van Lenten
- Let Xcode update the projects, schemes, and info.plists. - Add workaround for shallow analyzer issues in current Xcode versions (deep analyze gets things correct). - Tweak the Swift based tests to avoid warnings from Xcode 7's XCTest using optionals for autoenclosure results. - No longer tag the ObjC iOS travis test as flaky, xctool seems to manage the simulator pretty well.
2015-12-08Use compiler provided static assert and avoid tripping unused-local-typedef ↵Thomas Van Lenten
warnings.
2015-12-07Enable CLANG_WARN_NULLABLE_TO_NONNULL_CONVERSION for the projects.Thomas Van Lenten
2015-12-02Tweak the error message as the generate is in the core binary these days.Thomas Van Lenten
2015-12-02Merge pull request #1020 from thomasvl/block_nilThomas Van Lenten
Check and throw errors for nil values/keys (like NSDictionary).
2015-12-02Check and throw errors for nil values/keys (like NSDictionary).Thomas Van Lenten
2015-12-02Ensure the conformance build of objc code is using the Mac OS X SDK andThomas Van Lenten
2015-11-24Update GPBProtocolBuffers.hOsman Cihangir
2015-11-23Set the stream limit to the length of the data.Thomas Van Lenten
- Mark all conformance tests as now passing.
2015-11-18Add support for the conformance test for objc when run on OS XThomas Van Lenten
2015-11-05Tweaks to the Mac build scriptThomas Van Lenten
- Support building with Xcode 6.4 or 7.x - Fix an error in usage info. - Add a flag to build the core parts of protobuf only.
2015-11-04Update the Mac build script to include the conformance testsThomas Van Lenten
- Kick off the conformance tests - Add missing ignore for something generated by a build on the conformance directory.
2015-10-05Merge remote-tracking branch 'origin/master' into fix-authorJisi Liu
2015-10-01Support enum forward decls in Objective C++Thomas Van Lenten
NS_ENUM changes defintion in Objective C++ based on the C++ spec being compiled with, special case the one situation where it wouldn't support doing a forward decl for the enum.
2015-09-29Cleanups for newer XcodesThomas Van Lenten
- Move up to 8.4 as the high simulator (assuming Xcode 6.4). - Add cast to NSMutableDictionary so clang and resolve the selector. - Add case for the newer static analyzer so it won't trigger a false warning. - Update the "dictionary" interface to use "object" naming. Xcode 7+ has gotten more strict on the use of nonnull/nullable; combining that with the generic collection support; and the "dictionary" classes we created now collide with what the generic KeyValueCoding in the system headers triggering warnings/errors. Fix this and hopefully all future issue by renaming the methods to use "object" for the classes that have data types as objects instead of PODs. Taking this renaming hit now while ObjC is still in beta because it is a breaking change for any existing code.
2015-08-26Fix bugs for objectivecTeBoring
2015-08-14Add support for a file listing expected package to objc prefixes for validation.Thomas Van Lenten
- Add a env var to pass a set of expected prefixes for validation. - Report warnings/errors based on the expected prefixes vs. the data in the files compiled. - Use some helpers from common directory.
2015-08-11Revert "Add packFrom, unpackTo and is in google.protobuf.Any."Thomas Van Lenten
This reverts commit 7366efd81e7f36108aa35e66fca61da8a65762c2. Still some discussion about the api to expose the helpers with.
2015-07-29Update GPBWellKnownTypes.mYue Zhang
fix an bug(forgive my english..)
2015-07-21Add packFrom, unpackTo and is in google.protobuf.Any.TeBoring
The previous two methods make it easy to transform between any and normal message. unPackeTo will throw error if the type url in any doesn't match the type of the message to be transformed to. is checks any's type url matches the give GPBMessage type.
2015-07-06Add Bazel target for protobuf ObjC runtimeJorge Canizales
Also add WKT headers to the umbrella file, and simplify Podspec with it. Plus some layout improvements to the BUILD file.
2015-06-16Add nonnil markup to ObjC library.Thomas Van Lenten
Add the clang annotations to the objc library and generated code to help with Swift bridging and compiler checks.
2015-06-10Update podspec for files that can build now, rename assets to not need @ in ↵Thomas Van Lenten
the name.
2015-06-08Beta quality drop of Objective C Support.Thomas Van Lenten
- Add more to the ObjC dir readme. - Merge the ExtensionField and ExtensionDescriptor to reduce overhead. - Fix an initialization race. - Clean up the Xcode schemes. - Remove the class/enum filter. - Remove some forced inline that were bloating things without proof of performance wins. - Rename some internal types to avoid conflicts with the well know types protos. - Drop the use of ApplyFunctions to the compiler/optimizer can do what it wants. - Better document some possible future improvements. - Add missing support for parsing repeated primitive fields in packed or unpacked forms. - Improve -hash. - Add *Count for repeated and map<> fields to avoid auto create when checking for them being set.
2015-05-26ObjC fixup for the branch.Thomas Van Lenten
- Shouldn't need SRCROOT in the project since Xcode should be setting the working directory to where the project lives. - Remove the packed/unpacked repeated enum field in the tests and update the code to handle the defaults. - Move up the ignore to cover .DS_Store files in src also. add starstar
2015-05-25Fix bugs in objective-c.Bo Yang
2015-05-22Objective C Second Alpha DropThomas Van Lenten
- Style fixups in the code. - map<> serialization fixes and more tests. - Autocreation of map<> fields (to match repeated fields). - @@protoc_insertion_point(global_scope|imports). - Fixup proto2 syntax extension support. - Move all startup code to +initialize so it happen on class usage and not app startup. - Have generated headers use forward declarations and move imports into generated code, reduces what is need at compile time to speed up compiled and avoid pointless rippling of rebuilds.
2015-05-19Getting the ObjC generator building on Windows.Thomas Van Lenten
Remove the ClassList support (maybe bring it back in the future). Trim the includes to hopefully get a working Window build. Add some more returns after switches for compilers that warn even when all values of the enum are handled. Use ghtonl instead of htonl. Change the use of [u]int(8,32)_t within the ObjC generator code to [u]int(8,32) to match the rest of the compiler. Add objective-c generator files to Visual Studio project.
2015-05-18Post csharp landing fixup.Thomas Van Lenten
Re-add the objc prefix that got removed by accident. Regenerate the generated descriptors (C++ and ObjC).
2015-05-06Alpha 1 drop of Google's Objective C plugin and runtime support for protobufs.Thomas Van Lenten