blob: b9083d5c487a40417ff6d9b840bd2d0954a0efc6 [file] [log] [blame]
Matt Jeanneret9fba8652019-04-02 12:00:17 -04001# Copyright 2019-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# Makefile for voltha-protos
16default: test
17
David Bainbridge142516e2019-04-19 01:34:58 +000018# set default shell options
19SHELL = bash -e -o pipefail
20
21# Function to extract the last path component from go_package line in .proto files
22define go_package_path
23$(shell grep go_package $(1) | sed -n 's/.*\/\(.*\)";/\1/p')
24endef
25
Matt Jeanneret9fba8652019-04-02 12:00:17 -040026# Variables
David Bainbridge142516e2019-04-19 01:34:58 +000027PROTO_FILES := $(sort $(wildcard protos/voltha_protos/*.proto))
28
Matt Jeanneret9fba8652019-04-02 12:00:17 -040029PROTO_PYTHON_DEST_DIR := python/voltha_protos
30PROTO_PYTHON_PB2 := $(foreach f, $(PROTO_FILES), $(patsubst protos/voltha_protos/%.proto,$(PROTO_PYTHON_DEST_DIR)/%_pb2.py,$(f)))
31PROTO_PYTHON_PB2_GRPC := $(foreach f, $(PROTO_FILES), $(patsubst protos/voltha_protos/%.proto,$(PROTO_PYTHON_DEST_DIR)/%_pb2_grpc.py,$(f)))
David Bainbridge142516e2019-04-19 01:34:58 +000032PROTO_GO_DEST_DIR := go
33PROTO_GO_PB:= $(foreach f, $(PROTO_FILES), $(patsubst protos/voltha_protos/%.proto,$(PROTO_GO_DEST_DIR)/$(call go_package_path,$(f))/%.pb.go,$(f)))
Matt Jeanneret9fba8652019-04-02 12:00:17 -040034
Devmalya Paulf2e13782019-07-09 07:52:15 -040035# Force pb file to be regenrated every time. Otherwise the make process assumes generated version is still valid
36.PHONY: go/voltha.pb protoc_check
David Bainbridge142516e2019-04-19 01:34:58 +000037
Matt Jeanneret9fba8652019-04-02 12:00:17 -040038print:
David Bainbridge142516e2019-04-19 01:34:58 +000039 @echo "Proto files: $(PROTO_FILES)"
40 @echo "Python PB2 files: $(PROTO_PYTHON_PB2)"
41 @echo "Go PB files: $(PROTO_GO_PB)"
Matt Jeanneret9fba8652019-04-02 12:00:17 -040042
43# Generic targets
44protos: python-protos go-protos
45
46build: protos python-build go-protos
47
48test: python-test go-test
49
50clean: python-clean go-clean
51
52# Python targets
Devmalya Paulf2e13782019-07-09 07:52:15 -040053python-protos: protoc_check $(PROTO_PYTHON_PB2)
Matt Jeanneret9fba8652019-04-02 12:00:17 -040054
55venv_protos:
56 virtualenv $@;\
57 source ./$@/bin/activate ; set -u ;\
58 pip install grpcio-tools googleapis-common-protos
59
60$(PROTO_PYTHON_DEST_DIR)/%_pb2.py: protos/voltha_protos/%.proto Makefile venv_protos
61 source ./venv_protos/bin/activate ; set -u ;\
62 python -m grpc_tools.protoc \
David Bainbridge142516e2019-04-19 01:34:58 +000063 -I protos \
64 --python_out=python \
65 --grpc_python_out=python \
66 --descriptor_set_out=$(PROTO_PYTHON_DEST_DIR)/$(basename $(notdir $<)).desc \
67 --include_imports \
68 --include_source_info \
69 $<
Matt Jeanneret9fba8652019-04-02 12:00:17 -040070
David Bainbridge142516e2019-04-19 01:34:58 +000071python-build: setup.py python-protos
Devmalya Paulf2e13782019-07-09 07:52:15 -040072 rm -rf dist/
Matt Jeanneret9fba8652019-04-02 12:00:17 -040073 python ./setup.py sdist
74
75python-test: tox.ini setup.py python-protos
76 tox
77
78python-clean:
Matt Jeanneret9fba8652019-04-02 12:00:17 -040079 find python/ -name '*.pyc' | xargs rm -f
David Bainbridge142516e2019-04-19 01:34:58 +000080 rm -rf \
81 .coverage \
82 .tox \
83 coverage.xml \
84 dist \
85 nose2-results.xml \
86 python/__pycache__ \
87 python/test/__pycache__ \
88 python/voltha_protos.egg-info \
89 venv_protos \
90 $(PROTO_PYTHON_DEST_DIR)/*.desc \
91 $(PROTO_PYTHON_PB2) \
92 $(PROTO_PYTHON_PB2_GRPC)
Matt Jeanneret9fba8652019-04-02 12:00:17 -040093
94# Go targets
Devmalya Paulf2e13782019-07-09 07:52:15 -040095go-protos: protoc_check $(PROTO_GO_PB) go/voltha.pb
David Bainbridge142516e2019-04-19 01:34:58 +000096
97go_temp:
98 mkdir -p go_temp
99
100$(PROTO_GO_PB): $(PROTO_FILES) go_temp
101 @echo "Creating $@"
102 cd protos && protoc \
103 --go_out=MAPS=Mgoogle/protobuf/descriptor.proto=github.com/golang/protobuf/protoc-gen-go/descriptor,plugins=grpc,paths=source_relative:../go_temp \
104 -I . voltha_protos/$$(echo $@ | sed -n 's/.*\/\(.*\).pb.go/\1.proto/p' )
105 mkdir -p $(dir $@)
106 mv go_temp/voltha_protos/$(notdir $@) $@
107
108go/voltha.pb: ${PROTO_FILES}
109 @echo "Creating $@"
110 protoc -I protos -I protos/google/api \
111 --include_imports --include_source_info \
112 --descriptor_set_out=$@ \
113 ${PROTO_FILES}
Matt Jeanneret9fba8652019-04-02 12:00:17 -0400114
Devmalya Paulf2e13782019-07-09 07:52:15 -0400115go-test: protoc_check
Matt Jeanneret9fba8652019-04-02 12:00:17 -0400116 test/test-go-proto-consistency.sh
117
118go-clean:
David Bainbridge142516e2019-04-19 01:34:58 +0000119 rm -rf go_temp
Matt Jeanneret9fba8652019-04-02 12:00:17 -0400120
Devmalya Paulf2e13782019-07-09 07:52:15 -0400121# Protobuf compiler helper functions
122protoc_check:
123ifeq ("", "$(shell which protoc)")
124 @echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
125 @echo "It looks like you don't have a version of protocol buffer tools."
126 @echo "To install the protocol buffer toolchain on Linux, you can run:"
127 @echo " make install-protoc"
128 @echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
129 exit 1
130endif
131ifneq ("libprotoc 3.7.0", "$(shell protoc --version)")
132 @echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
133 @echo "You have the wrong version of protoc installed"
134 @echo "Please install version 3.7.0"
135 @echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
136 exit 1
137endif
138
Matt Jeanneret9fba8652019-04-02 12:00:17 -0400139install-protoc:
Devmalya Paulf2e13782019-07-09 07:52:15 -0400140 @echo "Downloading and installing protocol buffer support (Linux amd64 only)"
141ifneq ("Linux", "$(shell uname -s)")
142 @echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
143 @echo "Automated installation of protoc not supported on $(shell uname -s)"
144 @echo "Please install protoc v3.7.0 from:"
145 @echo " https://github.com/protocolbuffers/protobuf/releases"
146 @echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
147 exit 1
148endif
William Kurkianc91266e2019-04-05 14:21:20 -0400149 @echo "Installation will require sudo priviledges"
Matt Jeanneret9fba8652019-04-02 12:00:17 -0400150 @echo "This will take a few minutes."
Devmalya Paulf2e13782019-07-09 07:52:15 -0400151 @echo "Asking for sudo credentials now so we can install at the end"
Matt Jeanneret9fba8652019-04-02 12:00:17 -0400152 sudo echo "Thanks"; \
Devmalya Paulf2e13782019-07-09 07:52:15 -0400153 PROTOC_VERSION="3.7.0" ;\
154 PROTOC_SHA256SUM="a1b8ed22d6dc53c5b8680a6f1760a305b33ef471bece482e92728f00ba2a2969" ;\
155 curl -L -o /tmp/protoc-$${PROTOC_VERSION}-linux-x86_64.zip https://github.com/google/protobuf/releases/download/v$${PROTOC_VERSION}/protoc-$${PROTOC_VERSION}-linux-x86_64.zip ;\
156 echo "$${PROTOC_SHA256SUM} /tmp/protoc-$${PROTOC_VERSION}-linux-x86_64.zip" | sha256sum -c - ;\
157 unzip /tmp/protoc-$${PROTOC_VERSION}-linux-x86_64.zip -d /tmp/protoc3 ;\
158 sudo mv /tmp/protoc3/bin/* /usr/local/bin/ ;\
159 sudo mv /tmp/protoc3/include/* /usr/local/include/ ;\
160 sudo chmod -R a+rx /usr/local/bin/* ;\
161 sudo chmod -R a+rX /usr/local/include/