Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / general / gr_regenerate_bb.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 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 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <gr_regenerate_bb.h>
28 #include <gr_io_signature.h>
29
30 gr_regenerate_bb_sptr
31 gr_make_regenerate_bb (int period, unsigned int max_regen)
32 {
33   return gr_regenerate_bb_sptr (new gr_regenerate_bb (period, max_regen));
34 }
35
36 gr_regenerate_bb::gr_regenerate_bb (int period, unsigned int max_regen)
37   : gr_sync_block ("regenerate_bb",
38                    gr_make_io_signature (1, 1, sizeof (char)),
39                    gr_make_io_signature (1, 1, sizeof (char))),
40     d_period(period),
41     d_countdown(0),
42     d_max_regen(max_regen),
43     d_regen_count(max_regen)
44 {
45 }
46
47 void gr_regenerate_bb::set_max_regen(unsigned int regen)
48 {
49   d_max_regen = regen;
50   d_countdown = 0;
51   d_regen_count = d_max_regen;
52 }
53
54 void gr_regenerate_bb::set_period(int period)
55 {
56   d_period = period;
57   d_countdown = 0;
58   d_regen_count = d_max_regen;
59 }
60
61 int
62 gr_regenerate_bb::work (int noutput_items,
63                         gr_vector_const_void_star &input_items,
64                         gr_vector_void_star &output_items)
65 {
66   const char *iptr = (const char *) input_items[0];
67   char *optr = (char *) output_items[0];
68
69   for (int i = 0; i < noutput_items; i++){
70     optr[i] = 0;
71
72     if(d_regen_count < d_max_regen) {
73       d_countdown--;
74       
75       if(d_countdown == 0) {
76         optr[i] = 1;
77         d_countdown = d_period;
78         d_regen_count++;
79       }
80     }
81     
82     if(iptr[i] == 1) {
83       d_countdown = d_period;
84       optr[i] = 1;
85       d_regen_count = 0;
86     }
87
88   }
89   return noutput_items;
90 }