blob: b543314f6c9aa2dbf17e27275063bc0d6aefd2d6 [file] [log] [blame]
Mike Marchetti94b645e2017-08-04 14:33:54 -04001# Copyright 2017 Sandvine
garciadeblase6ba40a2018-09-27 18:07:38 +02002# Copyright 2017-2018 Telefonica
Mike Marchetti94b645e2017-08-04 14:33:54 -04003# All Rights Reserved.
4#
5# Licensed under the Apache License, Version 2.0 (the "License"); you may
6# not use this file except in compliance with the License. You may obtain
7# 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, WITHOUT
13# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14# License for the specific language governing permissions and limitations
15# under the License.
16
17# NOTE: pyang and pyangbind are required for build
18
19PYANG:= pyang
Mike Marchettice4a73d2018-08-29 15:40:41 -040020PYBINDPLUGIN:=$(shell /usr/bin/env python3 -c \
21 'import pyangbind; import os; print("{}/plugin".format(os.path.dirname(pyangbind.__file__)))')
Mike Marchetti94b645e2017-08-04 14:33:54 -040022
garciadeblase4eafa82017-11-29 17:34:36 +010023YANG_DESC_MODELS := vnfd nsd
24YANG_RECORD_MODELS := vnfr nsr
25PYTHON_MODELS := $(addsuffix .py, $(YANG_DESC_MODELS))
garciadeblase4eafa82017-11-29 17:34:36 +010026YANG_DESC_TREES := $(addsuffix .tree.txt, $(YANG_DESC_MODELS))
27YANG_DESC_JSTREES := $(addsuffix .html, $(YANG_DESC_MODELS))
28YANG_RECORD_TREES := $(addsuffix .rec.tree.txt, $(YANG_RECORD_MODELS))
29YANG_RECORD_JSTREES := $(addsuffix .rec.html, $(YANG_RECORD_MODELS))
Mike Marchetti94b645e2017-08-04 14:33:54 -040030
31OUT_DIR := osm_im
garciadeblase4eafa82017-11-29 17:34:36 +010032TREES_DIR := osm_im_trees
Mike Marchetti94b645e2017-08-04 14:33:54 -040033MODEL_DIR := models/yang
34RW_PB_EXT := build/yang/rw-pb-ext.yang
35Q?=@
36
garciadeblas5a20e9b2017-08-29 12:25:24 +020037PYANG_OPTIONS := -Werror
Mike Marchetti94b645e2017-08-04 14:33:54 -040038
garciadeblase6ba40a2018-09-27 18:07:38 +020039all: $(PYTHON_MODELS) trees
Mike Marchetti94b645e2017-08-04 14:33:54 -040040 $(MAKE) package
41
garciadeblase4eafa82017-11-29 17:34:36 +010042trees: $(YANG_DESC_TREES) $(YANG_DESC_JSTREES) $(YANG_RECORD_TREES) $(YANG_RECORD_JSTREES)
43
Mike Marchetti94b645e2017-08-04 14:33:54 -040044$(OUT_DIR):
45 $(Q)mkdir -p $(OUT_DIR)
46 $(Q)touch $(OUT_DIR)/__init__.py
47
garciadeblase4eafa82017-11-29 17:34:36 +010048$(TREES_DIR):
49 $(Q)mkdir -p $(TREES_DIR)
50
Mike Marchetti94b645e2017-08-04 14:33:54 -040051%.py: $(OUT_DIR) $(RW_PB_EXT)
52 $(Q)echo generating $@ from $*.yang
53 $(Q)pyang $(PYANG_OPTIONS) --path build/yang --path $(MODEL_DIR) --plugindir $(PYBINDPLUGIN) -f pybind -o $(OUT_DIR)/$@ $(MODEL_DIR)/$*.yang
54
garciadeblase4eafa82017-11-29 17:34:36 +010055%.tree.txt: $(TREES_DIR)
56 $(Q)echo generating $@ from $*.yang
57 $(Q)pyang $(PYANG_OPTIONS) --path build/yang --path $(MODEL_DIR) -f tree -o $(TREES_DIR)/$@ $(MODEL_DIR)/$*.yang
58
59%.html: $(TREES_DIR)
60 $(Q)echo generating $@ from $*.yang
61 $(Q)pyang $(PYANG_OPTIONS) --path build/yang --path $(MODEL_DIR) -f jstree -o $(TREES_DIR)/$@ $(MODEL_DIR)/$*.yang
garciadeblase06b0aa2017-12-19 09:21:31 +010062 $(Q)sed -r -i 's|data\:image/gif\;base64,R0lGODlhS.*RCAA7|https://osm.etsi.org/images/OSM-logo.png\" width=\"175\" height=\"60|g' $(TREES_DIR)/$@
63 $(Q)sed -r -i 's|<a href=\"http://www.tail-f.com">|<a href="http://osm.etsi.org">|g' $(TREES_DIR)/$@
garciadeblase4eafa82017-11-29 17:34:36 +010064
65%.rec.tree.txt: $(TREES_DIR)
66 $(Q)echo generating $@ from $*.yang
67 $(Q)pyang $(PYANG_OPTIONS) --path build/yang --path $(MODEL_DIR) -f tree -o $(TREES_DIR)/$@ $(MODEL_DIR)/$*.yang
68 $(Q)mv $(TREES_DIR)/$@ $(TREES_DIR)/$*.tree.txt
69
70%.rec.html: $(TREES_DIR)
71 $(Q)echo generating $@ from $*.yang
72 $(Q)pyang $(PYANG_OPTIONS) --path build/yang --path $(MODEL_DIR) -f jstree -o $(TREES_DIR)/$@ $(MODEL_DIR)/rw-project.yang $(MODEL_DIR)/$*.yang
garciadeblase06b0aa2017-12-19 09:21:31 +010073 $(Q)sed -r -i 's|data\:image/gif\;base64,R0lGODlhS.*RCAA7|https://osm.etsi.org/images/OSM-logo.png\" width=\"175\" height=\"60|g' $(TREES_DIR)/$@
74 $(Q)sed -r -i 's|<a href=\"http://www.tail-f.com">|<a href="http://osm.etsi.org">|g' $(TREES_DIR)/$@
garciadeblase4eafa82017-11-29 17:34:36 +010075 $(Q)mv $(TREES_DIR)/$@ $(TREES_DIR)/$*.html
76
Mike Marchetti94b645e2017-08-04 14:33:54 -040077$(RW_PB_EXT):
78 $(Q)mkdir -p $$(dirname $@)
79 $(Q)wget -q https://raw.githubusercontent.com/RIFTIO/RIFT.ware/RIFT.ware-4.4.1/modules/core/util/yangtools/yang/rw-pb-ext.yang -O $@
80
81package:
82 tox -e build
Mike Marchettice4a73d2018-08-29 15:40:41 -040083 tox -e build3
Mike Marchetti09a27102018-09-24 15:05:51 -040084 ./build-docs.sh
85
Mike Marchetti94b645e2017-08-04 14:33:54 -040086clean:
garciadeblas1dbd2572018-10-28 15:51:42 +010087 $(Q)rm -rf build dist osm_im.egg-info deb deb_dist *.gz $(OUT_DIR) $(TREES_DIR)