Service.h
1/*
2 * Copyright (C) 2012 by Marc Boris Duerner
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * As a special exception, you may use this file as part of a free
10 * software library without restriction. Specifically, if other files
11 * instantiate templates or use macros or inline functions from this
12 * file, or you compile this file and link it with other files to
13 * produce an executable, this file does not by itself cause the
14 * resulting executable to be covered by the GNU General Public
15 * License. This exception does not however invalidate any other
16 * reasons why the executable file might be covered by the GNU Library
17 * General Public License.
18 *
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
23 *
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 */
28
29#ifndef Pt_Http_Service_h
30#define Pt_Http_Service_h
31
32#include <Pt/Http/Api.h>
33#include <Pt/Http/Responder.h>
34#include <Pt/Types.h>
35#include <Pt/Allocator.h>
36#include <Pt/NonCopyable.h>
37#include <Pt/Signal.h>
38#include <string>
39
40namespace Pt {
41
42namespace Http {
43
44class Request;
45class IOStream;
46
76class PT_HTTP_API Service : private NonCopyable
77{
78 friend class ServerImpl;
79
80 public:
84
87 virtual ~Service();
88
92
96
103
104 protected:
107 virtual Responder* onGetResponder(const Request&) = 0;
108
111 virtual void onReleaseResponder(Responder*) = 0;
112
119
120 private:
121 // service specific options need to be set in Service ctor so it can
122 // be used concurrently by server threads without locking
123 Pt::varint_t _r0;
124 Pt::varint_t _r1;
125 Pt::varint_t _r2;
127};
128
133template <typename R, typename Alloc = Allocator>
134class BasicService : public Service
135{
136 public:
140 { }
141
145 { }
146
147 protected:
149 {
150 void* r = _alloc.allocate( sizeof(R) );
151 return new(r) R(*this);
152 }
153
155 {
156 r->~Responder();
157 _alloc.deallocate( r, sizeof(R) );
158 }
159
160 private:
161 Alloc _alloc;
162};
163
164} // namespace Http
165
166} // namespace Pt
167
168#endif // Pt_Http_Service_h
virtual Responder * onGetResponder(const Request &)
Creates a responder to handle request received by a server.
Definition Service.h:148
~BasicService()
Destructor.
Definition Service.h:144
virtual void onReleaseResponder(Responder *r)
Destroys a responder created by a server.
Definition Service.h:154
BasicService()
Default Constructor.
Definition Service.h:139
Stream of an upgraded HTTP connection.
Definition IOStream.h:53
HTTP request message.
Definition Request.h:65
Handles one HTTP request and writes the reply.
Definition Responder.h:109
virtual ~Responder()
Destructor.
void releaseResponder(Responder *)
Destroys a responder created by a server.
Service()
Default Constructor.
Responder * getResponder(const Request &)
Creates a responder to handle request received by a server.
Signal< IOStream *, const std::string & > & upgradeRequested()
Returns the signal emitted when a request upgrades to this service.
virtual ~Service()
Destructor.
virtual void onReleaseResponder(Responder *)=0
Destroys a responder created by a server.
virtual Responder * onGetResponder(const Request &)=0
Creates a responder to handle request received by a server.
NonCopyable()
Default constructor.
Definition NonCopyable.h:63
Multicast Signal to call multiple slots.
Definition Signal.h:190
HTTP clients and servers.
Core module.
Definition Allocator.h:33