Open Lighting Architecture
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
UniverseStore.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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15  *
16  * UniverseStore.h
17  * The Universe Store class - this manages the universes
18  * Copyright (C) 2005-2008 Simon Newton
19  */
20 
21 #ifndef OLAD_UNIVERSESTORE_H_
22 #define OLAD_UNIVERSESTORE_H_
23 
24 #include <map>
25 #include <set>
26 #include <string>
27 #include <vector>
28 #include "ola/Clock.h"
29 
30 namespace ola {
31 
32 class Universe;
33 
35  public:
36  UniverseStore(class Preferences *preferences, class ExportMap *export_map);
37  ~UniverseStore();
38 
39  Universe *GetUniverse(unsigned int universe_id) const;
40  Universe *GetUniverseOrCreate(unsigned int universe_id);
41 
42  unsigned int UniverseCount() const { return m_universe_map.size(); }
43  void GetList(std::vector<Universe*> *universes) const;
44 
45  void DeleteAll();
46  void AddUniverseGarbageCollection(Universe *universe);
47  void GarbageCollectUniverses();
48 
49  private:
50  typedef std::map<unsigned int, Universe*> universe_map;
51 
52  Preferences *m_preferences;
53  ExportMap *m_export_map;
54  // map of universe_id to Universe
55  universe_map m_universe_map;
56  std::set<Universe*> m_deletion_candiates; // list of universes we may be
57  // able to delete
58  Clock m_clock;
59 
60  explicit UniverseStore(const ola::UniverseStore&);
61  UniverseStore& operator=(const UniverseStore&);
62  bool RestoreUniverseSettings(Universe *universe) const;
63  bool SaveUniverseSettings(Universe *universe) const;
64 
65  static const unsigned int MINIMUM_RDM_DISCOVERY_INTERVAL;
66 };
67 } // namespace ola
68 #endif // OLAD_UNIVERSESTORE_H_