Once and for all, here is the properly updated Makefile.am for the apps
[debian/gnuradio] / mblock / src / lib / mb_port.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2006,2008,2009 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
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <mblock/port.h>
27 #include <mblock/protocol_class.h>
28
29 using namespace pmt;
30
31 mb_port::mb_port(mb_mblock *mblock,
32                  const std::string &port_name,
33                  const std::string &protocol_class_name,
34                  bool conjugated,
35                  mb_port::port_type_t port_type)
36   : d_port_name(port_name), d_port_symbol(pmt_intern(port_name)),
37     d_conjugated(conjugated), d_port_type(port_type),
38     d_mblock(mblock)
39 {
40   pmt_t pc = mb_protocol_class_lookup(pmt_intern(protocol_class_name));
41   if (pmt_is_null(pc)){
42     throw std::runtime_error("mb_port: unknown protocol class '"
43                              + protocol_class_name + "'");
44   }
45   d_protocol_class = pc;
46 }
47
48 mb_port::~mb_port()
49 {
50   // nop
51 }
52
53 pmt_t
54 mb_port::incoming_message_set() const
55 {
56   if (!conjugated())
57     return mb_protocol_class_incoming(protocol_class());
58   else  // swap the sets
59     return mb_protocol_class_outgoing(protocol_class());
60 }
61
62 pmt_t
63 mb_port::outgoing_message_set() const
64 {
65   if (!conjugated())
66     return mb_protocol_class_outgoing(protocol_class());
67   else  // swap the sets
68     return mb_protocol_class_incoming(protocol_class());
69 }