add lastmode function
[apps/agl-service-homescreen.git] / src / hs-clientmanager.cpp
index 4a17b72..1128b01 100644 (file)
@@ -17,6 +17,7 @@
 #include <cstring>
 #include <algorithm>
 #include "hs-clientmanager.h"
+#include "hs-apprecover.h"
 
 static const char _homescreen[] = "homescreen";
 
@@ -37,7 +38,7 @@ static void cbRemoveClientCtxt(void *data)
  * None
  *
  */
-HS_ClientManager::HS_ClientManager() : app_recover(nullptr)
+HS_ClientManager::HS_ClientManager()
 {
 }
 
@@ -187,7 +188,7 @@ int HS_ClientManager::handleRequest(afb_req_t request, const char *verb, const c
                 appid2ctxt[appid] = createClientCtxt(request, appid);
                 HS_Client* client = addClient(request, appid);
                 ret = client->handleRequest(request, "subscribe");
-                registerApplication(appid);
+                HS_AppRecover::instance()->registerRecoveredApp(std::string(appid));
             }
             else {
                 AFB_NOTICE("not exist session");
@@ -232,22 +233,4 @@ int HS_ClientManager::pushEvent(const char *event, struct json_object *param, st
     }
 
     return 0;
-}
-
-/**
- * register recovered application
- *
- * #### Parameters
- *  - appid : application id
- *
- * #### Return
- * None
- *
- */
-void HS_ClientManager::registerApplication(std::string appid)
-{
-    if(app_recover != nullptr && app_recover->registerRecoveredApp(appid)) {
-        delete app_recover;
-        app_recover = nullptr;
-    }
 }
\ No newline at end of file