Scheduler: Fix ClockService unittest to work on higher latency systems
[senf.git] / PPI / Joins.hh
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
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 Joins public header */
25
26 #ifndef HH_Joins_
27 #define HH_Joins_ 1
28
29 // Custom includes
30 #include <boost/ptr_container/ptr_vector.hpp>
31 #include "predecl.hh"
32 #include "Connectors.hh"
33 #include "Module.hh"
34
35 //#include "Joins.mpp"
36 ///////////////////////////////hh.p////////////////////////////////////////
37
38 namespace senf {
39 namespace ppi {
40
41     template <class Source>
42     connector::PassiveInput & connect(Source & source, module::PassiveJoin & target);
43     
44     template <class Source>
45     connector::ActiveInput & connect(Source & source, module::PriorityJoin & target);
46
47 namespace module {
48
49     class PassiveJoin
50         : public Module
51     {
52         SENF_PPI_MODULE(PassiveJoin);
53     public:
54         connector::ActiveOutput output;
55
56         PassiveJoin();
57
58         template <class Source>
59         connector::PassiveInput & connect(Source & source);
60
61     private:
62         connector::PassiveInput & newInput();
63
64         void request(connector::PassiveInput & input);
65         void onThrottle();
66         void onUnthrottle();
67
68         typedef boost::ptr_vector<connector::PassiveInput> Inputs;
69         Inputs inputs_;
70     };
71
72     class PriorityJoin
73         : public Module
74     {
75         SENF_PPI_MODULE(PriorityJoin);
76     public:
77         connector::PassiveOutput output;
78
79         PriorityJoin();
80
81         template <class Source>
82         connector::ActiveInput & connect(Source & source);
83
84     private:
85         connector::ActiveInput & newInput();
86
87         void request();
88         void onThrottle();
89         void onUnthrottle();
90
91         typedef boost::ptr_vector<connector::ActiveInput> Inputs;
92         Inputs inputs_;
93     };
94
95 }}}
96
97 ///////////////////////////////hh.e////////////////////////////////////////
98 #include "Joins.cci"
99 //#include "Joins.ct"
100 #include "Joins.cti"
101 #endif
102
103 \f
104 // Local Variables:
105 // mode: c++
106 // fill-column: 100
107 // comment-column: 40
108 // c-file-style: "senf"
109 // indent-tabs-mode: nil
110 // ispell-local-dictionary: "american"
111 // compile-command: "scons -u test"
112 // End: