4740f6e0b744173c75bddc1ac735bcb665151811
[senf.git] / Socket / SocketPolicy.test.hh
1 // $Id$
2 //
3 // Copyright (C) 2006
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 #ifndef HH_SocketPolicy_test_
24 #define HH_SocketPolicy_test_ 1
25
26 // Custom includes
27 #include "SocketPolicy.hh"
28 #include "FileHandle.hh"
29
30 //#include "SocketPolicy.test.mpp"
31 ///////////////////////////////hh.p////////////////////////////////////////
32
33 namespace senf {
34
35 namespace test {
36
37     struct SomeAddressingPolicy : public senf::AddressingPolicyBase
38     {
39         typedef unsigned Address;
40
41         static void peer(FileHandle handle, unsigned & addr)
42             { addr=1; }
43         static void local(FileHandle, unsigned & addr)
44             { addr=2; }
45         static void connect(FileHandle, unsigned addr)
46             {}
47         static void bind(FileHandle, unsigned addr)
48             {}
49     };
50
51     struct SomeFramingPolicy : public senf::FramingPolicyBase
52     {};
53
54     struct SomeCommunicationPolicy : public senf::CommunicationPolicyBase
55     {
56         static int accept(FileHandle handle, unsigned & addr)
57             { addr = 3; return -1; }
58         static int accept(FileHandle handle)
59             { return -1; }
60     };
61
62     struct SomeReadPolicy : public senf::ReadPolicyBase
63     {
64         static unsigned const TEST_SIZE = 9;
65
66         static unsigned read(FileHandle handle, char * buffer, unsigned size)
67             {
68                 int const n (size<TEST_SIZE?size:TEST_SIZE);
69                 ::memcpy(buffer,"TEST-READ",n);
70                 return n;
71             }
72
73         static unsigned readfrom(FileHandle handle, char * buffer, unsigned size,
74                                  unsigned & address)
75             {
76                 return read(handle,buffer,size);
77             }
78     };
79
80     struct SomeWritePolicy : public senf::WritePolicyBase
81     {
82         static unsigned write(FileHandle handle, char const * buffer, unsigned size)
83             {
84                 if (size == 10 && ::strncmp(buffer,"TEST-WRITE",10) == 0)
85                     return size;
86                 else
87                     return 0;
88             }
89
90         static unsigned writeto(FileHandle handle, unsigned address,
91                                 char const * buffer, unsigned size)
92             {
93                 return write(handle,buffer,size);
94             }
95     };
96
97     typedef senf::MakeSocketPolicy<
98         SomeAddressingPolicy,
99         SomeFramingPolicy,
100         SomeCommunicationPolicy,
101         SomeReadPolicy,
102         SomeWritePolicy
103         >::policy SomeSocketPolicy;
104
105 }}
106
107 ///////////////////////////////hh.e////////////////////////////////////////
108 //#include "SocketPolicy.test.cci"
109 //#include "SocketPolicy.test.ct"
110 //#include "SocketPolicy.test.cti"
111 //#include "SocketPolicy.test.mpp"
112 #endif
113
114 \f
115 // Local Variables:
116 // mode: c++
117 // fill-column: 100
118 // c-file-style: "senf"
119 // indent-tabs-mode: nil
120 // ispell-local-dictionary: "american"
121 // compile-command: "scons -u test"
122 // comment-column: 40
123 // End: