blob: 5f3d8e59918715090397058d14f7e4dee2494765 [file] [log] [blame]
Rich Lanea06d0c32013-03-25 08:52:03 -07001# Copyright 2013, Big Switch Networks, Inc.
2#
3# LoxiGen is licensed under the Eclipse Public License, version 1.0 (EPL), with
4# the following special exception:
5#
6# LOXI Exception
7#
8# As a special exception to the terms of the EPL, you may distribute libraries
9# generated by LoxiGen (LoxiGen Libraries) under the terms of your choice, provided
10# that copyright and licensing notices generated by LoxiGen are not altered or removed
11# from the LoxiGen Libraries and the notice provided below is (i) included in
12# the LoxiGen Libraries, if distributed in source code form and (ii) included in any
13# documentation for the LoxiGen Libraries, if distributed in binary form.
14#
15# Notice: "Copyright 2013, Big Switch Networks, Inc. This library was generated by the LoxiGen Compiler."
16#
17# You may not use this file except in compliance with the EPL or LOXI Exception. You may obtain
18# a copy of the EPL at:
19#
20# http://www.eclipse.org/legal/epl-v10.html
21#
22# Unless required by applicable law or agreed to in writing, software
23# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
24# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
25# EPL for the specific language governing permissions and limitations
26# under the EPL.
27
28# Available targets: all, c, python, clean
29
30# This Makefile is just for convenience. Users that need to pass additional
31# options to loxigen.py are encouraged to run it directly.
32
33# Where to put the generated code.
34LOXI_OUTPUT_DIR = loxi_output
35
36# Generated files depend on all Loxi code and input files
YAMAMOTO Takashif258d0e2013-07-01 17:24:49 +090037LOXI_PY_FILES=$(shell find . \( -name loxi_output -prune \
Rich Lanea06d0c32013-03-25 08:52:03 -070038 -o -name templates -prune \
Rich Lanea2477b42013-05-02 11:00:25 -070039 -o -name tests -prune \
YAMAMOTO Takashif258d0e2013-07-01 17:24:49 +090040 -o -name '*' \
Rich Lanea06d0c32013-03-25 08:52:03 -070041 \) -a -name '*.py')
42LOXI_TEMPLATE_FILES=$(shell find */templates -type f -a \
43 \! \( -name '*.cache' -o -name '.*' \))
Rich Lanebc468702013-04-08 17:47:37 -070044INPUT_FILES = $(wildcard openflow_input/*)
Andreas Wundsam7f3c1842013-08-02 22:17:49 -070045TEST_DATA = $(shell find test_data -name '*.data')
Andreas Wundsamf83c3a72013-11-19 15:49:31 -080046OPENFLOWJ_OUTPUT_DIR = ${LOXI_OUTPUT_DIR}/openflowj
47OPENFLOWJ_ECLIPSE_WORKSPACE = openflowj-loxi
Rich Lanea06d0c32013-03-25 08:52:03 -070048
Andreas Wundsam69ef5182013-11-19 16:58:45 -080049all: c python java wireshark
Rich Lanea06d0c32013-03-25 08:52:03 -070050
51c: .loxi_ts.c
52
Andreas Wundsam5dbb82e2013-09-23 14:39:11 -070053.loxi_ts.c: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES} ${TEST_DATA}
Rich Lanea06d0c32013-03-25 08:52:03 -070054 ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=c
55 touch $@
56
57python: .loxi_ts.python
58
Andreas Wundsam7f3c1842013-08-02 22:17:49 -070059.loxi_ts.python: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES} ${TEST_DATA}
Rich Lanea06d0c32013-03-25 08:52:03 -070060 ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=python
61 touch $@
62
Rich Lane8e5a1f82013-06-03 20:11:01 -070063python-doc: python
64 rm -rf ${LOXI_OUTPUT_DIR}/pyloxi-doc
65 mkdir -p ${LOXI_OUTPUT_DIR}/pyloxi-doc
66 cp -a py_gen/sphinx ${LOXI_OUTPUT_DIR}/pyloxi-doc/input
67 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi sphinx-apidoc -o ${LOXI_OUTPUT_DIR}/pyloxi-doc/input ${LOXI_OUTPUT_DIR}/pyloxi
68 sphinx-build ${LOXI_OUTPUT_DIR}/pyloxi-doc/input ${LOXI_OUTPUT_DIR}/pyloxi-doc
69 rm -rf ${LOXI_OUTPUT_DIR}/pyloxi-doc/input
70 @echo "HTML documentation output to ${LOXI_OUTPUT_DIR}/pyloxi-doc"
71
Andreas Wundsamfd67d5d2013-05-06 17:51:55 -070072java: .loxi_ts.java
Andreas Wundsamf83c3a72013-11-19 15:49:31 -080073 @rsync -rt java_gen/pre-written/ ${LOXI_OUTPUT_DIR}/openflowj/
74 @if [ -e ${OPENFLOWJ_ECLIPSE_WORKSPACE} ]; then \
75 rsync --checksum --delete -rv ${LOXI_OUTPUT_DIR}/openflowj/gen-src/ ${OPENFLOWJ_ECLIPSE_WORKSPACE}/gen-src; \
76 fi
Andreas Wundsamfd67d5d2013-05-06 17:51:55 -070077
Andreas Wundsam7f3c1842013-08-02 22:17:49 -070078.loxi_ts.java: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES} ${TEST_DATA}
Andreas Wundsamfd67d5d2013-05-06 17:51:55 -070079 ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=java
80 touch $@
81
Andreas Wundsamf83c3a72013-11-19 15:49:31 -080082eclipse-workspace:
83 mkdir -p ${OPENFLOWJ_ECLIPSE_WORKSPACE}
84 ln -sf ../java_gen/pre-written/pom.xml ${OPENFLOWJ_ECLIPSE_WORKSPACE}/pom.xml
85 ln -sf ../java_gen/pre-written/LICENSE.txt ${OPENFLOWJ_ECLIPSE_WORKSPACE}/LICENSE.txt
86 ln -sf ../java_gen/pre-written/src ${OPENFLOWJ_ECLIPSE_WORKSPACE}
Sovietaced3d42dbe2014-01-23 15:55:48 -080087 rsync --checksum --delete -rv ${LOXI_OUTPUT_DIR}/openflowj/gen-src/ ${OPENFLOWJ_ECLIPSE_WORKSPACE}/gen-src
Andreas Wundsamf83c3a72013-11-19 15:49:31 -080088 cd ${OPENFLOWJ_ECLIPSE_WORKSPACE} && mvn eclipse:eclipse
Andreas Wundsamd4581992013-09-11 11:12:58 -070089 # Unfortunately, mvn eclipse:eclipse resolves the symlink, which doesn't work with eclipse
Andreas Wundsamf83c3a72013-11-19 15:49:31 -080090 cd ${OPENFLOWJ_ECLIPSE_WORKSPACE} && perl -pi -e 's{<classpathentry kind="src" path="[^"]*/java_gen/pre-written/src/}{<classpathentry kind="src" path="src/}' .classpath
91
92check-java: java
93 cd ${OPENFLOWJ_OUTPUT_DIR} && mvn compile test-compile test
94
95package-java: java
96 cd ${OPENFLOWJ_OUTPUT_DIR} && mvn package
97
98deploy-java: java
99 cd ${OPENFLOWJ_OUTPUT_DIR} && mvn deploy
100
101install-java: java
102 cd ${OPENFLOWJ_OUTPUT_DIR} && mvn install
Andreas Wundsamfd67d5d2013-05-06 17:51:55 -0700103
Rich Lane45dcae12013-06-04 13:07:41 -0700104wireshark: .loxi_ts.wireshark
105
106.loxi_ts.wireshark: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES}
107 ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=wireshark
108 touch $@
109
Rich Lanea06d0c32013-03-25 08:52:03 -0700110clean:
111 rm -rf loxi_output # only delete generated files in the default directory
Andreas Wundsam4b1de5c2013-10-23 15:27:57 -0700112 rm -f loxigen.log loxigen-test.log .loxi_ts.*
Rich Lanea06d0c32013-03-25 08:52:03 -0700113
114debug:
115 @echo "LOXI_OUTPUT_DIR=\"${LOXI_OUTPUT_DIR}\""
116 @echo
117 @echo "LOXI_PY_FILES=\"${LOXI_PY_FILES}\""
118 @echo
119 @echo "LOXI_TEMPLATE_FILES=\"${LOXI_TEMPLATE_FILES}\""
120 @echo
121 @echo "INPUT_FILES=\"${INPUT_FILES}\""
122
Andreas Wundsam990b6432013-09-19 13:08:20 -0700123check-all: check check-c check-py check-java
124
Rich Lanea06d0c32013-03-25 08:52:03 -0700125check:
Andreas Wundsam50b832c2013-11-15 13:53:30 -0800126 nosetests
Rich Lanea06d0c32013-03-25 08:52:03 -0700127
Rich Lanea22233e2013-04-25 13:18:41 -0700128check-py: python
Rich Lane9a3f1fd2013-05-10 16:29:17 -0700129 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/generic_util.py
130 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of10.py
131 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of11.py
132 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of12.py
133 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of13.py
Rich Lane2dd8ed22014-10-03 16:17:09 -0700134 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of14.py
Rich Lanea22233e2013-04-25 13:18:41 -0700135
Rich Lane99c29c32013-05-29 17:09:21 -0700136check-c: c
Rich Lane7cb31ff2013-12-15 14:59:56 -0800137 make -j4 -C ${LOXI_OUTPUT_DIR}/locitest
Rich Lane9ff6d162013-07-21 23:32:27 -0700138 ${LOXI_OUTPUT_DIR}/locitest/locitest
Rich Lane99c29c32013-05-29 17:09:21 -0700139
Rich Lanea06d0c32013-03-25 08:52:03 -0700140pylint:
141 pylint -E ${LOXI_PY_FILES}
142
Andreas Wundsam50b832c2013-11-15 13:53:30 -0800143ctags:
144 ctags ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES} ${TEST_DATA}
145
Rich Laned2487ad2014-04-09 22:40:11 -0700146coverage:
147 find -name '*,cover' -exec rm {} \;
148 coverage erase
149 coverage run -a ./loxigen.py --lang=c
150 coverage run -a ./loxigen.py --lang=python
151 coverage run -a ./loxigen.py --lang=java
152 coverage run -a ./loxigen.py --lang=wireshark
153 coverage annotate -i --omit tenjin.py,pyparsing.py
154
155.PHONY: all clean debug check pylint c python coverage