Tizen 2.4.0 rev3 SDK Public Release
[framework/web/wearable/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, const char* message);
52     bool sendProgress(int percent);
53     bool sendIconPath(const std::string & iconpath);
54     void setRecoveryFile();
55
56     PkgmgrSignal();
57     virtual ~PkgmgrSignal();
58
59 protected:
60     bool sendSignal(const std::string& key, const std::string& value) const;
61
62 private:
63     bool m_initialized;
64     pkgmgr_installer* m_handle;
65     std::string m_type;
66     std::string m_pkgname;
67     RequestType m_reqType;
68     std::string m_callerId;
69     int m_percent;
70     std::string m_recoveryFile;
71 };
72 } // PackageManager
73
74 #endif // WRT_PKGMGR_SIGNAL_H_
75