blob: 7ed7d809cdeab1d98ffa1785c8ad3511f784fd1b [file] [log] [blame]
Joey Armstronge6cdd8e2022-12-29 11:58:15 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstronge66eaaf2023-01-15 18:58:52 -05003# Copyright 2019-2023 Open Networking Foundation (ONF) and the ONF Contributors
Zack Williams52209662019-02-07 10:15:31 -07004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Joey Armstronge6cdd8e2022-12-29 11:58:15 -050016# -----------------------------------------------------------------------
17
Joey Armstronge66eaaf2023-01-15 18:58:52 -050018.PHONY: test
Joey Armstronge6cdd8e2022-12-29 11:58:15 -050019.DEFAULT_GOAL := test
20
Joey Armstronge66eaaf2023-01-15 18:58:52 -050021##-------------------##
22##---] GLOBALS [---##
23##-------------------##
Joey Armstronge6cdd8e2022-12-29 11:58:15 -050024TOP ?= .
25MAKEDIR ?= $(TOP)/makefiles
26
27$(if $(VERBOSE),$(eval export VERBOSE=$(VERBOSE))) # visible to include(s)
28
Joey Armstrong761579c2023-05-08 11:59:57 -040029##--------------------------
30## Enable setup.py debugging
31##--------------------------
32# https://docs.python.org/3/distutils/setupscript.html#debugging-the-setup-script
Joey Armstrong56b36782023-05-30 17:30:11 -040033# export DISTUTILS_DEBUG := 1 # verbose: pip
34export DOCKER_DEBUG := 1 # verbose: docker
Joey Armstrong761579c2023-05-08 11:59:57 -040035
Joey Armstrongc2277652023-01-11 17:41:36 -050036# Makefile for voltha-protos
37default: test
38
Joey Armstronge66eaaf2023-01-15 18:58:52 -050039## Library linting
40# NO-LINT-MAKEFILE := true # cleanup needed
41NO-LINT-SHELL := true # cleanup needed
42
Joey Armstronge6cdd8e2022-12-29 11:58:15 -050043##--------------------##
44##---] INCLUDES [---##
45##--------------------##
Joey Armstronge66eaaf2023-01-15 18:58:52 -050046include $(MAKEDIR)/include.mk
Zack Williams52209662019-02-07 10:15:31 -070047
Zack Williams43bfd9e2019-04-12 13:09:31 -070048# Function to extract the last path component from go_package line in .proto files
49define go_package_path
50$(shell grep go_package $(1) | sed -n 's/.*\/\(.*\)";/\1/p')
51endef
52
Joey Armstronge05f6492023-05-31 11:27:31 -040053# -----------------------------------------------------------------------
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030054# Function to extract the last path component from package line in .proto files
Joey Armstronge05f6492023-05-31 11:27:31 -040055# % grep 'package' will match:
56# o package <name> ;
57# o option java_package='<dot-pkg-fqdn>
58# -----------------------------------------------------------------------
59# RETURN: protos/voltha_protos/common.proto => common
60# -----------------------------------------------------------------------
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030061define java_package_path
62$(shell grep package $(1) | sed -n 's/.*\/\(.*\)";/\1/p')
63endef
64
Zack Williams52209662019-02-07 10:15:31 -070065# Variables
Zack Williams43bfd9e2019-04-12 13:09:31 -070066PROTO_FILES := $(sort $(wildcard protos/voltha_protos/*.proto))
67
Zack Williams52209662019-02-07 10:15:31 -070068PROTO_PYTHON_DEST_DIR := python/voltha_protos
69PROTO_PYTHON_PB2 := $(foreach f, $(PROTO_FILES), $(patsubst protos/voltha_protos/%.proto,$(PROTO_PYTHON_DEST_DIR)/%_pb2.py,$(f)))
Matt Jeanneret37e0fc62019-03-07 12:33:21 -050070PROTO_PYTHON_PB2_GRPC := $(foreach f, $(PROTO_FILES), $(patsubst protos/voltha_protos/%.proto,$(PROTO_PYTHON_DEST_DIR)/%_pb2_grpc.py,$(f)))
Zack Williams43bfd9e2019-04-12 13:09:31 -070071PROTO_GO_DEST_DIR := go
72PROTO_GO_PB:= $(foreach f, $(PROTO_FILES), $(patsubst protos/voltha_protos/%.proto,$(PROTO_GO_DEST_DIR)/$(call go_package_path,$(f))/%.pb.go,$(f)))
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030073PROTO_JAVA_DEST_DIR := java
Joey Armstrong670d40c2023-05-11 20:49:26 -040074PROTO_JAVA_PB := $(foreach f, $(PROTO_FILES), $(patsubst protos/voltha_protos/%.proto,$(PROTO_JAVA_DEST_DIR)/$(call java_package_path,$(f))/%.pb.java,$(f)))
Joey Armstrong761579c2023-05-08 11:59:57 -040075
Zack Williams25e0a322019-06-07 14:07:21 -070076# Force pb file to be regenrated every time. Otherwise the make process assumes generated version is still valid
Kent Hagerman868dc382020-01-20 11:24:09 -050077.PHONY: voltha.pb
Matt Jeanneret15249fa2019-04-12 20:25:31 -040078
Joey Armstronge0c1a8d2023-04-13 15:16:21 -040079##----------------##
80##---] DEPS [---##
81##----------------##
82infra-deps := $(null)
83infra-deps += Makefile
84infra-deps += $(venv-activate-script)
85
86## -----------------------------------------------------------------------
87## -----------------------------------------------------------------------
Zack Williams52209662019-02-07 10:15:31 -070088print:
Zack Williams43bfd9e2019-04-12 13:09:31 -070089 @echo "Proto files: $(PROTO_FILES)"
90 @echo "Python PB2 files: $(PROTO_PYTHON_PB2)"
91 @echo "Go PB files: $(PROTO_GO_PB)"
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030092 @echo "JAVA PB files: $(PROTO_JAVA_PB)"
Zack Williams52209662019-02-07 10:15:31 -070093
94# Generic targets
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030095protos: python-protos go-protos java-protos
Zack Williams52209662019-02-07 10:15:31 -070096
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030097build: protos python-build go-protos java-protos
Zack Williams52209662019-02-07 10:15:31 -070098
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030099test: python-test go-test java-test
Zack Williams52209662019-02-07 10:15:31 -0700100
Joey Armstrong761579c2023-05-08 11:59:57 -0400101clean :: python-clean java-clean go-clean
Zack Williams52209662019-02-07 10:15:31 -0700102
Joey Armstrong761579c2023-05-08 11:59:57 -0400103sterile :: clean
Joey Armstrongc2277652023-01-11 17:41:36 -0500104
Joey Armstronge0c1a8d2023-04-13 15:16:21 -0400105## -----------------------------------------------------------------------
106## Python targets
107## -----------------------------------------------------------------------
108python-protos: $(infra-deps) $(PROTO_PYTHON_PB2)
Zack Williams52209662019-02-07 10:15:31 -0700109
Joey Armstrong761579c2023-05-08 11:59:57 -0400110## -----------------------------------------------------------------------
111## -----------------------------------------------------------------------
112$(PROTO_PYTHON_DEST_DIR)/%_pb2.py: \
113 protos/voltha_protos/%.proto \
114 Makefile \
115 $(venv-activate-script)
Joey Armstrong670d40c2023-05-11 20:49:26 -0400116
117 @echo
118 @echo "** -----------------------------------------------------------------------"
119 @echo "** $(MAKE): processing target [$@]"
120 @echo "** -----------------------------------------------------------------------"
121
122 $(activate) && python -m grpc_tools.protoc \
Zack Williams43bfd9e2019-04-12 13:09:31 -0700123 -I protos \
124 --python_out=python \
125 --grpc_python_out=python \
126 --descriptor_set_out=$(PROTO_PYTHON_DEST_DIR)/$(basename $(notdir $<)).desc \
127 --include_imports \
128 --include_source_info \
129 $<
Zack Williams52209662019-02-07 10:15:31 -0700130
Joey Armstrong670d40c2023-05-11 20:49:26 -0400131## -----------------------------------------------------------------------
132## Intent:
133## -----------------------------------------------------------------------
134show:
135 $(call banner-enter,target $@)
136 @echo
137 $(call banner-leave,target $@)
138
139## -----------------------------------------------------------------------
140## Intent:
141## -----------------------------------------------------------------------
142python-build: setup.py python-protos
143
144 $(call banner-enter,target $@)
145
Joey Armstronge6cdd8e2022-12-29 11:58:15 -0500146 $(RM) -r dist/
Zack Williams52209662019-02-07 10:15:31 -0700147 python ./setup.py sdist
148
Joey Armstrong670d40c2023-05-11 20:49:26 -0400149 $(call banner-leave,target $@)
150
151## -----------------------------------------------------------------------
152## Intent:
153## -----------------------------------------------------------------------
Zack Williams52209662019-02-07 10:15:31 -0700154python-test: tox.ini setup.py python-protos
Joey Armstrong670d40c2023-05-11 20:49:26 -0400155 $(call banner-enter,target $@)
Joey Armstrong670d40c2023-05-11 20:49:26 -0400156 $(activate) && python --version
Zack Williams52209662019-02-07 10:15:31 -0700157 tox
Joey Armstrong670d40c2023-05-11 20:49:26 -0400158 $(call banner-leave,target $@)
159
160## -----------------------------------------------------------------------
161## Intent:
162## -----------------------------------------------------------------------
Zack Williams52209662019-02-07 10:15:31 -0700163python-clean:
Joey Armstronge66eaaf2023-01-15 18:58:52 -0500164 find python -name '__pycache__' -type d -print0 \
165 | xargs -0 --no-run-if-empty $(RM) -r
Joey Armstrongc2277652023-01-11 17:41:36 -0500166 find python -name '*.pyc' -type f -print0 \
167 | xargs -0 --no-run-if-empty $(RM)
Joey Armstronge6cdd8e2022-12-29 11:58:15 -0500168 $(RM) -r \
Zack Williams43bfd9e2019-04-12 13:09:31 -0700169 .coverage \
170 .tox \
171 coverage.xml \
172 dist \
173 nose2-results.xml \
174 python/__pycache__ \
175 python/test/__pycache__ \
176 python/voltha_protos.egg-info \
Joey Armstrong761579c2023-05-08 11:59:57 -0400177 "$(venv-abs-path)" \
Zack Williams43bfd9e2019-04-12 13:09:31 -0700178 $(PROTO_PYTHON_DEST_DIR)/*.desc \
179 $(PROTO_PYTHON_PB2) \
180 $(PROTO_PYTHON_PB2_GRPC)
Zack Williams52209662019-02-07 10:15:31 -0700181
Joey Armstrong761579c2023-05-08 11:59:57 -0400182## -----------------------------------------------------------------------
183## Intent: Revert go to a clean state.
184## o TODO - go/ directory should not be placed under revision control.
185## o Build should retrieve versioned sources from a central repo.
186## -----------------------------------------------------------------------
khenaidoo5fc5cea2021-08-11 17:39:16 -0400187go-clean:
Joey Armstronge6cdd8e2022-12-29 11:58:15 -0500188 $(RM) -r go/*
Joey Armstrong761579c2023-05-08 11:59:57 -0400189 $(HIDE)$(MAKE) repair
190
191## -----------------------------------------------------------------------
192## Intent: Recover from a fatal failed build state:
193## o build removes go/ while regenerating prototypes.
194## o chicken-n-egg: make becomes fatal when go/ is removed and proten fails.
195## -----------------------------------------------------------------------
196repair:
197 /usr/bin/env git checkout go
198
Joey Armstrong670d40c2023-05-11 20:49:26 -0400199## -----------------------------------------------------------------------
200## Intent: Go targets
201## -----------------------------------------------------------------------
Kent Hagerman868dc382020-01-20 11:24:09 -0500202go-protos: voltha.pb
Joey Armstrong670d40c2023-05-11 20:49:26 -0400203
Joey Armstrong56b36782023-05-30 17:30:11 -0400204 $(call banner-enter,target $@)
Joey Armstrong50080092023-07-06 15:18:37 -0400205 @echo "** Creating *.go.pb files"
Joey Armstrong1ff23e92023-07-13 16:24:32 -0400206
Joey Armstrongba3d9d12024-01-15 14:22:11 -0500207 $(if $(LOCAL_FIX_PERMS),chmod -R o+w $(PROTO_GO_DEST_DIR))
208
Joey Armstrong761579c2023-05-08 11:59:57 -0400209 ${PROTOC_SH} $(quote-double)\
Kent Hagerman868dc382020-01-20 11:24:09 -0500210 set -e -o pipefail; \
211 for x in ${PROTO_FILES}; do \
212 echo \$$x; \
213 protoc --go_out=plugins=grpc:/go/src -I protos \$$x; \
Joey Armstrong56b36782023-05-30 17:30:11 -0400214 done\
215 $(quote-double)
216
Joey Armstrongba3d9d12024-01-15 14:22:11 -0500217 $(if $(LOCAL_FIX_PERMS),chmod -R o-w $(PROTO_GO_DEST_DIR))
218
Joey Armstrong56b36782023-05-30 17:30:11 -0400219 $(call banner-leave,target $@)
Zack Williams43bfd9e2019-04-12 13:09:31 -0700220
Joey Armstrong670d40c2023-05-11 20:49:26 -0400221## -----------------------------------------------------------------------
222## Intent:
Joey Armstrong56b36782023-05-30 17:30:11 -0400223## ----------------------------------------------------------------------
224voltha.pb: show-proto-files
Joey Armstrong670d40c2023-05-11 20:49:26 -0400225 $(call banner-enter,target $@)
226
227 ${PROTOC} \
228 -I protos \
229 -I protos/google/api \
230 --include_imports \
231 --include_source_info \
Kent Hagerman868dc382020-01-20 11:24:09 -0500232 --descriptor_set_out=$@ \
233 ${PROTO_FILES}
Zack Williams43bfd9e2019-04-12 13:09:31 -0700234
Joey Armstrong670d40c2023-05-11 20:49:26 -0400235 $(call banner-leave,target $@)
236
237## -----------------------------------------------------------------------
238## Intent:
239## -----------------------------------------------------------------------
Kent Hagerman868dc382020-01-20 11:24:09 -0500240go-test:
Joey Armstrong670d40c2023-05-11 20:49:26 -0400241 $(call banner-enter,target $@)
242
William Kurkianad745652019-03-20 08:45:51 -0400243 test/test-go-proto-consistency.sh
Kent Hagerman868dc382020-01-20 11:24:09 -0500244 ${GO} mod verify
Zack Williams52209662019-02-07 10:15:31 -0700245
Joey Armstrong670d40c2023-05-11 20:49:26 -0400246 $(call banner-leave,target $@)
247
248## -----------------------------------------------------------------------
249## Intent: Java targets
250## -----------------------------------------------------------------------
Joey Armstrong56b36782023-05-30 17:30:11 -0400251
252java-protos-dirs += java_temp/src/main/java
253java-protos-dirs += java_temp/src/main/java/org
254# local docker problem
255java-protos-dirs += java_temp/src/main/java/org/opencord/voltha/adapter
256java-protos-dirs += java_temp/src/main/java/org/opencord/voltha/adapter_service
257
258mkdir-args += -vp
Joey Armstrong56b36782023-05-30 17:30:11 -0400259
Kent Hagerman868dc382020-01-20 11:24:09 -0500260java-protos: voltha.pb
Joey Armstrong56b36782023-05-30 17:30:11 -0400261
Joey Armstrong670d40c2023-05-11 20:49:26 -0400262 $(call banner-enter,target $@)
263
Joey Armstrong56b36782023-05-30 17:30:11 -0400264 mkdir $(mkdir-args) $(java-protos-dirs)
Joey Armstrongcb986bf2023-12-12 17:22:05 -0500265
Joey Armstrong56b36782023-05-30 17:30:11 -0400266 $(docker-sh) $(quote-double) find $(java-protos-dirs) -print0 \
267 | xargs -0 -n1 /bin/ls -ld $(quote-double)
268
Joey Armstrongcb986bf2023-12-12 17:22:05 -0500269 $(if $(LOCAL_FIX_PERMS),chmod -R o+w java_temp)
Joey Armstrong761579c2023-05-08 11:59:57 -0400270 @${PROTOC_SH} $(quote-double) \
Kent Hagerman868dc382020-01-20 11:24:09 -0500271 set -e -o pipefail; \
272 for x in ${PROTO_FILES}; do \
273 echo \$$x; \
274 protoc --java_out=java_temp/src/main/java -I protos \$$x; \
Joey Armstrong56b36782023-05-30 17:30:11 -0400275 done\
276 $(quote-double)
Joey Armstrongcb986bf2023-12-12 17:22:05 -0500277 $(if $(LOCAL_FIX_PERMS),chmod -R o-w java_temp)
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300278
Joey Armstrong670d40c2023-05-11 20:49:26 -0400279 # Move files into place after all prototypes have generated.
280 # TODO: Remove the extra step, use makefile deps and
281 # generate in-place as needed.
282 @mkdir -p java
Joey Armstrong50080092023-07-06 15:18:37 -0400283 rsync -r --checksum java_temp/src/main/java/. java/.
Joey Armstrong670d40c2023-05-11 20:49:26 -0400284
285 $(call banner-leave,target $@)
286
287## -----------------------------------------------------------------------
288## Intent: Tests if the generated java classes are compilable
289## -----------------------------------------------------------------------
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300290java-test: java-protos
291 cp test/pom.xml java_temp
292 cd java_temp && mvn compile
293
Joey Armstrong670d40c2023-05-11 20:49:26 -0400294## -----------------------------------------------------------------------
295## Intent: Custodial service
296## -----------------------------------------------------------------------
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300297java-clean:
Joey Armstronge6cdd8e2022-12-29 11:58:15 -0500298 $(RM) -r java
299 $(RM) -r java_temp
300
Joey Armstrong56b36782023-05-30 17:30:11 -0400301## -----------------------------------------------------------------------
302## Intent: Placeholder for library targets
303## -----------------------------------------------------------------------
Joey Armstronge66eaaf2023-01-15 18:58:52 -0500304lint :
305
Joey Armstrong56b36782023-05-30 17:30:11 -0400306## -----------------------------------------------------------------------
Joey Armstrong50080092023-07-06 15:18:37 -0400307## Intent: Make sterile is unrecoverable due to handling of java_temp
308## -----------------------------------------------------------------------
309protos-clean:
310 $(MAKE) sterile
311 $(MAKE) build
312 $(MAKE) protos
313 $(MAKE) test
314
315## -----------------------------------------------------------------------
Joey Armstrong56b36782023-05-30 17:30:11 -0400316## Intent: Display/debug targets
317## -----------------------------------------------------------------------
318.PHONY: show-proto-files
319show-proto-files:
Joey Armstrong1ff23e92023-07-13 16:24:32 -0400320
321 $(call banner-enter,Target $@)
322 @echo -e "PROTO_FILES:\n$(PROTO_FILES)" | tr ' ' '\n'
323 $(call banner-leave,Target $@)
Joey Armstrong56b36782023-05-30 17:30:11 -0400324
Joey Armstronge6cdd8e2022-12-29 11:58:15 -0500325# [EOF]
Joey Armstrong56b36782023-05-30 17:30:11 -0400326