The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Nathan Baulch 8342a109ae Fix python typos (#38029) 2 weeks ago
..
doc Fixed bazel tests for 7 (#35390) 11 months ago
examples/php/echo Update PHP docker images PHP versions (#31779) 2 years ago
include Convert c-style comments to C++-style comments (#31923) 2 years ago
src Fix python typos (#38029) 2 weeks ago
test/cpp/naming [maintenance] Fix cpp typos (#37755) 2 months ago
tools [CI] Used dockcross/manylinux2014-aarch64 for aarach64 artifact docker images (#38084) 3 weeks ago
.bazelversion.template [bazel] Upgrade bazel repo-wide to 6.3.2 (#34088) 1 year ago
BoringSSL-Package.swift.template [ObjC] add boringssl swift package (#36062) 9 months ago
CMakeLists.txt.template [Build] Revert "[Build] Use -msse2 option only for 32-bit Intel (#38024)" (#38074) 3 weeks ago
Makefile.template No public description 9 months ago
Package.swift.template [ObjC] Update abseil and boring ssl versions (#36356) 7 months ago
README.md [OTel C++] Do not add otel_plugin_test with CMake if the otel plugin is not enabled (#36128) 9 months ago
_metadata.py.template Add Python xDS user agent (#26191) 3 years ago
build_config.rb.template fix remaining license notices 8 years ago
composer.json.template update required minimal php version to 7.0 4 years ago
config.m4.template [deps] Upgrade protobuf version to v25.0 (#34513) 1 year ago
config.w32.template [deps] Upgrade protobuf version to v25.0 (#34513) 1 year ago
gRPC-C++.podspec.template [Apple/Build] Bumped iOS to 11, OSX to 10.14, tvOS to 13.0 (#37931) 1 month ago
gRPC-Core.podspec.template [Apple/Build] Bumped iOS to 11, OSX to 10.14, tvOS to 13.0 (#37931) 1 month ago
gRPC-ProtoRPC.podspec.template [Apple/Build] Bumped iOS to 11, OSX to 10.14, tvOS to 13.0 (#37931) 1 month ago
gRPC-RxLibrary.podspec.template [Apple/Build] Bumped iOS to 11, OSX to 10.14, tvOS to 13.0 (#37931) 1 month ago
gRPC.podspec.template [Apple/Build] Bumped iOS to 11, OSX to 10.14, tvOS to 13.0 (#37931) 1 month ago
grpc.def.template
grpc.gemspec.template [ruby] drop ruby 2.7 support (#37430) 4 months ago
package.xml.template [cmake] Cleanup and simplify the cmake build. (#34087) 1 year ago

README.md

Regenerating project files

Prerequisites

  • python
  • pip install mako (the template processor)
  • pip install pyyaml (to read the yaml files)
  • go (required by boringssl dependency)
# Regenerate the projects files (and other generated files) using templates
tools/buildgen/generate_projects.sh

Quick justification

We've approached the problem of the build system from a lot of different angles. The main issue was that there isn't a single build system that was going to single handedly cover all of our usage cases.

So instead we decided to work the following way:

  • A build.yaml file at the root is the source of truth for listing all the targets and files needed to build grpc and its tests, as well as a basic system for dependency description.

  • Most of the build systems supported by gRPC (e.g. Makefile, cmake, XCode) have a template defined in this directory. The templates use the information from the build.yaml file to generate the project files specific to a given build system.

This way we can maintain as many project system as we see fit, without having to manually maintain them when we add or remove new code to the repository. Only the structure of the project file is relevant to the template. The actual list of source code and targets isn't.

Structure of build.yaml

The build.yaml file has the following structure:

settings:  # global settings, such as version number
  ...
filegroups:  # groups of files that are automatically expanded
  ...
libs:  # list of libraries to build
  ...
targets:   # list of targets to build
  ...

The filegroups are helpful to re-use a subset of files in multiple targets. One filegroups entry has the following structure:

- name: "arbitrary string", # the name of the filegroup
  public_headers: # list of public headers defined in that filegroup
  - ...
  headers: # list of headers defined in that filegroup
  - ...
  src: # list of source files defined in that filegroup
  - ...

The libs collection contains the list of all the libraries we describe. Some may be helper libraries for the tests. Some may be installable libraries. Some may be helper libraries for installable binaries.

The targets array contains the list of all the binary targets we describe. Some may be installable binaries.

One libs or targets entry has the following structure (see below for details):

name: "arbitrary string", # the name of the library
build: "build type",      # in which situation we want that library to be
                          # built and potentially installed (see below).
language: "...",          # the language tag; "c" or "c++"
public_headers:           # list of public headers to install
headers:                  # list of headers used by that target
src:                      # list of files to compile
baselib: boolean,         # this is a low level library that has system
                          # dependencies
filegroups:               # list of filegroups to merge to that project
                          # note that this will be expanded automatically
deps:                     # list of libraries this target depends on
dll: "..."                # see below.

The "build" tag

Currently, the "build" tag have these meanings:

  • "all": library to build on "make all", and install on the system.
  • "plugin": library to build on "make all", and install, but the corresponding CMake option defaults to off. The option needs to be declared manually at present to allow depending on third-party dependencies.
  • "protoc": a protoc plugin to build on "make all" and install on the system.
  • "plugin_test": A test that should only be built if the associated plugin is enabled. The plugin is mentioned in the "plugin_option" tag.
  • "private": a library to only build for tests.
  • "test": a test binary to run on "make test".
  • "tool": a binary to be built upon "make tools".

All of the targets should always be present in the generated project file, if possible and applicable. But the build tag is what should group the targets together in a single build command.

The "baselib" boolean

This means this is a library that will provide most of the features for gRPC. In particular, if we're locally building OpenSSL, protobuf or zlib, then we should merge OpenSSL, protobuf or zlib inside that library. That effect depends on the "language" tag. OpenSSL and zlib are for "c" libraries, while protobuf is for "c++" ones.

The template system

We're currently using the mako templates renderer. That choice enables us to simply render text files without dragging with us a lot of other features. Feel free to explore the current templates in that directory.

The renderer engine

As mentioned, the renderer is using mako templates, but some glue is needed to process all of that. See the buildgen folder for more details. We're mainly loading the build.json file, and massaging it, in order to get the list of properties we need, into a Python dictionary, that is then passed to the template while rending it.

The plugins

The file build.json itself isn't passed straight to the template files. It is first processed and modified by a few plugins. For example, the version expander is a plugin.

The structure of a plugin is simple. The plugin must defined the function mako_plugin that takes a Python dictionary. That dictionary represents the current state of the build.json contents. The plugin can alter it to whatever feature it needs to add.