blob: 9cfc2fa30353b22c1f4e0c16ccc560d11253207c [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"""
29@brief C language specific LOXI generating configuration
30
31This language specific file defines a dictionary 'targets' that
32defines the generated files and the functions used to generate them.
33"""
34
35import os
36import c_gen.c_code_gen as c_code_gen
37import c_gen.c_test_gen as c_test_gen
38import c_gen.c_dump_gen as c_dump_gen
39import c_gen.c_show_gen as c_show_gen
40import c_gen.c_validator_gen as c_validator_gen
41import c_gen.util
Rich Laneda5446f2013-11-10 17:21:48 -080042import loxi_utils.loxi_utils as loxi_utils
Rich Lanea06d0c32013-03-25 08:52:03 -070043
44def static(out, name):
45 c_gen.util.render_template(out, os.path.basename(name))
46
47targets = {
48 # LOCI headers
49 'loci/inc/loci/loci.h': c_code_gen.top_h_gen,
50 'loci/inc/loci/loci_idents.h': c_code_gen.identifiers_gen,
51 'loci/inc/loci/loci_base.h': c_code_gen.base_h_gen,
52 'loci/inc/loci/of_match.h': c_code_gen.match_h_gen,
53 'loci/inc/loci/loci_doc.h': c_code_gen.gen_accessor_doc,
54 'loci/inc/loci/loci_obj_dump.h': c_dump_gen.gen_obj_dump_h,
55 'loci/inc/loci/loci_obj_show.h': c_show_gen.gen_obj_show_h,
56 'loci/inc/loci/loci_validator.h': c_validator_gen.gen_h,
57
58 # Static LOCI headers
59 'loci/inc/loci/bsn_ext.h': static,
60 'loci/inc/loci/loci_dox.h': static,
61 'loci/inc/loci/loci_dump.h': static,
62 'loci/inc/loci/loci_show.h': static,
63 'loci/inc/loci/of_buffer.h': static,
64 'loci/inc/loci/of_doc.h': static,
65 'loci/inc/loci/of_message.h': static,
66 'loci/inc/loci/of_object.h': static,
67 'loci/inc/loci/of_utils.h': static,
68 'loci/inc/loci/of_wire_buf.h': static,
69
70 # LOCI code
71 'loci/src/loci.c': c_code_gen.top_c_gen,
72 'loci/src/of_type_data.c': c_code_gen.type_data_c_gen,
73 'loci/src/of_match.c': c_code_gen.match_c_gen,
74 'loci/src/loci_obj_dump.c': c_dump_gen.gen_obj_dump_c,
75 'loci/src/loci_obj_show.c': c_show_gen.gen_obj_show_c,
76 'loci/src/loci_validator.c': c_validator_gen.gen_c,
77
78 # Static LOCI code
79 'loci/src/loci_int.h': static,
80 'loci/src/loci_log.c': static,
81 'loci/src/loci_log.h': static,
82 'loci/src/of_object.c': static,
83 'loci/src/of_type_maps.c': static,
84 'loci/src/of_utils.c': static,
85 'loci/src/of_wire_buf.c': static,
86
87 # Static LOCI documentation
88 'loci/README': static,
89 'loci/Doxyfile': static,
90
91 # locitest code
92 'locitest/inc/locitest/of_dup.h': c_test_gen.dup_h_gen,
93 'locitest/inc/locitest/test_common.h': c_test_gen.gen_common_test_header,
94 'locitest/src/of_dup.c': c_test_gen.dup_c_gen,
95 'locitest/src/test_common.c': c_test_gen.gen_common_test,
96 'locitest/src/test_list.c': c_test_gen.gen_list_test,
97 'locitest/src/test_match.c': c_test_gen.gen_match_test,
98 'locitest/src/test_msg.c': c_test_gen.gen_msg_test,
99 'locitest/src/test_scalar_acc.c': c_test_gen.gen_message_scalar_test,
100 'locitest/src/test_uni_acc.c': c_test_gen.gen_unified_accessor_tests,
Rich Laneccae0312013-07-21 23:34:13 -0700101 'locitest/src/test_data.c': c_test_gen.gen_datafiles_tests,
Rich Lanea06d0c32013-03-25 08:52:03 -0700102
103 # Static locitest code
104 'locitest/inc/locitest/unittest.h': static,
105 'locitest/src/test_ext.c': static,
106 'locitest/src/test_list_limits.c': static,
107 'locitest/src/test_match_utils.c': static,
108 'locitest/src/test_setup_from_add.c': static,
109 'locitest/src/test_utils.c': static,
110 'locitest/src/test_validator.c': static,
Rich Lane99c29c32013-05-29 17:09:21 -0700111 'locitest/src/main.c': static,
Rich Lane9ff6d162013-07-21 23:32:27 -0700112 'locitest/Makefile': static,
Rich Lanea06d0c32013-03-25 08:52:03 -0700113}
Rich Laneda5446f2013-11-10 17:21:48 -0800114
115def generate():
116 for (name, fn) in targets.items():
117 with loxi_utils.open_output(name) as outfile:
118 fn(outfile, os.path.basename(name))