blob: b431db2d6d13fc9aa940b5c62e964a6f53c71b0e [file] [log] [blame]
Joey Armstrong73d35792022-11-25 08:46:46 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
3# Copyright 2017-2022 Open Networking Foundation (ONF) and the ONF Contributors
Matteo Scandolo4747d292019-08-05 11:50:18 -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 Armstrong73d35792022-11-25 08:46:46 -050016# -----------------------------------------------------------------------
Matteo Scandolo4747d292019-08-05 11:50:18 -070017
Joey Armstrong73d35792022-11-25 08:46:46 -050018.DEFAULT_GOAL := help
19MAKECMDGOALS ?= help
20
21TOP ?= .
22MAKEDIR ?= $(TOP)/makefiles
23
24##--------------------##
25##---] INCLUDES [---##
26##--------------------##
27help-targets := help-all help HELP
28$(if $(filter $(help-targets),$(MAKECMDGOALS))\
29 ,$(eval include $(MAKEDIR)/help.mk))
30
31##-------------------##
32##---] GLOBALS [---##
33##-------------------##
34SHELL = bash -e -o pipefail
35VERSION ?= $(shell cat ./VERSION)
Matteo Scandolo84f7d482019-08-08 19:00:47 -070036DIFF ?= $(git diff --shortstat 2> /dev/null | tail -n1)
Zdravko Bozakov2da76342019-10-21 09:47:35 +020037GIT_STATUS ?= $(shell [ -z "$DIFF" ] && echo "Dirty" || echo "Clean")
Matteo Scandolo4747d292019-08-05 11:50:18 -070038
Joey Armstrong73d35792022-11-25 08:46:46 -050039## Docker related -- are these ${shell vars} or $(make macros) ?
Matteo Scandolo4747d292019-08-05 11:50:18 -070040DOCKER_TAG ?= ${VERSION}
Andrea Campanellac5b106c2022-01-19 19:06:46 +010041DOCKER_REPOSITORY ?=
42DOCKER_REGISTRY ?=
43DOCKER_RUN_ARGS ?=
Andrea Campanellad683d162020-10-13 16:40:27 +020044DOCKER_PORTS ?= -p 50070:50070 -p 50060:50060 -p 50071:50071 -p 50072:50072 -p 50073:50073 -p 50074:50074 -p 50075:50075
Andrea Campanella64dffd52019-12-17 17:29:57 -080045TYPE ?= minimal
Zdravko Bozakov2da76342019-10-21 09:47:35 +020046
Kent Hagerman60d62302020-03-10 17:02:36 -040047# tool containers
Matteo Scandolo34a9ea32020-11-19 17:40:49 -080048VOLTHA_TOOLS_VERSION ?= 2.3.1
Zdravko Bozakov2da76342019-10-21 09:47:35 +020049
Kent Hagerman60d62302020-03-10 17:02:36 -040050GO = docker run --rm --user $$(id -u):$$(id -g) -v ${CURDIR}:/app $(shell test -t 0 && echo "-it") -v gocache:/.cache -v gocache-${VOLTHA_TOOLS_VERSION}:/go/pkg voltha/voltha-ci-tools:${VOLTHA_TOOLS_VERSION}-golang go
Joey Armstrong73d35792022-11-25 08:46:46 -050051GO_SH = docker run --rm --user $$(id -u):$$(id -g) -v ${CURDIR}:/app $(shell test -t 0 && echo "-it") -v gocache:/.cache -v gocache-${VOLTHA_TOOLS_VERSION}:/go/pkg voltha/voltha-ci-tools:${VOLTHA_TOOLS_VERSION}-golang sh -c '# fix-editor-colorization-quote(')
Kent Hagerman60d62302020-03-10 17:02:36 -040052GO_JUNIT_REPORT = docker run --rm --user $$(id -u):$$(id -g) -v ${CURDIR}:/app -i voltha/voltha-ci-tools:${VOLTHA_TOOLS_VERSION}-go-junit-report go-junit-report
Matteo Scandolo34a9ea32020-11-19 17:40:49 -080053GOCOVER_COBERTURA = docker run --rm --user $$(id -u):$$(id -g) -v ${CURDIR}:/app/src/github.com/opencord/bbsim -i voltha/voltha-ci-tools:${VOLTHA_TOOLS_VERSION}-gocover-cobertura gocover-cobertura
Matteo Scandolo90d08f62020-10-29 12:06:55 -070054GOLANGCI_LINT = docker run --rm --user $$(id -u):$$(id -g) -v ${CURDIR}:/app $(shell test -t 0 && echo "-it") -v gocache:/.cache -v gocache-${VOLTHA_TOOLS_VERSION}:/go/pkg voltha/voltha-ci-tools:${VOLTHA_TOOLS_VERSION}-golangci-lint golangci-lint
Kent Hagerman60d62302020-03-10 17:02:36 -040055HADOLINT = docker run --rm --user $$(id -u):$$(id -g) -v ${CURDIR}:/app $(shell test -t 0 && echo "-it") voltha/voltha-ci-tools:${VOLTHA_TOOLS_VERSION}-hadolint hadolint
56PROTOC = docker run --rm --user $$(id -u):$$(id -g) -v ${CURDIR}:/app $(shell test -t 0 && echo "-it") -v gocache-${VOLTHA_TOOLS_VERSION}:/go/pkg voltha/voltha-ci-tools:${VOLTHA_TOOLS_VERSION}-protoc protoc
57
Joey Armstrong73d35792022-11-25 08:46:46 -050058## use local vars to shorten paths
59bbsim-tag = ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}bbsim:${DOCKER_TAG}
60
Matteo Scandolo4747d292019-08-05 11:50:18 -070061# Public targets
Matteo Scandolo4747d292019-08-05 11:50:18 -070062all: help
63
hkouser24361d42020-12-14 19:21:47 +053064protos: api/bbsim/bbsim.pb.go api/bbsim/bbsim.pb.gw.go api/legacy/bbsim.pb.go api/legacy/bbsim.pb.gw.go api/bbsim/bbsim_dmi.pb.go # @HELP Build proto files
Matteo Scandolo01d41ce2019-10-28 15:42:47 -070065
Matteo Scandolo6866b8c2019-10-28 16:15:24 -070066.PHONY: build
Kent Hagerman60d62302020-03-10 17:02:36 -040067build: protos build-bbsim build-bbsimctl build-bbr
68
69## lint and unit tests
70
71lint-dockerfile:
72 @echo "Running Dockerfile lint check..."
73 @${HADOLINT} $$(find ./build -name "Dockerfile*")
74 @echo "Dockerfile lint check OK"
75
76lint-mod:
77 @echo "Running dependency check..."
78 @${GO} mod verify
79 @echo "Dependency check OK. Running vendor check..."
80 @git status > /dev/null
81 @git diff-index --quiet HEAD -- go.mod go.sum vendor || (echo "ERROR: Staged or modified files must be committed before running this test" && git status -- go.mod go.sum vendor && exit 1)
82 @[[ `git ls-files --exclude-standard --others go.mod go.sum vendor` == "" ]] || (echo "ERROR: Untracked files must be cleaned up before running this test" && git status -- go.mod go.sum vendor && exit 1)
83 ${GO} mod tidy
84 ${GO} mod vendor
85 @git status > /dev/null
86 @git diff-index --quiet HEAD -- go.mod go.sum vendor || (echo "ERROR: Modified files detected after running go mod tidy / go mod vendor" && git status -- go.mod go.sum vendor && git checkout -- go.mod go.sum vendor && exit 1)
87 @[[ `git ls-files --exclude-standard --others go.mod go.sum vendor` == "" ]] || (echo "ERROR: Untracked files detected after running go mod tidy / go mod vendor" && git status -- go.mod go.sum vendor && git checkout -- go.mod go.sum vendor && exit 1)
88 @echo "Vendor check OK."
89
90lint: lint-mod lint-dockerfile
91
Matteo Scandolo90d08f62020-10-29 12:06:55 -070092sca:
Joey Armstrong73d35792022-11-25 08:46:46 -050093 @$(RM) -r ./sca-report
Kent Hagerman60d62302020-03-10 17:02:36 -040094 @mkdir -p ./sca-report
95 @echo "Running static code analysis..."
Matteo Scandolo96f89192021-03-12 13:17:26 -080096 @${GOLANGCI_LINT} run -vv --deadline=6m --out-format junit-xml ./... | tee ./sca-report/sca-report.xml
Kent Hagerman60d62302020-03-10 17:02:36 -040097 @echo ""
98 @echo "Static code analysis OK"
Matteo Scandolo4747d292019-08-05 11:50:18 -070099
Matteo Scandolo0e9fabf2020-09-30 17:19:27 -0700100test: docs-lint test-unit test-bbr
Matteo Scandolo569e7172019-12-20 11:51:51 -0800101
Matteo Scandolocedde462021-03-09 17:37:16 -0800102test-unit: clean local-omci-lib-go # @HELP Execute unit tests
Matteo Scandolo90d08f62020-10-29 12:06:55 -0700103 @echo "Running unit tests..."
Kent Hagerman60d62302020-03-10 17:02:36 -0400104 @mkdir -p ./tests/results
Matteo Scandolo4b077aa2021-02-16 17:33:37 -0800105 @${GO} test -mod=vendor -bench=. -v -coverprofile ./tests/results/go-test-coverage.out -covermode count ./... 2>&1 | tee ./tests/results/go-test-results.out ;\
Kent Hagerman60d62302020-03-10 17:02:36 -0400106 RETURN=$$? ;\
107 ${GO_JUNIT_REPORT} < ./tests/results/go-test-results.out > ./tests/results/go-test-results.xml ;\
108 ${GOCOVER_COBERTURA} < ./tests/results/go-test-coverage.out > ./tests/results/go-test-coverage.xml ;\
109 exit $$RETURN
Matteo Scandolo4747d292019-08-05 11:50:18 -0700110
Kent Hagerman60d62302020-03-10 17:02:36 -0400111test-bbr: release-bbr docker-build # @HELP Validate that BBSim and BBR are working together
Joey Armstrong73d35792022-11-25 08:46:46 -0500112 DOCKER_RUN_ARGS="-pon 2 -onu 2" $(MAKE) docker-run
Matteo Scandolo569e7172019-12-20 11:51:51 -0800113 sleep 5
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700114 ./$(RELEASE_DIR)/$(RELEASE_BBR_NAME)-linux-amd64 -pon 2 -onu 2 -logfile tmp.logs
Joey Armstrong73d35792022-11-25 08:46:46 -0500115 docker $(RM) -f bbsim
Matteo Scandolo569e7172019-12-20 11:51:51 -0800116
Kent Hagerman60d62302020-03-10 17:02:36 -0400117mod-update: # @HELP Download the dependencies to the vendor folder
118 ${GO} mod tidy
119 ${GO} mod vendor
Matteo Scandolo38305492019-10-11 11:36:00 -0700120
Matteo Scandolocedde462021-03-09 17:37:16 -0800121docker-build: local-omci-lib-go local-protos# @HELP Build the BBSim docker container (contains BBSimCtl too)
Kent Hagerman60d62302020-03-10 17:02:36 -0400122 docker build \
Joey Armstrong73d35792022-11-25 08:46:46 -0500123 -t "$(bbsim-tag)" \
Kent Hagerman60d62302020-03-10 17:02:36 -0400124 -f build/package/Dockerfile .
Matteo Scandolo4747d292019-08-05 11:50:18 -0700125
Matteo Scandolo01d41ce2019-10-28 15:42:47 -0700126docker-push: # @HELP Push the docker container to a registry
Joey Armstrong73d35792022-11-25 08:46:46 -0500127 docker push "$(bbsim-tag)"
Andrea Campanella64dffd52019-12-17 17:29:57 -0800128docker-kind-load:
129 @if [ "`kind get clusters | grep voltha-$(TYPE)`" = '' ]; then echo "no voltha-$(TYPE) cluster found" && exit 1; fi
Joey Armstrong73d35792022-11-25 08:46:46 -0500130 kind load docker-image "$(bbsim-tag)" --name=voltha-$(TYPE) --nodes $(shell kubectl get nodes --template='{{range .items}}{{.metadata.name}},{{end}}' | sed 's/,$$//')
131
132## -----------------------------------------------------------------------
133## docker-run
134## -----------------------------------------------------------------------
Joey Armstrong72558cb2022-11-30 06:35:52 -0500135
136# % docker run --detach unless dev-mode
137is-docker-run := $(filter-out %-dev,$(MAKECMDGOALS))
138is-docker-run := $(findstring docker-run,$(is-docker-run))
139
Joey Armstrong73d35792022-11-25 08:46:46 -0500140docker-run-cmd = docker run
Joey Armstrong72558cb2022-11-30 06:35:52 -0500141$(if $(is-docker-run),$(eval docker-run-cmd += --detach))
Joey Armstrong73d35792022-11-25 08:46:46 -0500142docker-run-cmd += ${DOCKER_PORTS}
143docker-run-cmd += --privileged
144docker-run-cmd += --rm
145docker-run-cmd += --name bbsim
146docker-run-cmd += "$(bbsim-tag)" /app/bbsim
147docker-run-cmd += ${DOCKER_RUN_ARGS}
Andrea Campanella64dffd52019-12-17 17:29:57 -0800148
Matteo Scandoloe383d5d2019-10-25 14:47:27 -0700149docker-run: # @HELP Runs the container locally (available options: DOCKER_RUN_ARGS="-pon 2 -onu 2" make docker-run)
Joey Armstrong73d35792022-11-25 08:46:46 -0500150 docker ps
Joey Armstrong72558cb2022-11-30 06:35:52 -0500151 $(docker-run-cmd)
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700152
Matteo Scandoloe383d5d2019-10-25 14:47:27 -0700153docker-run-dev: # @HELP Runs the container locally (intended for development purposes, not in detached mode)
Joey Armstrong73d35792022-11-25 08:46:46 -0500154 $(docker-run-cmd)
Matteo Scandoloe383d5d2019-10-25 14:47:27 -0700155
Joey Armstrong73d35792022-11-25 08:46:46 -0500156## -----------------------------------------------------------------------
157## docker-run
158## -----------------------------------------------------------------------
Zack Williams4b0ef4d2019-12-18 14:25:20 -0700159.PHONY: docs docs-lint
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200160docs: swagger # @HELP Generate docs and opens them in the browser
Joey Armstrong73d35792022-11-25 08:46:46 -0500161 $(MAKE) -C docs html
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200162 @echo -e "\nBBSim documentation generated in file://${PWD}/docs/build/html/index.html"
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700163
Zack Williams4b0ef4d2019-12-18 14:25:20 -0700164docs-lint:
Joey Armstrong73d35792022-11-25 08:46:46 -0500165 $(MAKE) -C docs lint
Zack Williams4b0ef4d2019-12-18 14:25:20 -0700166
Matteo Scandolo8dea3992019-10-22 10:54:25 -0700167# Release related items
168# Generates binaries in $RELEASE_DIR with name $RELEASE_NAME-$RELEASE_OS_ARCH
169# Inspired by: https://github.com/kubernetes/minikube/releases
170RELEASE_DIR ?= release
171RELEASE_OS_ARCH ?= linux-amd64 linux-arm64 windows-amd64 darwin-amd64
172
Kent Hagerman60d62302020-03-10 17:02:36 -0400173RELEASE_BBR_NAME ?= bbr
174RELEASE_BBSIM_NAME ?= bbsim
175RELEASE_BBSIMCTL_NAME ?= bbsimctl
Matteo Scandolo8dea3992019-10-22 10:54:25 -0700176
Matteo Scandolo90d08f62020-10-29 12:06:55 -0700177release-bbr:
Kent Hagerman60d62302020-03-10 17:02:36 -0400178 @echo "$(RELEASE_BBR_NAME)-linux-amd64"
Joey Armstrong787278a2022-11-30 09:30:22 -0500179 ${GO} build -mod vendor \
Kent Hagerman60d62302020-03-10 17:02:36 -0400180 -ldflags "-w -X main.buildTime=$(shell date +%Y/%m/%d-%H:%M:%S) \
181 -X main.commitHash=$(shell git log --pretty=format:%H -n 1) \
182 -X main.gitStatus=${GIT_STATUS} \
183 -X main.version=${VERSION}" \
184 -o "$(RELEASE_DIR)/$(RELEASE_BBR_NAME)-linux-amd64" ./cmd/bbr
Matteo Scandolo8dea3992019-10-22 10:54:25 -0700185
Matteo Scandolo90d08f62020-10-29 12:06:55 -0700186release-bbsim:
Kent Hagerman60d62302020-03-10 17:02:36 -0400187 @echo "$(RELEASE_BBSIM_NAME)-linux-amd64"
Joey Armstrong787278a2022-11-30 09:30:22 -0500188 ${GO} build -mod vendor \
Kent Hagerman60d62302020-03-10 17:02:36 -0400189 -ldflags "-w -X main.buildTime=$(shell date +%Y/%m/%d-%H:%M:%S) \
190 -X main.commitHash=$(shell git log --pretty=format:%H -n 1) \
191 -X main.gitStatus=${GIT_STATUS} \
192 -X main.version=${VERSION}" \
193 -o "$(RELEASE_DIR)/$(RELEASE_BBSIM_NAME)-linux-amd64" ./cmd/bbsim
Matteo Scandolo8dea3992019-10-22 10:54:25 -0700194
Kent Hagerman60d62302020-03-10 17:02:36 -0400195release-bbsimctl:
Joey Armstrong787278a2022-11-30 09:30:22 -0500196 @echo "** $(MAKE): processing target [$@]"
197 ${GO_SH} set -eo pipefail; \
Kent Hagerman60d62302020-03-10 17:02:36 -0400198 for os_arch in ${RELEASE_OS_ARCH}; do \
199 echo "$(RELEASE_BBSIMCTL_NAME)-$$os_arch"; \
200 GOOS="$${os_arch%-*}" GOARCH="$${os_arch#*-}" go build -mod vendor \
201 -ldflags "-w -X github.com/opencord/bbsim/internal/bbsimctl/config.BuildTime=$(shell date +%Y/%m/%d-%H:%M:%S) \
202 -X github.com/opencord/bbsim/internal/bbsimctl/config.CommitHash=$(shell git log --pretty=format:%H -n 1) \
203 -X github.com/opencord/bbsim/internal/bbsimctl/config.GitStatus=${GIT_STATUS} \
204 -X github.com/opencord/bbsim/internal/bbsimctl/config.Version=${VERSION}" \
205 -o "$(RELEASE_DIR)/$(RELEASE_BBSIMCTL_NAME)-$$os_arch" ./cmd/bbsimctl; \
Joey Armstrong787278a2022-11-30 09:30:22 -0500206 done'
207# fix-editor-colorization-quote(')
Kent Hagerman60d62302020-03-10 17:02:36 -0400208
209.PHONY: release release-bbr release-bbsim release-bbsimctl
210release: release-bbr release-bbsim release-bbsimctl # @HELP Creates release ready bynaries for BBSimctl and BBR artifacts
Matteo Scandolo8dea3992019-10-22 10:54:25 -0700211
Joey Armstrong73d35792022-11-25 08:46:46 -0500212swagger-deps += docs/swagger/bbsim/bbsim.swagger.json
213swagger-deps += docs/swagger/leagacy/bbsim.swagger.json
214.PHONY: $(swagger-deps)
215swagger: $(swagger-deps) # @HELP Generate swagger documentation for BBSim API
Matteo Scandolo4747d292019-08-05 11:50:18 -0700216
Joey Armstrong73d35792022-11-25 08:46:46 -0500217## -----------------------------------------------------------------------
Matteo Scandoloca08fc72019-12-04 14:17:39 -0800218## Local Development Helpers
Joey Armstrong73d35792022-11-25 08:46:46 -0500219## -----------------------------------------------------------------------
Matteo Scandolocedde462021-03-09 17:37:16 -0800220local-omci-lib-go:
221ifdef LOCAL_OMCI_LIB_GO
222 mkdir -p vendor/github.com/opencord/omci-lib-go
223 cp -r ${LOCAL_OMCI_LIB_GO}/* vendor/github.com/opencord/omci-lib-go
Matteo Scandoloca08fc72019-12-04 14:17:39 -0800224endif
Matteo Scandolo4747d292019-08-05 11:50:18 -0700225
Matteo Scandolo4f4ac792020-10-01 16:33:21 -0700226local-protos: ## Copies a local version of the voltha-protos dependency into the vendor directory
227ifdef LOCAL_PROTOS
Joey Armstrong73d35792022-11-25 08:46:46 -0500228 $(RM) -r vendor/github.com/opencord/voltha-protos/v5/go
David K. Bainbridgec415efe2021-08-19 13:05:21 +0000229 mkdir -p vendor/github.com/opencord/voltha-protos/v5/go
230 cp -r ${LOCAL_PROTOS}/go/* vendor/github.com/opencord/voltha-protos/v5/go
Joey Armstrong73d35792022-11-25 08:46:46 -0500231 $(RM) -r vendor/github.com/opencord/voltha-protos/v5/go/vendor
Matteo Scandolo4f4ac792020-10-01 16:33:21 -0700232endif
233
Matteo Scandolo4747d292019-08-05 11:50:18 -0700234# Internals
Matteo Scandolo8dea3992019-10-22 10:54:25 -0700235
Matteo Scandolo3de9de02019-11-14 13:40:03 -0800236clean:
Joey Armstrong73d35792022-11-25 08:46:46 -0500237 @$(RM) -f bbsim
238 @$(RM) -f bbsimctl
239 @$(RM) -f bbr
240 @$(RM) -r tools/bin
241 @$(RM) -r release/*
Matteo Scandolo3de9de02019-11-14 13:40:03 -0800242
Matteo Scandolocedde462021-03-09 17:37:16 -0800243build-bbr: local-omci-lib-go local-protos
Kent Hagerman60d62302020-03-10 17:02:36 -0400244 @go build -mod vendor \
245 -ldflags "-w -X main.buildTime=$(shell date +%Y/%m/%d-%H:%M:%S) \
246 -X main.commitHash=$(shell git log --pretty=format:%H -n 1) \
247 -X main.gitStatus=${GIT_STATUS} \
248 -X main.version=${VERSION}" \
249 ./cmd/bbr
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700250
Matteo Scandolo8df63df2019-09-12 10:34:32 -0700251build-bbsim:
Kent Hagerman60d62302020-03-10 17:02:36 -0400252 @go build -mod vendor \
253 -ldflags "-w -X main.buildTime=$(shell date +%Y/%m/%d-%H:%M:%S) \
254 -X main.commitHash=$(shell git log --pretty=format:%H -n 1) \
255 -X main.gitStatus=${GIT_STATUS} \
256 -X main.version=${VERSION}" \
257 ./cmd/bbsim
Matteo Scandolo8df63df2019-09-12 10:34:32 -0700258
259build-bbsimctl:
Kent Hagerman60d62302020-03-10 17:02:36 -0400260 @go build -mod vendor \
261 -ldflags "-w -X github.com/opencord/bbsim/internal/bbsimctl/config.BuildTime=$(shell date +%Y/%m/%d-%H:%M:%S) \
262 -X github.com/opencord/bbsim/internal/bbsimctl/config.CommitHash=$(shell git log --pretty=format:%H -n 1) \
263 -X github.com/opencord/bbsim/internal/bbsimctl/config.GitStatus=${GIT_STATUS} \
264 -X github.com/opencord/bbsim/internal/bbsimctl/config.Version=${VERSION}" \
265 ./cmd/bbsimctl
Matteo Scandolo4747d292019-08-05 11:50:18 -0700266
Kent Hagerman60d62302020-03-10 17:02:36 -0400267setup_tools:
268 @echo "Downloading dependencies..."
David K. Bainbridgec415efe2021-08-19 13:05:21 +0000269 @${GO} mod download github.com/grpc-ecosystem/grpc-gateway github.com/opencord/voltha-protos/v5
Kent Hagerman60d62302020-03-10 17:02:36 -0400270 @echo "Dependencies downloaded OK"
Matteo Scandolo84f7d482019-08-08 19:00:47 -0700271
David K. Bainbridgec415efe2021-08-19 13:05:21 +0000272VOLTHA_PROTOS ?= $(shell ${GO} list -f '{{ .Dir }}' -m github.com/opencord/voltha-protos/v5)
Kent Hagerman60d62302020-03-10 17:02:36 -0400273GOOGLEAPI ?= $(shell ${GO} list -f '{{ .Dir }}' -m github.com/grpc-ecosystem/grpc-gateway)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700274
Joey Armstrong73d35792022-11-25 08:46:46 -0500275.PHONY: api/openolt/openolt.pb.go api/bbsim/bbsim.pb.go api/bbsim/bbsim.pb.gw.go api/legacy/bbsim.pb.go api/legacy/bbsim.pb.gw.go
Kent Hagerman60d62302020-03-10 17:02:36 -0400276api/openolt/openolt.pb.go: api/openolt/openolt.proto setup_tools
277 @echo $@
278 @${PROTOC} -I. \
279 -I${GOOGLEAPI}/third_party/googleapis \
amit.ghoshee17c002021-06-10 12:14:38 +0200280 --go_out=plugins=grpc:./ --go_opt=paths=source_relative \
Kent Hagerman60d62302020-03-10 17:02:36 -0400281 $<
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200282
hkouser24361d42020-12-14 19:21:47 +0530283api/bbsim/bbsim_dmi.pb.go: api/bbsim/bbsim_dmi.proto setup_tools
284 @echo $@
285 @${PROTOC} -I. \
286 -I${GOOGLEAPI}/third_party/googleapis \
amit.ghoshee17c002021-06-10 12:14:38 +0200287 --go_out=plugins=grpc:./ --go_opt=paths=source_relative \
hkouser24361d42020-12-14 19:21:47 +0530288 $<
289
Kent Hagerman60d62302020-03-10 17:02:36 -0400290api/bbsim/bbsim.pb.go api/bbsim/bbsim.pb.gw.go: api/bbsim/bbsim.proto api/bbsim/bbsim.yaml setup_tools
291 @echo $@
292 @${PROTOC} -I. \
293 -I${GOOGLEAPI}/third_party/googleapis \
294 -I${VOLTHA_PROTOS}/protos/ \
amit.ghoshee17c002021-06-10 12:14:38 +0200295 --go_out=plugins=grpc:./ --go_opt=paths=source_relative \
296 --grpc-gateway_out=logtostderr=true,paths=source_relative,grpc_api_configuration=api/bbsim/bbsim.yaml,allow_delete_body=true:./ \
Kent Hagerman60d62302020-03-10 17:02:36 -0400297 $<
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200298
Kent Hagerman60d62302020-03-10 17:02:36 -0400299api/legacy/bbsim.pb.go api/legacy/bbsim.pb.gw.go: api/legacy/bbsim.proto setup_tools
300 @echo $@
301 @${PROTOC} -I. \
302 -I${GOOGLEAPI}/third_party/googleapis/ \
303 -I${GOOGLEAPI}/ \
304 -I${VOLTHA_PROTOS}/protos/ \
305 --go_out=plugins=grpc:./ \
amit.ghoshee17c002021-06-10 12:14:38 +0200306 --grpc-gateway_out=logtostderr=true,paths=source_relative,allow_delete_body=true:./ \
Kent Hagerman60d62302020-03-10 17:02:36 -0400307 $<
308
309docs/swagger/bbsim/bbsim.swagger.json: api/bbsim/bbsim.yaml setup_tools
310 @echo $@
311 @${PROTOC} -I ./api \
312 -I${GOOGLEAPI}/ \
313 -I${VOLTHA_PROTOS}/protos/ \
Zack Williamsd2907e62020-04-03 10:23:02 -0700314 --swagger_out=logtostderr=true,allow_delete_body=true,disable_default_errors=true,grpc_api_configuration=$<:docs/swagger/ \
Kent Hagerman60d62302020-03-10 17:02:36 -0400315 api/bbsim/bbsim.proto
316
317docs/swagger/leagacy/bbsim.swagger.json: api/legacy/bbsim.proto setup_tools
318 @echo $@
319 @${PROTOC} -I ./api \
320 -I${GOOGLEAPI}/ \
321 -I${VOLTHA_PROTOS}/protos/ \
Zack Williamsd2907e62020-04-03 10:23:02 -0700322 --swagger_out=logtostderr=true,allow_delete_body=true,disable_default_errors=true:docs/swagger/ \
Kent Hagerman60d62302020-03-10 17:02:36 -0400323 $<
Joey Armstrong73d35792022-11-25 08:46:46 -0500324
325# [EOF]