Imported Upstream version 3.0
[debian/gnuradio] / gnuradio-core / src / lib / general / generate_common.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2004,2006 Free Software Foundation, Inc.
4
5 # This file is part of GNU Radio
6
7 # GNU Radio is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
11
12 # GNU Radio is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Radio; see the file COPYING.  If not, write to
19 # the Free Software Foundation, Inc., 51 Franklin Street,
20 # Boston, MA 02110-1301, USA.
21
22
23 from build_utils import expand_template, standard_dict
24 from build_utils_codes import *
25
26 import re
27
28
29 # sources and sinks
30 ss_signatures = ['s', 'i', 'f', 'c']
31
32 ss_roots = [
33     'gr_vector_source_X',
34     'gr_vector_sink_X',
35     'gr_noise_source_X',
36     'gr_sig_source_X'
37     ]
38
39 # regular blocks
40 reg_signatures = ['ss', 'ii', 'ff', 'cc']
41
42 reg_roots = [
43     'gr_add_const_XX',
44     'gr_multiply_const_XX',
45     'gr_add_XX',
46     'gr_sub_XX',
47     'gr_multiply_XX',
48     'gr_divide_XX',
49     'gr_mute_XX',
50     'gr_add_vXX',
51     'gr_multiply_vXX',
52     'gr_add_const_vXX',
53     'gr_multiply_const_vXX'
54     ]
55
56 # other blocks
57 others = (
58     ('gr_chunks_to_symbols_XX',     ('bf', 'bc', 'sf', 'sc', 'if', 'ic')),
59     ('gr_unpacked_to_packed_XX',    ('bb','ss','ii')),
60     ('gr_packed_to_unpacked_XX',    ('bb','ss','ii'))
61     )
62
63
64 def expand_h_cc_i (root, sig):
65     # root looks like 'gr_vector_sink_X'
66     name = re.sub ('X+', sig, root)
67     d = standard_dict (name, sig)
68     expand_template (d, root + '.h.t')
69     expand_template (d, root + '.cc.t')
70     expand_template (d, root + '.i.t')
71
72
73 def generate ():
74     expand_h_cc_i ('gr_add_const_XX', 'sf')     # for MC4020
75     expand_h_cc_i ('gr_vector_sink_X', 'b')
76     expand_h_cc_i ('gr_vector_source_X', 'b')
77     for r in ss_roots:
78         for s in ss_signatures:
79             expand_h_cc_i (r, s)
80     for r in reg_roots :
81         for s in reg_signatures:
82             expand_h_cc_i (r, s)
83             
84     for root, sigs in others:
85         for s in sigs:
86             expand_h_cc_i (root, s)
87
88
89
90 if __name__ == '__main__':
91     generate ()
92
93