Revert "Corresponding to TizenIVI3.0 M14.3, GENIVI-LayerManagement was used instead...
[profile/ivi/ico-uxf-homescreen.git] / lib / system-controller / CicoSCResourceManager.cpp
index 1f3a0d8..9e97a1d 100644 (file)
@@ -30,9 +30,13 @@ using namespace std;
 #include "CicoSCPolicyManager.h"
 #include "CicoSCLifeCycleController.h"
 #include "CicoAilItems.h"
+#include "CicoSCWindow.h"
 #include "CicoSCWindowController.h"
 #include "CicoSCInputController.h"
 #include "CicoSCPolicyDef.h"
+#include "CicoSCMessage.h"
+#include "CicoSCMessageRes.h"
+#include "CicoSCServer.h"
 
 struct CompDisplayResourceRequest
 {
@@ -161,6 +165,7 @@ CicoSCResourceManager::CicoSCResourceManager()
             }
         }
     }
+    m_rrtHO = (resource_request_t*)NULL;
 }
 
 CicoSCResourceManager::~CicoSCResourceManager()
@@ -191,7 +196,7 @@ CicoSCResourceManager::initialize(void)
     ICO_TRA("CicoSCResourceManager::initialize Leave");
     return ret;
 }
-  
+
 void
 CicoSCResourceManager::terminate(void)
 {
@@ -206,17 +211,16 @@ CicoSCResourceManager::handleCommand(const CicoSCCommand &cmd,
                                      bool internal)
 {
     ICO_TRA("CicoSCResourceManager::handleCommand Enter"
-            "(cmdid=0x%08X internal=%s)",
+            "(cmdid=0x%08x internal=%s)",
             cmd.cmdid, internal ? "true" : "false");
 
     CicoSCCmdResCtrlOpt *opt = (CicoSCCmdResCtrlOpt*)cmd.opt;
 
     // request command from application or internal
     int reqtype = internal ? REQTYPE_AUTO : REQTYPE_APP;
-
     if ((MSG_CMD_CREATE_RES == cmd.cmdid) ||
         (MSG_CMD_ACQUIRE_RES == cmd.cmdid)) {
-        
+
         if (true == opt->dispres) {
             resource_request_t *req = newResourceRequest(RESID_KIND_DISPLAY,
                                                          reqtype,
@@ -225,6 +229,11 @@ CicoSCResourceManager::handleCommand(const CicoSCCommand &cmd,
                 acquireDisplayResource(req, false);
             }
             else {
+                // cmdid is MSG_CMD_ACQUIRE_RES
+                if (true == isTypeOnScreen(*req)) {
+                    acquireOnScreenDisplayResource(req);
+                }
+                else
                 if ((true == m_policyMgr->getRegulation()) &&
                     (false == isMatchDisplayed())) {
                     updateDispResRegulationPreProc(req);
@@ -271,7 +280,12 @@ CicoSCResourceManager::handleCommand(const CicoSCCommand &cmd,
             resource_request_t *req = newResourceRequest(RESID_KIND_DISPLAY,
                                                          reqtype,
                                                          cmd);
-            releaseDisplayResource(req);
+            if (true == isTypeOnScreen(*req)) {
+                releaseOnScreenDisplayResource(req);
+            }
+            else {
+                releaseDisplayResource(req);
+            }
         }
         if (true == opt->soundres) {
             resource_request_t *req = newResourceRequest(RESID_KIND_SOUND,
@@ -306,7 +320,7 @@ CicoSCResourceManager::setInputController(CicoSCInputController *inputCtrl)
 }
 
 #if 0
-resource_request_t * 
+resource_request_t *
 CicoSCResourceManager::popDispResReq(resource_request_t *req)
 {
     ICO_TRA("CicoSCResourceManager::popDispResReq Enter");
@@ -357,7 +371,7 @@ CicoSCResourceManager::popSoundResReq(resource_request_t *req)
     return NULL;
 }
 
-resource_request_t * 
+resource_request_t *
 CicoSCResourceManager::popInputResReq(resource_request_t *req)
 {
     ICO_TRA("CicoSCResourceManager::popInputResReq Enter");
@@ -446,7 +460,7 @@ CicoSCResourceManager::acquireDisplayResource(resource_request_t *newreq,
     }
 
     bool displayMatch = false;
-    // 
+    //
     if (req != newreq) {
         char zoneO[128],zoneN[128];
         zoneO[0] = zoneN[0] = '\0';
@@ -479,17 +493,17 @@ CicoSCResourceManager::acquireDisplayResource(resource_request_t *newreq,
         }
         // update request data
         req->dispzoneid = newreq->dispzoneid;
-        if (NULL != req->dispzone) free(req->dispzone);
+        free(req->dispzone);
         req->dispzone = strdup(newreq->dispzone);
         req->layerid = newreq->layerid;
-        if (NULL != req->animation) free(req->animation);
+        free(req->animation);
         req->animation = strdup(newreq->animation);
         req->animationTime = newreq->animationTime;
 
         // delete new request
         delResourceRequest(newreq);
     }
-    
+
     if (false == control) {
         ICO_TRA("Enqueue waiting display resource request"
                 "(req=0x%08x appid=%s)", req, req->appid);
@@ -612,7 +626,7 @@ CicoSCResourceManager::acquireSoundResource(resource_request_t *newreq)
     // is change zone?
     CompSoundResourceRequest comp(req);
     if (true == comp(m_curSoundResReq[req->soundzoneid])) {
-        ICO_DBG("already acquired appid=%s pid=%d soundid=0x%08X",
+        ICO_DBG("already acquired appid=%s pid=%d soundid=0x%08x",
                 req->appid, req->pid, req->soundid);
         ICO_TRA("CicoSCResourceManager::acquireSoundResource Leave(true)");
         // free new request
@@ -669,7 +683,7 @@ CicoSCResourceManager::releaseSoundResource(resource_request_t *newreq)
          }
     }
 
-    // If current request is not changed, 
+    // If current request is not changed,
     // remove the request from the waiting queue.
     if (false == curchg) {
        resource_request_t *req = popSoundResReq(newreq);
@@ -725,7 +739,7 @@ CicoSCResourceManager::acquireInputResource(resource_request_t *newreq)
     // is change zone?
     CompInputResourceRequest comp(req);
     if (true == comp(m_curInputResReq[req->input])) {
-        ICO_DBG("already acquired appid=%s pid=%d input=0x%08X",
+        ICO_DBG("already acquired appid=%s pid=%d input=0x%08x",
                 req->appid, req->pid, req->input);
         ICO_TRA("CicoSCResourceManager::acquireInputResource Leave(true)");
         // free new request
@@ -778,7 +792,7 @@ CicoSCResourceManager::releaseInputResource(resource_request_t *newreq)
          }
     }
 
-    // If current request is not changed, 
+    // If current request is not changed,
     // remove the request from the waiting queue.
     if (false == curchg) {
        resource_request_t *req = popInputResReq(newreq);
@@ -839,13 +853,20 @@ CicoSCResourceManager::newResourceRequest(int resid,
     }
 
     req->prio = req->category;
+
     req->released = 0;
 
     /* set resource id */
-    req->resid = RESID_TYPE_BASIC;
-    if (1 == opt->type) {
+    switch (opt->type) {
+    case ICO_SYC_RES_INTERRUPT:
         req->resid = RESID_TYPE_INTERRUPT;
+        break;
+    case ICO_SYC_RES_ONSCREEN:
+        req->resid = RESID_TYPE_ONSCREEN;
+        break;
+    default: // include case ICO_SYC_RES_BASIC:
+        req->resid = RESID_TYPE_BASIC;
+        break;
     }
     req->resid |= resid;
 
@@ -865,9 +886,18 @@ CicoSCResourceManager::newResourceRequest(int resid,
         req->layerid    = opt->layerid;
         req->winname    = strdup(opt->winname.c_str());
         req->surfaceid  = opt->surfaceid;
-        req->id         = opt->surfaceid;;
+        req->id         = opt->surfaceid;
         req->animation  = strdup(opt->animation.c_str());
         req->animationTime = opt->animationTime;
+        req->bEx        = opt->dispresEx;
+        req->ECU        = strdup(opt->ECU.c_str());  // name to identify ECU
+        req->display    = strdup(opt->display.c_str());  // name to identify Display in ECU
+        req->layer      = strdup(opt->layer.c_str());  // name to identify Layer in Display
+        req->layout     = strdup(opt->layout.c_str());  // name to identify layout in Layer
+        req->area       = strdup(opt->area.c_str());  // name to Output position in Layout
+        req->dispatchApp= strdup(opt->dispatchApp.c_str());  // dispatch of application
+        req->role       = strdup(opt->role.c_str());  // role of notice
+        req->resourceId = opt->resourceID;  // ID number of resource
     }
     else if (resid == RESID_KIND_SOUND) {
         req->soundzone   = strdup(opt->soundzone.c_str());
@@ -894,14 +924,20 @@ CicoSCResourceManager::delResourceRequest(resource_request_t *req)
 {
     if (NULL == req) return;
 
-    if (NULL != req->appid)     free(req->appid);
-    if (NULL != req->dispzone)  free(req->dispzone);
-    if (NULL != req->winname)   free(req->winname);
-    if (NULL != req->animation) free(req->animation);
-    if (NULL != req->soundzone) free(req->soundzone);
-    if (NULL != req->soundname) free(req->soundname);
-    if (NULL != req->device)    free(req->device);
+    free(req->appid);
+    free(req->dispzone);
+    free(req->winname);
+    free(req->animation);
+    free(req->soundzone);
+    free(req->soundname);
+    free(req->device);
+    free(req->ECU);             // name to identify ECU
+    free(req->display);         // name to identify Display in ECU
+    free(req->layer);           // name to identify Layer in Display
+    free(req->layout);          // name to identify layout in Layer
+    free(req->area);            // name to Output position in Layout
+    free(req->dispatchApp);     // origin of application
+    free(req->role);            // role of notice
     free(req);
 }
 
@@ -914,7 +950,7 @@ CicoSCResourceManager::enforceSound(unsigned short state,
     /* NOP */
     ICO_TRA("CicoSCResourceManager::enforceSound Leave");
 }
-            
+
 // receive changed state
 void
 CicoSCResourceManager::receiveChangedState(int state)
@@ -922,7 +958,7 @@ CicoSCResourceManager::receiveChangedState(int state)
     ICO_TRA("CicoSCResourceManager::receiveChangedState Enter"
             "(state=%d)", state);
 
-    if (STID_DRVREGULATION_ON == state) { 
+    if (STID_DRVREGULATION_ON == state) {
         if (true == isMatchDisplayed()) {
             updateDisplayResourceRegulation(state);
             updateSoundResourceRegulation(state);
@@ -963,11 +999,11 @@ CicoSCResourceManager::updateDisplayResource(resource_request_t *req,
     if ((m_curDispResOwerReq.end() != itr) && (NULL != itr->second)) {
         // already ower
         if (itr->second == req) {
-            ICO_DBG("already ower appid=%s pid=%d surfaceid=0x%08X",
+            ICO_DBG("already ower appid=%s pid=%d surfaceid=%08x",
                     req->appid, req->pid, req->surfaceid);
             // show request window
             m_winCtrl->show(req->surfaceid, req->animation, req->animationTime);
-#if 0 // MKMK
+#if 0
             m_winCtrl->activeCB(NULL, NULL, req->surfaceid, -1);
 #endif
             ICO_TRA("CicoSCResourceManager::updateDisplayResource Leave");
@@ -998,7 +1034,7 @@ CicoSCResourceManager::updateDisplayResource(resource_request_t *req,
     itr2 = m_curDispResOwerReq.begin();
     for (; itr2 != m_curDispResOwerReq.end(); ++itr2) {
         resource_request_t *tmpreq = itr2->second;
-        
+
         if (true == m_policyMgr->getDispZoneState(itr2->first)) {
             continue;
         }
@@ -1177,7 +1213,7 @@ CicoSCResourceManager::updateInputResource(resource_request_t *req)
             // initialize current zone request
             ICO_DBG("Dequeue current input request queue "
                     "(req=0x%08x input:%d appid=%s)",
-                    m_curInputResReq[i], 
+                    m_curInputResReq[i],
                     m_curInputResReq[i]->input, m_curInputResReq[i]->appid);
             ICO_PRF("CHG_GUI_RES input   deprived input=%d appid=%s",
                     m_curInputResReq[i]->input,
@@ -1304,7 +1340,7 @@ CicoSCResourceManager::updateDisplayResourceRegulation(int state)
                         m_waitingDispResReq.erase(itr2);
                         ICO_DBG("Enqueue current display resource request"
                                 "(req=0x%08x zone=%02d:%s appid=%s)",
-                                req, req->dispzoneid, 
+                                req, req->dispzoneid,
                                 req->dispzone, req->appid);
                         ICO_PRF("CHG_GUI_RES display acquired zone=%02d:%s "
                                 "appid=%s",
@@ -1336,7 +1372,7 @@ CicoSCResourceManager::updateDisplayResourceRegulation(int state)
                             m_winCtrl->hide(surfaceid,
                                             m_animaName.c_str(), m_animaTime);
                         }
+
                         // show current window
                         m_winCtrl->show(current->surfaceid,
                                         m_animaName.c_str(), m_animaTime);
@@ -1494,7 +1530,7 @@ CicoSCResourceManager::updateInputResourceRegulation(int state)
  *  @brief   find currnet dipalay resource ower request
  *
  *  @param [in] request  compare requset
- *  
+ *
  *  @return request object on same requeset found, NULL on not found
  */
 //--------------------------------------------------------------------------
@@ -1521,7 +1557,7 @@ CicoSCResourceManager::findCurDispResOwerReq(resource_request_t *req)
  *  @brief  pop currnet dipalay resource ower request from list
  *
  *  @param [in] request  compare requset
- *  
+ *
  *  @return request object on same requeset found, NULL on not found
  */
 //--------------------------------------------------------------------------
@@ -1582,7 +1618,7 @@ CicoSCResourceManager::dumpCurDispResOwerReq(void)
  *  @brief  find waiting dipalay resource request
  *
  *  @param [in] request  compare requset
- *  
+ *
  *  @return request object on same requeset found, NULL on not found
  */
 //--------------------------------------------------------------------------
@@ -1607,7 +1643,7 @@ CicoSCResourceManager::findWaitingDispResReq(resource_request_t *req)
  *  @brief  pop waiting dipalay resource request from waiting list
  *
  *  @param [in] request  compare requset
- *  
+ *
  *  @return request object on same requeset found, NULL on not found
  */
 //--------------------------------------------------------------------------
@@ -1715,7 +1751,7 @@ CicoSCResourceManager::updateDispResRegulationPreProc(resource_request_t *req)
     }
 
     if (req->surfaceid != surfaceid) {
-        ICO_WRN("req->surfaceid(0x%08X) != displayedsurfaceid(0x%08X)",
+        ICO_WRN("req->surfaceid(%08x) != displayedsurfaceid(%08x)",
                 req->surfaceid, surfaceid);
     }
 
@@ -1734,10 +1770,10 @@ CicoSCResourceManager::updateDispResRegulationPreProc(resource_request_t *req)
             }
         }
     }
-    
+
     min = ICO_DISPLAY1_ZONEID_MIN;
     max = ICO_DISPLAY1_ZONEID_MAX;
-    if ((NULL == curreq) && 
+    if ((NULL == curreq) &&
         (req->dispzoneid >= min) && (req->dispzoneid <= max)) {
         for (int i = min; i <= max; ++i) {
             std::map<unsigned int, resource_request_t*>::iterator itr;
@@ -1979,11 +2015,309 @@ CicoSCResourceManager::isMatchDisplayed(void)
                 }
                 if ((itr2->second->surfaceid == surfaceid)) {
                     ret = true;
-                    break;
+                    break;  // break of for itr2
                 }
             }
         }
+        if (true == ret) {
+            break;  // break of for itr
+        }
     }
     return ret;
 }
+
+bool
+CicoSCResourceManager::acquireOnScreenDisplayResource(resource_request_t *newreq)
+{
+    ICO_TRA("Enter (%08x)", newreq);
+    if (NULL == newreq) {
+        ICO_TRA("Leave param is NULL pointer");
+        return false;
+    }
+    CicoSystemConfig *sysConf = CicoSystemConfig::getInstance();
+
+    if (0 == newreq->role_stt) {
+        newreq->role_stt = sysConf->getRoleStt(newreq->role);
+    }
+    m_OnScreenItems.push_back(newreq);
+
+    const resource_request_t* rrtHO = getNoticeOfHighOder();
+    if (NULL == rrtHO) {
+        ICO_TRA("Leave %s, %d is not notice", newreq->role, newreq->resourceId);
+        return false;
+    }
+#if 1
+    const CicoSCWindow* nwo = m_winCtrl->findWindowObj(newreq->pid,
+                                                       newreq->resourceId);
+#endif
+    const CicoSCWindow* bwo = NULL; // before window oject
+    const CicoSCWindow* awo = NULL; // after window object
+
+    if (NULL != m_rrtHO) {
+        bwo = m_winCtrl->findWindowObj(m_rrtHO->pid, m_rrtHO->resourceId);
+    }
+    if (NULL != rrtHO) {
+        awo = m_winCtrl->findWindowObj(rrtHO->pid, rrtHO->resourceId);
+    }
+    if ((NULL == m_rrtHO) && (NULL != rrtHO)) { // none -> on notice
+        ICO_TRA("_____ OPEN Layer \"%s\":%d", rrtHO->role, rrtHO->resourceId);
+        if (NULL != awo) {
+            m_winCtrl->showLayer(awo->displayid, awo->layerid);
+        }
+        else {
+            ICO_WRN("ON SCREEN none layer");
+        }
+    }
+#if 1
+    if ((NULL != nwo) && (awo != nwo) && (bwo != nwo)) {
+        ICO_TRA("_____ HIDW new REQUEST %x:%s:%d", newreq, newreq->role,
+                newreq->resourceId);
+        m_winCtrl->hide(nwo->surfaceid, NULL, 0);
+    }
+#endif
+    if (rrtHO != m_rrtHO) { // change Hige Oder notice
+        if (NULL != m_rrtHO) {
+            ICO_TRA("_____ HIDE surface %x:%s:%d", m_rrtHO, m_rrtHO->role,
+                    m_rrtHO->resourceId);
+            if (NULL != bwo) {
+                m_winCtrl->hide(bwo->surfaceid, NULL, 0);
+            }
+            else {
+                ICO_WRN("ON SCREEN none Hide control");
+            }
+            resCB(ICO_SYC_EV_RES_WAITING, *m_rrtHO);
+        }
+        ICO_TRA("_____ SHOW surface %x:%s:%d", rrtHO, rrtHO->role, rrtHO->resourceId);
+        if (NULL != awo) {
+            m_winCtrl->show(awo->surfaceid, NULL, 0);
+        }
+        else {
+            ICO_WRN("ON SCREEN none show control");
+        }
+        resCB(ICO_SYC_EV_RES_ACQUIRE, *rrtHO);
+        ICO_TRA("_____ change %x -> %x", m_rrtHO, rrtHO);
+        m_rrtHO = rrtHO;
+    }
+//-    if (m_rrtHO != newreq) {
+//-        resCB(ICO_SYC_EV_RES_WAITING, *newreq);
+//-    }
+    else {
+        ICO_TRA("_____ no change %x", m_rrtHO);
+        if (NULL != awo) {
+            m_winCtrl->show(awo->surfaceid, NULL, 0);
+            m_winCtrl->raise(awo->surfaceid, NULL, 0);
+        }
+        if (m_rrtHO != newreq) {
+            resCB(ICO_SYC_EV_RES_WAITING, *newreq);
+        }
+    }
+    ICO_TRA("Leave");
+    return true;
+}
+
+bool
+CicoSCResourceManager::releaseOnScreenDisplayResource(resource_request_t *req)
+{
+    ICO_TRA("Enter %08x", req);
+    if (NULL == req) {
+        ICO_TRA("Leave param is NULL pointer");
+        return false;
+    }
+    resource_request_t* tgt = NULL;
+    list<resource_request_t*>::iterator itr = m_OnScreenItems.begin();
+    for (; itr != m_OnScreenItems.end(); ++itr) {
+        if ((req->pid == (*itr)->pid) &&
+            (req->resourceId == (*itr)->resourceId)) {
+            tgt = (*itr);
+            break;  // break of for itr
+        }
+    }
+
+    if (NULL != tgt) {
+        ICO_TRA("_____ erase list %x", tgt);
+        m_OnScreenItems.erase(itr);
+    }
+
+    const resource_request_t* rrtHO = getNoticeOfHighOder();
+
+    const CicoSCWindow* bwo = NULL; // before window oject
+    const CicoSCWindow* awo = NULL; // after window object
+    if (NULL != m_rrtHO) {
+        bwo = m_winCtrl->findWindowObj(m_rrtHO->pid, m_rrtHO->resourceId);
+    }
+    if (NULL != rrtHO) {
+        awo = m_winCtrl->findWindowObj(rrtHO->pid, rrtHO->resourceId);
+    }
+
+    if ((NULL == rrtHO) && (NULL == m_rrtHO)) {
+        ICO_WRN("ON SCREEN Resource NG");
+        if (NULL != tgt) {
+            resCB(ICO_SYC_EV_RES_RELEASE, *tgt);
+            delResourceRequest(tgt);
+        }
+        delResourceRequest(req);
+        ICO_TRA("Leave ON SCREEN Resource NG");
+        return false;
+    }
+
+    if (rrtHO != m_rrtHO) {
+        if (NULL != m_rrtHO) {
+            if (NULL != bwo) {
+                m_winCtrl->hide(bwo->surfaceid, NULL, 0);
+                if (m_rrtHO != tgt) {
+                    ICO_DBG("_____ NG Control OnScreen Resource %x(%d, %d), %x",
+                            m_rrtHO, m_rrtHO->pid, m_rrtHO->resourceId, tgt);
+                    resCB(ICO_SYC_EV_RES_WAITING, *m_rrtHO);
+                }
+            }
+            else {
+                ICO_WRN("ON SCREEN Hide control NG");
+            }
+        }
+        if (NULL != rrtHO) {
+            if (NULL != awo) {
+                m_winCtrl->show(awo->surfaceid, NULL, 0);
+                m_winCtrl->raise(awo->surfaceid, NULL, 0);
+                resCB(ICO_SYC_EV_RES_ACQUIRE, *rrtHO);
+            }
+            else {
+                ICO_WRN("ON SCREEN Hide control NG");
+            }
+        }
+        else {
+            if (NULL != bwo) {
+                m_winCtrl->hideLayer(bwo->displayid, bwo->layerid);
+            }
+            else {
+                ICO_WRN("ON SCREEN layer hide control NG");
+            }
+        }
+        m_rrtHO = rrtHO;
+    }
+    else {
+        ICO_TRA("_____ no change");
+    }
+    // memory free
+    if (NULL != tgt) {
+        resCB(ICO_SYC_EV_RES_RELEASE, *tgt);
+        delResourceRequest(tgt);
+    }
+    delResourceRequest(req);
+    ICO_TRA("Leave");
+    return true;
+}
+
+bool
+CicoSCResourceManager::resCB(const ico_syc_ev_e ev, const resource_request_t& p) const
+{
+    ICO_TRA("Enter %d", (int)ev);
+    if ((NULL == p.appid) || (0 == strlen(p.appid))) {
+        ICO_TRA("Leave false");
+        return false;
+    }
+    if (false == p.bEx) {
+        ICO_TRA("Leave false");
+        return false;
+    }
+    int nEv = -1;
+    if (ICO_SYC_EV_RES_ACQUIRE == ev) {
+        nEv = MSG_CMD_ACQUIRE_RES;
+    }
+    else if (ICO_SYC_EV_RES_DEPRIVE == ev) {
+        nEv = MSG_CMD_DEPRIVE_RES;
+    }
+    else if (ICO_SYC_EV_RES_WAITING == ev) {
+        nEv = MSG_CMD_WAITING_RES;
+    }
+    else if (ICO_SYC_EV_RES_REVERT == ev) {
+        nEv = MSG_CMD_REVERT_RES;
+    }
+    else if (ICO_SYC_EV_RES_RELEASE == ev) {
+        nEv = MSG_CMD_RELEASE_RES;
+    }
+    else if (ICO_SYC_EV_RES_WINDOW_ID == ev) {
+        nEv = MSG_CMD_WINDOW_ID_RES;
+    }
+    else {
+        ICO_TRA("Leave false ev(%d) is not supp.",(int)ev);
+        return false;
+    }
+
+    bool r;
+    r = resCB(p.appid, nEv, p.ECU, p.display, p.layer, p.layout, p.area,
+              p.dispatchApp, p.role, p.resourceId);
+    ICO_TRA("Leave %s", r? "true":"false");
+    return r;
+}
+
+bool
+CicoSCResourceManager::resCB(const char* sendToAppid, const int ev,
+                             const char* ECU, const char* display,
+                             const char* layer, const char* layout,
+                             const char* area, const char* dispatchApp,
+                             const char* role, uint32_t resourceId) const
+{
+    ICO_TRA("Enter");
+    if (NULL == sendToAppid) {
+        ICO_TRA("Leave false");
+        return false;
+    }
+    CicoSCMessageRes* msg = new CicoSCMessageRes();
+    msg->addRootObject("command", ev);
+    if (NULL != ECU) {
+        msg->addWinObject("ECU", ECU);
+    }
+    if (NULL != display) {
+        msg->addWinObject("display", display);
+    }
+    if (NULL != layer) {
+        msg->addWinObject("layer", layer);
+    }
+    if (NULL != layout) {
+        msg->addWinObject("layout", layout);
+    }
+    if (NULL != area) {
+        msg->addWinObject("area", area);
+    }
+    if (NULL != dispatchApp) {
+        msg->addWinObject("dispatchApp", dispatchApp);
+    }
+    if (NULL != role) {
+        msg->addWinObject("role", role);
+    }
+    msg->addWinObject("resourceId", resourceId);
+    CicoSCServer *cscs = CicoSCServer::getInstance();
+    int r = cscs->sendMessage(sendToAppid, (CicoSCMessage*)msg);
+    if (ICO_SYC_EOK != r) {
+        ICO_TRA("Leave false(%d)", r);
+        return false;
+    }
+    ICO_TRA("Leave true");
+    return true;
+}
+
+const resource_request_t* CicoSCResourceManager::getNoticeOfHighOder()
+{
+    ICO_TRA("Enter (%d)", (int)m_OnScreenItems.size());
+    const CicoSCRoleConf* rC = CicoSystemConfig::getInstance()->getRoleConf();
+    m_policyMgr->sendSMEvent(rC->m_rst); // RESET OnScreen State
+    const resource_request_t* r = NULL;
+    list<resource_request_t*>::iterator itr = m_OnScreenItems.begin();
+    for (; itr != m_OnScreenItems.end(); ++itr) {
+        short hEv = (*itr)->role_stt;
+        if ((ICO_SYC_ROLE_CONF_DEF == hEv) || (0 == hEv)) {
+            continue;  // continue of for itr
+        }
+        bool test = m_policyMgr->testSMEvent(hEv);
+        if (true == m_policyMgr->sendSMEvent(hEv)) {
+            r = (*itr);
+        }
+        else if (true == test) {
+            r = (*itr);
+        }
+    }
+    ICO_TRA("Leave %x", r);
+    return r;
+}
+
 // vim:set expandtab ts=4 sw=4: