tizen beta release
[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/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 const char PLUGIN_INSTALL_SEMAPHORE[] = "/.wrt_plugin_install_lock";
33
34 bool lockPluginInstallation()
35 {
36     Try {
37         DPL::Semaphore lock(PLUGIN_INSTALL_SEMAPHORE);
38         return true;
39     }
40     Catch(DPL::Semaphore::Exception::CreateFailed){
41         LogError("create");
42         return false;
43     }
44     Catch(DPL::Semaphore::Exception::Base){
45         return false;
46     }
47 }
48
49 bool unlockPluginInstallation()
50 {
51     Try {
52         DPL::Semaphore::Remove(PLUGIN_INSTALL_SEMAPHORE);
53         return true;
54     }
55     Catch(DPL::Semaphore::Exception::Base){
56         return false;
57     }
58 }
59
60 bool checkPluginInstallationRequired()
61 {
62     std::string installRequest =
63         std::string(GlobalConfig::GetPluginInstallInitializerName());
64
65     FileState::Type installationRequest =
66         checkFile(installRequest);
67
68     switch (installationRequest) {
69         case FileState::FILE_EXISTS:
70             return true;
71         case FileState::FILE_NOT_EXISTS:
72             return false;
73         default:
74         LogWarning("Opening installation request file failed");
75         return false;
76     }
77 }
78
79 bool removeInstallationRequiredFlag()
80 {
81     std::string installRequest =
82         std::string(GlobalConfig::GetPluginInstallInitializerName());
83
84     return removeFile(installRequest);
85 }
86
87 //checks if file exists and is regular file
88 FileState::Type checkFile(const std::string& filename)
89 {
90     struct stat tmp;
91
92     if (-1 == stat(filename.c_str(), &tmp)) {
93         if (ENOENT == errno) {
94             return FileState::FILE_NOT_EXISTS;
95         }
96         return FileState::FILE_READ_DATA_ERROR;
97     } else if (!S_ISREG(tmp.st_mode)) {
98         return FileState::FILE_EXISTS_NOT_REGULAR;
99     }
100     return FileState::FILE_EXISTS;
101 }
102
103 bool removeFile(const std::string& filename)
104 {
105     if (0 != unlink(filename.c_str())) {
106         return false;
107     }
108
109     return true;
110 }
111 } //namespace PluginUtils