Imported Upstream version 3.2.2
[debian/gnuradio] / mblock / src / lib / mb_port.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2006,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
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 mb_port::mb_port(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   : d_port_name(port_name), d_port_symbol(pmt_intern(port_name)),
35     d_conjugated(conjugated), d_port_type(port_type),
36     d_mblock(mblock)
37 {
38   pmt_t pc = mb_protocol_class_lookup(pmt_intern(protocol_class_name));
39   if (pmt_is_null(pc)){
40     throw std::runtime_error("mb_port: unknown protocol class '"
41                              + protocol_class_name + "'");
42   }
43   d_protocol_class = pc;
44 }
45
46 mb_port::~mb_port()
47 {
48   // nop
49 }
50
51 pmt_t
52 mb_port::incoming_message_set() const
53 {
54   if (!conjugated())
55     return mb_protocol_class_incoming(protocol_class());
56   else  // swap the sets
57     return mb_protocol_class_outgoing(protocol_class());
58 }
59
60 pmt_t
61 mb_port::outgoing_message_set() const
62 {
63   if (!conjugated())
64     return mb_protocol_class_outgoing(protocol_class());
65   else  // swap the sets
66     return mb_protocol_class_incoming(protocol_class());
67 }