X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fwm_layer_control.cpp;h=30c37f90093e7c0a80f6f10511ca5029b149987e;hb=92cbe39df7b53208e15bea19e523570be915cf1e;hp=5319b2edd226b33519ae3ca49d70686e50c2f0dc;hpb=b7a4072188f9370c456d65832634c1f136e18f32;p=apps%2Fagl-service-windowmanager.git diff --git a/src/wm_layer_control.cpp b/src/wm_layer_control.cpp index 5319b2e..30c37f9 100644 --- a/src/wm_layer_control.cpp +++ b/src/wm_layer_control.cpp @@ -24,6 +24,7 @@ #define LC_AREA_PATH "/etc/areas.db" #define LC_LAYER_SETTING_PATH "/etc/layers_setting.json" #define LC_DEFAULT_AREA "fullscreen" +#define BACK_GROUND_LAYER "BackGroundLayer" using std::string; using std::vector; @@ -128,8 +129,8 @@ void LayerControl::createNewLayer(unsigned id) ilm_layerSetVisibility(id, ILM_FALSE); ilm_commitChanges(); auto wm_layer = getWMLayer(id); - wm_layer->addLayer(id); - this->commitChange(); + wm_layer->addLayerToState(id); + this->renderLayers(); } unsigned LayerControl::getNewLayerID(const string& role, string* layer_name) @@ -155,6 +156,18 @@ shared_ptr LayerControl::getWMLayer(unsigned layer) return this->wm_layers[uuid]; } +std::shared_ptr LayerControl::getWMLayer(std::string layer_name) +{ + for(auto &l : this->wm_layers) + { + if(l->layerName() == layer_name) + { + return l; + } + } + return nullptr; +} + struct rect LayerControl::getAreaSize(const std::string& area) { return area2size[area]; @@ -196,19 +209,25 @@ WMError LayerControl::updateLayer(LayerState& layer_state) return WMError::SUCCESS; } -WMError LayerControl::commitChange() +WMError LayerControl::renderLayers() { HMI_INFO("Commit change"); WMError rc = WMError::SUCCESS; + + // Check the number of layers vector ivi_l_ids; for(auto& l : this->wm_layers) { auto state = l->getLayerState(); + HMI_DEBUG("layer %s", l->layerName().c_str()); for(const auto& id : state.getIviIdList()) { + HMI_DEBUG("Add %d", id); ivi_l_ids.push_back(id); } } + + // Create render order t_ilm_layer* id_array = new t_ilm_layer[ivi_l_ids.size()]; if(id_array == nullptr) { @@ -220,22 +239,35 @@ WMError LayerControl::commitChange() for(const auto& i : ivi_l_ids) { id_array[count] = i; - HMI_DEBUG("check render order %d", i); ++count; } + // Display ilmErrorTypes ret = ilm_displaySetRenderOrder(this->screenID, id_array, ivi_l_ids.size()); if(ret != ILM_SUCCESS) { this->undoUpdate(); rc = WMError::FAIL; } + else + { + for(auto& l : this->wm_layers) + { + l->update(); + } + } ilm_commitChanges(); delete id_array; return rc; } -void LayerControl::undoUpdate() {} +void LayerControl::undoUpdate() +{ + for(auto& l : this->wm_layers) + { + l->undo(); + } +} WMError LayerControl::loadLayerSetting(const string &path) { @@ -341,7 +373,6 @@ WMError LayerControl::loadAreaDb(const std::string& path) WMError LayerControl::layoutChange(const WMAction& action) { - WMError ret = WMError::FAIL; if (action.visible == TaskVisible::INVISIBLE) { // Visibility is not change -> no redraw is required @@ -358,20 +389,23 @@ WMError LayerControl::layoutChange(const WMAction& action) // WMError ret = this->setLayerSize(layer, action.area); auto rect = this->getAreaSize(action.area); HMI_DEBUG("Set layout %d, %d, %d, %d",rect.x, rect.y, rect.w, rect.h); - ilmErrorTypes err = ilm_layerSetDestinationRectangle(layer, rect.x, rect.y, rect.w, rect.h); + ilm_layerSetSourceRectangle(layer, 0, 0, rect.w, rect.h); + ilm_commitChanges(); + ilm_layerSetDestinationRectangle(layer, rect.x, rect.y, rect.w, rect.h); + ilm_commitChanges(); for(auto &wm_layer: this->wm_layers) { if(wm_layer->hasLayerID(layer)) { + wm_layer->setAreaToState(action.client->appID(), action.area); + /* TODO: manipulate state directly LayerState ls = wm_layer->getLayerState(); ls.setArea(action.client->appID(), action.area); + wm_layer->dump(); */ } } - if(err == ILM_SUCCESS) - { - ret = WMError::SUCCESS; - } - return ret; + + return WMError::SUCCESS; } WMError LayerControl::visibilityChange(const WMAction& action) @@ -383,17 +417,25 @@ WMError LayerControl::visibilityChange(const WMAction& action) return WMError::NOT_REGISTERED; } - if (action.visible != TaskVisible::INVISIBLE) + if (action.visible == TaskVisible::VISIBLE) { ret = this->makeVisible(action.client); } - else + else if (action.visible == TaskVisible::INVISIBLE) { ret = this->makeInvisible(action.client); } return ret; } +void LayerControl::terminateApp(const shared_ptr client) +{ + for(auto& l : this->wm_layers) + { + l->terminateApp(client->layerID()); + } +} + void LayerControl::dispatchCreateEvent(ilmObjectType object, unsigned id, bool created) { if (ILM_SURFACE == object) @@ -411,7 +453,7 @@ void LayerControl::dispatchCreateEvent(ilmObjectType object, unsigned id, bool c } else { - // this->cb->surfaceDestroyed(id); + this->cb.surfaceDestroyed(id); } } if (ILM_LAYER == object) @@ -560,6 +602,8 @@ WMError LayerControl::makeVisible(const shared_ptr client) // Don't check here the client is not nullptr unsigned layer = client->layerID(); + this->moveForeGround(client); + ilm_layerSetVisibility(layer, ILM_TRUE); /* for(auto& wm_layer : this->wm_layers) @@ -593,14 +637,15 @@ WMError LayerControl::makeInvisible(const shared_ptr client) WMError ret = WMError::SUCCESS; unsigned layer = client->layerID(); // Don't check here the client is not nullptr - /* bool mv_ok = this->mvBackGround(client); + bool mv_ok = this->moveBackGround(client); if(!mv_ok) { + HMI_INFO("make invisible client %s", client->appID().c_str()); ilm_layerSetVisibility(layer, ILM_FALSE); - } */ + } - ilm_layerSetDestinationRectangle(layer, 0, 0, 0, 0); + //ilm_layerSetDestinationRectangle(layer, 0, 0, 0, 0); /* for(auto& wm_layer : this->wm_layers) { @@ -616,50 +661,61 @@ WMError LayerControl::makeInvisible(const shared_ptr client) return ret; } -/* bool LayerControl::mvBackGround(const shared_ptr client) +bool LayerControl::moveBackGround(const shared_ptr client) { bool ret = false; // Move background from foreground layer - auto bg = this->getWMLayer("BackGroundLayer"); + auto bg = this->getWMLayer(BACK_GROUND_LAYER); if(bg != nullptr) { + HMI_DEBUG("client %s role %s", client->appID().c_str(), client->role().c_str()); unsigned layer = client->layerID(); if(bg->hasRole(client->role())) { + HMI_INFO("%s go to background", client->appID().c_str()); + bg->addLayerToState(layer); + auto wm_layer = this->getWMLayer(layer); + wm_layer->removeLayerFromState(layer); + /* TODO: manipulate state directly LayerState bg_ls = bg->getLayerState(); bg_ls.addLayer(layer); - auto wm_layer = this->getWMLayer(layer); LayerState ls = wm_layer->getLayerState(); - ls.removeLayer(layer); + ls.removeLayer(layer); */ + bg->dump(); + wm_layer->dump(); + ret = true; } - ret = true; } return ret; } -bool LayerControl::mvForeGround(const shared_ptr client) +bool LayerControl::moveForeGround(const shared_ptr client) { bool ret = false; // Move foreground from foreground layer - auto bg = this->getWMLayer("BackGroundLayer"); + auto bg = this->getWMLayer(BACK_GROUND_LAYER); if(bg != nullptr) { - unsigned layer = client->layerID(); if(bg->hasRole(client->role())) { + unsigned layer = client->layerID(); + HMI_INFO("%s go to foreground", client->appID().c_str()); + bg->removeLayerFromState(layer); + auto wm_layer = this->getWMLayer(layer); + wm_layer->addLayerToState(layer); + /* TODO: manipulate state directly LayerState bg_ls = bg->getLayerState(); bg_ls.removeLayer(layer); - auto wm_layer = this->getWMLayer(layer); LayerState ls = wm_layer->getLayerState(); - ls.addLayer(layer); + ls.addLayer(layer); */ + bg->dump(); + wm_layer->dump(); + ret = true; } - ret = true; } return ret; } -*/ - } // namespace wm \ No newline at end of file