Merge "Fix memory leak on imei" into tizen_2.2
[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 <app_manager.h>
33 #include <heynoti.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 isSubMode)
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 (isSubMode)
128         {
129                 _AppArg::UpdateSubMode(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         bool isRunning = false;
148         std::unique_ptr<char[]> pSlpPackageName(_StringConverter::CopyToCharArrayN(appId));
149
150         app_manager_is_running(pSlpPackageName.get(), &isRunning);
151
152         SysLog(NID_APP, "'%ls' %s running now.", appId.GetPointer(), (isRunning) ? "is" : "is NOT");
153         return isRunning;
154 }
155
156
157 result
158 _Aul::TerminateApplicationByPid(int pid)
159 {
160         int ret_aul = aul_terminate_pid(pid);
161
162         return GetConvertedResult(ret_aul, "TerminateApplicationByPid");
163 }
164
165 static int
166 TerminateApplicationIterFnCb(const aul_app_info* pAppInfo, void* pData)
167 {
168         const char* pStr = static_cast<const char*>(pData);
169
170         if (pStr && strncmp(pStr, pAppInfo->pkg_name, NATIVE_APP_MAX_APPID_LENGTH) == 0)
171         {
172                 SysLog(NID_APP, "%s(%d) is terminated.", pAppInfo->pkg_name, pAppInfo->pid);
173                 int ret_aul = aul_terminate_pid( pAppInfo->pid );
174                 SetLastResult(_Aul::GetConvertedResult(ret_aul, "TerminateApplication"));
175         }
176         return 0;
177 }
178
179 result
180 _Aul::TerminateApplication(const AppId& appId)
181 {
182         SetLastResult(E_OBJ_NOT_FOUND);
183         std::unique_ptr<char[]> pAppId(_StringConverter::CopyToCharArrayN(appId));
184         aul_app_get_running_app_info(TerminateApplicationIterFnCb, static_cast<void*>(pAppId.get()));
185
186         SysLog(NID_APP, "%ls terminated.", appId.GetPointer());
187         return GetLastResult();
188 }
189
190 result
191 _Aul::SetOomAdj(int pid, int adj)
192 {
193         // set oom_adj to -17 for system service
194         result r = E_SUCCESS;
195         char buf[FILENAME_MAX];
196         FILE *fP = NULL;
197
198         snprintf(buf, FILENAME_MAX, "/proc/%d/oom_adj", pid);
199         fP = fopen(buf, "w");
200         SysTryReturnResult(NID_APP, fP != NULL, E_SYSTEM, "oom_adj change failed with %s.", strerror(errno));
201
202         fprintf(fP, "%d", adj);
203         fclose(fP);
204
205         return r;
206 }
207
208 result
209 _Aul::SetPowerOffNotiListener( void (*powerOffCb)(void *pData), void *pData)
210 {
211         int heyFd = heynoti_init();
212         SysTryReturnResult(NID_APP, heyFd >= 0, E_SYSTEM, "heynoti_init failed.");
213
214         int ret = heynoti_subscribe(heyFd, "power_off_start", powerOffCb, pData);
215         SysTryReturnResult(NID_APP, ret >= 0, E_SYSTEM, "heynoti_subscribe failed.");
216
217         ret = heynoti_attach_handler(heyFd);
218         SysTryReturnResult(NID_APP, ret >= 0, E_SYSTEM, "heynoti_attach_handler failed.");
219
220         return E_SUCCESS;
221 }
222
223
224 // _Aul::GetAppType is provided for installer usage
225 int
226 _Aul::GetAppType(const String& category)
227 {
228         int ret = 0;
229
230         HashMapT<String, int> map;
231         map.Construct();
232
233         StringTokenizer strTok(category, L';');
234
235         String token;
236         while (strTok.HasMoreTokens())
237         {
238                 result r = strTok.GetNextToken(token);
239                 if (r == E_SUCCESS)
240                 {
241                         map.Add(token, 0);
242                 }
243         }
244
245         SysLog(NID_APP, "%d category items .", map.GetCount());
246
247         String key;
248
249         for (int i = 0; i < _NUM_CATEGORY; i++)
250         {
251                 bool b = false;
252                 key = _CATEGORY_LIST[i].category;
253                 result r = map.ContainsKey(key, b);
254                 if (r == E_SUCCESS && b)
255                 {
256                         ret |= _CATEGORY_LIST[i].type;
257                 }
258         }
259
260         return ret;
261 }
262
263
264 bool
265 _Aul::IsInstalled(const AppId& appId)
266 {
267         String packageId;
268         packageId = _PackageManagerImpl::GetPackageIdByAppId(appId);
269
270         return _PackageManagerImpl::GetInstance()->IsPackageInstalled(packageId);
271 }
272
273
274 AppId
275 _Aul::GetRealAppId(const AppId& appId)
276 {
277         String temp;
278         // [INFO] ugly code for submode callee
279         appId.SubString(11, temp);
280         if (temp == L"_AppControl")
281         {
282                 String id;
283                 appId.SubString(0, 10, id);
284                 const String& name = _PackageManagerImpl::GetInstance()->GetDefaultAppExecutableName(id);
285
286                 const String retVal = id + L'.' + name;
287                 SysLog(NID_APP, "Converted caller Id is %ls", retVal.GetPointer());
288
289                 return retVal;
290         }
291         else
292         {
293                 return appId;
294         }
295 }
296
297 } } // Tizen::App