aboutsummaryrefslogtreecommitdiffhomepage
path: root/objectivec
Commit message (Collapse)AuthorAge
* 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.
* Update podspec for files that can build now, rename assets to not need @ in ↵Gravatar Thomas Van Lenten2015-06-10
| | | | the name.
* Beta quality drop of Objective C Support.Gravatar Thomas Van Lenten2015-06-08
| | | | | | | | | | | | | | | - 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.
* ObjC fixup for the branch.Gravatar Thomas Van Lenten2015-05-26
| | | | | | | | - 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
* Fix bugs in objective-c.Gravatar Bo Yang2015-05-25
|
* Objective C Second Alpha DropGravatar Thomas Van Lenten2015-05-22
| | | | | | | | | | - 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.
* Getting the ObjC generator building on Windows.Gravatar Thomas Van Lenten2015-05-19
| | | | | | | | | 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.
* Post csharp landing fixup.Gravatar Thomas Van Lenten2015-05-18
| | | | | Re-add the objc prefix that got removed by accident. Regenerate the generated descriptors (C++ and ObjC).
* Alpha 1 drop of Google's Objective C plugin and runtime support for protobufs.Gravatar Thomas Van Lenten2015-05-06