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