Update to handle the FG/BG on AppControl response callback
[platform/framework/native/appfw.git] / src / app / FApp_Aul.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 /**
18  * @file         FApp_Aul.cpp
19  * @brief       This is the implementation for the _Aul.cpp class.
20  */
21 #include <cstdio>
22 #include <cstdlib>
23 #include <new>
24 #include <unistd.h>
25 #include <sys/prctl.h>
26 #include <signal.h>
27 #include <unique_ptr.h>
28
29 #include <aul.h>
30 #include <bundle.h>
31 #include <appsvc/appsvc.h>
32 #include <vconf.h>
33 #include <pkgmgr-info.h>
34
35 #include <FBaseObject.h>
36 #include <FBaseString.h>
37 #include <FBaseUtil.h>
38 #include <FBaseSysLog.h>
39 #include <FBaseColHashMapT.h>
40 #include <FAppPkgPackageInfo.h>
41
42 #include <FBaseRt_Process.h>
43 #include <FBase_StringConverter.h>
44 #include "FAppPkg_PackageManagerImpl.h"
45 #include "FApp_Types.h"
46 #include "FApp_Aul.h"
47 #include "FApp_AppArg.h"
48 #include "FApp_TemplateUtil.h"
49
50
51 using namespace Tizen::App::Package;
52 using namespace Tizen::Base;
53 using namespace Tizen::Base::Collection;
54 using namespace Tizen::Base::Runtime;
55 using namespace Tizen::Base::Utility;
56
57 namespace
58 {
59 const int _MAX_CATEGORY = 34;
60
61 // borrowed from app-svc/include/pri_key.h
62 #define APP_SVC_K_RES_VAL       "__APP_SVC_K_RES_VAL__"
63
64 }
65
66 namespace Tizen { namespace App
67 {
68
69 struct _CategoryList
70 {
71         const char category[_MAX_CATEGORY];
72         const _AppType type;
73 };
74
75 static const _CategoryList _CATEGORY_LIST[] =
76 {
77         {"home-screen", _APP_TYPE_HOME_APP},
78         {"lock-screen", _APP_TYPE_LOCK_APP},
79         {"ime", _APP_TYPE_IME_APP},
80         {"http://tizen.org/category/homeapp", _APP_TYPE_HOME_APP},
81         {"http://tizen.org/category/lockapp", _APP_TYPE_LOCK_APP},
82         {"http://tizen.org/category/ime", _APP_TYPE_IME_APP},
83 };
84
85 static const int _NUM_CATEGORY = sizeof(_CATEGORY_LIST) / sizeof(_CategoryList);
86
87 result
88 _Aul::GetConvertedResult(const int aul_ret, const char* pFunctionName)
89 {
90         result r = E_SUCCESS;
91
92         switch (aul_ret)
93         {
94         case AUL_R_EINVAL:
95                 r = E_INVALID_ARG;
96                 SysLogException(NID_APP, r, "%s : Invalid argument.", pFunctionName);
97                 break;
98
99         case AUL_R_ECOMM:
100                 r = E_SYSTEM;
101                 SysLogException(NID_APP, r, "%s : Internal IPC error.", pFunctionName);
102                 break;
103
104         case AUL_R_ERROR:
105                 r = E_SYSTEM;
106                 SysLogException(NID_APP, r, "%s : General error.", pFunctionName);
107                 break;
108
109         default:
110                 SysLog(NID_APP, "%s : successed.", pFunctionName);
111                 break;
112         }
113
114         return r;
115 }
116
117 result
118 _Aul::SendResult(bundle* b, appsvc_result_val res, bool isRaiseMode)
119 {
120         // to skip error handling, of appsvc_send_result, use aul_send_service_result() directly.
121         //int ret = appsvc_send_result(b, res);
122
123         char tmp[32] = {0, };
124         snprintf(tmp, 32, "%d", static_cast<int>(res));
125         appsvc_add_data(b, APP_SVC_K_RES_VAL, tmp);
126
127         if (isRaiseMode)
128         {
129                 _AppArg::UpdateRaiseMode(b);
130         }
131
132         const int aul_ret = aul_send_service_result(b);
133
134         result r = GetConvertedResult(aul_ret, "SendResult");
135         if (r == E_INVALID_ARG)
136         {
137                 SysLog(NID_APP, "Converting internal exception to E_MAX_EXCEEDED.");
138                 r = E_MAX_EXCEEDED;
139         }
140         return r;
141 }
142
143
144 bool
145 _Aul::IsRunning(const String& appId)
146 {
147         std::unique_ptr<char[]> pPackageId(_StringConverter::CopyToCharArrayN(appId));
148
149         const bool isRunning = (aul_app_is_running(pPackageId.get()) > 0);
150
151         SysLog(NID_APP, "'%ls' %s running now.", appId.GetPointer(), (isRunning) ? "is" : "is NOT");
152         return isRunning;
153 }
154
155
156 result
157 _Aul::TerminateApplicationByPid(int pid)
158 {
159         int ret_aul = aul_subapp_terminate_request_pid(pid);
160
161         return GetConvertedResult(ret_aul, "TerminateApplicationByPid");
162 }
163
164 static int
165 TerminateApplicationIterFnCb(const aul_app_info* pAppInfo, void* pData)
166 {
167         const char* pStr = static_cast<const char*>(pData);
168
169         if (pStr && strncmp(pStr, pAppInfo->pkg_name, NATIVE_APP_MAX_APPID_LENGTH) == 0)
170         {
171                 SysLog(NID_APP, "%s(%d) is terminated.", pAppInfo->pkg_name, pAppInfo->pid);
172                 int ret_aul = aul_terminate_pid( pAppInfo->pid );
173                 SetLastResult(_Aul::GetConvertedResult(ret_aul, "TerminateApplication"));
174         }
175         return 0;
176 }
177
178 result
179 _Aul::TerminateApplication(const AppId& appId)
180 {
181         SetLastResult(E_OBJ_NOT_FOUND);
182         std::unique_ptr<char[]> pAppId(_StringConverter::CopyToCharArrayN(appId));
183         aul_app_get_running_app_info(TerminateApplicationIterFnCb, static_cast<void*>(pAppId.get()));
184
185         SysLog(NID_APP, "%ls terminated.", appId.GetPointer());
186         return GetLastResult();
187 }
188
189 result
190 _Aul::SetOomAdj(int pid, int adj)
191 {
192         // set oom_adj to -17 for system service
193         result r = E_SUCCESS;
194         char buf[FILENAME_MAX];
195         FILE *fP = NULL;
196
197         snprintf(buf, FILENAME_MAX, "/proc/%d/oom_adj", pid);
198         fP = fopen(buf, "w");
199         SysTryReturnResult(NID_APP, fP != NULL, E_SYSTEM, "oom_adj change failed with %s.", strerror(errno));
200
201         fprintf(fP, "%d", adj);
202         fclose(fP);
203
204         return r;
205 }
206
207 typedef void (* cbForVconf)(keynode_t* node, void *pData);
208
209 result
210 _Aul::SetPowerOffNotiListener( void (*powerOffCb)(void* node, void *pData), void *pData)
211 {
212
213 #if 1
214         int ret = vconf_notify_key_changed(VCONFKEY_SYSMAN_POWER_OFF_STATUS, (cbForVconf)powerOffCb, pData);
215         SysTryReturnResult(NID_SYS, ret == 0, E_SYSTEM, "It failed to set power off");
216 #else
217         int heyFd = heynoti_init();
218         SysTryReturnResult(NID_APP, heyFd >= 0, E_SYSTEM, "heynoti_init failed.");
219
220         int ret = heynoti_subscribe(heyFd, "power_off_start", powerOffCb, pData);
221         SysTryReturnResult(NID_APP, ret >= 0, E_SYSTEM, "heynoti_subscribe failed.");
222
223         ret = heynoti_attach_handler(heyFd);
224         SysTryReturnResult(NID_APP, ret >= 0, E_SYSTEM, "heynoti_attach_handler failed.");
225 #endif
226
227         return E_SUCCESS;
228 }
229
230
231 // _Aul::GetAppType is provided for installer usage
232 int
233 _Aul::GetAppType(const String& category)
234 {
235         int ret = 0;
236
237         HashMapT<String, int> map;
238         map.Construct();
239
240         StringTokenizer strTok(category, L';');
241
242         String token;
243         while (strTok.HasMoreTokens())
244         {
245                 result r = strTok.GetNextToken(token);
246                 if (r == E_SUCCESS)
247                 {
248                         map.Add(token, 0);
249                 }
250         }
251
252         SysLog(NID_APP, "%d category items .", map.GetCount());
253
254         String key;
255
256         for (int i = 0; i < _NUM_CATEGORY; i++)
257         {
258                 bool b = false;
259                 key = _CATEGORY_LIST[i].category;
260                 result r = map.ContainsKey(key, b);
261                 if (r == E_SUCCESS && b)
262                 {
263                         ret |= _CATEGORY_LIST[i].type;
264                 }
265         }
266
267         return ret;
268 }
269
270
271 bool
272 _Aul::IsInstalled(const AppId& appId)
273 {
274         String packageId;
275         packageId = _PackageManagerImpl::GetPackageIdByAppId(appId);
276
277         return _PackageManagerImpl::GetInstance()->IsPackageInstalled(packageId);
278 }
279
280
281 String
282 _Aul::GetMainAppId(const char* appid)
283 {
284         pkgmgrinfo_appinfo_h handle = NULL;
285         int ret = pkgmgrinfo_appinfo_get_appinfo(appid, &handle);
286         if (ret != PMINFO_R_OK)
287         {
288                 return String();
289         }
290
291         char* mainid = NULL;
292         ret = pkgmgrinfo_appinfo_get_submode_mainid(handle, &mainid);
293         SysTryLog(NID_APP, ret == PMINFO_R_OK, "Cannot get main id for %s.", appid);
294
295         const String tmp = String(mainid);
296         pkgmgrinfo_appinfo_destroy_appinfo(handle);
297         return tmp;
298 }
299
300
301 AppId
302 _Aul::GetRealAppId(const AppId& appId)
303 {
304         String temp;
305         appId.SubString(11, temp);
306         if (temp == String(SUBMODE_NAME))
307         {
308                 std::unique_ptr<char[]> pAppId(_StringConverter::CopyToCharArrayN(appId));
309                 const String& main = GetMainAppId(pAppId.get());
310                 if (!main.IsEmpty())
311                 {
312                         SysLog(NID_APP, "main Id is %ls", main.GetPointer());
313                         return main;
314                 }
315         }
316
317         return appId;
318 }
319
320 } } // Tizen::App