X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fwindow_manager.hpp;h=189d249d7b3c12bdaab22ff0652c92aee659fbfd;hb=d5a353563462d3eebd5e138a0ed4f850ea8cd809;hp=d77d23a0783731ffa1e8faae1bbe7f2237ba9936;hpb=27e4f2d7810666d86bcb525d0e7e513e70c5f021;p=apps%2Fagl-service-windowmanager.git diff --git a/src/window_manager.hpp b/src/window_manager.hpp index d77d23a..189d249 100644 --- a/src/window_manager.hpp +++ b/src/window_manager.hpp @@ -22,14 +22,19 @@ #include #include #include "controller_hooks.hpp" -#include "layers.hpp" -#include "layout.hpp" -#include "wayland_ivi_wm.hpp" +//#include "layers.hpp" +// #include "layout.hpp" +//#include "wayland_ivi_wm.hpp" +#include "result.hpp" #include "pm_wrapper.hpp" -#include "hmi-debug.h" +#include "util.hpp" #include "request.hpp" #include "wm_error.hpp" -#include "layout_manager.hpp" +#include "wm_layer_control.hpp" +extern "C" +{ +#include +} struct json_object; @@ -89,7 +94,7 @@ struct id_allocator unsigned sid = this->next++; this->id2name[sid] = name; this->name2id[name] = sid; - HMI_DEBUG("wm", "allocated new id %u with name %s", sid, name.c_str()); + HMI_DEBUG("allocated new id %u with name %s", sid, name.c_str()); return sid; } @@ -98,7 +103,7 @@ struct id_allocator { this->id2name[sid] = name; this->name2id[name] = sid; - HMI_DEBUG("wm", "register id %u with name %s", sid, name.c_str()); + HMI_DEBUG("register id %u with name %s", sid, name.c_str()); return; } @@ -141,7 +146,7 @@ struct id_allocator class WindowManager { public: - typedef std::unordered_map rect_map; + typedef std::unordered_map rect_map; typedef std::function reply_func; enum EventType @@ -164,42 +169,7 @@ class WindowManager Event_Val_Max = Event_Error, }; - const std::vector kListEventName{ - "active", - "inactive", - "visible", - "invisible", - "syncDraw", - "flushDraw", - "screenUpdated", - "error"}; - - struct controller_hooks chooks; - - // This is the one thing, we do not own. - struct wl::display *display; - - std::unique_ptr controller; - std::vector> outputs; - - // track current layouts separately - layer_map layers; - - // ID allocation and proxy methods for lookup - struct id_allocator id_alloc; - - // Set by AFB API when wayland events need to be dispatched - std::atomic pending_events; - - std::map map_afb_event; - - // Surface are info (x, y, w, h) - rect_map area_info; - - // FOR CES DEMO - std::vector surface_bg; - - explicit WindowManager(wl::display *d); + explicit WindowManager(); ~WindowManager() = default; WindowManager(WindowManager const &) = delete; @@ -208,8 +178,6 @@ class WindowManager WindowManager &operator=(WindowManager &&) = delete; int init(); - int dispatch_pending_events(); - void set_pending_events(); result api_request_surface(char const *appid, char const *role); char const *api_request_surface(char const *appid, char const *role, char const *ivi_id); @@ -237,10 +205,18 @@ class WindowManager void startTransitionWrapper(std::vector &actions); void processError(WMError error); + const std::vector kListEventName{ + "active", + "inactive", + "visible", + "invisible", + "syncDraw", + "flushDraw", + "screenUpdated", + "error"}; + std::map map_afb_event; + private: - bool pop_pending_events(); - optional lookup_id(char const *name); - optional lookup_name(int id); int init_layers(); void surface_set_layout(int surface_id, const std::string& area = ""); void layout_commit(); @@ -259,7 +235,6 @@ class WindowManager void deactivate(int id); WMError setRequest(const std::string &appid, const std::string &role, const std::string &area, Task task, unsigned *req_num); - WMError doTransition(unsigned sequence_number); WMError checkPolicy(unsigned req_num); WMError startTransition(unsigned req_num); @@ -278,12 +253,21 @@ class WindowManager const char *check_surface_exist(const char *role); private: - std::unordered_map area2size; + std::unordered_map area2size; std::unordered_map roleold2new; std::unordered_map rolenew2old; - std::shared_ptr lm; + std::shared_ptr lc; PMWrapper pmw; + struct controller_hooks chooks; + // ID allocation and proxy methods for lookup + struct id_allocator id_alloc; + // Surface are info (x, y, w, h) + rect_map area_info; + // FOR CES DEMO + std::vector surface_bg; + std::unordered_map tmp_surface2app; + static const char* kDefaultOldRoleDb; };