blob: 0eb158146fef517f5c6e77791ef6d02f0bf95579 [file] [log] [blame]
Khingf9fc56c2016-09-07 14:46:50 +10001#!/usr/bin/env bash
temporal40ee5512008-07-10 02:12:20 +00002
3# Run this script to regenerate descriptor.pb.{h,cc} after the protocol
4# compiler changes. Since these files are compiled into the protocol compiler
5# itself, they cannot be generated automatically by a make rule. "make check"
6# will fail if these files do not match what the protocol compiler would
7# generate.
kenton@google.com80b1d622009-07-29 01:13:20 +00008#
9# HINT: Flags passed to generate_descriptor_proto.sh will be passed directly
Mike Kruskaled5c57a2022-08-10 22:51:29 -070010# to bazel when building protoc. This is particularly useful for passing
kenton@google.com80b1d622009-07-29 01:13:20 +000011# -j4 to run 4 jobs simultaneously.
temporal40ee5512008-07-10 02:12:20 +000012
temporal40ee5512008-07-10 02:12:20 +000013if test ! -e src/google/protobuf/stubs/common.h; then
14 cat >&2 << __EOF__
15Could not find source code. Make sure you are running this script from the
16root of the distribution tree.
17__EOF__
18 exit 1
19fi
20
kenton@google.com2f669cb2008-12-02 05:59:15 +000021cd src
Feng Xiao33c92802015-05-11 13:47:41 -070022
23declare -a RUNTIME_PROTO_FILES=(\
24 google/protobuf/any.proto \
25 google/protobuf/api.proto \
Mike Kruskal4f9e4172023-06-30 20:14:50 -070026 google/protobuf/cpp_features.proto \
Feng Xiao33c92802015-05-11 13:47:41 -070027 google/protobuf/descriptor.proto \
28 google/protobuf/duration.proto \
29 google/protobuf/empty.proto \
30 google/protobuf/field_mask.proto \
31 google/protobuf/source_context.proto \
32 google/protobuf/struct.proto \
33 google/protobuf/timestamp.proto \
34 google/protobuf/type.proto \
35 google/protobuf/wrappers.proto)
36
Feng Xiaod36c0c52017-03-29 14:32:48 -070037declare -a COMPILER_PROTO_FILES=(\
Jisi Liu09354db2017-07-18 15:38:30 -070038 google/protobuf/compiler/plugin.proto)
Feng Xiaod36c0c52017-03-29 14:32:48 -070039
Jisi Liu885b6122015-02-28 14:51:22 -080040CORE_PROTO_IS_CORRECT=0
Bo Yang5db21732015-05-21 14:28:59 -070041PROCESS_ROUND=1
Jisi Liu09354db2017-07-18 15:38:30 -070042BOOTSTRAP_PROTOC=""
43while [ $# -gt 0 ]; do
44 case $1 in
45 --bootstrap_protoc)
46 BOOTSTRAP_PROTOC=$2
Josh Habermand61aede2018-09-04 10:58:54 -070047 shift 2
Jisi Liu09354db2017-07-18 15:38:30 -070048 ;;
49 *)
50 break
51 ;;
52 esac
53 shift
54done
Jisi Liu5221dcb2016-01-29 13:51:05 -080055TMP=$(mktemp -d)
Bo Yang5db21732015-05-21 14:28:59 -070056echo "Updating descriptor protos..."
Jisi Liu885b6122015-02-28 14:51:22 -080057while [ $CORE_PROTO_IS_CORRECT -ne 1 ]
58do
Bo Yang5db21732015-05-21 14:28:59 -070059 echo "Round $PROCESS_ROUND"
Jisi Liu885b6122015-02-28 14:51:22 -080060 CORE_PROTO_IS_CORRECT=1
Jisi Liu885b6122015-02-28 14:51:22 -080061
Jisi Liu09354db2017-07-18 15:38:30 -070062 if [ "$BOOTSTRAP_PROTOC" != "" ]; then
63 PROTOC=$BOOTSTRAP_PROTOC
64 BOOTSTRAP_PROTOC=""
65 else
Mike Kruskalf0ef44d2023-02-02 15:53:04 -080066 ${BAZEL:-bazel} ${BAZEL_STARTUP_FLAGS:-} build $@ //:protoc ${BAZEL_FLAGS:-}
Jisi Liu09354db2017-07-18 15:38:30 -070067 if test $? -ne 0; then
68 echo "Failed to build protoc."
69 exit 1
70 fi
Mike Kruskaled5c57a2022-08-10 22:51:29 -070071 PROTOC="../bazel-bin/protoc"
Jisi Liu3b3c8ab2016-03-30 11:39:59 -070072 fi
73
Josh Habermand61aede2018-09-04 10:58:54 -070074 $PROTOC --cpp_out=dllexport_decl=PROTOBUF_EXPORT:$TMP ${RUNTIME_PROTO_FILES[@]} && \
75 $PROTOC --cpp_out=dllexport_decl=PROTOC_EXPORT:$TMP ${COMPILER_PROTO_FILES[@]}
Jisi Liu885b6122015-02-28 14:51:22 -080076
Feng Xiaod36c0c52017-03-29 14:32:48 -070077 for PROTO_FILE in ${RUNTIME_PROTO_FILES[@]} ${COMPILER_PROTO_FILES[@]}; do
Feng Xiao33c92802015-05-11 13:47:41 -070078 BASE_NAME=${PROTO_FILE%.*}
Jisi Liu5221dcb2016-01-29 13:51:05 -080079 diff ${BASE_NAME}.pb.h $TMP/${BASE_NAME}.pb.h > /dev/null
Feng Xiao33c92802015-05-11 13:47:41 -070080 if test $? -ne 0; then
81 CORE_PROTO_IS_CORRECT=0
82 fi
Jisi Liu5221dcb2016-01-29 13:51:05 -080083 diff ${BASE_NAME}.pb.cc $TMP/${BASE_NAME}.pb.cc > /dev/null
Feng Xiao33c92802015-05-11 13:47:41 -070084 if test $? -ne 0; then
85 CORE_PROTO_IS_CORRECT=0
86 fi
87 done
88
Jisi Liu5221dcb2016-01-29 13:51:05 -080089 # Only override the output if the files are different to avoid re-compilation
90 # of the protoc.
91 if [ $CORE_PROTO_IS_CORRECT -ne 1 ]; then
Feng Xiaod36c0c52017-03-29 14:32:48 -070092 for PROTO_FILE in ${RUNTIME_PROTO_FILES[@]} ${COMPILER_PROTO_FILES[@]}; do
Jisi Liu5221dcb2016-01-29 13:51:05 -080093 BASE_NAME=${PROTO_FILE%.*}
94 mv $TMP/${BASE_NAME}.pb.h ${BASE_NAME}.pb.h
95 mv $TMP/${BASE_NAME}.pb.cc ${BASE_NAME}.pb.cc
96 done
Jisi Liu5221dcb2016-01-29 13:51:05 -080097 fi
Bo Yang5db21732015-05-21 14:28:59 -070098
99 PROCESS_ROUND=$((PROCESS_ROUND + 1))
Jisi Liu885b6122015-02-28 14:51:22 -0800100done
kenton@google.com2f669cb2008-12-02 05:59:15 +0000101cd ..
Jisi Liuef50a292015-09-08 13:21:45 -0700102
Thomas Van Lenten79a23c42016-03-17 10:04:21 -0400103if test -x objectivec/generate_well_known_types.sh; then
Jisi Liuef50a292015-09-08 13:21:45 -0700104 echo "Generating messages for objc."
Thomas Van Lenten79a23c42016-03-17 10:04:21 -0400105 objectivec/generate_well_known_types.sh $@
Jisi Liuef50a292015-09-08 13:21:45 -0700106fi
Jon Skeet957e8772016-02-15 10:33:13 +0000107
108if test -x csharp/generate_protos.sh; then
109 echo "Generating messages for C#."
110 csharp/generate_protos.sh $@
111fi
Paul Yang6b27c1f2017-03-17 11:08:06 -0700112
113if test -x php/generate_descriptor_protos.sh; then
114 echo "Generating messages for PHP."
115 php/generate_descriptor_protos.sh $@
116fi