2f047ca3b4b1b1daeec4f7a7558f46efcfc27443
[senf.git] / senf / Scheduler / WriteHelper.cti
1 // $Id$
2 //
3 // Copyright (C) 2006 Stefan Bund <g0dil@berlios.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the
17 // Free Software Foundation, Inc.,
18 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 // Copyright (C) 2006
20
21 /** \file
22     \brief WriteHelper inline template implementation */
23
24 //#include "WriteHelper.ih"
25
26 // Custom includes
27 #include <senf/Utils/Exception.hh>
28
29 #define prefix_ inline
30 //-/////////////////////////////////////////////////////////////////////////////////////////////////
31
32 template <class Handle>
33 prefix_ typename senf::WriteHelper<Handle>::ptr
34 senf::WriteHelper<Handle>::dispatch(Handle handle, std::string const & data, Callback callback)
35 {
36     return ptr(new WriteHelper(handle, data, callback));
37 }
38
39 template <class Handle>
40 prefix_ Handle senf::WriteHelper<Handle>::handle()
41     const
42 {
43     return handle_;
44 }
45
46 template <class Handle>
47 prefix_ bool senf::WriteHelper<Handle>::complete()
48     const
49 {
50     return data_.empty();
51 }
52
53 template <class Handle>
54 prefix_ bool senf::WriteHelper<Handle>::error()
55     const
56 {
57     return errno_ != 0;
58 }
59
60 template <class Handle>
61 prefix_ void senf::WriteHelper<Handle>::throw_error()
62     const
63 {
64     if (errno_ != 0)
65         throw SystemException(errno_ SENF_EXC_DEBUGINFO);
66 }
67
68
69 //-/////////////////////////////////////////////////////////////////////////////////////////////////
70 #undef prefix_
71
72 \f
73 // Local Variables:
74 // mode: c++
75 // fill-column: 100
76 // c-file-style: "senf"
77 // indent-tabs-mode: nil
78 // ispell-local-dictionary: "american"
79 // compile-command: "scons -u test"
80 // comment-column: 40
81 // End: