Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / gengen / generate_common.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2004,2006,2007,2008,2009 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 3, 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_const_vXX',
51     'gr_multiply_const_vXX',
52     'gr_integrate_XX',
53     'gr_moving_average_XX',
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     ('gr_xor_XX',                   ('bb','ss','ii')),
62     ('gr_and_XX',                   ('bb','ss','ii')),
63     ('gr_and_const_XX',             ('bb','ss','ii')),
64     ('gr_or_XX',                    ('bb','ss','ii')),
65     ('gr_not_XX',                   ('bb','ss','ii')),
66     ('gr_sample_and_hold_XX',       ('bb','ss','ii','ff')),
67     ('gr_argmax_XX',                ('fs','is','ss')),
68     ('gr_max_XX',                   ('ff','ii','ss')),
69     ('gr_peak_detector_XX',         ('fb','ib','sb'))
70     )
71
72
73 def expand_h_cc_i (root, sig):
74     # root looks like 'gr_vector_sink_X'
75     name = re.sub ('X+', sig, root)
76     d = standard_dict (name, sig)
77     expand_template (d, root + '.h.t')
78     expand_template (d, root + '.cc.t')
79     expand_template (d, root + '.i.t')
80
81
82 def generate ():
83     expand_h_cc_i ('gr_add_const_XX', 'sf')     # for MC4020
84     expand_h_cc_i ('gr_vector_sink_X', 'b')
85     expand_h_cc_i ('gr_vector_source_X', 'b')
86     for r in ss_roots:
87         for s in ss_signatures:
88             expand_h_cc_i (r, s)
89     for r in reg_roots :
90         for s in reg_signatures:
91             expand_h_cc_i (r, s)
92             
93     for root, sigs in others:
94         for s in sigs:
95             expand_h_cc_i (root, s)
96
97
98
99 if __name__ == '__main__':
100     generate ()
101
102