[Release] wrt-installer_0.0.89
[framework/web/wrt-installer.git] / src / jobs / widget_install / task_commons.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       task_commons.cpp
18  * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
19  * @version    1.0
20  */
21
22 #include "task_commons.h"
23 #include <unistd.h>
24 #include <sstream>
25 #include <ftw.h>
26 #include <sys/stat.h>
27 #include <sys/time.h>
28 #include <dpl/wrt-dao-ro/global_config.h>
29 #include <dpl/log/log.h>
30 #include <dpl/exception.h>
31 #include <dpl/errno_string.h>
32 #include <dpl/utils/wrt_utility.h>
33 #include <widget_install/widget_install_errors.h>
34
35 namespace Jobs {
36 namespace WidgetInstall {
37
38 namespace {
39
40 const char * const TEMPORARY_PATH_POSTFIX = "temp";
41 const mode_t TEMPORARY_PATH_MODE = 0775;
42
43 } // namespace
44
45
46 std::string createTempPath(bool preload)
47 {
48     LogInfo("Step: Creating temporary path");
49
50    // Temporary path
51    std::ostringstream tempPathBuilder;
52
53    if (preload) {
54        tempPathBuilder << WrtDB::GlobalConfig::GetUserPreloadedWidgetPath();
55    } else {
56        tempPathBuilder << WrtDB::GlobalConfig::GetUserInstalledWidgetPath();
57    }
58    tempPathBuilder << WrtDB::GlobalConfig::GetTmpDirPath();
59    tempPathBuilder << "/";
60    tempPathBuilder << TEMPORARY_PATH_POSTFIX;
61    tempPathBuilder << "_";
62
63    timeval tv;
64    gettimeofday(&tv, NULL);
65    tempPathBuilder <<
66    (static_cast<unsigned long long>(tv.tv_sec) * 1000000ULL +
67     static_cast<unsigned long long>(tv.tv_usec));
68
69    std::string tempPath = tempPathBuilder.str();
70
71    // Remove old path if any
72    struct stat fileInfo;
73
74    if (stat(tempPath.c_str(), &fileInfo) == 0) {
75        if(!WrtUtilRemove(tempPath)){
76            ThrowMsg(Exceptions::RemovingFolderFailure,
77                     "Failed to to remove temporary directory");
78        }
79    }
80    // Create new path
81    if(!WrtUtilMakeDir(tempPath, TEMPORARY_PATH_MODE)){
82        ThrowMsg(Exceptions::InternalError, "Failed to create temporary directory");
83    }
84
85    return tempPath;
86 }
87
88 void createTempPath(const std::string& path)
89 {
90    if(!WrtUtilMakeDir(path, TEMPORARY_PATH_MODE)){
91        ThrowMsg(Exceptions::InternalError, "Failed to create temporary directory");
92    }
93 }
94
95 } // WidgetInstall
96 } // Jobs