generate_protos.sh 2.37 KB
Newer Older
1 2 3 4 5
#!/bin/bash
# Generates C# source files from .proto files.
# You first need to make sure protoc has been built (see instructions on
# building protoc in root of this repository)

6
set -e
7 8

# cd to repository root
9
pushd $(dirname $0)/..
10

11 12 13 14 15
# Protocol buffer compiler to use. If the PROTOC variable is set,
# use that. Otherwise, probe for expected locations under both
# Windows and Unix.
if [ -z "$PROTOC" ]; then
  # TODO(jonskeet): Use an array and a for loop instead?
16 17 18 19
  if [ -x cmake/build/Debug/protoc.exe ]; then
    PROTOC=cmake/build/Debug/protoc.exe
  elif [ -x cmake/build/Release/protoc.exe ]; then
    PROTOC=cmake/build/Release/protoc.exe
20 21 22 23 24 25 26
  elif [ -x src/protoc ]; then
    PROTOC=src/protoc
  else
    echo "Unable to find protocol buffer compiler."
    exit 1
  fi
fi
27

28 29 30 31
# descriptor.proto and well-known types
$PROTOC -Isrc --csharp_out=csharp/src/Google.Protobuf \
    --csharp_opt=base_namespace=Google.Protobuf \
    src/google/protobuf/descriptor.proto \
32 33 34 35 36 37 38 39 40 41 42
    src/google/protobuf/any.proto \
    src/google/protobuf/api.proto \
    src/google/protobuf/duration.proto \
    src/google/protobuf/empty.proto \
    src/google/protobuf/field_mask.proto \
    src/google/protobuf/source_context.proto \
    src/google/protobuf/struct.proto \
    src/google/protobuf/timestamp.proto \
    src/google/protobuf/type.proto \
    src/google/protobuf/wrappers.proto

43 44 45
# Test protos
$PROTOC -Isrc -Icsharp/protos \
    --csharp_out=csharp/src/Google.Protobuf.Test/TestProtos \
46 47 48
    --descriptor_set_out=csharp/src/Google.Protobuf.Test/testprotos.pb \
    --include_source_info \
    --include_imports \
49
    csharp/protos/map_unittest_proto3.proto \
50
    csharp/protos/unittest_issues.proto \
51 52 53 54 55
    csharp/protos/unittest_custom_options_proto3.proto \
    csharp/protos/unittest_proto3.proto \
    csharp/protos/unittest_import_proto3.proto \
    csharp/protos/unittest_import_public_proto3.proto \
    src/google/protobuf/unittest_well_known_types.proto \
56 57
    src/google/protobuf/test_messages_proto3.proto

58
# AddressBook sample protos
59
$PROTOC -Iexamples -Isrc --csharp_out=csharp/src/AddressBook \
60
    examples/addressbook.proto
61

62
$PROTOC -Iconformance -Isrc --csharp_out=csharp/src/Google.Protobuf.Conformance \
63
    conformance/conformance.proto
64 65 66 67 68 69

# Benchmark protos
$PROTOC -Ibenchmarks \
  benchmarks/datasets/google_message1/proto3/*.proto \
  benchmarks/benchmarks.proto \
  --csharp_out=csharp/src/Google.Protobuf.Benchmarks