/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Oliver Scheuss, (C) 2007 * Co-authors: * ... * */ // // C++ Interface: ConnectionManager // // Description: The Class ConnectionManager manages the servers conenctions to the clients. // each connection is provided by a new process. communication between master process and // connection processes is provided by ... // // // Author: Oliver Scheuss // #include #include // boost.thread library for multithreading support #include #include #include "core/CoreIncludes.h" #include "core/BaseObject.h" #include "core/Iterator.h" #include "objects/SpaceShip.h" #include "util/Math.h" #include "util/Sleep.h" #include "ClientInformation.h" #include "ConnectionManager.h" #include "Synchronisable.h" #include "packet/ClassID.h" namespace std { bool operator< (ENetAddress a, ENetAddress b) { if(a.host <= b.host) return true; else return false; } } namespace network { //boost::thread_group network_threads; ConnectionManager *ConnectionManager::instance_=0; ConnectionManager::ConnectionManager():receiverThread_(0){ assert(instance_==0); instance_=this; quit=false; bindAddress.host = ENET_HOST_ANY; bindAddress.port = NETWORK_PORT; } boost::recursive_mutex ConnectionManager::enet_mutex; // ConnectionManager::ConnectionManager(ClientInformation *head) : receiverThread_(0) { // assert(instance_==0); // instance_=this; // quit=false; // bindAddress.host = ENET_HOST_ANY; // bindAddress.port = NETWORK_PORT; // } ConnectionManager::ConnectionManager(int port){ assert(instance_==0); instance_=this; quit=false; bindAddress.host = ENET_HOST_ANY; bindAddress.port = port; } ConnectionManager::ConnectionManager(int port, std::string address) :receiverThread_(0) { assert(instance_==0); instance_=this; quit=false; enet_address_set_host (& bindAddress, address.c_str()); bindAddress.port = NETWORK_PORT; } ConnectionManager::ConnectionManager(int port, const char *address) : receiverThread_(0) { assert(instance_==0); instance_=this; quit=false; enet_address_set_host (& bindAddress, address); bindAddress.port = NETWORK_PORT; } ConnectionManager::~ConnectionManager(){ instance_=0; if(!quit) quitListener(); } /*ENetPacket *ConnectionManager::getPacket(ENetAddress &address) { if(!buffer.isEmpty()) return buffer.pop(address); else return NULL; }*/ /** This function only pops the first element in PacketBuffer (first in first out) used by processQueue in Server.cc */ /*ENetPacket *ConnectionManager::getPacket(int &clientID) { ENetAddress address; ENetPacket *packet=getPacket(address); ClientInformation *temp =head_->findClient(&address); if(!temp) return NULL; clientID=temp->getID(); return packet; }*/ ENetEvent *ConnectionManager::getEvent(){ if(!buffer.isEmpty()) return buffer.pop(); else return NULL; } bool ConnectionManager::queueEmpty() { return buffer.isEmpty(); } void ConnectionManager::createListener() { receiverThread_ = new boost::thread(boost::bind(&ConnectionManager::receiverThread, this)); //network_threads.create_thread(boost::bind(boost::mem_fn(&ConnectionManager::receiverThread), this)); //boost::thread thr(boost::bind(boost::mem_fn(&ConnectionManager::receiverThread), this)); return; } bool ConnectionManager::quitListener() { quit=true; //network_threads.join_all(); receiverThread_->join(); return true; } // bool ConnectionManager::addPacket(Packet::Packet *packet){ // ClientInformation *temp = instance_->head_->findClient(packet->getClientID()); // if(!temp){ // COUT(3) << "C.Man: addPacket findClient failed" << std::endl; // return false; // } // ENetPacket *packet = new ENetPacket; // // TODO: finish implementation // } // bool ConnectionManager::addPacket(ENetPacket *packet, ENetPeer *peer) { boost::recursive_mutex::scoped_lock lock(instance_->enet_mutex); if(enet_peer_send(peer, NETWORK_DEFAULT_CHANNEL, packet)!=0) return false; return true; } bool ConnectionManager::addPacket(ENetPacket *packet, int clientID) { ClientInformation *temp = ClientInformation::findClient(clientID); if(!temp){ COUT(3) << "C.Man: addPacket findClient failed" << std::endl; return false; } return addPacket(packet, temp->getPeer()); } bool ConnectionManager::addPacketAll(ENetPacket *packet) { if(!instance_) return false; boost::recursive_mutex::scoped_lock lock(instance_->enet_mutex); for(ClientInformation *i=ClientInformation::getBegin()->next(); i!=0; i=i->next()){ COUT(3) << "adding broadcast packet for client: " << i->getID() << std::endl; if(enet_peer_send(i->getPeer(), 0, packet)!=0) return false; } return true; } // we actually dont need that function, because host_service does that for us bool ConnectionManager::sendPackets() { if(server==NULL || !instance_) return false; boost::recursive_mutex::scoped_lock lock(enet_mutex); enet_host_flush(server); lock.unlock(); return true; } void ConnectionManager::receiverThread() { // what about some error-handling here ? ENetEvent *event; atexit(enet_deinitialize); { //scope of the mutex boost::recursive_mutex::scoped_lock lock(enet_mutex); enet_initialize(); server = enet_host_create(&bindAddress, NETWORK_MAX_CONNECTIONS, 0, 0); lock.unlock(); } if(server==NULL){ // add some error handling here ========================== quit=true; return; } event = new ENetEvent; while(!quit){ { //mutex scope boost::recursive_mutex::scoped_lock lock(enet_mutex); if(enet_host_service(server, event, NETWORK_WAIT_TIMEOUT)<0){ // we should never reach this point quit=true; continue; // add some error handling here ======================== } lock.unlock(); } switch(event->type){ // log handling ================ case ENET_EVENT_TYPE_CONNECT: COUT(3) << "adding event_type_connect to queue" << std::endl; case ENET_EVENT_TYPE_DISCONNECT: //addClient(event); //this is a workaround to ensure thread safety //COUT(5) << "Con.Man: connection event has occured" << std::endl; //break; case ENET_EVENT_TYPE_RECEIVE: //std::cout << "received data" << std::endl; COUT(5) << "Con.Man: receive event has occured" << std::endl; // only add, if client has connected yet and not been disconnected //if(head_->findClient(&event->peer->address)) processData(event); event = new ENetEvent; // else // COUT(3) << "received a packet from a client we don't know" << std::endl; break; //case ENET_EVENT_TYPE_DISCONNECT: //clientDisconnect(event->peer); //break; case ENET_EVENT_TYPE_NONE: //receiverThread_->yield(); usleep(1000); break; } // usleep(100); //receiverThread_->yield(); //TODO: find apropriate } disconnectClients(); // if we're finishied, destroy server { boost::recursive_mutex::scoped_lock lock(enet_mutex); enet_host_destroy(server); lock.unlock(); } } //### added some bugfixes here, but we cannot test them because //### the server crashes everytime because of some gamestates //### (trying to resolve that now) void ConnectionManager::disconnectClients() { ENetEvent event; ClientInformation *temp = ClientInformation::getBegin()->next(); while(temp!=0){ { boost::recursive_mutex::scoped_lock lock(enet_mutex); enet_peer_disconnect(temp->getPeer(), 0); lock.unlock(); } temp = temp->next(); } //bugfix: might be the reason why server crashes when clients disconnects temp = ClientInformation::getBegin()->next(); boost::recursive_mutex::scoped_lock lock(enet_mutex); while( temp!=0 && enet_host_service(server, &event, NETWORK_WAIT_TIMEOUT) >= 0){ switch (event.type) { case ENET_EVENT_TYPE_NONE: break; case ENET_EVENT_TYPE_CONNECT: break; case ENET_EVENT_TYPE_RECEIVE: enet_packet_destroy(event.packet); break; case ENET_EVENT_TYPE_DISCONNECT: COUT(4) << "disconnecting all clients" << std::endl; if(ClientInformation::findClient(&(event.peer->address))) delete ClientInformation::findClient(&(event.peer->address)); //maybe needs bugfix: might also be a reason for the server to crash temp = temp->next(); break; } } return; } bool ConnectionManager::processData(ENetEvent *event) { // just add packet to the buffer // this can be extended with some preprocessing return buffer.push(event); } int ConnectionManager::getClientID(ENetPeer peer) { return getClientID(peer.address); } int ConnectionManager::getClientID(ENetAddress address) { return ClientInformation::findClient(&address)->getID(); } ENetPeer *ConnectionManager::getClientPeer(int clientID) { return ClientInformation::findClient(clientID)->getPeer(); } /** * * @param clientID */ void ConnectionManager::syncClassid(unsigned int clientID) { unsigned int network_id=0, failures=0; std::string classname; orxonox::Identifier *id; std::map::const_iterator it = orxonox::Factory::getFactoryBegin(); while(it != orxonox::Factory::getFactoryEnd()){ id = (*it).second; if(id == NULL) continue; classname = id->getName(); network_id = id->getNetworkID(); if(network_id==0) COUT(3) << "we got a null class id: " << id->getName() << std::endl; COUT(4) << "Con.Man:syncClassid:\tnetwork_id: " << network_id << ", classname: " << classname << std::endl; packet::ClassID *classid = new packet::ClassID( network_id, classname ); classid->setClientID(clientID); while(!classid->send() && failures < 10){ failures++; } ++it; } //sendPackets(); COUT(4) << "syncClassid:\tall synchClassID packets have been sent" << std::endl; } bool ConnectionManager::removeShip(ClientInformation *client){ unsigned int id=client->getShipID(); orxonox::ObjectList::iterator it; for(it = orxonox::ObjectList::begin(); it; ++it){ if(it->getObjectID()!=id) continue; delete *it; } return true; } void ConnectionManager::disconnectClient(ClientInformation *client){ { boost::recursive_mutex::scoped_lock lock(enet_mutex); enet_peer_disconnect(client->getPeer(), 0); lock.unlock(); } removeShip(client); } }