61cbd24c7d8d7a4f4fadd3379605263b7acbadab
[platform/framework/native/appfw.git] / src / app / FApp_AppInfo.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_AppInfo.cpp
19  * @brief       This is the implementation for the _AppInfo.cpp class.
20  */
21
22 #include <cstdio>
23 #include <cstring>
24 #include <unistd.h>
25 #include <limits.h>
26 #include <new>
27 #include <fcntl.h>
28 #include <unique_ptr.h>
29
30 #include <appinfo.h>
31
32 #include <FBaseErrors.h>
33 #include <FAppPkgPackageInfo.h>
34 #include <FBaseSysLog.h>
35
36 #include <FBaseRt_Process.h>
37 #include <FBase_StringConverter.h>
38
39 #include "FAppPkg_PackageInfoImpl.h"
40 #include "FApp_AppInfo.h"
41
42 using namespace Tizen::App::Package;
43 using namespace Tizen::Base;
44 using namespace Tizen::Base::Runtime;
45
46 extern "C"
47 {
48 void _OSP_EXPORT_
49 AppInfo_Update(void)
50 {
51         result r = Tizen::App::_AppInfo::GetInstance()->Construct();
52         if (IsFailed(r))
53         {
54                 SysLogException(NID_APP, E_SYSTEM, "Application initialization failure.");
55                 fprintf(stderr, "Application initialization failure.\n");
56
57                 _Process::Exit(-1);
58         }
59 }
60
61 void _OSP_EXPORT_
62 InitAppInfo(const char* packageId, const char* svcId, int argc, char* pArgv[], int fd)
63 {
64         AppInfo_Update();
65 }
66
67 void _OSP_EXPORT_
68 InitWebAppInfo(const char* appId, const char* rootPath)
69 {
70         result r = Tizen::App::_AppInfo::GetInstance()->Construct(appId, rootPath, Tizen::App::_APP_TYPE_WEB_APP);
71         if (IsFailed(r))
72         {
73                 SysLogException(NID_APP, E_SYSTEM, "Application initialization failure for %s.", appId);
74                 fprintf(stderr, "Application initialization failure for %s.\n", appId);
75
76                 _Process::Exit(-1);
77         }
78 }
79
80 extern void FBase_Initialize(void);
81
82 }
83
84 namespace Tizen { namespace App
85 {
86
87 const int MAX_APIVERSION = 8;
88 const int MAX_APPID = 10;
89 const char PACKAGE_PATH_FORMAT[] = "/opt/usr/apps/0000000000/";
90 const char PATH_ROOT[] = "/opt/usr/apps/";
91 const char APPINFO_FILE_PATH[] = "info/version.info";
92 const char COMPAT_FILE_PATH[] = "info/compat.info";
93 const char VIRTUAL_ROOT_FILE_PATH[] = "info/virtual.info";
94 const char TYPE_FILE_PATH[] = "info/type.info";
95 const char SUBMODE_NAME[] = "_AppControl";
96
97
98 _AppInfo::_AppInfo(void)
99         : __appState(TERMINATED)
100         , __appType(_APP_TYPE_NONE)
101         , __appRootDirFd(-1)
102         , __appHandlerType(_APP_HANDLER_NONE)
103         , __parentWindowHandle(-1)
104         , __pAppName(null)
105         , __pAppVersion(null)
106         , __isPackageInfoInitialized(false)
107         , __isSubMode(false)
108         , __isVirtualRoot(false)
109         , __isMultiWindow(false)
110 {
111         SysStaticAssert(sizeof(pid_t) == sizeof(int));
112
113         //FBase_Initialize();
114 }
115
116 _AppInfo::~_AppInfo(void)
117 {
118         delete __pAppName;
119         delete __pAppVersion;
120
121         // closing may or may not succeed
122         close(__appRootDirFd);
123 }
124
125 _AppInfo*
126 _AppInfo::GetInstance(void)
127 {
128         static _AppInfo info;
129
130         return &info;
131 }
132
133
134 result
135 _AppInfo::Construct(void)
136 {
137         SysAssertf(appinfo_is_initialized() == 1, "appinfo is not initialized.");
138
139         FBase_Initialize();
140
141         const char* pPackageId = appinfo_get_packageid();
142         const char* pExecName = appinfo_get_execname();
143
144
145         if (strncmp(pExecName, SUBMODE_NAME, strlen(SUBMODE_NAME)) == 0)
146         {
147                 SysLog(NID_APP, "Handling for submode.");
148                 const String& name = _PackageManagerImpl::GetInstance()->GetDefaultAppExecutableName(String(pPackageId));
149
150                 __isSubMode = true;
151
152                 std::unique_ptr<char[]> pActualExec(_StringConverter::CopyToCharArrayN(name));
153                 appinfo_update_submode_execname_and_appid(pActualExec.get());
154                 SysLog(NID_APP, "Executable name is changed to %s.", pActualExec.get());
155         }
156
157         result r = E_SUCCESS;
158         FILE* pFile = NULL;
159
160         {
161                 char appInfoPath[PATH_MAX] = {0, };
162
163                 int len = strlen(PACKAGE_PATH_FORMAT);
164                 strncpy(appInfoPath, PACKAGE_PATH_FORMAT, len);
165                 appInfoPath[len] = '\0';
166                 strncpy(appInfoPath + strlen(PATH_ROOT), pPackageId, MAX_APPID);
167
168                 // app root directory file descriptor
169                 __appRootDirFd = open(appInfoPath, O_RDONLY | O_CLOEXEC | O_DIRECTORY);
170                 __appRootPath = appInfoPath;
171                 
172                 SysLog(NID_APP, "App root directory (%s:%d) open.", appInfoPath, __appRootDirFd);
173
174                 int fd = openat(__appRootDirFd, APPINFO_FILE_PATH, O_RDONLY);
175                 SysAssertf(fd != -1, "Failed to open info file, errno: %d (%s)", errno, strerror(errno));
176
177                 pFile = fdopen(fd, "r");
178                 SysTryCatch(NID_APP, pFile != NULL, r = E_SYSTEM, E_SYSTEM, "[E_SYSTEM] Opening appinfo file (%s) failed : %s.", appInfoPath, strerror(errno));
179
180                 // sdcard
181                 char sdInfoPath[PATH_MAX] = {0, };
182                 strncpy(sdInfoPath, "/opt/storage/sdcard/app2sd/", strlen("/opt/storage/sdcard/app2sd/"));
183                 strncat(sdInfoPath, pPackageId, MAX_APPID);
184
185                 int sdFd = open(sdInfoPath, O_RDONLY);
186                 SysLog(NID_APP, "sd root directory (%s:%d) open.", sdInfoPath, sdFd);
187
188                 char apiVersion[MAX_APIVERSION] = {0, };
189                 char* pRet = fgets(apiVersion, MAX_APIVERSION - 1, pFile);
190                 SysTryCatch(NID_APP, pRet != NULL, r = E_SYSTEM, E_SYSTEM, "[E_SYSTEM] Reading appinfo file (%s) failed : %s.", appInfoPath, strerror(errno));
191
192                 fclose(pFile);
193                 // fd is closed when the stream is closed by fclose();
194
195                 appinfo_set_api_version(appinfo_get_api_version_from_str(apiVersion));
196
197                 // to reduce package manager overhead, libc API is used
198                 if (faccessat(__appRootDirFd, COMPAT_FILE_PATH, F_OK, 0) == 0)
199                 {
200                         SysLog(NID_APP, "OSP compatibility mode on.");
201                         appinfo_set_compat(1);
202                 }
203
204                 if (faccessat(__appRootDirFd, VIRTUAL_ROOT_FILE_PATH, F_OK, 0) == 0)
205                 {
206                         SysLog(NID_APP, "virtual root mode on.");
207                         __isVirtualRoot = true;
208                 }
209
210                 // type file may does not exist
211                 fd = openat(__appRootDirFd, TYPE_FILE_PATH, O_RDONLY);
212                 if (fd > 0)
213                 {
214                         pFile = fdopen(fd, "r");
215                         if (pFile)
216                         {
217                                 int i;
218                                 int line = fscanf(pFile, "%d", &i);
219
220                                 fclose(pFile);
221                                 // fd is closed when the stream is closed by fclose();
222
223                                 __appType = _APP_TYPE_UI_APP | i;
224                                 SysLog(NID_APP, "Reading app type %d -> %d", i, __appType);
225                         }
226                 }
227
228                 SysLog(NID_APP, "AppInfo [%s][%s.%s][%d].", appinfo_get_appid(), appinfo_get_packageid(), appinfo_get_execname(), appinfo_get_api_version());
229         }
230
231         return E_SUCCESS;
232
233 CATCH:
234         if (pFile != NULL)
235         {
236                 fclose(pFile);
237         }
238
239         return r;
240 }
241
242
243 // initialize app context only
244 result
245 _AppInfo::Construct(const char* appId, const char* appRoot, _AppType type)
246 {
247         SysAssertf(appId != null, "Valid appId required to launch application.");
248
249         FBase_Initialize();
250
251         if (appinfo_is_initialized() == 0)
252         {
253                 appinfo_init(appId, 0);
254         }
255
256         __appRootDirFd = open(appRoot, O_RDONLY | O_CLOEXEC | O_DIRECTORY);
257         appinfo_set_api_version(APP_INFO_VERSION_2_2);
258         __appType = type;
259
260         __appRootPath = appRoot;
261         if (__appRootPath[__appRootPath.GetLength()] != L'/')
262         {
263                 __appRootPath.Append(L'/');
264         }
265
266         SysLog(NID_APP, "AppInfo [%s][%s.%s][%ls][%d].", appinfo_get_appid(), appinfo_get_packageid(), appinfo_get_execname()), __appRootPath.GetPointer(), appinfo_get_api_version();
267
268         return E_SUCCESS;
269 }
270
271
272 result
273 _AppInfo::UpdateAppInfoFromPackageInfo(const PackageId& packageId)
274 {
275         _PackageManagerImpl* pPkg = _PackageManagerImpl::GetInstance();
276         SysTryReturnResult(NID_APP, pPkg != null, E_INVALID_STATE, "Invalid PackageManager instance.");
277
278         result r = E_SUCCESS;
279         std::unique_ptr<PackageInfo> pInfo(pPkg->GetPackageInfoN(packageId));
280         if (pInfo.get() == null)
281         {
282                 r = GetLastResult();
283                 SysPropagate(NID_APP, r);
284                 return r;
285         }
286
287         const _PackageInfoImpl* pPkgInfo = _PackageInfoImpl::GetInstance(pInfo.get());
288         SysTryReturnResult(NID_APP, pPkgInfo != null, E_INVALID_STATE, "Invalid PackageInfo instance.");
289
290         delete __pAppName;
291         __pAppName = new (std::nothrow) String(pPkgInfo->GetName());
292         SysTryCatch(NID_APP, __pAppName != null, r = E_OUT_OF_MEMORY, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] AppName allocation failure.");
293
294         delete __pAppVersion;
295         __pAppVersion = new (std::nothrow) String(pPkgInfo->GetVersion());
296         SysTryCatch(NID_APP, __pAppVersion != null, r = E_OUT_OF_MEMORY, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] AppVersion allocation failure.");
297
298         __isPackageInfoInitialized = true;
299
300         SysLog(NID_APP, "AppInfo updated [%ls][%ls].", __pAppName->GetPointer(), __pAppVersion->GetPointer());
301
302         return r;
303
304 CATCH:
305         delete __pAppName;
306         __pAppName = null;
307
308         delete __pAppVersion;
309         __pAppVersion = null;
310
311         return r;
312 }
313
314
315 _ApiVersion
316 _AppInfo::GetApiVersion(void)
317 {
318         return static_cast<_ApiVersion>(appinfo_get_api_version());
319 }
320
321
322 bool
323 _AppInfo::IsOspCompat(void)
324 {
325         return (appinfo_is_compat() == 1);
326 }
327
328 bool
329 _AppInfo::IsVirtualRoot(void)
330 {
331         return GetInstance()->__isVirtualRoot;
332 }
333
334 result
335 _AppInfo::SetApiVersion(_ApiVersion v)
336 {
337         appinfo_set_api_version(static_cast<app_info_version_e>(v));
338         return E_SUCCESS;
339 }
340
341
342 int
343 _AppInfo::GetProcessId(void)
344 {
345         static int processId = static_cast<int>(getpid());
346
347         return processId;
348 }
349
350 int
351 _AppInfo::GetAppRootDirFd(void)
352 {
353         return GetInstance()->__appRootDirFd;
354 }
355
356
357 AppId
358 _AppInfo::GetApplicationId(void)
359 {
360         return String(appinfo_get_appid());
361 }
362
363
364 PackageId
365 _AppInfo::GetPackageId(void)
366 {
367         return String(appinfo_get_packageid());
368 }
369
370
371 String
372 _AppInfo::GetAppExecutableName(void)
373 {
374         return String(appinfo_get_execname());
375 }
376
377
378 bool
379 _AppInfo::IsSubMode(void)
380 {
381         return GetInstance()->__isSubMode;
382 }
383
384
385 String
386 _AppInfo::GetAppName(void)
387 {
388         if (!GetInstance()->__isPackageInfoInitialized)
389         {
390                 const String& packageId = GetInstance()->GetPackageId();
391
392                 SysAssertf(!packageId.IsEmpty(), "PackageId is not initialized properly.");
393
394                 result r = GetInstance()->UpdateAppInfoFromPackageInfo(packageId);
395                 SysAssertf(r == E_SUCCESS, "AppInfo update failure due to package problem.");
396         }
397
398         return *(GetInstance()->__pAppName);
399 }
400
401
402 String
403 _AppInfo::GetAppRootPath(void)
404 {
405         return GetInstance()->__appRootPath;
406 }
407
408 String
409 _AppInfo::GetAppVersion(void)
410 {
411         if (!GetInstance()->__isPackageInfoInitialized)
412         {
413                 const String& packageId = GetInstance()->GetPackageId();
414
415                 SysAssertf(!packageId.IsEmpty(), "PackageId is not initialized properly.");
416
417                 result r = GetInstance()->UpdateAppInfoFromPackageInfo(packageId);
418                 SysAssertf(r == E_SUCCESS, "AppInfo update failure due to package problem.");
419         }
420
421         return *(GetInstance()->__pAppVersion);
422 }
423
424
425 AppState
426 _AppInfo::GetAppState(void)
427 {
428         return GetInstance()->__appState;
429 }
430
431
432 void
433 _AppInfo::SetAppState(AppState appState)
434 {
435         GetInstance()->__appState = appState;
436 }
437
438
439 int
440 _AppInfo::GetAppType(void)
441 {
442         return GetInstance()->__appType;
443 }
444
445
446 void
447 _AppInfo::SetAppType(_AppType appType)
448 {
449         GetInstance()->__appType |= appType;
450 }
451
452
453 int
454 _AppInfo::GetAppHandlerType(void)
455 {
456         return GetInstance()->__appHandlerType;
457 }
458
459
460 void
461 _AppInfo::SetAppHandlerType(int appHandlerType)
462 {
463         GetInstance()->__appHandlerType = appHandlerType;
464 }
465
466
467 unsigned int
468 _AppInfo::GetParentWindowHandle(void)
469 {
470         return GetInstance()->__parentWindowHandle;
471 }
472
473
474 void
475 _AppInfo::SetParentWindowHandle(unsigned int handle)
476 {
477         GetInstance()->__parentWindowHandle = handle;
478 }
479
480
481 void
482 _AppInfo::UpdatePackageInfo(bool update)
483 {
484         GetInstance()->__isPackageInfoInitialized = !update;
485 }
486
487 bool
488 _AppInfo::IsMultiWindow(void)
489 {
490         return GetInstance()->__isMultiWindow;
491 }
492
493 void
494 _AppInfo::SetMultiWindow(bool enable)
495 {
496         GetInstance()->__isMultiWindow = enable;
497 }
498
499 }} // Tizen::App