Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/netp/src/network/ConnectionManager.cc @ 2794

Last change on this file since 2794 was 2794, checked in by scheusso, 15 years ago

some optimisations (mostly inlined SynchronisableVariable functions)
trying to track down a bug with enet connections

  • Property svn:eol-style set to native
File size: 8.6 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (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 Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Oliver Scheuss, (C) 2007
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29//
30// C++ Interface: ConnectionManager
31//
32// Description: The Class ConnectionManager manages the servers conenctions to the clients.
33// each connection is provided by a new process. communication between master process and
34// connection processes is provided by ...
35//
36//
37// Author:  Oliver Scheuss
38//
39
40#include "ConnectionManager.h"
41
42#include <enet/enet.h>
43#include <iostream>
44#include <cassert>
45// boost.thread library for multithreading support
46#include <boost/thread/thread.hpp>
47#include <boost/bind.hpp>
48#include <boost/thread/recursive_mutex.hpp>
49
50#include "util/Math.h"
51#include "util/Sleep.h"
52#include "ClientInformation.h"
53#include "synchronisable/Synchronisable.h"
54#include "packet/ClassID.h"
55
56namespace std
57{
58  bool operator< (ENetAddress a, ENetAddress b) {
59    return a.host <= b.host;
60  }
61}
62
63namespace orxonox
64{
65  //boost::thread_group network_threads;
66  static boost::recursive_mutex enet_mutex_g;
67
68  ConnectionManager *ConnectionManager::instance_=0;
69
70  ConnectionManager::ConnectionManager():receiverThread_(0){
71    assert(instance_==0);
72    instance_=this;
73    quit=false;
74    bindAddress = new ENetAddress();
75    bindAddress->host = ENET_HOST_ANY;
76    bindAddress->port = NETWORK_PORT;
77  }
78
79  ConnectionManager::ConnectionManager(int port){
80    assert(instance_==0);
81    instance_=this;
82    quit=false;
83    bindAddress = new ENetAddress();
84    bindAddress->host = ENET_HOST_ANY;
85    bindAddress->port = port;
86  }
87
88  ConnectionManager::ConnectionManager(int port, const std::string& address) :receiverThread_(0) {
89    assert(instance_==0);
90    instance_=this;
91    quit=false;
92    bindAddress = new ENetAddress();
93    enet_address_set_host (bindAddress, address.c_str());
94    bindAddress->port = NETWORK_PORT;
95  }
96
97  ConnectionManager::ConnectionManager(int port, const char *address) : receiverThread_(0) {
98    assert(instance_==0);
99    instance_=this;
100    quit=false;
101    bindAddress = new ENetAddress();
102    enet_address_set_host (bindAddress, address);
103    bindAddress->port = NETWORK_PORT;
104  }
105
106  ConnectionManager::~ConnectionManager(){
107    if(!quit)
108      quitListener();
109    instance_=0;
110    delete bindAddress;
111  }
112
113
114  ENetEvent *ConnectionManager::getEvent(){
115    if(!buffer.isEmpty())
116      return buffer.pop();
117    else
118      return NULL;
119  }
120
121  bool ConnectionManager::queueEmpty() {
122    return buffer.isEmpty();
123  }
124
125  void ConnectionManager::createListener() {
126    receiverThread_ = new boost::thread(boost::bind(&ConnectionManager::receiverThread, this));
127    return;
128  }
129
130  bool ConnectionManager::quitListener() {
131    quit=true;
132    receiverThread_->join();
133    return true;
134  }
135
136
137  bool ConnectionManager::addPacket(ENetPacket *packet, ENetPeer *peer) {
138    boost::recursive_mutex::scoped_lock lock(enet_mutex_g);
139    if(enet_peer_send(peer, NETWORK_DEFAULT_CHANNEL, packet)!=0)
140      return false;
141    return true;
142  }
143
144  bool ConnectionManager::addPacket(ENetPacket *packet, int clientID) {
145    ClientInformation *temp = ClientInformation::findClient(clientID);
146    if(!temp){
147      COUT(3) << "C.Man: addPacket findClient failed" << std::endl;
148      return false;
149    }
150    return addPacket(packet, temp->getPeer());
151  }
152
153  bool ConnectionManager::addPacketAll(ENetPacket *packet) {
154    if(!instance_)
155      return false;
156    boost::recursive_mutex::scoped_lock lock(enet_mutex_g);
157    for(ClientInformation *i=ClientInformation::getBegin()->next(); i!=0; i=i->next()){
158      COUT(3) << "adding broadcast packet for client: " << i->getID() << std::endl;
159      if(enet_peer_send(i->getPeer(), 0, packet)!=0)
160        return false;
161    }
162    return true;
163  }
164
165  // we actually dont need that function, because host_service does that for us
166  bool ConnectionManager::sendPackets() {
167    if(server==NULL || !instance_)
168      return false;
169    boost::recursive_mutex::scoped_lock lock(enet_mutex_g);
170    enet_host_flush(server);
171    lock.unlock();
172    return true;
173  }
174
175  void ConnectionManager::receiverThread() {
176    // what about some error-handling here ?
177    ENetEvent *event;
178    atexit(enet_deinitialize);
179    { //scope of the mutex
180      boost::recursive_mutex::scoped_lock lock(enet_mutex_g);
181      enet_initialize();
182      server = enet_host_create(bindAddress, NETWORK_MAX_CONNECTIONS, 0, 0);
183      lock.unlock();
184    }
185    if(server==NULL){
186      // add some error handling here ==========================
187      quit=true;
188      return;
189    }
190
191    event = new ENetEvent;
192    while(!quit){
193      { //mutex scope
194        boost::recursive_mutex::scoped_lock lock(enet_mutex_g);
195        if(enet_host_service(server, event, NETWORK_WAIT_TIMEOUT)<0){
196          // we should never reach this point
197          assert(0);
198          quit=true;
199          continue;
200          // add some error handling here ========================
201        }
202        lock.unlock();
203      }
204      switch(event->type){
205        // log handling ================
206        case ENET_EVENT_TYPE_CONNECT:
207        case ENET_EVENT_TYPE_DISCONNECT:
208        case ENET_EVENT_TYPE_RECEIVE:
209            processData(event);
210            event = new ENetEvent;
211          break;
212        case ENET_EVENT_TYPE_NONE:
213          //receiverThread_->yield();
214          msleep(10);
215          break;
216      }
217//       usleep(100);
218      //receiverThread_->yield(); //TODO: find apropriate
219    }
220    disconnectClients();
221    // if we're finishied, destroy server
222    {
223      boost::recursive_mutex::scoped_lock lock(enet_mutex_g);
224      enet_host_destroy(server);
225      lock.unlock();
226    }
227  }
228
229  //### added some bugfixes here, but we cannot test them because
230  //### the server crashes everytime because of some gamestates
231  //### (trying to resolve that now)
232  void ConnectionManager::disconnectClients() {
233    ENetEvent event;
234    ClientInformation *temp = ClientInformation::getBegin()->next();
235    while(temp!=0){
236      {
237        boost::recursive_mutex::scoped_lock lock(enet_mutex_g);
238        enet_peer_disconnect(temp->getPeer(), 0);
239        lock.unlock();
240      }
241      temp = temp->next();
242    }
243    //bugfix: might be the reason why server crashes when clients disconnects
244    temp = ClientInformation::getBegin()->next();
245    boost::recursive_mutex::scoped_lock lock(enet_mutex_g);
246    while( temp!=0 && enet_host_service(server, &event, NETWORK_WAIT_TIMEOUT) >= 0){
247      switch (event.type)
248      {
249      case ENET_EVENT_TYPE_NONE: break;
250      case ENET_EVENT_TYPE_CONNECT: break;
251      case ENET_EVENT_TYPE_RECEIVE:
252        enet_packet_destroy(event.packet);
253        break;
254      case ENET_EVENT_TYPE_DISCONNECT:
255        COUT(4) << "disconnecting all clients" << std::endl;
256        if(ClientInformation::findClient(&(event.peer->address)))
257          delete ClientInformation::findClient(&(event.peer->address));
258        //maybe needs bugfix: might also be a reason for the server to crash
259        temp = temp->next();
260        break;
261      }
262    }
263    return;
264  }
265
266
267  int ConnectionManager::getClientID(ENetPeer* peer) {
268    return getClientID(&(peer->address));
269  }
270
271  int ConnectionManager::getClientID(ENetAddress* address) {
272    return ClientInformation::findClient(address)->getID();
273  }
274
275  ENetPeer *ConnectionManager::getClientPeer(int clientID) {
276    return ClientInformation::findClient(clientID)->getPeer();
277  }
278
279
280  void ConnectionManager::syncClassid(unsigned int clientID) {
281    int failures=0;
282    packet::ClassID *classid = new packet::ClassID();
283    classid->setClientID(clientID);
284    while(!classid->send() && failures < 10){
285      failures++;
286    }
287    assert(failures<10);
288    COUT(4) << "syncClassid:\tall synchClassID packets have been sent" << std::endl;
289  }
290 
291
292  void ConnectionManager::disconnectClient(ClientInformation *client){
293    {
294      boost::recursive_mutex::scoped_lock lock(enet_mutex_g);
295      enet_peer_disconnect(client->getPeer(), 0);
296      lock.unlock();
297    }
298  }
299
300
301}
Note: See TracBrowser for help on using the repository browser.