aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/stubs
Commit message (Collapse)AuthorAge
...
* | Merge pull request #2848 from xfxyjwf/freebsdGravatar Feng Xiao2017-03-17
|\ \ | | | | | | Fix freebsd build.
* \ \ Merge pull request #2846 from acozzette/bytestream-commentGravatar Adam Cozzette2017-03-15
|\ \ \ | | | | | | | | Updated an outdated comment in bytestream.h
| | * | Fix freebsd build.Gravatar Feng Xiao2017-03-14
| |/ / |/| | | | | | | | | | | | | | | | | | | | It turns out system headers included by generated plugin.pb.h file already contains major/minor macro definitions when built on FreeBSD and we need to add #undefs to the generated header file. This change also fixes another compile error regarding EXPECT_DEATH on FreeBSD.
| * | Updated an outdated comment in bytestream.hGravatar Adam Cozzette2017-03-14
| | |
* | | Replace CHECK() with GOOGLE_CHECK().Gravatar Josh Haberman2017-03-13
|/ / | | | | | | Fixes: https://github.com/google/protobuf/issues/1175
* | Return uint32 from Log2FloorNonZero64Gravatar Adam Cozzette2017-03-02
| | | | | | | | | | | | A uint32 is big enough to hold any return value from that function, and doing it this way prevents compiler warnings in coded_stream.h about narrowing a uint64 to a uint32.
* | Fix gcc 4.1 build (#1035) (#1913)Gravatar Matt Hauck2017-03-01
| | | | | | | | | | | | | | | | | | | | * Fix gcc 4.1.2 compilation of map_field_inl.h Fixes "error: object missing in reference to '...'" errors from #1035 * Disable 64-bit map keys on gcc <= 4.1 * Add missing case statements
* | Switch to gcc atomic intrinsics for macOS and delete the file that uses (#2699)Gravatar Jonathan Hseu2017-02-10
| | | | | | the deprecated atomics.
* | Merge 3.2.x branch into master (#2648)Gravatar Paul Yang2017-01-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Down-integrate internal changes to github. * Update conformance test failure list. * Explicitly import used class in nano test to avoid random test fail. * Update _GNUC_VER to use the correct implementation of atomic operation on Mac. * maps_test.js: check whether Symbol is defined before using it (#2524) Symbol is not yet available on older versions of Node.js and so this test fails with them. This change just directly checks whether Symbol is available before we try to use it. * Added well_known_types_embed.cc to CLEANFILES so that it gets cleaned up * Updated Makefile.am to fix out-of-tree builds * Added Bazel genrule for generating well_known_types_embed.cc In pull request #2517 I made this change for the CMake and autotools builds but forgot to do it for the Bazel build. * Update _GNUC_VER to use the correct implementation of atomic operation on Mac. * Add new js file in extra dist. * Bump version number to 3.2.0 * Fixed issue with autoloading - Invalid paths (#2538) * PHP fix int64 decoding (#2516) * fix int64 decoding * fix int64 decoding + tests * Fix int64 decoding on 32-bit machines. * Fix warning in compiler/js/embed.cc embed.cc: In function ‘std::string CEscape(const string&)’: embed.cc:51:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i = 0; i < str.size(); ++i) { ^ * Fix include in auto-generated well_known_types_embed.cc Restore include style fix (e3da722) that has been trampled by auto-generation of well_known_types_embed.cc * Fixed cross compilations with the Autotools build Pull request #2517 caused cross compilations to start failing, because the js_embed binary was being built to run on the target platform instead of on the build machine. This change updates the Autotools build to use the AX_PROG_CXX_FOR_BUILD macro to find a suitable compiler for the build machine and always use that when building js_embed. * Minor fix for autocreated object repeated fields and maps. - If setting/clearing a repeated field/map that was objects, check the class before checking the autocreator. - Just to be paranoid, don’t mutate within copy/mutableCopy for the autocreated classes to ensure there is less chance of issues if someone does something really crazy threading wise. - Some more tests for the internal AutocreatedArray/AutocreatedDictionary classes to ensure things are working as expected. - Add Xcode 8.2 to the full_mac_build.sh supported list. * Fix generation of extending nested messages in JavaScript (#2439) * Fix generation of extending nested messages in JavaScript * Added missing test8.proto to build * Fix generated code when there is no namespace but there is enum definition. * Decoding unknown field should succeed. * Add embed.cc in src/Makefile.am to fix dist check. * Fixed "make distcheck" for the Autotools build To make the test pass I needed to fix out-of-tree builds and update EXTRA_DIST and CLEANFILES. * Remove redundent embed.cc from src/Makefile.am * Update version number to 3.2.0-rc.1 (#2578) * Change protoc-artifacts version to 3.2.0-rc.1 * Update version number to 3.2.0rc2 * Update change logs for 3.2.0 release. * Update php README * Update upb, fixes some bugs (including a hash table problem). (#2611) * Update upb, fixes some bugs (including a hash table problem). * Ruby: added a test for the previous hash table corruption. Verified that this triggers the bug in the currently released version. * Ruby: bugfix for SEGV. * Ruby: removed old code for dup'ing defs. * Reverting deployment target to 7.0 (#2618) The Protobuf library doesn’t require the 7.1 deployment target so reverting it back to 7.0 * Fix typo that breaks builds on big-endian (#2632) * Bump version number to 3.2.0
* | add MethodResultCallback_0_0Gravatar Camillo Lugaresi2016-12-21
| |
* | Define LANG_CXX11 for port.h and use this to guard C++11 features.Gravatar Chris Kennelly2016-12-14
| |
* | Merge pull request #2495 from acozzette/android-hashGravatar Adam Cozzette2016-12-14
|\ \ | | | | | | Removed Android-specific code from stubs/hash.h
* \ \ Merge pull request #2496 from xyzzyz/fix-overflowGravatar Feng Xiao2016-12-13
|\ \ \ | | | | | | | | Fix integer overflow in FastUInt32ToBufferLeft
| * | | Fix integer overflow in FastUInt32ToBufferLeftGravatar Adam Michalik2016-12-13
| | | | | | | | | | | | | | | | | | | | If digits > 2, and int is 32 bit, line 999 overflows. It has been fixed internally in CL 41203823.
| | * | Removed Android-specific code from stubs/hash.hGravatar Adam Cozzette2016-12-13
| |/ / | | | | | | | | | | | | | | | | | | This #ifdef in hash.h causes us to give up on finding a hash function on Android, when there do seem to be hash functions available in practice. I also had to tweak a macro in map.h that was disabling on Android an allocator construct() method that we need.
* / / Add support for Windows ARM buildsGravatar Gergely Nagy2016-12-12
|/ /
* | Send all protobuf logging to logcat by default on AndroidGravatar Adam Cozzette2016-12-07
| | | | | | | | | | | | | | | | | | | | | | Currently the default for protobuf on Android is to silently drop all log messages. This makes debugging difficult because things like GOOGLE_LOG(FATAL) will crash the process without actually logging a useful error. This CL changes the logging so that by default we send messages for all log levels to logcat (and stderr). Users can override this by setting GOOGLE_PROTOBUF_MIN_LOG_LEVEL. Also, that option was not being respected for non-Android platforms so I went ahead and fixed that to make things consistent.
* | Merge pull request #2437 from xfxyjwf/pluginGravatar Feng Xiao2016-12-06
|\ \ | | | | | | Add version number to plugin protocol.
| * | Add version number to plugin protocol.Gravatar Feng Xiao2016-12-05
| | |
* | | Merge pull request #2445 from ramrunner/masterGravatar Feng Xiao2016-12-05
|\ \ \ | |/ / |/| | OpenBSD correct endianess handling
| * | when on OpenBSD we include the correct headers for endianess and check the ↵Gravatar ramrunner2016-12-05
| | | | | | | | | | | | apropriate defines
* | | Merge branch 'master' into down-integrate-with-msvc-fixGravatar Adam Cozzette2016-11-17
|\ \ \
* | | | Integrated internal changes from GoogleGravatar Adam Cozzette2016-11-17
| | | |
| * | | Renamed the pnacl version of atomicops.h into C11 atomic, and flagged the ↵Gravatar Sergio Campama2016-11-07
| | | | | | | | | | | | | | | | mac version to that if atomic is enabled
| * | | Merge pull request #2301 from jbrianceau/arm-atomic-kuser-helpers-fix-v2Gravatar Feng Xiao2016-11-03
| |\ \ \ | | | | | | | | | | [arm/gcc] Don't rely on KUSER_HELPERS feature for atomics
| * | | | generic atomicops: Use strong compare_exchangeGravatar Julien Brianceau2016-10-28
| | | | | | | | | | | | | | | | | | | | | | | | | Weak compare-and-exchange are allowed to fail spuriously, so we have to use the strong variation here.
| | * | | [arm/gcc] Don't rely on KUSER_HELPERS feature for atomicsGravatar Julien Brianceau2016-10-28
| |/ / / | | | | | | | | | | | | | | | | | | | | ARM specific CONFIG_KUSER_HELPERS feature can be disabled in Linux kernel, and in this case, we shouldn't crash. Use gcc built-in functions instead of arm specific code if they are available.
| * / / define no_threadlocal on OpenBSDGravatar ramrunner2016-10-26
| |/ /
| * | Merge 3.1.x into master.Gravatar Bo Yang2016-10-13
|/| |
* | | Fix VS test failures.Gravatar Feng Xiao2016-10-10
| | |
* | | Bump library veriosn to 3.1Gravatar Bo Yang2016-10-10
| | |
* | | Integrate internal changesGravatar Bo Yang2016-10-10
| | |
| * | Fix MSVC build when HAVE_LONG_LONG is defined.Gravatar Derek Murray2016-09-29
| | |
* | | Merge pull request #2192 from google/3.0.xGravatar Jisi Liu2016-09-27
|\ \ \ | | | | | | | | Merge 3.0.x into master.
| | * | Fix VS test failures.Gravatar Feng Xiao2016-09-23
| | | |
* | | | Fixes static analyzer issues from xcode.Gravatar Sergio Campama2016-09-20
| | | |
| | * | Bump library veriosn to 3.1Gravatar Bo Yang2016-09-21
| | | |
| | * | Integrate internal changesGravatar Bo Yang2016-09-19
| |/ / |/| |
| * | Fix the version number for 3.0.2Gravatar Jisi Liu2016-09-13
| | |
* | | Restore New*Callback into google::protobuf namespace since these are used by ↵Gravatar Srivats P2016-08-29
| | | | | | | | | | | | | | | | | | the service stubs code Fixes #1966
* | | Merge pull request #1044 from mark-whiting/masterGravatar Feng Xiao2016-08-04
|\ \ \ | | | | | | | | Adding missing generic gcc 64-bit atomicops.
* \ \ \ Merge pull request #1893 from google/3.0.0-GAGravatar Jisi Liu2016-07-29
|\ \ \ \ | | |/ / | |/| | Merge 3.0.0-GA into master
* | | | Be consistent with the use of CHECK()/ GOOGLE_CHECK().Gravatar Clement Courbet2016-07-29
| | | |
| * | | Fixes traivs cpp build.Gravatar Feng Xiao2016-07-26
| | | | | | | | | | | | | | | | Remove the use of INT64_C/UINT64_C and add static_cast when neccessary.
| * | | Define intX as standard exact-width integer types.Gravatar Feng Xiao2016-07-25
|/ / / | | | | | | | | | | | | | | | Fixes https://github.com/google/protobuf/issues/823 Change-Id: I7f4c2bfcac2f81d8b34c030dd3d12ea02aaa2264
* | | Merge pull request #1753 from xfxyjwf/fixupGravatar Jisi Liu2016-07-07
|\ \ \ | | | | | | | | Fix problems detected when integrating the code to our internal repo.
| * | | Don't support global ::string in stringpiece.hGravatar Feng Xiao2016-07-06
| | | |
* | | | Fix spelling error in function ParseTime parameterGravatar Otto Kekäläinen2016-07-03
| | | |
* | | | Fix spelling in strings and commentsGravatar Otto Kekäläinen2016-07-03
|/ / /
* | | Integrated internal changes from GoogleGravatar Adam Cozzette2016-06-29
| | | | | | | | | | | | This includes all internal changes from around May 20 to now.