Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scripts: improve regenerate.sh to use the correct proto compiler version #7064

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion doc.go
Expand Up @@ -16,7 +16,7 @@
*
*/

//go:generate ./regenerate.sh
//go:generate ./scripts/regenerate.sh

/*
Package grpc implements an RPC system called gRPC.
Expand Down
63 changes: 63 additions & 0 deletions scripts/install_protoc.sh
@@ -0,0 +1,63 @@
#!/bin/bash
# Copyright 2024 gRPC authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

set -eu -o pipefail

source "$(dirname $0)/vet-common.sh"

# Perform installation of protoc from source based on OS.

PROTOC_VERSION="25.2"

# Function to download pre-built binaries for Linux with
# ARCH as $1, OS as $2, and WORKDIR as $3 arguments.
download_binary() {
# Check if protoc is already available
if command -v protoc &> /dev/null; then
if installed_version=$(protoc --version | cut -d' ' -f2 2>/dev/null); then
if [ "$installed_version" = "$PROTOC_VERSION" ]; then
echo "protoc version $PROTOC_VERSION is already installed."
return
else
echo "Existing protoc version ($installed_version) differs. Kindly make sure you have $PROTOC_VERSION installed."
# exit 1
fi
else
echo "Unable to determine installed protoc version. Starting the installation."
fi
fi
DOWNLOAD_URL="https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-$2-$1.zip"
# Download and unzip
curl -LO "$DOWNLOAD_URL"
INSTALL_DIR="${3:-${GOBIN:-${GOPATH:-$HOME/go}/bin}}"
unzip "protoc-${PROTOC_VERSION}-$2-$1.zip" -d $INSTALL_DIR
rm "protoc-${PROTOC_VERSION}-$2-$1.zip"
}

# Determine architecture
if [[ $(uname -m) == "x86_64" ]]; then
ARCH="x86_64"
elif [[ $(uname -m) == "aarch64" ]] || [[ $(uname -m) == "arm64" ]] ; then
ARCH="aarch_64"
else
die "Unsupported architecture. Please consider manual installation."
fi
# Detect the Operating System
case "$(uname -s)" in
"Darwin") download_binary $ARCH "osx" "$1";;
"Linux") download_binary $ARCH "linux" "$1";;
*) echo "Please consider manual installation from \
https://github.com/protocolbuffers/protobuf/releases/ and add to PATH" ;;
esac
75 changes: 41 additions & 34 deletions regenerate.sh → scripts/regenerate.sh
Expand Up @@ -19,12 +19,16 @@ WORKDIR=$(mktemp -d)

function finish {
rm -rf "$WORKDIR"
# Revert back the PATH to client's original value
export PATH=$RESTORED_PATH
echo "Restored PATH to older value: $PATH"
}
trap finish EXIT

export GOBIN=${WORKDIR}/bin
export PATH=${GOBIN}:${PATH}
mkdir -p ${GOBIN}
GOBIN="${WORKDIR}"/bin
aranjans marked this conversation as resolved.
Show resolved Hide resolved
RESTORED_PATH=$PATH
export PATH="${GOBIN}:${PATH}"
aranjans marked this conversation as resolved.
Show resolved Hide resolved
mkdir -p "${GOBIN}"

echo "remove existing generated files"
# grpc_testing_not_regenerate/*.pb.go is not re-generated,
Expand All @@ -38,39 +42,42 @@ echo "go install cmd/protoc-gen-go-grpc"
(cd cmd/protoc-gen-go-grpc && go install .)

echo "git clone https://github.com/grpc/grpc-proto"
git clone --quiet https://github.com/grpc/grpc-proto ${WORKDIR}/grpc-proto
git clone --quiet https://github.com/grpc/grpc-proto "${WORKDIR}/grpc-proto"

echo "git clone https://github.com/protocolbuffers/protobuf"
git clone --quiet https://github.com/protocolbuffers/protobuf ${WORKDIR}/protobuf
git clone --quiet https://github.com/protocolbuffers/protobuf "${WORKDIR}/protobuf"

# Pull in code.proto as a proto dependency
mkdir -p ${WORKDIR}/googleapis/google/rpc
mkdir -p "${WORKDIR}/googleapis/google/rpc"
echo "curl https://raw.githubusercontent.com/googleapis/googleapis/master/google/rpc/code.proto"
curl --silent https://raw.githubusercontent.com/googleapis/googleapis/master/google/rpc/code.proto > ${WORKDIR}/googleapis/google/rpc/code.proto
curl --silent https://raw.githubusercontent.com/googleapis/googleapis/master/google/rpc/code.proto > "${WORKDIR}/googleapis/google/rpc/code.proto"

mkdir -p ${WORKDIR}/out
#chmod +x ./scripts/install_protoc.sh
source ./scripts/install_protoc.sh $WORKDIR

mkdir -p "${WORKDIR}/out"

# Generates sources without the embed requirement
LEGACY_SOURCES=(
${WORKDIR}/grpc-proto/grpc/binlog/v1/binarylog.proto
${WORKDIR}/grpc-proto/grpc/channelz/v1/channelz.proto
${WORKDIR}/grpc-proto/grpc/health/v1/health.proto
${WORKDIR}/grpc-proto/grpc/lb/v1/load_balancer.proto
"${WORKDIR}/grpc-proto/grpc/binlog/v1/binarylog.proto"
"${WORKDIR}/grpc-proto/grpc/channelz/v1/channelz.proto"
"${WORKDIR}/grpc-proto/grpc/health/v1/health.proto"
"${WORKDIR}/grpc-proto/grpc/lb/v1/load_balancer.proto"
profiling/proto/service.proto
${WORKDIR}/grpc-proto/grpc/reflection/v1alpha/reflection.proto
${WORKDIR}/grpc-proto/grpc/reflection/v1/reflection.proto
"${WORKDIR}/grpc-proto/grpc/reflection/v1alpha/reflection.proto"
"${WORKDIR}/grpc-proto/grpc/reflection/v1/reflection.proto"
)

# Generates only the new gRPC Service symbols
SOURCES=(
$(git ls-files --exclude-standard --cached --others "*.proto" | grep -v '^profiling/proto/service.proto$')
${WORKDIR}/grpc-proto/grpc/gcp/altscontext.proto
${WORKDIR}/grpc-proto/grpc/gcp/handshaker.proto
${WORKDIR}/grpc-proto/grpc/gcp/transport_security_common.proto
${WORKDIR}/grpc-proto/grpc/lookup/v1/rls.proto
${WORKDIR}/grpc-proto/grpc/lookup/v1/rls_config.proto
${WORKDIR}/grpc-proto/grpc/testing/*.proto
${WORKDIR}/grpc-proto/grpc/core/*.proto
"${WORKDIR}/grpc-proto/grpc/gcp/altscontext.proto"
"${WORKDIR}/grpc-proto/grpc/gcp/handshaker.proto"
"${WORKDIR}/grpc-proto/grpc/gcp/transport_security_common.proto"
"${WORKDIR}/grpc-proto/grpc/lookup/v1/rls.proto"
"${WORKDIR}/grpc-proto/grpc/lookup/v1/rls_config.proto"
"${WORKDIR}/grpc-proto/grpc/testing/*.proto"
"${WORKDIR}/grpc-proto/grpc/core/*.proto"
)

# These options of the form 'Mfoo.proto=bar' instruct the codegen to use an
Expand All @@ -95,29 +102,29 @@ for src in ${SOURCES[@]}; do
echo "protoc ${src}"
protoc --go_out=${OPTS}:${WORKDIR}/out --go-grpc_out=${OPTS},use_generic_streams_experimental=true:${WORKDIR}/out \
-I"." \
-I${WORKDIR}/grpc-proto \
-I${WORKDIR}/googleapis \
-I${WORKDIR}/protobuf/src \
${src}
-I"${WORKDIR}/grpc-proto" \
-I"${WORKDIR}/googleapis" \
-I"${WORKDIR}/protobuf/src" \
"${src}"
done

for src in ${LEGACY_SOURCES[@]}; do
echo "protoc ${src}"
protoc --go_out=${OPTS}:${WORKDIR}/out --go-grpc_out=${OPTS},require_unimplemented_servers=false:${WORKDIR}/out \
protoc --go_out="${OPTS}:${WORKDIR}/out" --go-grpc_out="${OPTS}",require_unimplemented_servers=false:"${WORKDIR}/out" \
-I"." \
-I${WORKDIR}/grpc-proto \
-I${WORKDIR}/googleapis \
-I${WORKDIR}/protobuf/src \
${src}
-I"${WORKDIR}/grpc-proto" \
-I"${WORKDIR}/googleapis" \
-I"${WORKDIR}/protobuf/src" \
"${src}"
done

# The go_package option in grpc/lookup/v1/rls.proto doesn't match the
# current location. Move it into the right place.
mkdir -p ${WORKDIR}/out/google.golang.org/grpc/internal/proto/grpc_lookup_v1
mv ${WORKDIR}/out/google.golang.org/grpc/lookup/grpc_lookup_v1/* ${WORKDIR}/out/google.golang.org/grpc/internal/proto/grpc_lookup_v1
mkdir -p "${WORKDIR}/out/google.golang.org/grpc/internal/proto/grpc_lookup_v1"
mv "${WORKDIR}"/out/google.golang.org/grpc/lookup/grpc_lookup_v1/* "${WORKDIR}/out/google.golang.org/grpc/internal/proto/grpc_lookup_v1"

# grpc_testing_not_regenerate/*.pb.go are not re-generated,
# see grpc_testing_not_regenerate/README.md for details.
rm ${WORKDIR}/out/google.golang.org/grpc/reflection/test/grpc_testing_not_regenerate/*.pb.go
rm "${WORKDIR}"/out/google.golang.org/grpc/reflection/test/grpc_testing_not_regenerate/*.pb.go

cp -R ${WORKDIR}/out/google.golang.org/grpc/* .
cp -R "${WORKDIR}"/out/google.golang.org/grpc/* .
arvindbr8 marked this conversation as resolved.
Show resolved Hide resolved
8 changes: 2 additions & 6 deletions scripts/vet-proto.sh
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to update the GITHUB_ACTION path also to use protoc_installer

Copy link
Contributor Author

@aranjans aranjans May 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@arvindbr8 GITHUB_ACTIONS already using protoc_installer script to install protobuf

Expand Up @@ -23,12 +23,8 @@ if [[ "$1" = "-install" ]]; then
if [[ "${GITHUB_ACTIONS}" = "true" ]]; then
PROTOBUF_VERSION=25.2 # Shows up in pb.go files as v4.22.0
PROTOC_FILENAME=protoc-${PROTOBUF_VERSION}-linux-x86_64.zip
pushd /home/runner/go
wget https://github.com/google/protobuf/releases/download/v${PROTOBUF_VERSION}/${PROTOC_FILENAME}
unzip ${PROTOC_FILENAME}
protoc --version # Check that the binary works.
popd
else
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice find

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually would be nice to deal with the TODO right below this.

source ./scripts/install_protoc.sh "/home/runner/go"
else
# TODO: replace with install protoc when https://github.com/grpc/grpc-go/pull/7064 is merged.
die "-install currently intended for use in CI only."
fi
Expand Down