[Release] wrt-installer_0.0.89
[framework/web/wrt-installer.git] / src / 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
29 class WidgetInstallToExt
30 {
31 public:
32     class Exception
33     {
34       public:
35         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
36         DECLARE_EXCEPTION_TYPE(Base, ErrorInstallToExt)
37     };
38
39     void initialize(std::string appId);
40     void deinitialize();
41     void preInstallation(GList* dirList, int dSize);
42     void postInstallation(bool status);
43     void preUpgrade(GList* dirList, int dSize);
44     void postUpgrade(bool status);
45     void uninstallation();
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