fix first time don't have area
[apps/agl-service-homescreen.git] / src / hs-clientmanager.h
index af5b4c8..d32f9cc 100644 (file)
@@ -23,7 +23,6 @@
 #include <unordered_map>
 #include "hs-helper.h"
 #include "hs-client.h"
-#include "hs-apprecover.h"
 
 typedef struct HS_ClientCtxt
 {
@@ -49,20 +48,20 @@ public:
     int handleRequest(afb_req_t request, const char *verb, const char *appid = nullptr);
     int pushEvent(const char *event, struct json_object *param, std::string appid = "");
     void removeClientCtxt(void *data);  // don't use, internal only
-    void setAppRecover(HS_AppRecover *recover) {app_recover = recover;}
+    void setStartupAppidAndArea(const std::pair<std::string, std::string> pair) {startup_appid = pair.first;startup_area = pair.second;}
 
 private:
     HS_ClientCtxt* createClientCtxt(afb_req_t req, std::string appid);
     HS_Client* addClient(afb_req_t req, std::string appid);
     void removeClient(std::string appid);
-    void registerApplication(std::string appid);
+    void checkRegisterApp(afb_api_t api, const std::string &appid);
 
 private:
     static HS_ClientManager* me;
     std::unordered_map<std::string, HS_Client*> client_list;
     std::unordered_map<std::string, HS_ClientCtxt*> appid2ctxt;
     std::mutex mtx;
-    HS_AppRecover *app_recover;
+    std::string startup_appid, startup_area;
 };
 
 #endif // HOMESCREEN_CLIENTMANAGER_H
\ No newline at end of file