summaryrefslogtreecommitdiff
path: root/objectivec
AgeCommit message (Collapse)Author
2016-07-08Drop the performace baselines.Thomas Van Lenten
We weren't really using them, and the nested path causes checkout problems on windows.
2016-07-07Don't #import the .m files.Thomas Van Lenten
As bazel folks are looking at getting auto generation of module maps going and the importing of sources files causes issues there. We were only do it to hack around some of the apple linker behaviors around objc classes and categories, but even that isn't complete and CocoaPods was already doing -ObjC, and developers not using pods could have still needed it to ensure everything was linked anyways; so drop the hack of importing sources.
2016-07-05add nullable qualifier to nil return typesDia Kharrat
Add the `nullable` qualifier to return types of Objective-C methods that can return a nil due to errors. This change makes these methods compatible with the Swift 2 try-catch syntax.
2016-07-01Fix some failing travis tests.Feng Xiao
1. Add missing header file to Makefile.am. 2. Re-generate objectivec generated code for well-known types. Change-Id: If28217c701cf8bd739ea0db240e9eee600f23ee7
2016-06-29Xcode project cleanup/setup.Thomas Van Lenten
- Correct some cases sources were compiled into the static lib and the tests. - Enable Xcodes code coverage support on the unittests. We aren't complete on coverage, but having the data always there should make it easier to chip away at this going forward. - Drop method in tests that isn't used, wire up a validator in another test.
2016-06-29Validate the tag numbers when parsing. (#1725)Thomas Van Lenten
There was a twist code path (that some times showed up due to what happened to be in memory in failure cases), that would cast a bogus wire type into the enum, and then fall through switch statements. Resolve this by validating all wire types when parsing tags and throwing the error at that point so it can't enter the system. As added safety, stick in a few asserts for apis that get passed tags to ensure they also are only seeing valid data. Bonus: Tweak the parsing loop to skip some work when we get the end marker (zero tag) instead of still looping through all the fields.
2016-06-28Merge pull request #1720 from thomasvl/issue_1716Thomas Van Lenten
Fix GPBGetMessage{Repeated,Map}Field()
2016-06-27Fix GPBGetMessage{Repeated,Map}Field()Thomas Van Lenten
- Correct impl by using helpers the message wiring does. - Add unittests. Fixes https://github.com/google/protobuf/issues/1716
2016-06-27Fix Objective-C generator option typoNathan Wong
Looks like this was changed during #1683, but missed in the README :)
2016-06-26Merge pull request #1714 from dnkoutso/masterThomas Van Lenten
Get value from text format name in GPBEnumDescriptor
2016-06-26Get value from text format name in GPBEnumDescriptorDimitris Koutsogiorgas
2016-06-21Rename methods to avoid ObjC KVC collisions. (#1699)Thomas Van Lenten
Note: Breaking API change on the Dictionary classes. The numeric value classes were using "Value" in the naming, but this silently collided with the KVC category on NSObject; meaning KVC code could break up a keypath and call these selectors with the wrong types leading to crashes (even though the code all would compile cleanly). - Rename the methods to use the "type" instead of literal "Value". - Update all the impls and tests. - Enable the warning that will catch issues like this in the future. Fixes https://github.com/google/protobuf/issues/1616
2016-06-20Adds destination flag to xcodebuild to avoid possible flake errors (#1697)Sergio Campamá
Adds destination flag to xcodebuild to avoid possible flake errors
2016-06-17Add new generation option for using proto sources from other frameworks.Thomas Van Lenten
- Better docs in the generator for the different options that can be passed during an invoke of protoc. - Add named_framework_to_proto_path_mappings_path to pass the path to a file containing mappings of frameworks for different proto files. - Update the generation to use the mapping to change the #import directives it creates. Note: the changes in helpers is mostly moving code within the fine, and then a small change to expose the parsing so a passed on class can consume the line. Fixes https://github.com/google/protobuf/issues/1457
2016-06-15Merge pull request #1683 from thomasvl/third_party_frameworkThomas Van Lenten
Add support for generation sources into a framework.
2016-06-15Add support for generation sources into a framework.Thomas Van Lenten
- Add a protoc objc option (generate_for_named_framework) to set the name of the framework all generated sources will be in. - Tweak some comments/naming to make it clear what is the Protobuf framework vs. the framework for generated code. - Update the objc README to document the new generation option to protoc. This is working towards https://github.com/google/protobuf/issues/1457.
2016-06-14Add the CocoaPods integration tests to Travis.Sergio Campamá
Also hotwires updating ruby as CocoaPods was crashing within a support library. Fixes #1619
2016-06-14Fixes Xcode 8 analyzer warning saying that it was missing a release in ↵Sergio Campamá
dealloc (#1678)
2016-06-02Improving the granularity parsing errors (#1623)Sergio Campamá
Add more context to GPBCodedInputStream failures. Have GPBMessage parsing apis extract out the GPBCodedInputStream information and expose it. Update HeaderDocs with pointers to all error domains/codes. Expand the unittests to cover the full set of errors reported. Fixes https://github.com/google/protobuf/issues/1618
2016-05-30Merge pull request #1620 from sergiocampama/cleanup1Thomas Van Lenten
Removing unused GPBExceptionMessageKey
2016-05-27Removing unused GPBExceptionMessageKeySergio Campama
https://github.com/google/protobuf/issues/1618
2016-05-27Merge pull request #1617 from thomasvl/more_warningsThomas Van Lenten
Add -Woverriding-method-mismatch.
2016-05-27Add -Woverriding-method-mismatch.Thomas Van Lenten
Fixes up the code to avoid some issues with isEqual: methods. Opened https://github.com/google/protobuf/issues/1616 to track the KVC collision.
2016-05-26fix expected class checking in GPBSetMessageRepeatedFieldJon Wall
This is currently checking for the wrong class for enums and NSMutableArray fields.
2016-05-25Add more warnings to for the ObjC runtime buildThomas Van Lenten
Working on https://github.com/google/protobuf/issues/1599, specifically: - Turn on more warnings that the Xcode UI calls out with individual controls. - Manually add: -Wundef -Wswitch-enum - Manually add and then diable in the unittests because of XCTest's headers: -Wreserved-id-macro -Wdocumentation-unknown-command - Manually add -Wdirect-ivar-access, but disable it for the unittests and in the library code (via #pragmas to suppress it). This is done so proto users can enable the warning.
2016-05-25Merge pull request #1595 from thomasvl/objc_travis_tweaksThomas Van Lenten
Automated testing tweaks for ObjC
2016-05-24Automated testing tweaks for ObjCThomas Van Lenten
- Move the ObjC tests into the list and exclude them on linux, this will change where in the order they start, since they are longer, it will have other things run in parallel instead of them ending up last and taking the longest. - Switch to the Xcode 7.3 image. - Drop the use of xctool and stream line things through the full_mac_build.sh script. This means we end up with only one build script instead of two. - Tweaks to the mac build script: - Make iOS Xcode version support explicit - Support Debug/Release only building - Change the OS X min parallel count to 2 to better deal with VMs. - Split the travis ios tests into the two Xcode Configurations as the logs are choking travis.
2016-05-24Better support for using the proto library from a framework.Thomas Van Lenten
- Add generator constant for the default framework name. - Add generator api for making the CPP symbol from the name. - Add generator api to see if it is a bundled proto file. - Output a CPP conditional and two imports for the core library headers. - Add helper for generating the #import for file headers to deal with the framework imports. - Add a reference from the unittests to a WKT to use that to inspect how imports generate. - Update the podspec to define the CPP symbol and require pods 1.0 (or later). Fixes https://github.com/google/protobuf/issues/1457
2016-05-20Make the CocoaPods integration tests more robustThomas Van Lenten
- Env solution doesn't seem to always work, use template pod files and copy them in place instead. - Flush the pods cache before and after runs. - Make pod install verbose to have the info incase something goes wrong.
2016-05-19Add shared schemes for the CocoaPods integration testsThomas Van Lenten
Otherwise the projects have to be opened once to create user schemes for the command line builds to work.
2016-05-19CocoaPod Integration TestsThomas Van Lenten
- Add an Xcode 6.3 created default iOS Project. - Add an Xcode 6.3 created default OS X Project. - Add Podfiles to for both that use Protobufs from within the tree. - Add a script to run the tests (and cleanup) to help confirm the state of the Protobuf.podspec and sources.
2016-05-19Expand the OS X/Xcode gitignoresThomas Van Lenten
- Add the folder CocoaPods will add to the root folder. - Move and expand the entries in the objectivec directory.
2016-05-10Declare an init and avoid passing NULL to initWithValue:count:Thomas Van Lenten
Fixes https://github.com/google/protobuf/issues/1189
2016-04-29Update descritpor protos for objcJisi Liu
2016-04-29Merge the script fix.Jisi Liu
2016-04-29Fix cp -r usage to be portable.Jisi Liu
cp -r foo/ bar/ in linux will create a bar/foo directoy. In the objectivec generate descritpor case, well known types will be created in objectivec/google/google/protobuf/.. if the command is run under linux. Adding the trailing period fixes the behavior inconsistency.
2016-04-28Merge branch 'master' of github.com:google/protobufJisi Liu
2016-04-28Down integrate from Google internal.Jisi Liu
2016-04-27Fix up -hash/-isEqual: for bool storage.Thomas Van Lenten
Both methods weren't checking the has_bits (where the bools are stored), so it resulted in invalid results. Add a test that should shake out something like this in the future also.
2016-04-26Proper checking of enum with non zero defaultThomas Van Lenten
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
2016-04-20ObjC support for failing the build in the generated WKTs are out of dateThomas Van Lenten
- 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.
2016-04-19Regenerate the WKT to pick up current changes to the proto files.Thomas Van Lenten
2016-04-19Fix comment typoThomas Van Lenten
2016-04-06Merge pull request #1391 from thomasvl/string_tweaksThomas Van Lenten
ObjC String followups: one test case only addition, behavior change for invalid UTF-8
2016-04-06Updating Xcode Settings to use iOS 9.3Geoffrey Wiseman
Update the simulators used for some tests under Xcode 7.3 to be iOS 9.3.
2016-04-05Error during parsing for invalid UTF-8 instead of dropping dropping data.Thomas Van Lenten
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.
2016-04-05Add tests to ensure we read strings with BOMs so we don't forget about ↵Thomas Van Lenten
lessons of the past.
2016-04-01Add -position and -isAtEnd for use when manually parsing input streams.Thomas Van Lenten
2016-03-24The message was autoreleased, the -releases are an over release.Thomas Van Lenten
2016-03-21Only create the readonlySemaphore on demand.Thomas Van Lenten
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.