schema-version added in VNFD, NSD, VLR, VNFR and NSR
[osm/IM.git] / Makefile
1 # Copyright 2017 Sandvine
2 # All Rights Reserved.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License"); you may
5 # not use this file except in compliance with the License. You may obtain
6 # a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 # License for the specific language governing permissions and limitations
14 # under the License.
15
16 # NOTE: pyang and pyangbind are required for build
17
18 PYANG:= pyang
19 PYBINDPLUGIN:=$(shell /usr/bin/env python -c \
20 'import pyangbind; import os; print "%s/plugin" % os.path.dirname(pyangbind.__file__)')
21
22 YANG_DESC_MODELS := vnfd nsd
23 YANG_RECORD_MODELS := vnfr nsr
24 PYTHON_MODELS := $(addsuffix .py, $(YANG_DESC_MODELS))
25 PYTHON_JSONSCHEMAS := $(addsuffix .jsonschema, $(YANG_DESC_MODELS))
26 YANG_DESC_TREES := $(addsuffix .tree.txt, $(YANG_DESC_MODELS))
27 YANG_DESC_JSTREES := $(addsuffix .html, $(YANG_DESC_MODELS))
28 YANG_RECORD_TREES := $(addsuffix .rec.tree.txt, $(YANG_RECORD_MODELS))
29 YANG_RECORD_JSTREES := $(addsuffix .rec.html, $(YANG_RECORD_MODELS))
30
31 OUT_DIR := osm_im
32 TREES_DIR := osm_im_trees
33 MODEL_DIR := models/yang
34 RW_PB_EXT := build/yang/rw-pb-ext.yang
35 Q?=@
36
37 PYANG_OPTIONS := -Werror
38
39 all: $(PYTHON_MODELS) pyangbind
40 $(MAKE) package
41
42 trees: $(YANG_DESC_TREES) $(YANG_DESC_JSTREES) $(YANG_RECORD_TREES) $(YANG_RECORD_JSTREES)
43
44 $(OUT_DIR):
45 $(Q)mkdir -p $(OUT_DIR)
46 $(Q)touch $(OUT_DIR)/__init__.py
47
48 $(TREES_DIR):
49 $(Q)mkdir -p $(TREES_DIR)
50
51 %.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
55 %.jsonschema: $(OUT_DIR) $(RW_PB_EXT) pyang-json-schema-plugin
56 $(Q)echo generating $@ from $*.yang
57 $(Q)pyang $(PYANG_OPTIONS) --path build/yang --path $(MODEL_DIR) --plugindir pyang-json-schema-plugin -f json-schema -o $(OUT_DIR)/$@ $(MODEL_DIR)/$*.yang
58
59 %.tree.txt: $(TREES_DIR)
60 $(Q)echo generating $@ from $*.yang
61 $(Q)pyang $(PYANG_OPTIONS) --path build/yang --path $(MODEL_DIR) -f tree -o $(TREES_DIR)/$@ $(MODEL_DIR)/$*.yang
62
63 %.html: $(TREES_DIR)
64 $(Q)echo generating $@ from $*.yang
65 $(Q)pyang $(PYANG_OPTIONS) --path build/yang --path $(MODEL_DIR) -f jstree -o $(TREES_DIR)/$@ $(MODEL_DIR)/$*.yang
66
67 %.rec.tree.txt: $(TREES_DIR)
68 $(Q)echo generating $@ from $*.yang
69 $(Q)pyang $(PYANG_OPTIONS) --path build/yang --path $(MODEL_DIR) -f tree -o $(TREES_DIR)/$@ $(MODEL_DIR)/$*.yang
70 $(Q)mv $(TREES_DIR)/$@ $(TREES_DIR)/$*.tree.txt
71
72 %.rec.html: $(TREES_DIR)
73 $(Q)echo generating $@ from $*.yang
74 $(Q)pyang $(PYANG_OPTIONS) --path build/yang --path $(MODEL_DIR) -f jstree -o $(TREES_DIR)/$@ $(MODEL_DIR)/rw-project.yang $(MODEL_DIR)/$*.yang
75 $(Q)mv $(TREES_DIR)/$@ $(TREES_DIR)/$*.html
76
77 $(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
81 package:
82 tox -e build
83
84 pyangbind: pyang
85 git clone https://github.com/robshakir/pyangbind
86 cd pyangbind; python setup.py --command-packages=stdeb.command bdist_deb; cd ..
87 mkdir -p deb_dist
88 cp pyangbind/deb_dist/*.deb deb_dist
89
90 pyang:
91 git clone https://github.com/mbj4668/pyang
92 cd pyang; python setup.py --command-packages=stdeb.command bdist_deb; cd ..
93 mkdir -p deb_dist
94 cp pyang/deb_dist/*.deb deb_dist
95
96 pyang-json-schema-plugin:
97 git clone https://github.com/cmoberg/pyang-json-schema-plugin
98
99 clean:
100 $(Q)rm -rf build dist osm_im.egg-info deb deb_dist *.gz pyang pyangbind pyang-json-schema-plugin $(OUT_DIR) $(TREES_DIR)