Open Lighting Architecture  0.9.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ClientBroker.h
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 2 of the License, or
5  * (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Library General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
15  *
16  * ClientBroker.h
17  * The client broker exists to handle the case where a client may disconnect
18  * while a RDM call is in flight. When the call completes, the client broker
19  * will detect that the client has disconnected and not run the callback (which
20  * would now point to an invalid memory location).
21  * Copyright (C) 2010 Simon Newton
22  */
23 
24 #ifndef OLAD_CLIENTBROKER_H_
25 #define OLAD_CLIENTBROKER_H_
26 
27 #include <set>
28 #include <string>
29 #include <vector>
30 #include "ola/base/Macro.h"
31 #include "ola/rdm/RDMCommand.h"
33 #include "ola/Callback.h"
34 #include "olad/Universe.h"
35 #include "olad/Client.h"
36 
37 namespace ola {
38 
39 class ClientBroker {
40  public:
41  ClientBroker() {}
42  ~ClientBroker() {}
43 
44  void AddClient(const Client *client);
45  void RemoveClient(const Client *client);
46 
47  void SendRDMRequest(const Client *client,
48  Universe *universe,
49  const ola::rdm::RDMRequest *request,
50  ola::rdm::RDMCallback *callback);
51 
52  private:
53  void RequestComplete(const Client *key,
54  ola::rdm::RDMCallback *callback,
55  ola::rdm::rdm_response_code code,
56  const ola::rdm::RDMResponse *response,
57  const std::vector<std::string> &packets);
58 
59  typedef std::set<const Client*> client_set;
60  client_set m_clients;
61 
62  DISALLOW_COPY_AND_ASSIGN(ClientBroker);
63 };
64 } // namespace ola
65 #endif // OLAD_CLIENTBROKER_H_