~ubuntu-branches/ubuntu/gutsy/poco/gutsy

« back to all changes in this revision

Viewing changes to Net/src/TCPServer.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Burghardt
  • Date: 2007-04-27 18:33:48 UTC
  • Revision ID: james.westby@ubuntu.com-20070427183348-xgnpct0qd6a2ip34
Tags: upstream-1.2.9
ImportĀ upstreamĀ versionĀ 1.2.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// TCPServer.cpp
 
3
//
 
4
// $Id: //poco/1.2/Net/src/TCPServer.cpp#2 $
 
5
//
 
6
// Library: Net
 
7
// Package: TCPServer
 
8
// Module:  TCPServer
 
9
//
 
10
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
 
11
// and Contributors.
 
12
//
 
13
// Permission is hereby granted, free of charge, to any person or organization
 
14
// obtaining a copy of the software and accompanying documentation covered by
 
15
// this license (the "Software") to use, reproduce, display, distribute,
 
16
// execute, and transmit the Software, and to prepare derivative works of the
 
17
// Software, and to permit third-parties to whom the Software is furnished to
 
18
// do so, all subject to the following:
 
19
// 
 
20
// The copyright notices in the Software and this entire statement, including
 
21
// the above license grant, this restriction and the following disclaimer,
 
22
// must be included in all copies of the Software, in whole or in part, and
 
23
// all derivative works of the Software, unless such copies or derivative
 
24
// works are solely in the form of machine-executable object code generated by
 
25
// a source language processor.
 
26
// 
 
27
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
28
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
29
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
 
30
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
 
31
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
 
32
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
33
// DEALINGS IN THE SOFTWARE.
 
34
//
 
35
 
 
36
 
 
37
#include "Poco/Net/TCPServer.h"
 
38
#include "Poco/Net/TCPServerDispatcher.h"
 
39
#include "Poco/Net/TCPServerConnection.h"
 
40
#include "Poco/Net/TCPServerConnectionFactory.h"
 
41
#include "Poco/Timespan.h"
 
42
#include "Poco/Exception.h"
 
43
#include "Poco/ErrorHandler.h"
 
44
 
 
45
 
 
46
using Poco::ErrorHandler;
 
47
 
 
48
 
 
49
namespace Poco {
 
50
namespace Net {
 
51
 
 
52
 
 
53
TCPServer::TCPServer(TCPServerConnectionFactory* pFactory, const ServerSocket& socket, TCPServerParams* pParams):
 
54
        _socket(socket),
 
55
        _pDispatcher(new TCPServerDispatcher(pFactory, Poco::ThreadPool::defaultPool(), pParams)),
 
56
        _thread(threadName(socket)),
 
57
        _stopped(false)
 
58
{
 
59
}
 
60
 
 
61
 
 
62
TCPServer::TCPServer(TCPServerConnectionFactory* pFactory, Poco::ThreadPool& threadPool, const ServerSocket& socket, TCPServerParams* pParams):
 
63
        _socket(socket),
 
64
        _pDispatcher(new TCPServerDispatcher(pFactory, threadPool, pParams)),
 
65
        _thread(threadName(socket)),
 
66
        _stopped(false)
 
67
{
 
68
}
 
69
 
 
70
 
 
71
TCPServer::~TCPServer()
 
72
{
 
73
        stop();
 
74
        _pDispatcher->release();
 
75
}
 
76
 
 
77
 
 
78
const TCPServerParams& TCPServer::params() const
 
79
{
 
80
        return _pDispatcher->params();
 
81
}
 
82
 
 
83
 
 
84
void TCPServer::start()
 
85
{
 
86
        poco_assert (!_stopped);
 
87
 
 
88
        _thread.start(*this);
 
89
}
 
90
 
 
91
        
 
92
void TCPServer::stop()
 
93
{
 
94
        if (!_stopped)
 
95
        {
 
96
                _stopped = true;
 
97
                _thread.join();
 
98
                _pDispatcher->stop();
 
99
        }
 
100
}
 
101
 
 
102
 
 
103
void TCPServer::run()
 
104
{
 
105
        while (!_stopped)
 
106
        {
 
107
                Poco::Timespan timeout(250000);
 
108
                if (_socket.poll(timeout, Socket::SELECT_READ))
 
109
                {
 
110
                        try
 
111
                        {
 
112
                                StreamSocket ss = _socket.acceptConnection();
 
113
                                // enabe nodelay per default: OSX really needs that
 
114
                                ss.setNoDelay(true);
 
115
                                _pDispatcher->enqueue(ss);
 
116
                        }
 
117
                        catch (Poco::Exception& exc)
 
118
                        {
 
119
                                ErrorHandler::handle(exc);
 
120
                        }
 
121
                        catch (std::exception& exc)
 
122
                        {
 
123
                                ErrorHandler::handle(exc);
 
124
                        }
 
125
                        catch (...)
 
126
                        {
 
127
                                ErrorHandler::handle();
 
128
                        }
 
129
                }
 
130
        }
 
131
}
 
132
 
 
133
 
 
134
int TCPServer::currentThreads() const
 
135
{
 
136
        return _pDispatcher->currentThreads();
 
137
}
 
138
 
 
139
        
 
140
int TCPServer::totalConnections() const
 
141
{
 
142
        return _pDispatcher->totalConnections();
 
143
}
 
144
 
 
145
 
 
146
int TCPServer::currentConnections() const
 
147
{
 
148
        return _pDispatcher->currentConnections();
 
149
}
 
150
 
 
151
 
 
152
int TCPServer::maxConcurrentConnections() const
 
153
{
 
154
        return _pDispatcher->maxConcurrentConnections();
 
155
}
 
156
 
 
157
        
 
158
int TCPServer::queuedConnections() const
 
159
{
 
160
        return _pDispatcher->queuedConnections();
 
161
}
 
162
 
 
163
 
 
164
int TCPServer::refusedConnections() const
 
165
{
 
166
        return _pDispatcher->refusedConnections();
 
167
}
 
168
 
 
169
 
 
170
std::string TCPServer::threadName(const ServerSocket& socket)
 
171
{
 
172
        std::string name("TCPServer: ");
 
173
        name.append(socket.address().toString());
 
174
        return name;
 
175
}
 
176
 
 
177
 
 
178
} } // namespace Poco::Net