4896df3a6c16d08a34e1637ba8b8af093c2da2a9
[debian/gnuradio] / mblock / src / lib / mb_port_simple.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 2, 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
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <mb_port_simple.h>
27 #include <mb_msg_accepter.h>
28
29 mb_port_simple::mb_port_simple(mb_mblock *mblock,
30                                const std::string &port_name,
31                                const std::string &protocol_class_name,
32                                bool conjugated,
33                                mb_port::port_type_t port_type)
34   : mb_port(mblock, port_name, protocol_class_name, conjugated, port_type)
35 {
36 }
37
38 mb_port_simple::~mb_port_simple()
39 {
40   // nop
41 }
42
43 void
44 mb_port_simple::send(pmt_t signal, pmt_t data, pmt_t metadata, mb_pri_t priority)
45 {
46   mb_msg_accepter_sptr  accepter = find_accepter();
47   if (accepter)
48     (*accepter)(signal, data, metadata, priority);
49 }
50
51 mb_msg_accepter_sptr
52 mb_port_simple::find_accepter()
53 {
54   mb_msg_accepter_sptr  r;
55
56   // FIXME, actually do the work ;)
57
58   return r;
59 }