PPI: Allow connecting two MultiConnectorMixin modules
[senf.git] / senf / PPI / MultiConnectorMixin.ih
1 // $Id$
2 //
3 // Copyright (C) 2009 
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 MultiConnectorMixin internal header */
25
26 #ifndef IH_SENF_PPI_MultiConnectorMixin_
27 #define IH_SENF_PPI_MultiConnectorMixin_ 1
28
29 // Custom includes
30
31 ///////////////////////////////ih.p////////////////////////////////////////
32
33 namespace senf {
34 namespace ppi {
35 namespace module {
36 namespace detail {
37
38     struct MultiConnectorMixinAccess
39     {
40 #       define BOOST_PP_ITERATION_PARAMS_1 (4, ( \
41             0, \
42             SENF_MULTI_CONNECTOR_MAX_ARGS,                              \
43             SENF_ABSOLUTE_INCLUDE_PATH(PPI/MultiConnectorMixin.mpp),    \
44             8 ))
45 #       include BOOST_PP_ITERATE()
46     };
47
48     template <class KeyType, class ConnectorType>
49     struct MultiConnectorDefaultContainer 
50     { 
51         typedef boost::ptr_map<KeyType, ConnectorType> type; 
52     };
53
54 #ifndef DOXYGEN
55
56     template <class ConnectorType>
57     struct MultiConnectorDefaultContainer<void,ConnectorType> 
58     { 
59         typedef boost::ptr_vector<ConnectorType> type;
60     };
61
62 #endif
63
64     template <class ConnectorType>
65     struct MultiConnectorSelectBase
66         : public boost::mpl::if_< 
67               boost::is_base_of<connector::InputConnector, ConnectorType>,
68               ppi::detail::DisableStandardInput, ppi::detail::DisableStandardOutput >
69     {};
70
71     template <class T> senf::mpl::rv<0> is_multiconnector_(T *, ...);
72     template <class T> senf::mpl::rv<1> is_multiconnector_(
73         T *,
74         typename boost::enable_if<boost::is_base_of<connector::OutputConnector, 
75                                                     typename T::ConnectorType>, 
76         int>::type);
77     template <class T> senf::mpl::rv<2> is_multiconnector_(
78         T *,
79         typename boost::enable_if<boost::is_base_of<connector::InputConnector, 
80                                                     typename T::ConnectorType>, 
81         int>::type);
82
83     template <class T, unsigned N>
84     struct is_multiconnector_source_
85         : public boost::false_type
86     {};
87
88     template <class T>
89     struct is_multiconnector_source_<T, 1u>
90         : public boost::true_type
91     {};
92
93     template <class T>
94     struct is_multiconnector_source
95         : public is_multiconnector_source_<
96               T, SENF_MPL_RV(is_multiconnector_<T>(static_cast<T*>(0),0))>
97     {};
98
99     template <class T, unsigned N>
100     struct is_multiconnector_target_
101         : public boost::false_type
102     {};
103
104     template <class T>
105     struct is_multiconnector_target_<T, 2u>
106         : public boost::true_type
107     {};
108
109     template <class T>
110     struct is_multiconnector_target
111         : public is_multiconnector_target_<
112               T, SENF_MPL_RV(is_multiconnector_<T>(static_cast<T*>(0),0))>
113     {};
114
115
116
117 }}}}
118
119 ///////////////////////////////ih.e////////////////////////////////////////
120 #endif
121
122 \f
123 // Local Variables:
124 // mode: c++
125 // fill-column: 100
126 // comment-column: 40
127 // c-file-style: "senf"
128 // indent-tabs-mode: nil
129 // ispell-local-dictionary: "american"
130 // compile-command: "scons -u test"
131 // End: