Rename invalid WRT_SMACK_LABEL macro to WRT_SMACK_ENABLED
[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
28 struct pkgmgr_installer;
29
30 namespace PackageManager {
31
32 class PkgmgrSignal : public IPkgmgrSignal
33 {
34 public:
35     enum class RequestType
36     {
37         UNSUPPORTED,
38         INSTALL,
39         UNINSTALL,
40         REINSTALL
41     };
42
43     bool initialize(int argc, char* argv[]);
44     bool deinitialize();
45     bool setPkgname(const std::string& name);
46     std::string getPkgname() const;
47     RequestType getRequestedType() const;
48     std::string getCallerId() const;
49
50     bool startJob(Jobs::InstallationType type);
51     bool endJob(Jobs::Exceptions::Type ecode);
52     bool sendProgress(int percent);
53     bool sendIconPath(const std::string & iconpath);
54
55     PkgmgrSignal();
56     virtual ~PkgmgrSignal();
57
58 protected:
59     bool sendSignal(const std::string& key, const std::string& value) const;
60
61 private:
62     bool m_initialized;
63     pkgmgr_installer* m_handle;
64     std::string m_type;
65     std::string m_pkgname;
66     RequestType m_reqType;
67     std::string m_callerId;
68 };
69 } // PackageManager
70
71 #endif // WRT_PKGMGR_SIGNAL_H_
72