473ea58832b283aaf9e9534e05e109099517c863
[debian/gnuradio] / gnuradio-core / src / lib / runtime / gr_top_block.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 <unistd.h>
28 #include <gr_top_block.h>
29 #include <gr_top_block_impl.h>
30 #include <gr_top_block_impl_sts.h>
31 #include <gr_io_signature.h>
32 #include <iostream>
33
34 gr_top_block_sptr 
35 gr_make_top_block(const std::string &name)
36 {
37   return gr_top_block_sptr(new gr_top_block(name));
38 }
39
40 gr_top_block::gr_top_block(const std::string &name)
41   : gr_hier_block2(name, 
42                    gr_make_io_signature(0,0,0), 
43                    gr_make_io_signature(0,0,0))
44   
45 {
46   d_impl = new gr_top_block_impl_sts(this);
47 }
48   
49 gr_top_block::~gr_top_block()
50 {
51   stop();
52   wait();
53     
54   delete d_impl;
55 }
56
57 void 
58 gr_top_block::start()
59 {
60   d_impl->start();
61 }
62
63 void 
64 gr_top_block::stop()
65 {
66   d_impl->stop();
67 }
68
69 void 
70 gr_top_block::wait()
71 {
72   d_impl->wait();
73 }
74
75 void 
76 gr_top_block::run()
77 {
78   start();
79   wait();
80 }
81
82 void
83 gr_top_block::lock()
84 {
85   d_impl->lock();
86 }
87
88 void
89 gr_top_block::unlock()
90 {
91   d_impl->unlock();
92 }
93
94 void
95 gr_top_block::dump()
96 {
97   d_impl->dump();
98 }
99
100 bool
101 gr_top_block::is_running()
102 {
103   return d_impl->is_running();
104 }