Fixed typo in launcher_TC
[platform/core/dotnet/launcher.git] / NativeLauncher / inc / utils.h
1 /*
2  * Copyright (c) 2016 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 #ifndef __UTILS_H__
18 #define __UTILS_H__
19
20 #include <string>
21 #include <vector>
22 #include <functional>
23 #include <boost/filesystem.hpp>
24 #include <pkgmgr-info.h>
25
26 #include <launcher_env.h>
27
28 #ifndef PATH_SEPARATOR
29 #define PATH_SEPARATOR '/'
30 #endif
31
32 namespace bf = boost::filesystem;
33 namespace bs = boost::system;
34
35 enum FSFlag : int {
36   FS_NONE              = 0,
37   FS_MERGE_SKIP        = (1 << 0),
38   FS_MERGE_OVERWRITE   = (1 << 1),
39   FS_COMMIT_COPY_FILE  = (1 << 2),
40   FS_PRESERVE_OWNERSHIP_AND_PERMISSIONS = (1 << 3)
41 };
42
43 /**
44  * @brief concat path with PATH_SEPARATOR
45  * @param[in] destination path
46  * @param[in] source path
47  * @return std::string result path
48  */
49 std::string concatPath(const std::string& path1, const std::string& path2);
50
51 /**
52  * @brief get canonicalized absolute Path
53  * @param[in] source path
54  * @return std::string result path
55  */
56 std::string getAbsolutePath(const std::string& path);
57
58 /**
59  * @brief get the directory of file
60  * @param[in] source path
61  * @return std::string result path
62  */
63 std::string getBaseName(const std::string& path);
64
65 /**
66  * @brief replaces all matching substrings of the regular expression with a given replacement
67  * @param[in] original string
68  * @param[in] pattern to match
69  * @param[in] replacement string
70  * @return std::string the modified string
71  */
72 std::string replaceAll(const std::string& str, const std::string& pattern, const std::string& replace);
73
74 /**
75  * @brief get root path
76  * @param[in] package id
77  * @return std::string root path
78  */
79 std::string getRootPath(const std::string& pkgId);
80
81 /**
82  * @brief get exec name
83  * @param[in] package id
84  * @return std::string exec name
85  */
86 std::string getExecName(const std::string& pkgId);
87
88 /**
89  * @brief get app type
90  * @param[in] package id
91  * @return std::string app type
92  */
93 std::string getAppType(const std::string& pkgId);
94
95 /**
96  * @brief get metadata value
97  * @param[in] package id
98  * @param[in] metadata key
99  * @return std::string metadata value
100  */
101 std::string getMetadataValue(const std::string& pkgId, const std::string& key);
102
103 /**
104  * @brief check the package is 'readonly' or not
105  * @param[in] package id
106  * @return bool package readonly value
107  */
108 bool isReadOnlyApp(const std::string& pkgId);
109
110 /**
111  * @brief split path with ":" delimiter and put that in the vector
112  * @param[in] source path
113  * @param[out] string vector
114  */
115 void splitPath(const std::string& path, std::vector<std::string>& out);
116
117 /**
118  * @brief check file exists
119  *        in case of symlink file, check both input file and link reference file.
120  * @param[in] source path
121  * @return bool
122  */
123 bool isFile(const std::string& path);
124
125 /**
126  * @brief check directory exists
127  * @param[in] source path
128  * @return bool
129  */
130 bool isDirectory(const std::string& path);
131
132 /**
133  * @brief check the file is managed assembly or not.
134  * @param[in] file path
135  * @return return true when the file is managed assembly.
136  *         otherwise return false including native image case.
137  */
138 bool isManagedAssembly(const std::string& filePath);
139
140 /**
141  * @brief check the file is native image or not.
142  * @param[in] file path
143  * @return return true when the file is native image.
144  */
145 bool isNativeImage(const std::string& filePath);
146
147 /**
148  * @brief Resolve assembly files from directories and append their paths to the given list.
149  * @remark If a native image exists for an assembly in the same directory, it will be used.
150  *         If multiple assemblies of the same name exist, the first one will be used.
151  * @param[in]  directories  list of directories
152  * @param[out] list         colon-separated string of assembly paths
153  */
154 void addAssembliesFromDirectories(const std::vector<std::string>& directories, std::string& list);
155
156 /**
157  * @brief File search callback
158  * @param[in] path      full path to a resolved file
159  * @param[in] filename  file name
160  */
161 typedef std::function<void (const std::string& path, const std::string& filename)> FileReader;
162
163 /**
164  * @brief Scan all files in the given directory.
165  * @param[in] directory path to a root directory
166  * @param[in] reader    callback for iteration
167  * @param[in] depth     recursive search depth
168  */
169 void scanFilesInDirectory(const std::string& directory, FileReader reader, unsigned int depth);
170
171 /**
172  * @brief copy smack and ownership.
173  * @param[in] get path
174  * @param[in] set path
175  * @param[in] symbolic link
176  */
177 void copySmackAndOwnership(const std::string& fromPath, const std::string& toPath, bool isSymlink = false);
178
179 /**
180  * @brief check whether the path exists or not.
181  * @param[in] source path
182  * @return return true when the path exist.
183  */
184 bool exist(const bf::path& path);
185
186 /**
187  * @brief create the new directory.
188  * @param[in] source path
189  * @return return true when the directory was created.
190  */
191 bool createDir(const bf::path& path);
192
193 /**
194  * @brief copy the directory.
195  * @param[in] path to the source directory
196  * @param[in] path to the target directory
197  * @param[in] filesystem flag
198  * @return return true when the directory was copied.
199  */
200 bool copyDir(const bf::path& path1, const bf::path& path2, FSFlag flags = FS_NONE);
201
202 /**
203  * @brief copy the file.
204  * @param[in] path to the source file
205  * @param[in] path to the target file
206  * @return return true when the file was copied.
207  */
208 bool copyFile(const bf::path& path1, const bf::path& path2);
209
210 /**
211  * @brief moves of renames the file or directory.
212  * @param[in] path to the source file
213  * @param[in] path to the target file
214  * @return return true when the file was moved.
215  */
216 bool moveFile(const bf::path& path1, const bf::path& path2);
217
218 /**
219  * @brief removes the file or empty directory.
220  * @param[in] source path
221  * @return return true when the file was deleted.
222  */
223 bool removeFile(const bf::path& path);
224
225 /**
226  * @brief removes the file or directory and all its contents.
227  * @param[in] source path
228  * @return return true when the file or directory was deleted.
229  */
230 bool removeAll(const bf::path& path);
231
232 /**
233  * @brief change command name of the current process for access via ps command
234  * @param[in] name
235  */
236 void setCmdName(const std::string& name);
237
238 /**
239  * @brief Get the file name from the specified path.
240  * @remark An empty string will be returned if the path string ends with a path separator character.
241  * @param[in] path  path to a file
242  * @return a substring after the path separator character
243  */
244 std::string getFileName(const std::string& path);
245
246 /**
247  * @brief Generates a representation called a message digest
248  * @param[in] file path
249  * @return message digest
250  */
251 std::string SHA256(const std::string& path);
252
253 /**
254  * @brief Creates the package information handle from db which is not disabled.
255  *        This function is a wrapper of pkgmgrinfo_pkginfo_get_pkginfo() to handle multi-user case
256  * @param[in] pkg id
257  * @param[out] pkginfo handle
258  * @return 0 if success, otherwise -1
259  */
260 int pkgmgrGetPkgInfo(const std::string& pkgId, pkgmgrinfo_pkginfo_h* handle);
261
262 /**
263  * @brief Creates the application information handle from db.
264  *        This function is a wrapper of pkgmgrinfo_appinfo_get_appinfo() to handle multi-user case
265  * @param[in] app id
266  * @param[out] appinfo handle
267  * @return 0 if success, otherwise -1
268  */
269 int pkgmgrGetAppInfo(const std::string& appId, pkgmgrinfo_appinfo_h* handle);
270
271 /**
272  * @brief Executes the metadata filter query for all the installed packages.
273  *        This function is a wrapper of pkgmgrinfo_appinfo_metadata_filter_foreach() to handle multi-user case
274  * @param[in] metadata filter handle
275  * @param[in] callback function
276  * @param[in] user data
277  * @return 0 if success, otherwise -1
278  */
279 int pkgmgrMDFilterForeach(pkgmgrinfo_appinfo_metadata_filter_h handle,
280                                          pkgmgrinfo_app_list_cb app_cb,
281                                          void *user_data);
282
283 #endif /* __UTILS_H__ */