[Release] wrt-installer_0.0.89
[framework/web/wrt-installer.git] / src / pkg-manager / pkgmgr_signal.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  * @author      Yunchan Cho (yunchan.cho@samsung.com)
18  * @author      Jan Olszak (j.olszak@samsung.com)
19  * @version     0.2
20  * @brief
21  */
22
23 #ifndef WRT_PKGMGR_SIGNAL_H_
24 #define WRT_PKGMGR_SINGAL_H_
25
26 #include <pkg-manager/pkgmgr_signal_interface.h>
27 #include <pkgmgr_installer.h>
28
29 namespace PackageManager{
30
31 #define PKGMGR_WEBAPP_TYPE          "wgt"
32 #define PKGMGR_START_KEY            "start"
33 #define PKGMGR_START_INSTALL        "install"
34 #define PKGMGR_START_UNINSTALL      "uninstall"
35 #define PKGMGR_END_KEY              "end"
36 #define PKGMGR_END_SUCCESS          "ok"
37 #define PKGMGR_END_FAILURE          "fail"
38 #define PKGMGR_PROGRESS_KEY         "install_percent"
39
40 typedef pkgmgr_installer* PkgmgrHandle;
41
42 class PkgmgrSignal: public IPkgmgrSignal
43 {
44     public:
45         bool initialize(int argc, char* argv[]);
46         bool deinitialize();
47         bool setPkgname(const std::string& name);
48         bool sendSignal(const std::string& key, const std::string& value) const;
49         std::string getPkgname() const;
50         int getRequestedType() const;
51         bool isNoPopupRequired() const;
52
53         PkgmgrSignal();
54         virtual ~PkgmgrSignal();
55
56     private:
57         bool m_initialized;
58         PkgmgrHandle m_handle;
59         std::string m_type;
60         std::string m_pkgname;
61         bool m_noPopup;
62         int m_reqType;
63 };
64 } // PackageManager
65
66 #endif // WRT_PKGMGR_SIGNAL_H_
67