aboutsummaryrefslogtreecommitdiffhomepage
path: root/objectivec
Commit message (Collapse)AuthorAge
* Proper checking of enum with non zero defaultGravatar Thomas Van Lenten2016-04-26
| | | | | | | | | proto2 syntax allows the first enum to have a non zero value. This means any field using that default has a non zero default without having an explicit default being set. So when deciding what runtime info is needed, don't rely on an explicit default, always check that the values aren't zero. Fixes https://github.com/google/protobuf/issues/1453
* ObjC support for failing the build in the generated WKTs are out of dateGravatar Thomas Van Lenten2016-04-20
| | | | | | | | - Always generated into a temp directory so we can see if things changed. - Add a flag to control exiting with error when stale vs updating. This should let the continuous builds error out when ObjC needs to have the checked in sources updated.
* Regenerate the WKT to pick up current changes to the proto files.Gravatar Thomas Van Lenten2016-04-19
|
* Fix comment typoGravatar Thomas Van Lenten2016-04-19
|
* Merge pull request #1391 from thomasvl/string_tweaksGravatar Thomas Van Lenten2016-04-06
|\ | | | | ObjC String followups: one test case only addition, behavior change for invalid UTF-8
* | Updating Xcode Settings to use iOS 9.3Gravatar Geoffrey Wiseman2016-04-06
| | | | | | | | Update the simulators used for some tests under Xcode 7.3 to be iOS 9.3.
| * Error during parsing for invalid UTF-8 instead of dropping dropping data.Gravatar Thomas Van Lenten2016-04-05
| | | | | | | | | | | | | | This seems to be some code evolution side effects. Back when there was a custom string class, we couldn't really error when we finally saw the string was bad so we had to return the empty string, but now that full validation is done up front, it can error out.
| * Add tests to ensure we read strings with BOMs so we don't forget about ↵Gravatar Thomas Van Lenten2016-04-05
|/ | | | lessons of the past.
* Add -position and -isAtEnd for use when manually parsing input streams.Gravatar Thomas Van Lenten2016-04-01
|
* The message was autoreleased, the -releases are an over release.Gravatar Thomas Van Lenten2016-03-24
|
* Only create the readonlySemaphore on demand.Gravatar Thomas Van Lenten2016-03-21
| | | | | | This will lower the amount of dispatch_semaphores created per Message when the full object tree isn't walked in a way that would require them to be created. Uses a dispatch_once_t for one time init of the dispatch_semaphore.
* Shrink ObjC overhead (generated size and some runtime sizes)Gravatar Thomas Van Lenten2016-03-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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).
* Fix up handing of fields with leading names that should be all caps.Gravatar Thomas Van Lenten2016-03-08
| | | | Add a compile test to confirm things are working as expected.
* HeaderDoc support in the library and generated sourcesGravatar Thomas Van Lenten2016-03-07
| | | | | | | - 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.
* Support ObjC Generic CollectionsGravatar Thomas Van Lenten2016-02-18
| | | | | | | - 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.
* Bump up travis to Xcode 7.2Gravatar Thomas Van Lenten2016-02-16
| | | | | - Update simulator versions used. - Mark the iOS tests as flaky while trying to dig out the root cause.
* Rewrap the lineGravatar Dongjoon Hyun2016-02-11
|
* Remove redundant `the` in comments.Gravatar Dongjoon Hyun2016-02-03
|
* Integrate from google internal.Gravatar Jisi Liu2016-01-29
| | | | | Java files are moved to un-do the hack in the prevous commit, which moved the java files to the original position for integration.
* Merge pull request #1129 from dongjoon-hyun/fix_typos_in_README_and_CHANGESGravatar Feng Xiao2016-01-12
|\ | | | | Fix typos in README.md/CHANGES.txt
* | Release the semaphore in dealloc, fixing leak.Gravatar Thomas Van Lenten2016-01-12
| |
| * Fix typos in README.md/CHANGES.txtGravatar Dongjoon Hyun2016-01-11
|/
* Remove the stale reference to test no longer around, and keep the ↵Gravatar Thomas Van Lenten2016-01-07
| | | | performance test limited to just performance tests.
* Update objectivec/google/protobuf/Type.pbobjc.mGravatar Thomas Van Lenten2016-01-05
| | | | | commit e841bac4fcf47f809e089a70d5f84ac37b3883df seems to have updated the generated .pbobjc.h but not the .pbobjc.m to match.
* Have the tests rely on the autocreator behaviors.Gravatar Thomas Van Lenten2016-01-05
| | | | | Incase developers look at the tests for examples, have them rely on the autocreators also.
* Merge branch master into v3.0.0-beta-2Gravatar Feng Xiao2015-12-21
|\
| * Drop all use of OSSpinLockGravatar Thomas Van Lenten2015-12-17
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Down-integrate from internal code base.Gravatar Feng Xiao2015-12-11
|/
* Update the min toolchain for iOS/OS X to be Xcode 7Gravatar Thomas Van Lenten2015-12-10
| | | | | | | - 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.
* Use compiler provided static assert and avoid tripping unused-local-typedef ↵Gravatar Thomas Van Lenten2015-12-08
| | | | warnings.
* Enable CLANG_WARN_NULLABLE_TO_NONNULL_CONVERSION for the projects.Gravatar Thomas Van Lenten2015-12-07
|
* Tweak the error message as the generate is in the core binary these days.Gravatar Thomas Van Lenten2015-12-02
|
* Merge pull request #1020 from thomasvl/block_nilGravatar Thomas Van Lenten2015-12-02
|\ | | | | Check and throw errors for nil values/keys (like NSDictionary).
| * Check and throw errors for nil values/keys (like NSDictionary).Gravatar Thomas Van Lenten2015-12-02
| |
* | Ensure the conformance build of objc code is using the Mac OS X SDK andGravatar Thomas Van Lenten2015-12-02
|/
* Update GPBProtocolBuffers.hGravatar Osman Cihangir2015-11-24
|
* Set the stream limit to the length of the data.Gravatar Thomas Van Lenten2015-11-23
| | | | - Mark all conformance tests as now passing.
* Add support for the conformance test for objc when run on OS XGravatar Thomas Van Lenten2015-11-18
|
* Tweaks to the Mac build scriptGravatar Thomas Van Lenten2015-11-05
| | | | | | - 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.
* Update the Mac build script to include the conformance testsGravatar Thomas Van Lenten2015-11-04
| | | | | - Kick off the conformance tests - Add missing ignore for something generated by a build on the conformance directory.
* Merge remote-tracking branch 'origin/master' into fix-authorGravatar Jisi Liu2015-10-05
|\
| * Support enum forward decls in Objective C++Gravatar Thomas Van Lenten2015-10-01
| | | | | | | | | | | | 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.
| * Cleanups for newer XcodesGravatar Thomas Van Lenten2015-09-29
|/ | | | | | | | | | | | | | - 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.
* Fix bugs for objectivecGravatar TeBoring2015-08-26
|
* Add support for a file listing expected package to objc prefixes for validation.Gravatar Thomas Van Lenten2015-08-14
| | | | | | - 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.
* Revert "Add packFrom, unpackTo and is in google.protobuf.Any."Gravatar Thomas Van Lenten2015-08-11
| | | | | | This reverts commit 7366efd81e7f36108aa35e66fca61da8a65762c2. Still some discussion about the api to expose the helpers with.
* Update GPBWellKnownTypes.mGravatar Yue Zhang2015-07-29
| | | fix an bug(forgive my english..)
* Add packFrom, unpackTo and is in google.protobuf.Any.Gravatar TeBoring2015-07-21
| | | | | | 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.
* Add Bazel target for protobuf ObjC runtimeGravatar Jorge Canizales2015-07-06
| | | | | Also add WKT headers to the umbrella file, and simplify Podspec with it. Plus some layout improvements to the BUILD file.
* Add nonnil markup to ObjC library.Gravatar Thomas Van Lenten2015-06-16
| | | | Add the clang annotations to the objc library and generated code to help with Swift bridging and compiler checks.