Open Lighting Architecture  0.9.5
 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 
52 class ClientBroker {
53  public:
54  ClientBroker() {}
55  ~ClientBroker() {}
56 
61  void AddClient(const Client *client);
62 
67  void RemoveClient(const Client *client);
68 
77  void SendRDMRequest(const Client *client,
78  Universe *universe,
79  const ola::rdm::RDMRequest *request,
80  ola::rdm::RDMCallback *callback);
81 
82  private:
83  typedef std::set<const Client*> client_set;
84 
85  client_set m_clients;
86 
87  void RequestComplete(const Client *key,
88  ola::rdm::RDMCallback *callback,
89  ola::rdm::rdm_response_code code,
90  const ola::rdm::RDMResponse *response,
91  const std::vector<std::string> &packets);
92 
93  DISALLOW_COPY_AND_ASSIGN(ClientBroker);
94 };
95 } // namespace ola
96 #endif // OLAD_CLIENTBROKER_H_