Readd Policy Manager as plugin 01/16101/2
authorYuta Doi <yuta-d@witz-inc.co.jp>
Mon, 9 Jul 2018 08:23:31 +0000 (17:23 +0900)
committerYuta Doi <yuta-d@witz-inc.co.jp>
Wed, 15 Aug 2018 01:46:04 +0000 (10:46 +0900)
commitc1d85371b1eb693128cf9553c356ea77e609d9a3
treef4e69885b1c7c5e4116cf4eea7e5237412ce82c0
parent38255dcda8e7e9462ed3b16ebe39c638bc9b349f
Readd Policy Manager as plugin

This patch reverts commit c6f9a9b8468b3746a3dec7ee2a0b7d84ec9fb44a
and update it.

Policy Manager decides next layout by inputed event and current state
based on the policy table.

And Policy Manager is plugin for Window Manager.
Therefore the OEMs can replace it.

This patch provides Policy Manager I/F as reference implementation
and does not have policy table.
Therefore Policy Manager updates each layers
to draw the applications in requested area
in accordance with just like activate/deactivate request.

[APIs of Policy Manager class]
  - int initialize(void)
      Initialize Policy Manger.
        in:  none
        out: 0(success), -1(error)

  - void registerCallback(CallbackTable callback_table)
      Register callback functions.
        in:  the pointers of callback handlers
        out: none

      "CallbackTable" type is as follows:
        typedef struct
        {
            Handler onStateTransitioned;
            Handler onError;
        } CallbackTable;

      "Handler" type is as follows:
        using Handler = std::function<void(json_object *)>;

  - int setInputEventData(json_object *json_in)
      Set input event data for the policy table.
        in:  input event data as json_object
        out: 0(success), -1(error)

  - int executeStateTransition(void)
      Execute state transition by using set input event data.
        in:  none
        out: 0(success), -1(error)

  - void undoState(void)
      Undo state only once per once state transition.
        in:  none
        out: none

[Callbacks of Policy Manager class]
 - void onStateTransitioned(json_object *json_out)
     When state transition succeeds, this callback is called.
     The argument json_out has the state after transition.

 - void onError(json_object *json_out)
     When state transition fails, this callback is called.
     The argument json_out has the error information
     like message, inputed event datas and etc..

Bug-AGL: SPEC-1537

Change-Id: Ib8c71f2e544cb90b6763d07fad56dc1c453e9a97
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
20 files changed:
CMakeLists.txt
layers.json.split [deleted file]
policy_manager/CMakeLists.txt [new file with mode: 0644]
policy_manager/db/roles.db [new file with mode: 0644]
policy_manager/db/states.db [new file with mode: 0644]
policy_manager/policy_manager.cpp [new file with mode: 0644]
policy_manager/policy_manager.hpp [new file with mode: 0644]
policy_manager/stm/stm.c [new file with mode: 0644]
policy_manager/stm/stm.h [new file with mode: 0644]
policy_manager/stm/stub/CMakeLists.txt [new file with mode: 0644]
policy_manager/stm/stub/stm_inner.c [new file with mode: 0644]
policy_manager/stm/stub/stm_inner.h [new file with mode: 0644]
src/CMakeLists.txt
src/json_helper.cpp
src/json_helper.hpp
src/main.cpp
src/pm_wrapper.cpp [new file with mode: 0644]
src/pm_wrapper.hpp [new file with mode: 0644]
src/window_manager.cpp
src/window_manager.hpp