2 // Copyright (c) 2020 Fraunhofer Institute for Applied Information Technology (FIT)
3 // Network Research Group (NET)
4 // Schloss Birlinghoven, 53754 Sankt Augustin, GERMANY
5 // Contact: support@wiback.org
7 // This file is part of the SENF code tree.
8 // It is licensed under the 3-clause BSD License (aka New BSD License).
9 // See LICENSE.txt in the top level directory for details or visit
10 // https://opensource.org/licenses/BSD-3-Clause
15 \brief ssenf::ProtocolServerSocketHandle Boost.Preprocessor external iteration include
18 #if !BOOST_PP_IS_ITERATING
19 #ifndef MPP_SENF_Socket_ProtocolServerSocketHandle_
22 #include <boost/preprocessor/iteration/iterate.hpp>
23 #include <boost/preprocessor/enum.hpp>
24 #include <boost/preprocessor/cat.hpp>
26 //-/////////////////////////////////////////////////////////////////////////////////////////////////
29 #define mpp_PSSH_Arg(z,n,data) BOOST_PP_CAT(A,n) const & BOOST_PP_CAT(a,n)
31 #define mpp_PSSH_TemplateParameters() BOOST_PP_ENUM_PARAMS(BOOST_PP_ITERATION(), class A )
32 #define mpp_PSSH_MethodParameters() BOOST_PP_ENUM(BOOST_PP_ITERATION(), mpp_PSSH_Arg, )
33 #define mpp_PSSH_CallParameters() BOOST_PP_ENUM_PARAMS(BOOST_PP_ITERATION(), a )
35 //-/////////////////////////////////////////////////////////////////////////////////////////////////
38 //-/////////////////////////////////////////////////////////////////////////////////////////////////
40 //-/////////////////////////////////////////////////////////////////////////////////////////////////
41 #if BOOST_PP_ITERATION_FLAGS()==1
42 //-/////////////////////////////////////////////////////////////////////////////////////////////////
43 // senf::ProtocolServerSocketHandle<SocketProtocol>::
44 // ProtocolServerSocketHandle (constructor) declaration
46 template < mpp_PSSH_TemplateParameters() >
47 explicit ProtocolServerSocketHandle( mpp_PSSH_MethodParameters() );
49 //-/////////////////////////////////////////////////////////////////////////////////////////////////
50 #elif BOOST_PP_ITERATION_FLAGS()==2
51 //-/////////////////////////////////////////////////////////////////////////////////////////////////
52 // senf::ProtocolServerSocketHandle<SocketProtocol>::
53 // ProtocolServerSocketHandle (constructor) implementation
55 template <class SocketProtocol>
56 template < mpp_PSSH_TemplateParameters() >
57 prefix_ senf::ProtocolServerSocketHandle<SocketProtocol>::
58 ProtocolServerSocketHandle( mpp_PSSH_MethodParameters() )
59 : ServerSocketHandle<typename SocketProtocol::Policy>(
60 std::auto_ptr<senf::SocketBody>(new ProtocolSocketBody<SocketProtocol>(true)))
62 this->protocol().init_server( mpp_PSSH_CallParameters() );
65 //-/////////////////////////////////////////////////////////////////////////////////////////////////
68 #if !BOOST_PP_IS_ITERATING
69 #ifdef MPP_SENF_Socket_ProtocolServerSocketHandle_
70 //-/////////////////////////////////////////////////////////////////////////////////////////////////
71 // Undefine local Macros
74 #undef mpp_PSSH_TemplateParameters
75 #undef mpp_PSSH_MethodParameters
76 #undef mpp_PSSH_CallParameters
78 //-/////////////////////////////////////////////////////////////////////////////////////////////////
80 #define MPP_SENF_Socket_ProtocolServerSocketHandle_ 1
88 // c-file-style: "senf"
89 // indent-tabs-mode: nil
90 // ispell-local-dictionary: "american"