Merged latest pmt and mblock into trunk (eb/wip -r4262:4268)
[debian/gnuradio] / mblock / src / lib / mb_exception.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_exception.h>
27 #include <mb_mblock.h>
28 #include <mb_util.h>
29
30
31 mbe_base::mbe_base(mb_mblock *mb, const std::string &msg)
32   : logic_error(msg)    // FIXME extract block class name and id and add to msg
33 {
34 }
35
36 mbe_no_such_component::mbe_no_such_component(mb_mblock *mb, const std::string &component_name)
37   : mbe_base(mb, "No such component: " + component_name)
38 {
39 }
40
41
42 mbe_duplicate_component::mbe_duplicate_component(mb_mblock *mb, const std::string &component_name)
43   : mbe_base(mb, "Duplicate component: " + component_name)
44 {
45 }
46
47 mbe_no_such_port::mbe_no_such_port(mb_mblock *mb, const std::string &port_name)
48   : mbe_base(mb, "No such port: " + port_name)
49 {
50 }
51
52 mbe_duplicate_port::mbe_duplicate_port(mb_mblock *mb, const std::string &port_name)
53   : mbe_base(mb, "Duplicate port: " + port_name)
54 {
55 }
56
57 mbe_already_connected::mbe_already_connected(mb_mblock *mb,
58                                              const std::string &comp_name,
59                                              const std::string &port_name)
60   : mbe_base(mb, "Port already connected: " + mb_util::join_names(comp_name, port_name))
61 {
62 }
63
64
65
66 mbe_incompatible_ports::mbe_incompatible_ports(mb_mblock *mb,
67                                                const std::string &comp1_name,
68                                                const std::string &port1_name,
69                                                const std::string &comp2_name,
70                                                const std::string &port2_name)
71   : mbe_base(mb, "Incompatible ports: "
72              + mb_util::join_names(comp1_name, port1_name) + " "
73              + mb_util::join_names(comp2_name, port2_name))
74 {
75 }
76
77 mbe_invalid_port_type::mbe_invalid_port_type(mb_mblock *mb,
78                                              const std::string &comp_name,
79                                              const std::string &port_name)
80   : mbe_base(mb, "Invalid port type for connection: " + mb_util::join_names(comp_name, port_name))
81 {
82 }