93 lines
3.9 KiB
Bash
Executable File
93 lines
3.9 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2017 The Kubernetes 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.
|
|
|
|
# usage: generate.sh $LANGUAGE $OUTPUT_DIR
|
|
# current tested languages:
|
|
# * java
|
|
|
|
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
if ! which protoc > /dev/null; then
|
|
${dir}/install.sh
|
|
proto=./bin/protoc
|
|
else
|
|
proto=$(which protoc)
|
|
fi
|
|
|
|
${dir}/dependencies.sh
|
|
|
|
# The format here is <file-name>;<generated-class-name>
|
|
files="k8s.io/apimachinery/pkg/api/resource/generated.proto;Resource \
|
|
k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto;Meta \
|
|
k8s.io/apimachinery/pkg/runtime/generated.proto;Runtime \
|
|
k8s.io/apimachinery/pkg/runtime/schema/generated.proto;RuntimeSchema \
|
|
k8s.io/apimachinery/pkg/util/intstr/generated.proto;IntStr \
|
|
k8s.io/api/rbac/v1alpha1/generated.proto;V1alpha1Rbac \
|
|
k8s.io/api/rbac/v1/generated.proto;V1Rbac \
|
|
k8s.io/api/rbac/v1beta1/generated.proto;V1beta1Rbac \
|
|
k8s.io/api/networking/v1/generated.proto;V1Networking \
|
|
k8s.io/api/settings/v1alpha1/generated.proto;V1alpha1Settings \
|
|
k8s.io/api/admissionregistration/v1alpha1/generated.proto;V1alpha1Admissionregistration \
|
|
k8s.io/api/scheduling/v1alpha1/generated.proto;V1alpha1Scheduling \
|
|
k8s.io/api/storage/v1/generated.proto;V1Storage \
|
|
k8s.io/api/storage/v1beta1/generated.proto;V1beta1Storage \
|
|
k8s.io/api/batch/v2alpha1/generated.proto;V2alpha1Batch \
|
|
k8s.io/api/batch/v1/generated.proto;V1Batch \
|
|
k8s.io/api/batch/v1beta1/generated.proto;V1beta1Batch \
|
|
k8s.io/api/apps/v1beta2/generated.proto;V1beta2Apps \
|
|
k8s.io/api/apps/v1/generated.proto;V1Apps \
|
|
k8s.io/api/apps/v1beta1/generated.proto;V1beta1Apps \
|
|
k8s.io/api/authentication/v1/generated.proto;V1Authentication \
|
|
k8s.io/api/authentication/v1beta1/generated.proto;V1beta1Authentication \
|
|
k8s.io/api/admission/v1alpha1/generated.proto;V1alpha1Admission \
|
|
k8s.io/api/policy/v1beta1/generated.proto;V1beta1Policy \
|
|
k8s.io/api/core/v1/generated.proto;V1 \
|
|
k8s.io/api/autoscaling/v1/generated.proto;V1Autoscaling \
|
|
k8s.io/api/autoscaling/v2beta1/generated.proto;V2beta1Autoscaling \
|
|
k8s.io/api/extensions/v1beta1/generated.proto;V1beta1Extensions \
|
|
k8s.io/api/certificates/v1beta1/generated.proto;V1beta1Certificates \
|
|
k8s.io/api/imagepolicy/v1alpha1/generated.proto;V1alpha1Imagepolicy \
|
|
k8s.io/api/authorization/v1/generated.proto;V1Authorization \
|
|
k8s.io/api/authorization/v1beta1/generated.proto;V1beta1Authorization \
|
|
k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto;V1beta1Apiextensions"
|
|
|
|
proto_files=""
|
|
|
|
echo 'Munging proto file packages'
|
|
|
|
# This is a little hacky, but we know the go_package directive is in the
|
|
# right place, so add a marker, and then append more package declarations.
|
|
# Sorry, I like perl.
|
|
for info in ${files}; do
|
|
file=$(echo ${info} | cut -d ";" -f 1)
|
|
class=$(echo ${info} | cut -d ";" -f 2)
|
|
proto_files="${file} ${proto_files}"
|
|
perl -pi -e \
|
|
's/option go_package = "(.*)";/option go_package = "$1";\n\/\/ PKG/' \
|
|
${file}
|
|
perl -pi -e \
|
|
's/\/\/ PKG/\/\/ PKG\noption java_package = "io.kubernetes.client.proto";/' \
|
|
${file}
|
|
perl -pi -e \
|
|
"s/\/\/ PKG/\/\/ PKG\noption java_outer_classname = \"${class}\";/" \
|
|
${file}
|
|
|
|
# Other package declarations can go here.
|
|
done
|
|
|
|
echo "Generating code for $1"
|
|
${proto} -I${dir} ${proto_files} --${1}_out=${2}
|