blob: 27d293a2e5ec798790b44e67f9315bdf91edffe3 [file] [log] [blame]
temporal40ee5512008-07-10 02:12:20 +00001#!/bin/sh
2
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
10# to make when building protoc. This is particularly useful for passing
11# -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
21if test ! -e src/Makefile; then
22 cat >&2 << __EOF__
23Could not find src/Makefile. You must run ./configure (and perhaps
24./autogen.sh) first.
25__EOF__
26 exit 1
27fi
28
kenton@google.com2f669cb2008-12-02 05:59:15 +000029cd src
Bo Yangefa666c2015-04-30 10:29:47 -070030make $@ google/protobuf/stubs/pbconfig.h
Feng Xiao33c92802015-05-11 13:47:41 -070031
32declare -a RUNTIME_PROTO_FILES=(\
33 google/protobuf/any.proto \
34 google/protobuf/api.proto \
35 google/protobuf/descriptor.proto \
36 google/protobuf/duration.proto \
37 google/protobuf/empty.proto \
38 google/protobuf/field_mask.proto \
39 google/protobuf/source_context.proto \
40 google/protobuf/struct.proto \
41 google/protobuf/timestamp.proto \
42 google/protobuf/type.proto \
43 google/protobuf/wrappers.proto)
44
Jisi Liu885b6122015-02-28 14:51:22 -080045CORE_PROTO_IS_CORRECT=0
46while [ $CORE_PROTO_IS_CORRECT -ne 1 ]
47do
48 CORE_PROTO_IS_CORRECT=1
Feng Xiao33c92802015-05-11 13:47:41 -070049 for PROTO_FILE in ${RUNTIME_PROTO_FILES[@]}; do
50 BASE_NAME=${PROTO_FILE%.*}
51 cp ${BASE_NAME}.pb.h ${BASE_NAME}.pb.h.tmp
52 cp ${BASE_NAME}.pb.cc ${BASE_NAME}.pb.cc.tmp
53 done
Jisi Liu885b6122015-02-28 14:51:22 -080054 cp google/protobuf/compiler/plugin.pb.h google/protobuf/compiler/plugin.pb.h.tmp
55 cp google/protobuf/compiler/plugin.pb.cc google/protobuf/compiler/plugin.pb.cc.tmp
56
Jisi Liu0b3cfc72015-03-02 10:54:10 -080057 make $@ protoc &&
Feng Xiao33c92802015-05-11 13:47:41 -070058 ./protoc --cpp_out=dllexport_decl=LIBPROTOBUF_EXPORT:. ${RUNTIME_PROTO_FILES[@]} && \
Jisi Liu885b6122015-02-28 14:51:22 -080059 ./protoc --cpp_out=dllexport_decl=LIBPROTOC_EXPORT:. google/protobuf/compiler/plugin.proto
60
Feng Xiao33c92802015-05-11 13:47:41 -070061 for PROTO_FILE in ${RUNTIME_PROTO_FILES[@]}; do
62 BASE_NAME=${PROTO_FILE%.*}
63 diff ${BASE_NAME}.pb.h ${BASE_NAME}.pb.h.tmp > /dev/null
64 if test $? -ne 0; then
65 CORE_PROTO_IS_CORRECT=0
66 fi
67 diff ${BASE_NAME}.pb.cc ${BASE_NAME}.pb.cc.tmp > /dev/null
68 if test $? -ne 0; then
69 CORE_PROTO_IS_CORRECT=0
70 fi
71 done
72
Jisi Liu885b6122015-02-28 14:51:22 -080073 diff google/protobuf/compiler/plugin.pb.h google/protobuf/compiler/plugin.pb.h.tmp > /dev/null
74 if test $? -ne 0; then
75 CORE_PROTO_IS_CORRECT=0
76 fi
77 diff google/protobuf/compiler/plugin.pb.cc google/protobuf/compiler/plugin.pb.cc.tmp > /dev/null
78 if test $? -ne 0; then
79 CORE_PROTO_IS_CORRECT=0
80 fi
81
Feng Xiao33c92802015-05-11 13:47:41 -070082 for PROTO_FILE in ${RUNTIME_PROTO_FILES[@]}; do
83 BASE_NAME=${PROTO_FILE%.*}
84 rm ${BASE_NAME}.pb.h.tmp
85 rm ${BASE_NAME}.pb.cc.tmp
86 done
Jisi Liu885b6122015-02-28 14:51:22 -080087 rm google/protobuf/compiler/plugin.pb.h.tmp
88 rm google/protobuf/compiler/plugin.pb.cc.tmp
89done
kenton@google.com2f669cb2008-12-02 05:59:15 +000090cd ..