Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / runtime / gr_tpb_thread_body.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2008 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 along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif
24 #include <gr_tpb_thread_body.h>
25 #include <iostream>
26 #include <boost/thread.hpp>
27
28 gr_tpb_thread_body::gr_tpb_thread_body(gr_block_sptr block)
29   : d_exec(block)
30 {
31   // std::cerr << "gr_tpb_thread_body: " << block << std::endl;
32
33   gr_block_detail       *d = block->detail().get();
34   gr_block_executor::state s;
35
36   while (1){
37     boost::this_thread::interruption_point();
38
39     d->d_tpb.clear_changed();
40     s = d_exec.run_one_iteration();
41
42     switch(s){
43     case gr_block_executor::READY:              // Tell neighbors we made progress.
44       d->d_tpb.notify_neighbors(d);
45       break;
46
47     case gr_block_executor::READY_NO_OUTPUT:    // Notify upstream only
48       d->d_tpb.notify_upstream(d);
49       break;
50
51     case gr_block_executor::DONE:               // Game over.
52       d->d_tpb.notify_neighbors(d);
53       return;
54
55     case gr_block_executor::BLKD_IN:            // Wait for input.
56       {
57         gr_tpb_detail::scoped_lock guard(d->d_tpb.mutex);
58         while(!d->d_tpb.input_changed)
59           d->d_tpb.input_cond.wait(guard);
60       }
61       break;
62       
63     case gr_block_executor::BLKD_OUT:           // Wait for output buffer space.
64       {
65         gr_tpb_detail::scoped_lock guard(d->d_tpb.mutex);
66         while(!d->d_tpb.output_changed)
67           d->d_tpb.output_cond.wait(guard);
68       }
69       break;
70
71     default:
72       assert(0);
73     }
74   }
75 }
76
77 gr_tpb_thread_body::~gr_tpb_thread_body()
78 {
79 }