cc9c4df3eafbd083840f90e07c002180745a964b
[framework/web/wrt-installer.git] / src_mobile / misc / widget_install_to_external.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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  * @file        widget_install_to_external.h
18  * @author      Soyoung Kim (sy037.kim@smasung.com)
19  */
20 #ifndef WRT_INSTALLER_SRC_MISC_WIDGET_INSTALL_TO_EXTERNAL_H
21 #define WRT_INSTALLER_SRC_MISC_WIDGET_INSTALL_TO_EXTERNAL_H
22
23 #include <string>
24 #include <dpl/singleton.h>
25 #include <dpl/string.h>
26 #include <app2ext_interface.h>
27
28 class WidgetInstallToExt
29 {
30   public:
31     class Exception
32     {
33       public:
34         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
35         DECLARE_EXCEPTION_TYPE(Base, ErrorInstallToExt)
36     };
37
38     void initialize(std::string appId);
39     void deinitialize();
40     void preInstallation(GList* dirList, int dSize);
41     void postInstallation(bool status);
42     void preUpgrade(GList* dirList, int dSize);
43     void postUpgrade(bool status);
44     void uninstallation();
45     void disable();
46
47   private:
48     app2ext_handle *m_handle;
49     std::string m_appId;
50
51     WidgetInstallToExt();
52     ~WidgetInstallToExt();
53
54     friend class DPL::Singleton<WidgetInstallToExt>;
55 };
56
57 typedef DPL::Singleton<WidgetInstallToExt> WidgetInstallToExtSingleton;
58
59 #endif // WRT_INSTALLER_SRC_MISC_WIDGET_INSTALL_TO_EXTERNAL_H