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