Merge "Fixed certificate of authentication value to base64."
[framework/web/wrt-installer.git] / src / misc / widget_location.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  * @file        widget_location.h
18  * @author      Iwanek Tomasz (t.iwanek@smasung.com)
19  */
20 #ifndef WRT_INSTALLER_SRC_MISC_WIDGET_LOCATION_H
21 #define WRT_INSTALLER_SRC_MISC_WIDGET_LOCATION_H
22
23 #include <string>
24 #include <memory>
25
26 #include <dpl/wrt-dao-ro/common_dao_types.h>
27 #include <dpl/wrt-dao-ro/widget_dao_read_only.h>
28
29 /**
30  * @brief The WidgetLocation class
31  *
32  * Object that stores locations of several files/directories according
33  * to package name
34  *
35  * Current package layout (of installed package) is following:
36  *
37  * /opt/apps/[package_name]
38  *           \_____________ /data
39  *           \_____________ /bin
40  *           \_____________ /bin/[id_of_installed_package]
41  *           \_____________ /res/wgt/
42  *                               \___ config.xml
43  *                               \___ [widgets_archive_content]
44  *
45  * 1) Normal Widget
46  *  Developer provides content of res/wgt directory (package contains that directory as root).
47  *
48  * 2) For OSP Service Hybrid App is actually a bit different:
49  *  Root is OSP Service directory, WebApp content is located in [root]/res/wgt
50  *
51  * Temporary directory is directory when widget is placed at the begining
52  * of installation process. After parsing process of config.xml, destination directory is created.
53  */
54 class WidgetLocation
55 {
56     class DirectoryDeletor
57     {
58     public:
59         DirectoryDeletor();
60         DirectoryDeletor(std::string tempPath);
61         ~DirectoryDeletor();
62         std::string getTempPath() const;
63     private:
64         std::string m_dirpath;
65     };
66
67 public:
68     DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
69     DECLARE_EXCEPTION_TYPE(Base, NoTemporaryPath)
70     /**
71      * @brief WidgetLocation
72      *
73      * Creates useless object. Needed by DPL::Optional
74      */
75     WidgetLocation();
76     /**
77      * @brief WidgetLocation Builds paths for widget location during uninstallation
78      *
79      * Uninstallation process needs only installed package directory.
80      *
81      * @param widgetname name of widget
82      */
83     WidgetLocation(const std::string & widgetname);
84     /**
85      * @brief WidgetLocation Builds paths for widget location during installation
86      *
87      * @param widgetname name of widget
88      * @param sourcePath given source path
89      * @param t declaraced type of widget if type is needed
90      *
91      * In destruction removes temporary directory
92      */
93     WidgetLocation(const std::string & widgetname, std::string sourcePath,
94                    WrtDB::PackagingType t = WrtDB::PKG_TYPE_NOMAL_WEB_APP,
95                    bool preload = false);
96
97     WidgetLocation(const std::string & widgetname, std::string sourcePath,
98                    std::string dirPath,
99                    WrtDB::PackagingType t = WrtDB::PKG_TYPE_NOMAL_WEB_APP,
100                    bool preload = false);
101
102     ~WidgetLocation();
103
104     // Installed paths
105     std::string getInstallationDir() const;              // /opt/apps or /usr/apps
106     std::string getPackageInstallationDir() const;       // /opt/apps/[package]
107     std::string getSourceDir() const;                    // /opt/apps/[package]/res/wgt
108     std::string getBinaryDir() const;                    // /opt/apps/[package]/bin
109     std::string getExecFile() const;                    // /opt/apps/[package]/bin/[package]
110     std::string getBackupDir() const;                    // /opt/apps/[package]/backup
111     std::string getBackupSourceDir() const;              // /opt/apps/[package]/backup/res/wgt
112     std::string getBackupBinaryDir() const;              // /opt/apps/[package]/backup/bin
113     std::string getBackupExecFile() const;              // /opt/apps/[package]/backup/bin/[package]
114     std::string getBasePrivateDir() const;                  // /opt/apps
115
116     // Temporary paths
117     /**
118      * @brief getTemporaryRootDir
119      * @return value of root for developer's provide package (root of unpacked .wgt file)
120      */
121     std::string getTemporaryPackageDir() const;
122     /**
123      * @brief getTemporaryRootDir
124      *
125      * Value of this will differs according to type of installed widget.
126      *
127      * @return value of root for content in temporary directory to be copied into 'res/wgt'
128      */
129     std::string getTemporaryRootDir() const;
130     /**
131      * @brief getConfigurationDir Returns rott directory for configuration requirements
132      *
133      * 1) For packed widgets it is just root of unpacked sources
134      * 2) For browser installation it is directory name of widget passed to installer
135      *
136      * @return configuration directory
137      */
138     std::string getConfigurationDir() const;
139
140     //icons
141     /**
142      * @brief setIconTargetFilenameForLocale set installed ion path according to locale
143      * @param icon path of application icon
144      */
145     void setIconTargetFilenameForLocale(const std::string &icon);
146     /**
147      * @brief getIconTargetFilename gets icon path suffix for locale
148      * @param languageTag language tag
149      * @return value of suffix of path
150      */
151     DPL::String getIconTargetFilename(const DPL::String& languageTag) const;
152     /**
153      * @brief getIconTargetFilename gets icon full path
154      * @param languageTag language tag
155      * @return value of full path
156      */
157     std::string getInstalledIconPath() const;
158
159     /**
160      * @brief getWidgetSourcePath return widget's source path given to installer
161      * @return value of source path
162      */
163     std::string getWidgetSource() const;
164     /**
165      * @brief pkgname Returns pkgname
166      * @return pkgname
167      */
168     DPL::String getPkgname() const;
169
170     //external files
171     /**
172      * @brief registerExternalFile Registers file for database registration
173      * @param file
174      *
175      * Registered file will be stored in database and removed automatically a
176      *
177      * @return
178      */
179     void registerExternalLocation(const std::string & file);
180     /**
181      * @brief listExternalFile list all file to be registered
182      */
183     WrtDB::ExternalLocationList listExternalLocations() const;
184
185 private:
186     std::string m_widgetSource;                   // Source widget zip file/widget url
187     std::string m_pkgname;                        //name of package
188     std::string m_iconPath;                       //installed icon path
189     WrtDB::PackagingType m_type;
190     std::shared_ptr<DirectoryDeletor> m_temp;      //directory
191     WrtDB::ExternalLocationList m_externals;
192     std::string m_installedPath;
193 };
194
195 #endif // WRT_INSTALLER_SRC_MISC_WIDGET_LOCATION_H