Remove unused source
[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()
47 {
48     LogInfo("Step: Creating temporary path");
49
50    // Temporary path
51    std::ostringstream tempPathBuilder;
52
53    tempPathBuilder << WrtDB::GlobalConfig::GetUserInstalledWidgetPath();
54    tempPathBuilder << "/";
55    tempPathBuilder << TEMPORARY_PATH_POSTFIX;
56    tempPathBuilder << "_";
57
58    timeval tv;
59    gettimeofday(&tv, NULL);
60    tempPathBuilder <<
61    (static_cast<unsigned long long>(tv.tv_sec) * 1000000ULL +
62     static_cast<unsigned long long>(tv.tv_usec));
63
64    std::string tempPath = tempPathBuilder.str();
65
66    // Remove old path if any
67    struct stat fileInfo;
68
69    if (stat(tempPath.c_str(), &fileInfo) == 0) {
70        if(!WrtUtilRemove(tempPath)){
71            ThrowMsg(Exceptions::RemovingFolderFailure,
72                     "Failed to to remove temporary directory");
73        }
74    }
75    // Create new path
76    if(!WrtUtilMakeDir(tempPath, TEMPORARY_PATH_MODE)){
77        ThrowMsg(Exceptions::InternalError, "Failed to create temporary directory");
78    }
79
80    return tempPath;
81 }
82
83 void createTempPath(const std::string& path)
84 {
85    if(!WrtUtilMakeDir(path, TEMPORARY_PATH_MODE)){
86        ThrowMsg(Exceptions::InternalError, "Failed to create temporary directory");
87    }
88 }
89
90 } // WidgetInstall
91 } // Jobs