aboutsummaryrefslogtreecommitdiff
path: root/src/google
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | parsing and serialzation for maps in JavaNano.Jisi Liu2015-02-031-5/+20
| | | | | |
| | * | | | Parsing for Maps in JavaNanoJisi Liu2015-02-022-16/+93
| | | | | |
| | * | | | Use map generator for maps field; skip entry message.Jisi Liu2015-02-022-1/+9
| | | | | |
| | * | | | Initial checkin for maps support in JavaNano.Jisi Liu2015-01-303-0/+162
| | | |/ / | | |/| |
| * | | | Properly support maps in Ruby protoc and another bugfix.Chris Fallin2015-02-121-16/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, we supported map fields in the Ruby DSL. However, we never connected the final link in the chain and generated `map` DSL commands for map fields in `.proto` files. My apologies -- I had been testing with the DSL directly so I missed this. Also fixed a handlerdata-setup-infinite-loop when a map value field's type is its containing message.
| * | | | MIPS: remove immediate constraint within CompareAndSwap.Gordana Cmiljanovic2015-02-091-2/+2
| | |/ / | |/| | | | | | | | | | | | | | Improper use of immediate constraint is slightly non-optimal with gcc/gnu-as but may cause breakage with clang.
| * | | Add missing LIBPROTOC_EXPORT to ruby generatorNobuaki Sukegawa2015-02-081-1/+2
| | | |
| * | | Merge pull request #186 from ennerf/win32-msvc-fixFeng Xiao2015-02-021-2/+2
| |\ \ \ | | | | | | | | | | MSVC protoc compiler fix
| | * | | removed accidental whitespaceFlorian Enner2015-02-021-1/+1
| | | | |
| | * | | replaced type fix with the recommended wayFlorian Enner2015-01-311-8/+2
| | | | |
| | * | | fixed MSVC compile errorFlorian Enner2015-01-311-0/+6
| | |/ / | | | | | | | | | | | | <stdint.h> is not part of the standard, so I've added a workaround.
| * | | Merge pull request #168 from cfallin/ruby-oneofJoshua Haberman2015-02-022-18/+165
| |\ \ \ | | |/ / | |/| | Support oneofs in MRI Ruby C extension.
| | * | Fix golden-file Ruby test to work with out-of-tree builds.Chris Fallin2015-01-141-33/+36
| | | |
| | * | Two tests for Ruby code generator:Chris Fallin2015-01-141-0/+116
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - A golden-file test that ensures protoc produces known-valid output. - A Ruby test that loads that golden file and ensures it actually works with the extension. This split strategy allows us to test end-to-end without needing to integrate the Ruby gem build system and the protoc build system. This is desirable because we do not want a gem build/install to depend on building protoc, and we do not want building protoc to depend on building and testing the gem.
| | * | Support oneofs in the Ruby code generator.Chris Fallin2015-01-141-18/+46
| | |/
| * / Fix illegal C++ use of reinterpret_cast<> to cast between nullptr_t and a ↵Niall Douglas (s [underscore] sourceforge {at} nedprod [dot] com)2015-01-271-1/+1
| |/ | | | | | | pointer.
| * Include names.h as java_names.h in the opensource treezhangkun832015-01-121-0/+87
| |
| * Improved little endian byte order detectionKal Conley2014-12-161-1/+2
| | | | | | | | | | | | | | Including <sys/param.h> on Mac/iOS doesn't define __BYTE_ORDER so PROTOBUF_LITTLE_ENDIAN was never being defined. This commit adds a check for the __LITTLE_ENDIAN__ macro which is defined by clang and Apple gcc on little endian architectures.
| * Support Ruby code generation only for proto3.Chris Fallin2014-12-121-0/+8
| |
| * Rename protobuf Ruby module to google/protobuf and rework its buildChris Fallin2014-12-121-1/+1
| | | | | | | | | | | | system. The Ruby module build now uses an amalgamated distribution of upb, and successfully builds a Ruby gem called 'google-protobuf' with module 'google/protobuf'.
* | Integrate changes from Google open-source branch.Josh Haberman2015-02-176-14/+34
|/
* Merge pull request #128 from krishnanm86/masterFeng Xiao2014-12-122-14/+14
|\ | | | | Source code refactoring. Extracted common functionality in cpp_helpers.c...
| * Reverting the space at the end for both files changedKrishna2014-12-122-2/+2
| |
| * Reverting the space at the endKrishna2014-12-121-1/+1
| |
| * Returned print_indent and print_outdent back to printservicestub and ↵Krishna2014-12-121-5/+8
| | | | | | | | printserviceclass in python generator
| * Reverted changes to cpp_helpers.cc and made code reviews to python_geenerator.ccKrishna2014-12-113-22/+20
| |
| * Fixed bugsKrishna2014-12-103-5/+8
| |
| * Source code refactoring. Extracted common functionality in cpp_helpers.cc ↵Krishna2014-12-102-26/+22
| | | | | | | | and python/python_generator.cc
* | Merge pull request #113 from nsuke/oneof-c++11Feng Xiao2014-12-115-41/+40
|\ \ | | | | | | Make C++ code generation of string oneof field compatible with C++11
| * | Make C++ string oneof field compatible with C++11Nobuaki Sukegawa2014-12-032-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | string oneof field was generated into "const ArenaStringPtr" field inside "default_oneof_instance_" struct (of name "<class name>OneofInstance"). On the other hand, in C++11, const field of type with trivial default constructor causes enclosing type's implicit default constructor to be deleted. Since ArenaStringPtr has tirvial default constructor, this caused default constructor of "default_oneof_instance_" struct to be deleted, making the constructor call inside generated code invalid and fail to compile.
| * | Display element name in test error logNobuaki Sukegawa2014-12-031-2/+2
| | |
| * | Make test code runnable with C++11Nobuaki Sukegawa2014-12-033-37/+37
| |/ | | | | | | | | Preprocessor token right after string literal without whitespace results in parse failure in C++11.
* | Merge branch v3.0.0-alpha-1 into master.Feng Xiao2014-12-1027-105/+139
|\ \ | | | | | | | | | | | | Conflicts: configure.ac
| * | Fix LIBPROTOBUF_PROTOBUF annotations for buliding protobuf as DLLs.v3.0.0-alpha-1Feng Xiao2014-12-098-18/+33
| | |
| * | Fix compile issues and test failures in VS2008.Feng Xiao2014-12-0513-74/+44
| | |
| * | Fix thread local annotatoin and add back type traits is_convertable for MSVCFeng Xiao2014-12-044-4/+10
| | |
| * | Replace is_enum with is_proto_enum because is_enum is not supported on some ↵Feng Xiao2014-12-031-1/+3
| | | | | | | | | | | | platforms.
| * | Delete some globals in ShutdownProtobufLibrary().Feng Xiao2014-12-033-0/+37
| | |
| * | Update version number in descriptor.pb.h and plugin.pb.h. Protect deathFeng Xiao2014-12-034-4/+8
| | | | | | | | | | | | tests with macro PROTOBUF_HAS_DEATH_TEST.
| * | Update version number to v3.0.0-alpha-1Feng Xiao2014-12-031-5/+5
| |/
* / Provide a Ruby extension.Chris Fallin2014-12-093-1/+376
|/ | | | | | This adds a Ruby extension in ruby/ that is based on the 'upb' library (now included as a submodule), and adds support for Ruby code generation to the protoc compiler.
* Merge pull request #116 from xfxyjwf/fix_warningsFeng Xiao2014-12-026-9/+12
|\ | | | | Get rid of some build warnings.
| * Get rid of some build warnings.Feng Xiao2014-12-026-9/+12
| |
* | Merge pull request #81 from xfxyjwf/syntax_warningFeng Xiao2014-12-022-0/+13
|\ \ | |/ |/| Report a warning if the proto file doesn't have a syntax statement.
| * Report a warning if the proto file doesn't have a syntax statement.Feng Xiao2014-11-142-0/+13
| |
* | Merge pull request #110 from nsuke/tb-typo-cpp_extensionFeng Xiao2014-11-261-1/+1
|\ \ | | | | | | Fix typo
| * | Fix typoNobuaki Sukegawa2014-11-271-1/+1
| | |
* | | Down-integrate from internal code base.Feng Xiao2014-11-268-45/+221
|/ /
* | Merge branch 'master' of github.com:google/protobufJisi Liu2014-11-256-10/+54
|\ \
| * | Fix issue 99.Feng Xiao2014-11-255-7/+48
| | |