Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / runtime / gr_flat_flowgraph.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 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 #ifndef INCLUDED_GR_FLAT_FLOWGRAPH_H
24 #define INCLUDED_GR_FLAT_FLOWGRAPH_H
25
26 #include <gr_flowgraph.h>
27 #include <gr_block.h>
28
29 // Create a shared pointer to a heap allocated gr_flat_flowgraph
30 // (types defined in gr_runtime_types.h)
31 gr_flat_flowgraph_sptr gr_make_flat_flowgraph();
32
33 /*!
34  *\brief Class specializing gr_flat_flowgraph that has all nodes
35  * as gr_blocks, with no hierarchy
36  * \ingroup internal
37  */
38 class gr_flat_flowgraph : public gr_flowgraph
39 {
40 public:
41   friend gr_flat_flowgraph_sptr gr_make_flat_flowgraph();
42
43   // Destruct an arbitrary gr_flat_flowgraph
44   ~gr_flat_flowgraph();
45
46   // Wire gr_blocks together in new flat_flowgraph
47   void setup_connections();
48
49   // Merge applicable connections from existing flat flowgraph
50   void merge_connections(gr_flat_flowgraph_sptr sfg);
51
52   void dump();
53
54   /*!
55    * Make a vector of gr_block from a vector of gr_basic_block
56    */
57   static gr_block_vector_t make_block_vector(gr_basic_block_vector_t &blocks);
58
59 private:
60   gr_flat_flowgraph();
61
62   gr_block_detail_sptr allocate_block_detail(gr_basic_block_sptr block);
63   gr_buffer_sptr allocate_buffer(gr_basic_block_sptr block, int port);
64   void connect_block_inputs(gr_basic_block_sptr block);
65 };
66
67 #endif /* INCLUDED_GR_FLAT_FLOWGRAPH_H */