e3f898f805f1badbe5d9bfa596d6f2f5cb6ce11c
[senf.git] / senf / PPI / AnnotationRouter.ct
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief AnnotationRouter non-inline template implementation  */
25
26 //#include "AnnotationRouter.ih"
27
28 // Custom includes
29 #include "Connectors.hh"
30
31 #define prefix_
32 ///////////////////////////////ct.p////////////////////////////////////////
33
34 template <class AnnotationType>
35 prefix_ senf::ppi::module::AnnotationRouter<AnnotationType>::AnnotationRouter()
36 {
37     noroute(input);
38     noroute(defaultOutput);
39     input.onRequest(&AnnotationRouter::request);
40 }
41
42 template <class AnnotationType>
43 prefix_ AnnotationType senf::ppi::module::AnnotationRouter<AnnotationType>::
44 connectorSetup(connector::ActiveOutput<> & conn, AnnotationType const & key)
45 {
46     if (this->connectors().find(key) != this->connectors().end())
47         throw DuplicateKeyException(key);
48     route(input, conn);
49     return key;
50 }
51
52 template <class AnnotationType>
53 prefix_ void senf::ppi::module::AnnotationRouter<AnnotationType>::request()
54 {
55     Packet p (input());
56     typename AnnotationRouter::ContainerType::iterator i (
57         this->connectors().find(p.annotation<AnnotationType>()));
58     if (i == this->connectors().end())
59         defaultOutput(p);
60     else {
61 #if BOOST_VERSION >= 103400
62         (*i->second)(p);
63 #else
64         (*i)(p);
65 #endif
66     }
67 }
68
69 ///////////////////////////////ct.e////////////////////////////////////////
70 #undef prefix_
71
72 \f
73 // Local Variables:
74 // mode: c++
75 // fill-column: 100
76 // comment-column: 40
77 // c-file-style: "senf"
78 // indent-tabs-mode: nil
79 // ispell-local-dictionary: "american"
80 // compile-command: "scons -u test"
81 // End: