Socket: BUGFIX: Move incorrect v-function call out of FileBody destructor
[senf.git] / Socket / SocketProtocol.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_SocketProtocol_test_
24 #define HH_SocketProtocol_test_ 1
25
26 // Custom includes
27 #include "SocketProtocol.hh"
28 #include "SocketPolicy.test.hh"
29 #include "ProtocolClientSocketHandle.hh"
30 #include "../Utils/Logger/SenfLog.hh"
31
32 //#include "SocketProtocol.test.mpp"
33 ///////////////////////////////hh.p////////////////////////////////////////
34
35 namespace senf {
36 namespace test {
37
38     class SomeProtocol
39         : public ConcreteSocketProtocol<SomeSocketPolicy,SomeProtocol>
40     {
41     public:
42         ~SomeProtocol() {}
43
44         void init_client() const { fd(0); }
45         void init_server() const { fd(0); }
46
47         unsigned available() const
48             { return Policy::ReadPolicy::TEST_SIZE; }
49         bool eof() const
50             { return false; }
51
52         virtual void close() const {
53             SENF_LOG(( "Closing socket ..." ));
54             closeCount(1);
55         }
56
57         static unsigned closeCount(unsigned inc=0) {
58             static unsigned counter (0);
59             counter += inc;
60             return counter;
61         }
62     };
63
64 }}
65
66 ///////////////////////////////hh.e////////////////////////////////////////
67 //#include "SocketProtocol.test.cci"
68 //#include "SocketProtocol.test.ct"
69 //#include "SocketProtocol.test.cti"
70 //#include "SocketProtocol.test.mpp"
71 #endif
72
73 \f
74 // Local Variables:
75 // mode: c++
76 // fill-column: 100
77 // c-file-style: "senf"
78 // indent-tabs-mode: nil
79 // ispell-local-dictionary: "american"
80 // compile-command: "scons -u test"
81 // comment-column: 40
82 // End: