aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Knock-on effects of moving GetSampleMessage.Gravatar Jon Skeet2015-07-09
|
* Lots more tests for FieldCodec, MapField, RepeatedFieldGravatar Jon Skeet2015-07-09
| | | | ... and some implementation changes to go with them.
* Fix descriptor reflection in various waysGravatar Jon Skeet2015-07-09
| | | | | | | | - The protos are no longer publicly exposed at all - Oneof detection now works (as we default to -1, not 0) - OneofDescriptor exposes the fields in the oneof - Removed unnecessary code for replacing protos - remnant of extensions - There's now just the non-generic form of IDescriptor
* Regenerated code due to previous commit.Gravatar Jon Skeet2015-07-09
| | | | Note that now we need a proto3 version of addressbook.proto. This may affect other platforms, and could do with an overhaul to follow proto3 conventions anyway (e.g. repeated field names). Will need to think about that carefully before merging into master. Raised issue #565 for this.
* Codegen changes to support descriptor runtime changesGravatar Jon Skeet2015-07-09
| | | | | | - Add a partial method called by all constructors - Generate internal classes for descriptor.proto (only) - Forbid proto2 descriptors except for descriptor.proto
* Changes to generated code due to previous commit.Gravatar Jon Skeet2015-07-09
|
* Implement reflection properly for fields.Gravatar Jon Skeet2015-07-09
| | | | | | | | | | | | | - FieldAccessorTable is now non-generic - We don't have a static field per message type in the umbrella class. (Message descriptors are accessed via the file descriptor.) - Removed the "descriptor assigner" complication from the descriptor fixup; without extensions, we don't need it - MapField implements IDictionary (more tests would be good...) - RepeatedField implements IList (more tests would be good) - Use expression trees to build accessors. (Will need to test this on various platforms... probably need a fallback strategy just using reflection directly.) - Added FieldDescriptor.IsMap - Added tests for reflection with generated messages Changes to generated code coming in next commit.
* Merge branch 'csharp-remove-extensions' into csharp-fixupGravatar Jon Skeet2015-07-09
|\
* | Minor fix-ups as suggested in PR #560.Gravatar Jon Skeet2015-07-09
| | | | | | | | | | - Added new line at the end of SampleEnum - Moved GeneratedMessageTest.GetSampleMessage to a new class, SampleMessages, and renamed it to CreateFullTestAllTypes.
* | Merge pull request #561 from jskeet/csharp-copyrightGravatar Jon Skeet2015-07-09
|\ \ | | | | | | Fix C# copyright statements
* \ \ Merge pull request #560 from jskeet/csharp-repeatedGravatar Jon Skeet2015-07-09
|\ \ \ | | | | | | | | Large changes to repeated field handling
| | | * Remove unused code in C# codegenGravatar Jon Skeet2015-06-30
| | |/
| | * Fix copyright lines for all C# code.Gravatar Jon Skeet2015-06-30
| |/ | | | | | | | | | | Everything should now be consistent - the only difference between files is the year (aside from generated files). Fixes issue #531.
| * Tidying up and extra tests.Gravatar Jon Skeet2015-06-30
| | | | | | | | This is mostly just making things internal instead of public, removing and reordering a bunch of code in CodedInputStream/CodedOutputStream, and generally tidying up.
| * Tests changed enough to buildGravatar Jon Skeet2015-06-30
| |
| * First pass (not yet compiling) at removing all the array handling code from ↵Gravatar Jon Skeet2015-06-30
|/ | | | | | | Coded*Stream. Prod code works, but some tests are broken. Obviously those need fixing, then more tests, and review benchmarks.
* Merge pull request #550 from jskeet/issue307Gravatar Jon Skeet2015-06-29
|\ | | | | Fix for doubly-nested types - issue #307.
| * Fix for doubly-nested types - issue #307.Gravatar Jon Skeet2015-06-29
|/ | | | No specific test case - if the generated code compiles, the issue is fixed :)
* Merge pull request #544 from jskeet/csharp-cleanupGravatar Jon Skeet2015-06-28
|\ | | | | Clean up C# code
* \ Merge pull request #543 from jskeet/proto3-mapGravatar Jon Skeet2015-06-26
|\ \ | | | | | | Proto3 map support for C#
| | * More cleanup, based around searches for "Google.ProtocolBuffers"Gravatar Jon Skeet2015-06-26
| | | | | | | | | | | | | | | | | | | | | - Remove some old proto2-based C#-only messages - Remove the "build" directory which only contained out-of-date files - Remove the csharp_namespace option from proto2 messages - Change "Google.ProtocolBuffers" to "Google.Protobuf" in other messages
| | * Remove a lot of code which wasn't needed any more.Gravatar Jon Skeet2015-06-26
| | |
| | * Fix or delete old projects.Gravatar Jon Skeet2015-06-26
| |/ | | | | | | | | | | | | | | ProtoDump isn't currently useful, but will be when ToString emits JSON: fixed. ProtoBench: deleted; we should reinstate when there's a common proto3 benchmark. ProtoMunge: delete; not useful enough to merit fixing up. Removed the [TestFixture] from ByteStringTest as Travis uses a recent enough version of NUnit.
| * Tests for FieldCodec, along with a fix.Gravatar Jon Skeet2015-06-26
| |
| * Generated code changes for previous commit.Gravatar Jon Skeet2015-06-26
| |
| * Tweaks and more tests for mapsGravatar Jon Skeet2015-06-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Change the default message hash code to 1 to be consistent with other code - Change the empty list/map hash code to 0 as "empty map" is equivalent to "no map" - Removed map fields from unittest_proto3.proto - Created map_unittest_proto3.proto which is like map_unittest.proto but proto3-only - Fixed factory methods in FieldCodec highlighted by using all field types :) - Added tests for map serialization: - Extra fields within entries - Entries with value then key - Non-contiguous entries for the same map - Multiple entries for the same key Changes to generated code coming in next commit
| * Make map test keys even more different to avoid odd hash collisionsGravatar Jon Skeet2015-06-25
| |
| * Generated code changes due to map changes.Gravatar Jon Skeet2015-06-25
| | | | | | | | (Primarily this is starting the hash code of messages at a non-zero value...)
| * More map tests, and various production code improvements.Gravatar Jon Skeet2015-06-25
| | | | | | | | Generated code in next commit.
* | Merge pull request #534 from jskeet/proto3-freezeGravatar Jon Skeet2015-06-25
|\ \ | | | | | | Implement Freeze in C# protos
| | * Generated map code.Gravatar Jon Skeet2015-06-25
| | |
| | * First pass at map support.Gravatar Jon Skeet2015-06-25
| |/ | | | | | | More tests required. Generated code in next commit.
| * Get the Mono build script working again.Gravatar Jon Skeet2015-06-25
| | | | | | | | | | | | | | | | | | | | | | | | | | The solution as a whole doesn't build yet - we probably want to remove ProtoDump and ProtoMunge entirely, and ProtoBench should use Jan's new benchmarks for parity with Java. The version of NUnit on my machine, packaged with Mono 3.12.1, is only NUnit 2.4.2, which is extremely old - it still requires an explicit [TestFixture] attribute on test fixtures. I've added one just for ByteStringTest for the moment so that we can see some tests passing in Travis, but as part of a separate PR we should work on making sure we're using a recent NUnit version. (It may already be doing so, but we can check that once it's working and merged.)
| * Regenerated descriptor C++ codeGravatar Jon Skeet2015-06-25
| |
| * Revert the change to wire_format.h.Gravatar Jon Skeet2015-06-24
| | | | | | | | | | It seems too much code relies on the broken behaviour. See issue #493. Instead, we reimplement MakeTag just for C#, temporarily.
| * Implement freezing for messages and repeated fields.Gravatar Jon Skeet2015-06-24
|/ | | | Fixes issue #523.
* Merge pull request #536 from jtattermusch/fix_appveyorGravatar Jon Skeet2015-06-24
|\ | | | | Integrate changes from upstream/master
| * Merge remote-tracking branch 'upstream/master' into fix_appveyorGravatar Jan Tattermusch2015-06-24
|/|
* | Merge pull request #532 from jskeet/proto3-cloneGravatar Jan Tattermusch2015-06-23
|\ \ | | | | | | Implement Clone.
| * | Generated code changes from previous commit.Gravatar Jon Skeet2015-06-23
| | |
| * | Implement requested changes for IMessage<T>Gravatar Jon Skeet2015-06-23
| | | | | | | | | | | | | | | 1) New line at end of file 2) Make IMessage<T> itself extend IEquatable<T> and IDeepCloneable<T>
| | * Merge pull request #530 from haberman/updateupbGravatar Joshua Haberman2015-06-23
| | |\ | | | | | | | | Update upb to fix two bugs in the Ruby library.
| * | | Implement Clone.Gravatar Jon Skeet2015-06-23
|/ / / | | | | | | | | | Fixes issue #527.
| | * Update upb to fix two bugs in the Ruby library.Gravatar Josh Haberman2015-06-22
| |/ | | | | | | | | | | Fixes: https://github.com/google/protobuf/issues/502 https://github.com/google/protobuf/issues/425
| * Fix appveyor tests.Gravatar Feng Xiao2015-06-22
| |
| * Merge pull request #503 from thomasvl/add_nonnill_markupGravatar Paul Yang2015-06-19
| |\ | | | | | | Add nonnull/nullable/null_resettable markup to ObjC library.
* | \ Merge pull request #515 from jskeet/proto3-onlyGravatar Jan Tattermusch2015-06-19
|\ \ \ | |/ / |/| | Proto3 experimental C# fork
| * | Merge remote-tracking branch 'upstream/master' into proto3-onlyGravatar Jon Skeet2015-06-19
| |\ \ | |/ / |/| |
| * | Update the readme to give more context of what's going on.Gravatar Jon Skeet2015-06-19
| | |
| * | Minor cleanup.Gravatar Jon Skeet2015-06-19
| | | | | | | | | | | | | | | | | | | | | | | | - Make some members internal - Remove a lot of FrameworkPortability that isn't required - Start adding documentation comments - Remove some more group-based members - Not passing in "the last tag read" into Read*Array, g