[Release] wrt-installer_0.1.123
[platform/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_SIGNAL_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 #define PKGMGR_ERROR                "error"
41 #define PKGMGR_START_VALUE          "0"
42
43 typedef pkgmgr_installer* PkgmgrHandle;
44
45 class PkgmgrSignal : public IPkgmgrSignal
46 {
47   public:
48     bool initialize(int argc, char* argv[]);
49     bool deinitialize();
50     bool setPkgname(const std::string& name);
51     bool sendSignal(const std::string& key, const std::string& value) const;
52     std::string getPkgname() const;
53     int getRequestedType() const;
54     std::string getCallerId() const;
55
56     PkgmgrSignal();
57     virtual ~PkgmgrSignal();
58
59   private:
60     bool m_initialized;
61     PkgmgrHandle m_handle;
62     std::string m_type;
63     std::string m_pkgname;
64     int m_reqType;
65     std::string m_callerId;
66 };
67 } // PackageManager
68
69 #endif // WRT_PKGMGR_SIGNAL_H_
70