Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_mobile / plugins-installer / plugin_utils.cpp
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    plugin-utils.cpp
18  * @author
19  * @version 1.0
20  * @brief   Header file for plugin util
21  */
22
23 #include "plugin_utils.h"
24 #include <dpl/semaphore.h>
25 #include <dpl/exception.h>
26 #include <dpl/log/log.h>
27 #include <dpl/wrt-dao-ro/global_config.h>
28
29 using namespace WrtDB;
30
31 namespace PluginUtils {
32 //checks if file exists and is regular file
33 bool checkFileExistance(const std::string& filename)
34 {
35     struct stat tmp;
36
37     if (0 == stat(filename.c_str(), &tmp) && S_ISREG(tmp.st_mode)) {
38         return true;
39     }
40     return false;
41 }
42
43 std::string cutOffFileName(const std::string& path)
44 {
45     size_t found = path.find_last_of("/");
46     if (found == std::string::npos) {
47         return path;
48     } else {
49         return path.substr(0, found);
50     }
51 }
52
53 bool checkPath(const std::string& path)
54 {
55     struct stat st;
56     if (0 == stat(path.c_str(), &st) && S_ISDIR(st.st_mode)) {
57         return true;
58     }
59     LogError("Cannot access directory [ " << path << " ]");
60     return false;
61 }
62
63 bool checkPaths()
64 {
65     bool if_ok = true;
66     if_ok &= (checkPath(cutOffFileName(
67                             GlobalConfig::GetWrtDatabaseFilePath())));
68     if (!if_ok) {
69         LogError(
70             "Path <" << GlobalConfig::GetWrtDatabaseFilePath() <<
71             "> does not exist.");
72     }
73
74     if_ok &= (checkPath(GlobalConfig::GetDevicePluginPath()));
75     if (!if_ok) {
76         LogError(
77             "Path <" << GlobalConfig::GetDevicePluginPath() <<
78             "> does not exist.");
79     }
80
81     if_ok &= (checkPath(GlobalConfig::GetUserInstalledWidgetPath()));
82     if (!if_ok) {
83         LogError(
84             "Path <" << GlobalConfig::GetUserInstalledWidgetPath() <<
85             "> does not exist.");
86     }
87     return if_ok;
88 }
89 } //namespace PluginUtils