Source code formating unification
[framework/web/wrt-installer.git] / src / wrt-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/exception.h>
25 #include <dpl/log/log.h>
26 #include <dpl/wrt-dao-ro/global_config.h>
27 #include <sys/file.h>
28
29 using namespace WrtDB;
30
31 namespace PluginUtils {
32 const char* PLUGIN_INSTALL_LOCK_FILE = "/tmp/.wrt_plugin_install_lock";
33
34 static int s_plugin_install_lock_fd = -1;
35
36 bool lockPluginInstallation()
37 {
38     int ret = 0;
39
40     LogInfo("Try to lock for plugins installation.");
41
42     s_plugin_install_lock_fd =
43         open(PLUGIN_INSTALL_LOCK_FILE, O_RDONLY | O_CREAT, 0666);
44
45     if (s_plugin_install_lock_fd == -1) {
46         LogError("Lock file open failed!");
47
48         return false;
49     }
50
51     ret = flock(s_plugin_install_lock_fd, LOCK_EX); //lock with waiting
52
53     if (ret == -1) {
54         LogError("Lock failed!");
55
56         close(s_plugin_install_lock_fd);
57         s_plugin_install_lock_fd = -1;
58
59         return false;
60     }
61
62     return true;
63 }
64
65 bool unlockPluginInstallation()
66 {
67     LogInfo("Unlock for plugins installation.");
68
69     if (s_plugin_install_lock_fd != -1) {
70         int ret = 0;
71
72         ret = flock(s_plugin_install_lock_fd, LOCK_UN); //unlock
73
74         if (ret == -1) {
75             LogError("Unlock failed!");
76         }
77
78         close(s_plugin_install_lock_fd);
79         s_plugin_install_lock_fd = -1;
80
81         return true;
82     } else {
83         LogError("Lock file was not created!");
84     }
85
86     return false;
87 }
88
89 bool checkPluginInstallationRequired()
90 {
91     std::string installRequest =
92         std::string(GlobalConfig::GetPluginInstallInitializerName());
93
94     FileState::Type installationRequest =
95         checkFile(installRequest);
96
97     switch (installationRequest) {
98     case FileState::FILE_EXISTS:
99         return true;
100     case FileState::FILE_NOT_EXISTS:
101         return false;
102     default:
103         LogWarning("Opening installation request file failed");
104         return false;
105     }
106 }
107
108 bool removeInstallationRequiredFlag()
109 {
110     std::string installRequest =
111         std::string(GlobalConfig::GetPluginInstallInitializerName());
112
113     return removeFile(installRequest);
114 }
115
116 //checks if file exists and is regular file
117 FileState::Type checkFile(const std::string& filename)
118 {
119     struct stat tmp;
120
121     if (-1 == stat(filename.c_str(), &tmp)) {
122         if (ENOENT == errno) {
123             return FileState::FILE_NOT_EXISTS;
124         }
125         return FileState::FILE_READ_DATA_ERROR;
126     } else if (!S_ISREG(tmp.st_mode)) {
127         return FileState::FILE_EXISTS_NOT_REGULAR;
128     }
129     return FileState::FILE_EXISTS;
130 }
131
132 bool removeFile(const std::string& filename)
133 {
134     if (0 != unlink(filename.c_str())) {
135         return false;
136     }
137
138     return true;
139 }
140 } //namespace PluginUtils