C++ Java Objective-C C# C Python Other
Latest commit b77aa80 Jan 8, 2018 @acozzette acozzette Merge pull request #4148 from datacompboy/patch-2
Add more tests to time_test
Permalink
Failed to load latest commit information.
benchmarks Merge pull request #4132 from BSBandme/JavaCaliperCounter Jan 6, 2018
cmake Ran update_file_lists.sh to update Bazel and CMake file lists Dec 7, 2017
conformance Add unknown field support for csharp (#3936) Dec 13, 2017
csharp Merge remote-tracking branch 'origin/3.5.x' into master Jan 3, 2018
docs Add hypothesis-protobuf library to the 3rd party doc. Nov 13, 2017
editors Improve fix for #295 May 23, 2017
examples Add a check_protobuf_required_bazel_version() for use in WORKSPACEs Dec 4, 2017
java Merge remote-tracking branch 'origin/3.5.x' into master Jan 3, 2018
javanano Add a notice for nano. Mar 16, 2017
jenkins Add Python 3.5 3.6 Aug 22, 2017
js Merge remote-tracking branch 'origin/3.5.x' into master Jan 3, 2018
kokoro Shard 64-bit Linux languages into different Kokoro jobs Dec 21, 2017
m4 Add std::forward and std::move autoconf check Aug 15, 2017
more_tests Add makefile for extended tests to be run before release. Jan 12, 2010
objectivec Force a copy when saving the NSData that came from another. Jan 3, 2018
php Merge remote-tracking branch 'origin/3.5.x' into master Jan 3, 2018
protoc-artifacts Merge remote-tracking branch 'origin/3.5.x' into master Jan 3, 2018
python Merge remote-tracking branch 'origin/3.5.x' into master Jan 3, 2018
ruby Merge remote-tracking branch 'origin/3.5.x' into master Jan 3, 2018
src Merge pull request #4148 from datacompboy/patch-2 Jan 8, 2018
third_party Sync internal benchmark changes Dec 1, 2017
util/python Remove hack for building Python support with Bazel. Feb 25, 2016
.gitignore Reserve unknown in Ruby (#3763) Oct 26, 2017
.gitmodules fix bugs Dec 14, 2017
.travis.yml Remove Xcode directives on some configs. Dec 4, 2017
BUILD Merge pull request #2834 from aj-michael/master Dec 13, 2017
CHANGES.txt Update changelog Dec 20, 2017
CONTRIBUTORS.txt Add nano proto authors and update LICENSE file to include Android.mk. Nov 20, 2014
LICENSE Add support for POWER Linux Nov 3, 2015
Makefile.am Merge remote-tracking branch 'origin/3.5.x' into master Jan 3, 2018
Protobuf.podspec Update version number to 3.5.1 Dec 19, 2017
README.md Add bazel support for examples. Sep 8, 2017
WORKSPACE bazel: Add proto_library rules for well known types. Fixes #2763 Sep 5, 2017
appveyor.bat Convert C# projects to MSBuild (csproj) format May 24, 2017
appveyor.yml Convert C# projects to MSBuild (csproj) format May 24, 2017
autogen.sh Update autogen.sh Sep 4, 2017
composer.json Update PHP descriptors (#3391) Aug 4, 2017
configure.ac Merge pull request #4131 from pherl/merge Jan 4, 2018
generate_changelog.py generate_changelog.py: flush output so piping works correctly. Dec 10, 2016
generate_descriptor_proto.sh Merge from Google internal for 3.4 release Jul 18, 2017
gmock.BUILD Update repo to use google test Sep 9, 2016
post_process_dist.sh Add protobuf-all in post release Nov 15, 2017
protobuf-lite.pc.in Uncomment conflict fields from pkg-config files. May 12, 2015
protobuf.bzl Add a check_protobuf_required_bazel_version() for use in WORKSPACEs Dec 4, 2017
protobuf.pc.in Uncomment conflict fields from pkg-config files. May 12, 2015
six.BUILD Add srcs_version = "PY2AND3" in BUILD files Dec 3, 2015
tests.sh add cpp Dec 15, 2017
update_file_lists.sh Fix C++ build for down-integration. Mar 29, 2017

README.md

Protocol Buffers - Google's data interchange format

Build Status Build status Build Status Build Status Build Status

Copyright 2008 Google Inc.

https://developers.google.com/protocol-buffers/

Overview

Protocol Buffers (a.k.a., protobuf) are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data. You can find protobuf's documentation on the Google Developers site.

This README file contains protobuf installation instructions. To install protobuf, you need to install the protocol compiler (used to compile .proto files) and the protobuf runtime for your chosen programming language.

Protocol Compiler Installation

The protocol compiler is written in C++. If you are using C++, please follow the C++ Installation Instructions to install protoc along with the C++ runtime.

For non-C++ users, the simplest way to install the protocol compiler is to download a pre-built binary from our release page:

https://github.com/google/protobuf/releases

In the downloads section of each release, you can find pre-built binaries in zip packages: protoc-$VERSION-$PLATFORM.zip. It contains the protoc binary as well as a set of standard .proto files distributed along with protobuf.

If you are looking for an old version that is not available in the release page, check out the maven repo here:

https://repo1.maven.org/maven2/com/google/protobuf/protoc/

These pre-built binaries are only provided for released versions. If you want to use the github master version at HEAD, or you need to modify protobuf code, or you are using C++, it's recommended to build your own protoc binary from source.

If you would like to build protoc binary from source, see the C++ Installation Instructions.

Protobuf Runtime Installation

Protobuf supports several different programming languages. For each programming language, you can find instructions in the corresponding source directory about how to install protobuf runtime for that specific language:

Language Source
C++ (include C++ runtime and protoc) src
Java java
Python python
Objective-C objectivec
C# csharp
JavaNano javanano
JavaScript js
Ruby ruby
Go golang/protobuf
PHP php
Dart dart-lang/protobuf

Quick Start

The best way to learn how to use protobuf is to follow the tutorials in our developer guide:

https://developers.google.com/protocol-buffers/docs/tutorials

If you want to learn from code examples, take a look at the examples in the examples directory.

Documentation

The complete documentation for Protocol Buffers is available via the web at:

https://developers.google.com/protocol-buffers/