aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #706 from thomasvl/revert_any_change_2Paul Yang2015-08-113-121/+1
|\ | | | | Revert "Add packFrom, unpackTo and is in google.protobuf.Any."
| * Revert "Add packFrom, unpackTo and is in google.protobuf.Any."Thomas Van Lenten2015-08-113-121/+1
|/ | | | | | This reverts commit 7366efd81e7f36108aa35e66fca61da8a65762c2. Still some discussion about the api to expose the helpers with.
* Merge pull request #649 from cijianzy/masterPaul Yang2015-08-111-1/+1
|\ | | | | Update GPBWellKnownTypes.m
| * Update GPBWellKnownTypes.mYue Zhang2015-07-291-1/+1
| | | | | | fix an bug(forgive my english..)
* | Merge pull request #703 from jskeet/more-todosJan Tattermusch2015-08-107-126/+168
|\ \ | | | | | | More TODOs done.
| * | More TODOs done.Jon Skeet2015-08-107-126/+168
|/ / | | | | | | | | | | - Removed a TODO without change in DescriptorPool.LookupSymbol - the TODOs were around performance, and this is only used during descriptor initialization - Make the CodedInputStream limits read-only, adding a static factory method for the rare cases when this is useful - Extracted IDeepCloneable into its own file.
* | Merge pull request #701 from jskeet/map-viewsJon Skeet2015-08-102-4/+180
|\ \ | | | | | | Implement Keys and Values as views in MapField
| * | Fix parameter name in exception.Jon Skeet2015-08-101-1/+1
| | |
| * | Implement ICollection.CopyTo (using Array) for MapField views.Jon Skeet2015-08-102-1/+26
| | |
| * | Implement Keys and Values as viewsJon Skeet2015-08-082-4/+155
| | |
* | | Merge pull request #699 from jskeet/validate_packedJon Skeet2015-08-103-4/+18
|\ \ \ | | | | | | | | Make FieldDescriptor.IsPacked work appropriately.
| * | | Make FieldDescriptor.IsPacked work appropriately.Jon Skeet2015-08-083-4/+18
| |/ / | | | | | | | | | | | | This is a bit of a grotty hack, as we need to sort of fake proto2 field presence, but with only a proto3 version of the descriptor messages (a bit like oneof detection). Should be okay, but will need to be careful of this if we ever implement proto2.
* | | Merge pull request #700 from jskeet/remove-packed-hackJan Tattermusch2015-08-082-12/+1
|\ \ \ | |/ / |/| | Remove our own version of MakeTag now that the main one is fixed.
| * | Remove our own version of MakeTag now that the main one is fixed.Jon Skeet2015-08-072-12/+1
| | | | | | | | | | | | "Tested" by regenerating code and observing that there are no changes.
* | | Merge pull request #695 from jskeet/remove-todosJon Skeet2015-08-0817-103/+83
|\ \ \ | | | | | | | | Tidying up
| * | | Address review comments.Jon Skeet2015-08-081-2/+0
| | | |
| * | | Remove reference to generic types within XML comment.Jon Skeet2015-08-081-2/+2
| | | | | | | | | | | | | | | | Visual Studio is happy with it, but Mono isn't :(
| * | | Tidying up - fix a bunch of TODOs and remove outdated ones.Jon Skeet2015-08-0817-102/+84
|/ / /
* | | Merge pull request #694 from jskeet/groupsJon Skeet2015-08-0829-488/+303
|\ \ \ | |/ / |/| | Fix groups handling in C#
| * | Address review comments.Jon Skeet2015-08-082-2/+24
| | |
| * | Generated code for previous commit.Jon Skeet2015-08-0621-452/+142
| | |
| * | Skip groups properly.Jon Skeet2015-08-067-36/+139
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now the generated code doesn't need to check for end group tags, as it will skip whole groups at a time. Currently it will ignore extraneous end group tags, which may or may not be a good thing. Renamed ConsumeLastField to SkipLastField as it felt more natural. Removed WireFormat.IsEndGroupTag as it's no longer useful. This mostly fixes issue 688. (Generated code changes coming in next commit.)
* | | Merge pull request #645 from zsurocking/masterPaul Yang2015-08-0635-104/+225
|\ \ \ | | | | | | | | Down integrate. Generate a package name suffix ".nano" for nano messages
| * \ \ Merge remote-tracking branch 'upstream/master'Xiao Hang2015-08-04411-255904/+34404
| |\ \ \
| * \ \ \ Merge branch 'master' of https://github.com/zsurocking/protobufXiao Hang2015-08-040-0/+0
| |\ \ \ \
| | * \ \ \ Merge branch 'master' of https://github.com/zsurocking/protobufXiao Hang2015-07-290-0/+0
| | |\ \ \ \
| * | \ \ \ \ Merge branch 'master' of https://github.com/zsurocking/protobufXiao Hang2015-08-0420-28/+28
| |\ \ \ \ \ \ | | |/ / / / / | |/| / / / / | | |/ / / /
| | * | | / Generate a package name suffix ".nano" for nano messagesXiao Hang2015-07-275-58/+174
| | | |_|/ | | |/| | | | | | | | | | | | Also introducing an option javanano_use_deprecated_package to allow users to disable the suffix
| * / | | Generate a package name suffix ".nano" for nano messagesXiao Hang2015-07-296-63/+179
| |/ / / | | | | | | | | | | | | Also introducing an option javanano_use_deprecated_package to allow users to disable the suffix
* | | | Merge pull request #696 from TeBoring/tempPaul Yang2015-08-064-4/+0
|\ \ \ \ | |_|_|/ |/| | | Remove unused .pb.h #includes.
| * | | Remove unused .pb.h #includes.Bo Yang2015-08-064-4/+0
|/ / /
* | | Merge pull request #692 from jskeet/tag-0Jan Tattermusch2015-08-0528-405/+167
|\ \ \ | | | | | | | | Change ReadTag/PeekTag behaviour to return 0 at EOF
| * | | Make InvalidProtocolBufferException.InvalidTag internal.Jon Skeet2015-08-051-1/+1
| | | | | | | | | | | | | | | | We don't need to expose the InvalidProtocolBufferException factory method now that the generated code doesn't throw the exception.
| * | | Generated code changes for previous commit.Jon Skeet2015-08-0519-339/+113
| | | |
| * | | Change ReadTag and PeekTag to just use 0 as a return value for "end of ↵Jon Skeet2015-08-058-65/+53
|/ / / | | | | | | | | | | | | | | | | | | | | | stream", rather than using an awkward out parameter. This simplifies quite a lot of code. Generated code in next commit.
* | | Merge pull request #689 from jskeet/fix-eofJon Skeet2015-08-0532-10/+2897
|\ \ \ | | | | | | | | C# conformance tests
| * | | Update AssemblyInfo for conformance - mostly to fix version numbers.Jon Skeet2015-08-051-23/+35
| | | |
| * | | Validate that after reading a message, we've consumed as many bytes as we ↵Jon Skeet2015-08-053-30/+47
| | | | | | | | | | | | | | | | | | | | | | | | expected to. We should now have no conformance failures.
| * | | Generated code changes for previous commit.Jon Skeet2015-08-0519-0/+113
| | | |
| * | | Consume unknown fields when parsing.Jon Skeet2015-08-053-1/+64
| | | | | | | | | | | | | | | | | | | | This is expected to be the cause of the conformance test failures. Generated code in next commit.
| * | | Added C# conformance tests.Jon Skeet2015-08-053-1/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The tests are run from Travis in the same way as on other platforms. Currently some expected failures - but only expected in that they're what we got to start with. Will try to fix them in other pull requests.
| * | | First pass at C# conformance tests.Jon Skeet2015-08-058-0/+2642
|/ / / | | | | | | | | | Completely untested so far - easier to get started in VS and then transfer to Linux for tweaking...
* | | Merge pull request #691 from jskeet/xml-documentationJon Skeet2015-08-0527-108/+742
|\ \ \ | | | | | | | | Document everything, and turn on errors if we fail to document anything in the future
| * | | Fix one cref that Mono was unhappy withJon Skeet2015-08-051-1/+1
| | | |
| * | | Document everything, and turn on errors if we fail to document anything in ↵Jon Skeet2015-08-0426-107/+741
| | |/ | |/| | | | | | | the future.
* | | Merge pull request #684 from jskeet/unusedJan Tattermusch2015-08-043-3/+3
|\ \ \ | |/ / |/| | Fix build warnings around unused variables
| * | Fix build warnings around unused variablesJon Skeet2015-08-043-3/+3
|/ /
* | Merge pull request #653 from airtimemedia/masterFeng Xiao2015-08-038-13/+9
|\ \ | | | | | | Various compilation fixes
| * | Move pthread include.Tom Hughes2015-07-302-2/+4
| | | | | | | | | | | | | | | Based on pull request feedback. See commit 60c5222 for why the pthread header is necessary.
| * | Remove unused private fields.Tom Hughes2015-07-294-12/+2
| | | | | | | | | | | | | | | Fixes compilation when -Wunused-private-field is enabled (e.g., when using -Wall).