Merged features/mp-sched -r8915:9335 into the trunk. The trunk now
[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
27 gr_tpb_thread_body::gr_tpb_thread_body(gr_block_sptr block)
28   : d_exec(block)
29 {
30   // std::cerr << "gr_tpb_thread_body: " << block << std::endl;
31
32   gr_block_detail       *d = block->detail().get();
33   gr_block_executor::state s;
34
35   while (1){
36     d->d_tpb.clear_changed();
37     s = d_exec.run_one_iteration();
38
39     switch(s){
40     case gr_block_executor::READY:              // Tell neighbors we made progress.
41       d->d_tpb.notify_neighbors(d);
42       break;
43
44     case gr_block_executor::READY_NO_OUTPUT:    // Notify upstream only
45       d->d_tpb.notify_upstream(d);
46       break;
47
48     case gr_block_executor::DONE:               // Game over.
49       d->d_tpb.notify_neighbors(d);
50       return;
51
52     case gr_block_executor::BLKD_IN:            // Wait for input.
53       {
54         gr_tpb_detail::scoped_lock guard(d->d_tpb.mutex);
55         while(!d->d_tpb.input_changed)
56           d->d_tpb.input_cond.wait(guard);
57       }
58       break;
59       
60     case gr_block_executor::BLKD_OUT:           // Wait for output buffer space.
61       {
62         gr_tpb_detail::scoped_lock guard(d->d_tpb.mutex);
63         while(!d->d_tpb.output_changed)
64           d->d_tpb.output_cond.wait(guard);
65       }
66       break;
67
68     default:
69       assert(0);
70     }
71   }
72 }
73
74 gr_tpb_thread_body::~gr_tpb_thread_body()
75 {
76 }