1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
/* -*- c++ -*- */
/*
* Copyright 2006 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <mb_mblock.h>
#include <mb_mblock_impl.h>
mb_visitor::~mb_visitor()
{
// nop base case for virtual destructor.
}
mb_mblock::mb_mblock()
: d_impl(mb_mblock_impl_sptr(new mb_mblock_impl(this)))
{
}
mb_mblock::~mb_mblock()
{
disconnect_all();
// FIXME more?
}
void
mb_mblock::init_fsm()
{
// default implementation does nothing
}
void
mb_mblock::handle_message(mb_message_sptr msg)
{
// default implementation does nothing
}
////////////////////////////////////////////////////////////////////////
// Forward other methods to implementation class //
////////////////////////////////////////////////////////////////////////
mb_port_sptr
mb_mblock::define_port(const std::string &port_name_string,
const std::string &protocol_class_name,
bool conjugated,
mb_port::port_type_t port_type)
{
return d_impl->define_port(port_name_string, protocol_class_name,
conjugated, port_type);
}
void
mb_mblock::define_component(const std::string &component_name,
mb_mblock_sptr component)
{
d_impl->define_component(component_name, component);
}
void
mb_mblock::connect(const std::string &comp_name1, const std::string &port_name1,
const std::string &comp_name2, const std::string &port_name2)
{
d_impl->connect(comp_name1, port_name1,
comp_name2, port_name2);
}
void
mb_mblock::disconnect(const std::string &comp_name1, const std::string &port_name1,
const std::string &comp_name2, const std::string &port_name2)
{
d_impl->disconnect(comp_name1, port_name1,
comp_name2, port_name2);
}
void
mb_mblock::disconnect_component(const std::string component_name)
{
d_impl->disconnect_component(component_name);
}
void
mb_mblock::disconnect_all()
{
d_impl->disconnect_all();
}
int
mb_mblock::nconnections() const
{
return d_impl->nconnections();
}
bool
mb_mblock::walk_tree(mb_visitor *visitor, const std::string &path)
{
return d_impl->walk_tree(visitor, path);
}
std::string
mb_mblock::fullname() const
{
return d_impl->fullname();
}
void
mb_mblock::set_fullname(const std::string name)
{
d_impl->set_fullname(name);
}
mb_mblock *
mb_mblock::parent() const
{
return d_impl->mblock_parent();
}
|