f5fecd755c51400443c010ffcb5a8981775edc88
[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 #define PKGMGR_WEBAPP_TYPE          "wgt"
31 #define PKGMGR_START_KEY            "start"
32 #define PKGMGR_START_INSTALL        "install"
33 #define PKGMGR_START_UPDATE         "update"
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 #define PKGMGR_ICON_PATH            "icon_path"
40
41 typedef pkgmgr_installer* PkgmgrHandle;
42
43 class PkgmgrSignal : public IPkgmgrSignal
44 {
45   public:
46     bool initialize(int argc, char* argv[]);
47     bool deinitialize();
48     bool setPkgname(const std::string& name);
49     bool sendSignal(const std::string& key, const std::string& value) const;
50     std::string getPkgname() const;
51     int getRequestedType() const;
52     bool isNoPopupRequired() const;
53
54     PkgmgrSignal();
55     virtual ~PkgmgrSignal();
56
57   private:
58     bool m_initialized;
59     PkgmgrHandle m_handle;
60     std::string m_type;
61     std::string m_pkgname;
62     bool m_noPopup;
63     int m_reqType;
64 };
65 } // PackageManager
66
67 #endif // WRT_PKGMGR_SIGNAL_H_
68