X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fapp.hpp;h=370c65da9029a3efcb862d541bef2851cca5763f;hb=e0cc310d3f9b6a2a005c5dd3d3adf6bb16bd8277;hp=69218657196e0da8e67563e58a42c69b1dd3141b;hpb=1575879e922f6c49107ae13d769a057142acc66d;p=staging%2Fwindowmanager.git diff --git a/src/app.hpp b/src/app.hpp index 6921865..370c65d 100644 --- a/src/app.hpp +++ b/src/app.hpp @@ -48,9 +48,9 @@ struct id_allocator { unsigned next = 1; // Surfaces that where requested but not yet created - std::unordered_map surfaces; + std::unordered_map id2name; // std::unordered_set pending_surfaces; - std::unordered_map names; + std::unordered_map name2id; id_allocator(id_allocator const &) = delete; id_allocator(id_allocator &&) = delete; @@ -60,40 +60,40 @@ struct id_allocator { // Insert and return a new ID unsigned generate_id(std::string const &name) { unsigned sid = this->next++; - this->surfaces[sid] = name; + this->id2name[sid] = name; // this->pending_surfaces.insert({sid}); - this->names[name] = sid; + this->name2id[name] = sid; logdebug("allocated new id %u with name %s", sid, name.c_str()); return sid; } // Lookup by ID or by name optional lookup(std::string const &name) const { - auto i = this->names.find(name); - return i == this->names.end() ? nullopt : optional(i->second); + auto i = this->name2id.find(name); + return i == this->name2id.end() ? nullopt : optional(i->second); } optional lookup(unsigned id) const { - auto i = this->surfaces.find(id); - return i == this->surfaces.end() ? nullopt + auto i = this->id2name.find(id); + return i == this->id2name.end() ? nullopt : optional(i->second); } // Remove a surface id and name // I don't think I will need this, do I? void remove_id(std::string const &name) { - auto i = this->names.find(name); - if (i != this->names.end()) { - this->surfaces.erase(i->second); - this->names.erase(i); + auto i = this->name2id.find(name); + if (i != this->name2id.end()) { + this->id2name.erase(i->second); + this->name2id.erase(i); } } void remove_id(unsigned id) { - auto i = this->surfaces.find(id); - if (i != this->surfaces.end()) { - this->names.erase(i->second); - this->surfaces.erase(i); + auto i = this->id2name.find(id); + if (i != this->id2name.end()) { + this->name2id.erase(i->second); + this->id2name.erase(i); } } }; @@ -113,12 +113,13 @@ struct App { layouts_type layouts; layer_map layers; - typedef std::pair> name_task_pair; - - typedef std::map drawing_name_map; - drawing_name_map name_mapping; - struct id_allocator id_alloc; + optional lookup_id(char const *name) { + return this->id_alloc.lookup(std::string(name)); + } + optional lookup_name(unsigned id) { + return this->id_alloc.lookup(id); + } std::deque last_active; @@ -136,8 +137,6 @@ struct App { int dispatch_events(); void surface_set_layout(uint32_t surface_id); - char const *activate_surface(uint32_t surface_id); - char const *deactivate_surface(uint32_t surface_id); // Allocate a surface ID for this role result request_surface(char const *drawing_name);