summaryrefslogtreecommitdiffstats
path: root/src/Common/RequestManager.h
blob: 77eca52b44f64528f299a0dc43c13e7f7fe0161a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*
 * RequestManager.h
 *
 * Copyright (C) 2008 Matthias Schiffer <matthias@gamezock.de>
 *
 * 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 3 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, see <http://www.gnu.org/licenses/>.
 */

#ifndef MAD_COMMON_REQUESTMANAGER_H_
#define MAD_COMMON_REQUESTMANAGER_H_

#include "RequestHandler.h"
#include <Net/Connection.h>
#include <map>

namespace Mad {
namespace Common {

namespace Request {
class Request;
}

class RequestManager {
  private:
    class RequestMap : private std::map<unsigned short,RequestHandler*> {
      private:
        // Prevent shallow copy
        RequestMap(const RequestMap &o);
        RequestMap& operator=(const RequestMap &o);

      public:
        RequestMap() {}

        ~RequestMap() {
          for(iterator it = begin(); it != end(); ++it)
            delete it->second;
        }

        bool addRequest(unsigned short id, RequestHandler *info) {
          return insert(std::make_pair(id, info)).second;
        }

        RequestHandler* findRequest(unsigned short id) {
          iterator it = find(id);
          if(it == end())
            return 0;

          return it->second;
        }

        bool deleteRequest(unsigned short id) {
          iterator it = find(id);
          if(it == end())
            return false;

          delete it->second;

          erase(it);
          return true;
        }
    };

    class RequestHandlerFactory {
      protected:
        RequestHandlerFactory() {}

      public:
        virtual RequestHandler* createRequestHandler() = 0;
        virtual ~RequestHandlerFactory() {}
    };

    template<class T> class SpecificRequestHandlerFactory : public RequestHandlerFactory {
      public:
        virtual RequestHandler* createRequestHandler() {
          return new T();
        }
    };

    // Prevent shallow copy
    RequestManager(const RequestManager &o);
    RequestManager& operator=(const RequestManager &o);

    std::map<Net::Connection*,RequestMap*> requestMaps;
    unsigned short requestId;

    std::map<Net::Packet::Type,RequestHandlerFactory*> requestHandlerFactories;

    unsigned short getRequestId() {
      return requestId+=2;
    }

    void receiveHandler(Net::Connection *connection, const Net::Packet &packet);

  public:
    void registerConnection(Net::Connection *connection) {
      requestMaps.insert(std::make_pair(connection, new RequestMap()));

      connection->signalReceive().connect(sigc::mem_fun(this, &RequestManager::receiveHandler));
    }

    void unregisterConnection(Net::Connection *connection) {
      std::map<Net::Connection*,RequestMap*>::iterator it = requestMaps.find(connection);

      if(it == requestMaps.end())
        return;

      delete it->second;

      requestMaps.erase(it);
    }

    template <class T> void registerPacketType(Net::Packet::Type type) {
      requestHandlerFactories.insert(std::make_pair(type, new SpecificRequestHandlerFactory<T>()));
    }

    void unregisterPacketType(Net::Packet::Type type) {
      std::map<Net::Packet::Type,RequestHandlerFactory*>::iterator it = requestHandlerFactories.find(type);

      if(it == requestHandlerFactories.end())
        return;

      delete it->second;

      requestHandlerFactories.erase(it);
    }

    bool sendRequest(Net::Connection *connection, Request::Request *request);

    RequestManager(bool core) : requestId(core ? -2 : -1) {}

    virtual ~RequestManager() {
      for(std::map<Net::Connection*,RequestMap*>::iterator it = requestMaps.begin(); it != requestMaps.end(); ++it)
        delete it->second;

      for(std::map<Net::Packet::Type,RequestHandlerFactory*>::iterator it = requestHandlerFactories.begin(); it != requestHandlerFactories.end(); ++it)
        delete it->second;
    }
};

}
}

#endif /* MAD_COMMON_REQUESTMANAGER_H_ */