X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fwindow_manager.hpp;h=6cbd355c51a902d1f161ea18c3f5192c2e0c9321;hb=c1d85371b1eb693128cf9553c356ea77e609d9a3;hp=00a798ca98279f3fd7ce46cc87ae3a7956ce0a8c;hpb=3e58f01b27b293717ce081ea094294890843eb06;p=apps%2Fagl-service-windowmanager-2017.git diff --git a/src/window_manager.hpp b/src/window_manager.hpp index 00a798c..6cbd355 100644 --- a/src/window_manager.hpp +++ b/src/window_manager.hpp @@ -17,7 +17,6 @@ #ifndef TMCAGLWM_APP_HPP #define TMCAGLWM_APP_HPP -#include #include #include #include @@ -26,10 +25,13 @@ #include "layers.hpp" #include "layout.hpp" #include "wayland_ivi_wm.hpp" +#include "pm_wrapper.hpp" #include "hmi-debug.h" #include "request.hpp" #include "wm_error.hpp" +struct json_object; + namespace wl { struct display; @@ -64,6 +66,8 @@ extern const char kKeyWidthPixel[]; extern const char kKeyHeightPixel[]; extern const char kKeyWidthMm[]; extern const char kKeyHeightMm[]; +extern const char kKeyScale[]; +extern const char kKeyIds[]; struct id_allocator { @@ -152,6 +156,8 @@ class WindowManager Event_SyncDraw, Event_FlushDraw, + Event_ScreenUpdated, + Event_Error, Event_Val_Max = Event_Error, @@ -162,8 +168,9 @@ class WindowManager "inactive", "visible", "invisible", - "syncdraw", - "flushdraw", + "syncDraw", + "flushDraw", + "screenUpdated", "error"}; struct controller_hooks chooks; @@ -203,13 +210,13 @@ class WindowManager int dispatch_pending_events(); void set_pending_events(); - result api_request_surface(char const *appid, char const *drawing_name); - char const *api_request_surface(char const *appid, char const *drawing_name, char const *ivi_id); - void api_activate_surface(char const *appid, char const *drawing_name, char const *drawing_area, const reply_func &reply); - void api_deactivate_surface(char const *appid, char const *drawing_name, const reply_func &reply); - void api_enddraw(char const *appid, char const *drawing_name); + 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); + void api_activate_surface(char const *appid, char const *role, char const *drawing_area, const reply_func &reply); + void api_deactivate_surface(char const *appid, char const *role, const reply_func &reply); + void api_enddraw(char const *appid, char const *role); result api_get_display_info(); - result api_get_area_info(char const *drawing_name); + result api_get_area_info(char const *role); void api_ping(); void send_event(char const *evname, char const *label); void send_event(char const *evname, char const *label, char const *area, int x, int y, int w, int h); @@ -220,8 +227,12 @@ class WindowManager void removeClient(const std::string &appid); void exceptionProcessForTransition(); + const char* convertRoleOldToNew(char const *role); + // Do not use this function void timerHandler(); + void startTransitionWrapper(std::vector &actions); + void processError(WMError error); private: bool pop_pending_events(); @@ -248,24 +259,29 @@ class WindowManager WMError doTransition(unsigned sequence_number); WMError checkPolicy(unsigned req_num); WMError startTransition(unsigned req_num); - WMError setInvisibleTask(const std::string &role, bool split); WMError doEndDraw(unsigned req_num); WMError layoutChange(const WMAction &action); WMError visibilityChange(const WMAction &action); WMError setSurfaceSize(unsigned surface, const std::string& area); - WMError changeCurrentState(unsigned req_num); + void emitScreenUpdated(unsigned req_num); void setTimer(); void stopTimer(); void processNextRequest(); - const char *check_surface_exist(const char *drawing_name); + int loadOldRoleDb(); - bool can_split(struct LayoutState const &state, int new_id); + const char *check_surface_exist(const char *role); private: std::unordered_map area2size; + std::unordered_map roleold2new; + std::unordered_map rolenew2old; + + PMWrapper pmw; + + static const char* kDefaultOldRoleDb; }; } // namespace wm