remove redundant functions
[platform/framework/native/appfw.git] / src / app / inc / FApp_Aul.h
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.h
19  * @brief       This is the header file of the _Aul class.
20  */
21
22 #ifndef _FAPP_INTERNAL_AUL_H_
23 #define _FAPP_INTERNAL_AUL_H_
24
25 #include <appsvc/appsvc.h>
26 #include <bundle.h>
27 #include <FOspConfig.h>
28 #include <FAppTypes.h>
29
30 #define MAX_SLP_PACKAGE_ID 128
31
32 namespace Tizen { namespace App
33 {
34
35 /**
36 * @class        _Aul
37 * @brief        SysDep class for AppManager
38 * @since 2.1
39 * @final        This class it not intended for extension.
40 */
41 class _OSP_EXPORT_ _Aul
42 {
43 public:
44         static result GetConvertedResult(const int aul_ret, const char* pFunctionName);
45
46         static result TerminateApplication(const AppId& appId);
47
48         static result TerminateApplicationByPid(int pid);
49
50         static result SendResult(bundle* b, appsvc_result_val res);
51
52         static bool IsRunning(const Tizen::Base::String& appId);
53
54         static result SetOomAdj(int pid, int adj);
55
56         static result SetPowerOffNotiListener(void (*powerOffCb)(void *pData), void *pData);
57
58         static int GetAppType(const Tizen::Base::String& category);
59
60         static bool IsInstalled(const AppId& appId);
61
62         _OSP_LOCAL_ static AppId GetRealAppId(const AppId& appId);
63
64 public:
65
66         friend class UTs_Aul;
67 }; // _Aul
68
69 } } // Tizen::App
70
71 #endif // _FAPP_INTERNAL_AUL_H_