blob: bec4a65395aa8c2167911a543d9de18cd9ac3c96 [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
Andreas Wundsam76db0062013-11-15 13:34:41 -080036import c_gen.of_g_legacy as of_g
37import c_gen.build_of_g as build_of_g
Rich Lanea06d0c32013-03-25 08:52:03 -070038import c_gen.c_code_gen as c_code_gen
39import c_gen.c_test_gen as c_test_gen
40import c_gen.c_dump_gen as c_dump_gen
41import c_gen.c_show_gen as c_show_gen
Rich Lanea06d0c32013-03-25 08:52:03 -070042import c_gen.util
Rich Lanebdd8e292013-12-06 17:37:39 -080043import c_gen.codegen
Rich Laneb4a63a52014-05-22 14:41:57 -070044import c_gen.match
Rich Laneda5446f2013-11-10 17:21:48 -080045import loxi_utils.loxi_utils as loxi_utils
Andreas Wundsam76db0062013-11-15 13:34:41 -080046import template_utils
Rich Lanea06d0c32013-03-25 08:52:03 -070047
48def static(out, name):
49 c_gen.util.render_template(out, os.path.basename(name))
50
51targets = {
52 # LOCI headers
53 'loci/inc/loci/loci.h': c_code_gen.top_h_gen,
54 'loci/inc/loci/loci_idents.h': c_code_gen.identifiers_gen,
55 'loci/inc/loci/loci_base.h': c_code_gen.base_h_gen,
56 'loci/inc/loci/of_match.h': c_code_gen.match_h_gen,
57 'loci/inc/loci/loci_doc.h': c_code_gen.gen_accessor_doc,
58 'loci/inc/loci/loci_obj_dump.h': c_dump_gen.gen_obj_dump_h,
59 'loci/inc/loci/loci_obj_show.h': c_show_gen.gen_obj_show_h,
Rich Lanecc327672014-04-10 13:37:35 -070060 'loci/inc/loci/loci_validator.h': static,
Rich Lanea06d0c32013-03-25 08:52:03 -070061
62 # Static LOCI headers
63 'loci/inc/loci/bsn_ext.h': static,
64 'loci/inc/loci/loci_dox.h': static,
65 'loci/inc/loci/loci_dump.h': static,
66 'loci/inc/loci/loci_show.h': static,
67 'loci/inc/loci/of_buffer.h': static,
68 'loci/inc/loci/of_doc.h': static,
69 'loci/inc/loci/of_message.h': static,
70 'loci/inc/loci/of_object.h': static,
71 'loci/inc/loci/of_utils.h': static,
72 'loci/inc/loci/of_wire_buf.h': static,
73
74 # LOCI code
Rich Lanea06d0c32013-03-25 08:52:03 -070075 'loci/src/of_match.c': c_code_gen.match_c_gen,
76 'loci/src/loci_obj_dump.c': c_dump_gen.gen_obj_dump_c,
77 'loci/src/loci_obj_show.c': c_show_gen.gen_obj_show_c,
Rich Lanecc327672014-04-10 13:37:35 -070078 'loci/src/loci_validator.c': static,
Rich Lanea06d0c32013-03-25 08:52:03 -070079
80 # Static LOCI code
81 'loci/src/loci_int.h': static,
82 'loci/src/loci_log.c': static,
83 'loci/src/loci_log.h': static,
84 'loci/src/of_object.c': static,
Rich Lanea06d0c32013-03-25 08:52:03 -070085 'loci/src/of_utils.c': static,
86 'loci/src/of_wire_buf.c': static,
87
88 # Static LOCI documentation
89 'loci/README': static,
90 'loci/Doxyfile': static,
91
92 # locitest code
93 'locitest/inc/locitest/of_dup.h': c_test_gen.dup_h_gen,
94 'locitest/inc/locitest/test_common.h': c_test_gen.gen_common_test_header,
95 'locitest/src/of_dup.c': c_test_gen.dup_c_gen,
96 'locitest/src/test_common.c': c_test_gen.gen_common_test,
97 'locitest/src/test_list.c': c_test_gen.gen_list_test,
98 'locitest/src/test_match.c': c_test_gen.gen_match_test,
99 'locitest/src/test_msg.c': c_test_gen.gen_msg_test,
100 'locitest/src/test_scalar_acc.c': c_test_gen.gen_message_scalar_test,
101 'locitest/src/test_uni_acc.c': c_test_gen.gen_unified_accessor_tests,
Rich Laneccae0312013-07-21 23:34:13 -0700102 'locitest/src/test_data.c': c_test_gen.gen_datafiles_tests,
Rich Lanea06d0c32013-03-25 08:52:03 -0700103
104 # Static locitest code
105 'locitest/inc/locitest/unittest.h': static,
106 'locitest/src/test_ext.c': static,
107 'locitest/src/test_list_limits.c': static,
108 'locitest/src/test_match_utils.c': static,
Rich Lanea06d0c32013-03-25 08:52:03 -0700109 '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
Andreas Wundsam76db0062013-11-15 13:34:41 -0800115def generate(install_dir):
Rich Laneb4a63a52014-05-22 14:41:57 -0700116 c_gen.match.build()
Andreas Wundsam76db0062013-11-15 13:34:41 -0800117 build_of_g.initialize_versions()
118 build_of_g.build_ordered_classes()
119 build_of_g.populate_type_maps()
120 build_of_g.analyze_input()
121 build_of_g.unify_input()
122 build_of_g.order_and_assign_object_ids()
Rich Laneda5446f2013-11-10 17:21:48 -0800123 for (name, fn) in targets.items():
Andreas Wundsam76db0062013-11-15 13:34:41 -0800124 with template_utils.open_output(install_dir, name) as outfile:
Rich Laneda5446f2013-11-10 17:21:48 -0800125 fn(outfile, os.path.basename(name))
Rich Lane08c9f3a2014-06-13 11:24:37 -0700126 c_gen.codegen.build_class_metadata()
Rich Lanece2e4642013-12-15 12:05:45 -0800127 c_gen.codegen.generate_classes(install_dir)
Rich Lanedef2e512013-12-15 15:54:02 -0800128 c_gen.codegen.generate_classes_header(install_dir)
Rich Lane8c4c23f2013-12-15 13:22:13 -0800129 c_gen.codegen.generate_lists(install_dir)
Rich Lane8a822732013-12-15 14:06:32 -0800130 c_gen.codegen.generate_strings(install_dir)
Rich Lanecce961d2013-12-15 14:20:42 -0800131 c_gen.codegen.generate_init_map(install_dir)
Rich Lanec0e20ff2013-12-15 23:40:31 -0800132 c_gen.codegen.generate_type_maps(install_dir)
Rich Lanedc46fe22014-04-03 15:10:38 -0700133 c_gen.codegen.generate_class_metadata(install_dir)