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