| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* uses namespaces for nested messages and enums
* fixes namespaces for PHP dist
* fixes namespace for Descriptors, adds Cardinality and Kind
* fixes nested namespaces for reserved words and adds tests
* adds tests and generator fix for php class prefixes
* fixes escaping of protobuf packages, enum comments, misc others
* nice refactor of generated code
* adds class files for backwards compatibility
* simplifies code with templates
* adds compatibility files to makefile
* cleanup of generator and fixes nested namespace bug
* regenerates proto types
* remove internal BC classes
* adds deprecated warning, adds methods back
* simplifies if statement
* fixes dist files
* addresses review comments
* adds back TYPE_URL_PREFIX constant
* adds @deprecated to old nested class files
* skips tests which require a separate process when protobuf.so is enabled
* Adds tests for legacy nested classes that do not require separate processes to test
* uses legacy names for GPBUtil message check
* adds block for IDE @deprecated message
* Namespace for nested message/enum in c extension
* Remove unused code
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* PHP array constructors for protobuf messages
* removes Descriptor from error message
* allows mergeFrom to accept an array
* only use initWithDescriptor if instanceof MapEntry
* adds doc comments
* removes ability for constructors to take arrays for submessages
* Revert "allows mergeFrom to accept an array"
This reverts commit b7b72182d561634af12c5c5c56a7cda3b33241f9.
* makes mergeFromArray protected and fixes mergeFrom whitespace
* Separates merging from JSON and merging from PHP array
* removes well-known types and json keys from array construction
* Addresses PR review comments
* cleans up tests
* fixes exception messages
|
| |
|
| |
|
|
|
|
|
|
| |
* Adopt ruby_package in ruby generated code.
* Add test for ruby_package
|
|
|
|
|
|
|
|
|
|
|
| |
* Adopt php_metadata_namespace in php code generator
The php_metadata_namespace is corresponded to the relative directory of
the metadata file. e.g., previously, the metadata file of foo.proto was
GPBMetadata/Foo.php. If the php_metadata_namespace is "Metadata\\Bar",
the metadata file will be Metadata/Bar/Foo.php.
* Handle empty php_metadata_namespace
|
|\
| |
| | |
Make sure to delete temporary maps used by FileDescriptorTables
|
|/
|
|
|
|
|
| |
I ran the tcmalloc heap checker in draconian mode, and it reported some
heap allocations that were still reachable when protobuf-test exited. To
fix that, I updated FileDescriptorTables to make sure its temporary
heap-allocated maps are deleted when it is destroyed.
|
|\
| |
| | |
Update version number to 3.6.0
|
|/ |
|
| |
|
|\
| |
| | |
Add .proto files to extract_includes.bat
|
| |
| |
| |
| |
| |
| | |
* Throw error if user want to access message properties
* Fix typo
|
| |
| |
| |
| |
| |
| |
| |
| | |
* Avoid direct check of class name
So that subclasses are also ok
* Use type hint in function signature.
|
| |
| |
| | |
use brew instead of easy_install in OSX (easy_install keep failing for a month)
|
|\ \
| | |
| | | |
Fix error in Clang UndefinedBehaviorSanitizer
|
|/ /
| |
| |
| |
| |
| | |
Pointer Arguments to memcpy can not be null in UndefinedBehaviorSanitizer.
In this case, both the memory and the size was zero. This change allows
protoc to run under UndefinedBehaviorSanitizer.
|
| |
| |
| | |
Add mention to the "Build" section of the ReadMe of the requirement of installing an optional component to VS2017.
|
| | |
|
|\ \
| | |
| | | |
Fix MinGW build
|
|/ / |
|
|\ \
| | |
| | | |
Fix CMake build on Cygwin.
|
|/ / |
|
| |
| |
| | |
Make RepeatedField#delete_if consistent with Array#delete_if.
|
| |
| |
| |
| | |
The class name was linked to the next word in the sentence.
"User\UserRequestis not found in descriptor pool."
|
|\ \
| | |
| | | |
Add a third-party RPC implementation: raster
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Fix memory leak of exceptions raised by RaiseException()
Currently exceptions raised by RaiseException() is never deallocated because:
* ARC is disabled for this library: https://github.com/google/protobuf/blob/master/BUILD#L913
* It is constructed with `+alloc` but is never `-release`d.
This change fixes the issue by using `-[NSException exceptionWithName:...]` instead, which returns an autoreleased instance, so it is deallocated properly.
* Fix format.
|
|/ /
| |
| |
| | |
pbrpc by 'service' keyword.
|
|\ \
| | |
| | | |
fixed typo
|
|\ \ \
| | | |
| | | | |
CMake: Update CXX Standard management
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
With this fix, Unity using IL2CPP should work with one of two
approaches:
- Call `FileDescriptor.ForceReflectionInitialization<T>` for every
enum present in generated code (including oneof case enums)
- Ensure that IL2CPP uses the same code for int and any int-based
enums
The former approach is likely to be simpler, unless IL2CPP changes
its default behavior. We *could* potentially generate the code
automatically, but that makes me slightly uncomfortable in terms of
generating code that's only relevant in one specific scenario. It
would be reasonably easy to write a tool (separate from protoc) to
generate the code required for any specific set of assemblies, so
that Unity users can include it in their application. We can always
decide to change to generate it automatically later.
|
| |/ /
|/| | |
|
|\ \ \
| | | |
| | | | |
Set ext.no_native = true for non mac platform
|
|/ / /
| | |
| | |
| | |
| | | |
From:
https://github.com/rake-compiler/rake-compiler/issues/146#issuecomment-368539245
|
| | |
| | |
| | |
| | |
| | | |
- merge loop for .h and .proto includes
- fix shellcheck errors
|
|/ / |
|
| |
| |
| |
| |
| | |
For google/or-tools, on windows, we need to use `import "google/protobuf/wrappers.proto";` since we want "optional" int64 and in version3 POD get default value...
-> so we use "google.protobuf.Int64Value" since 0 is a valid value and different from "not set" for our use case.
|
| | |
|
| |
| |
| |
| |
| |
| | |
The tests can run as what Apple calls a Logic Test (under xctest), which means
it doesn't have to load an full UI App under the simulator, which speeds things
up a fair amount.
|
|\ \
| |/
|/| |
Fix benchmark build
|
| |
| |
| |
| |
| |
| | |
* Edited MessageFieldGenerator to clone to backing field instead of property
* Generated C# proto code
|
|\ \
| | |
| | | |
Cleanup + documentation for Java Lite runtime.
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fixed a Visual Studio 2017 build error. (#4488)
|
|\ \ \ \
| | |_|/
| |/| | |
fix java benchmark, fix dashboard build
|
| |/ /
|/| |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The current 15.6.x versions of Visual Studio 2017 contain a bug that
prevent them from compiling the following construct under certain
conditions:
std::unique_ptr<std::unique_ptr<Foo> []> foos;
This will fail to compile if Foo is an abstract class. To work-around
the problem the whole construct was change into:
std::vector<std::unique_ptr<Foo>> foos;
This not only fixes the compiler error but is also more readable than
previous version.
|
|/ / |
|
|/ |
|