diff options
Diffstat (limited to 'src/misc/widget_location.cpp')
-rw-r--r-- | src/misc/widget_location.cpp | 153 |
1 files changed, 153 insertions, 0 deletions
diff --git a/src/misc/widget_location.cpp b/src/misc/widget_location.cpp new file mode 100644 index 0000000..3427433 --- /dev/null +++ b/src/misc/widget_location.cpp @@ -0,0 +1,153 @@ +/* + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* + * @file widget_location.cpp + * @author Iwanek Tomasz (t.iwanek@smasung.com) + */ +#include "widget_location.h" + +#include <dpl/utils/wrt_utility.h> +#include <dpl/wrt-dao-ro/global_config.h> +#include <dpl/assert.h> +#include <dpl/log/log.h> +#include <dpl/sstream.h> +#include <dpl/localization/localization_utils.h> + +#include <widget_install/task_commons.h> + + +WidgetLocation::DirectoryDeletor::DirectoryDeletor() +{ + m_dirpath = Jobs::WidgetInstall::createTempPath(); +} + +WidgetLocation::DirectoryDeletor::~DirectoryDeletor() +{ + LogDebug("Removing widget installation temporary directory: " << m_dirpath.c_str()); + _WrtUtilRemoveDir(m_dirpath.c_str()); +} + +std::string WidgetLocation::DirectoryDeletor::getTempPath() const +{ + return m_dirpath; +} + +WidgetLocation::WidgetLocation() : m_browser(false) +{ +} + +WidgetLocation::WidgetLocation(const std::string & widgetname) : m_pkgname(widgetname), m_browser(false) +{ +} + +WidgetLocation::~WidgetLocation() +{ +} + +WidgetLocation::WidgetLocation(const std::string & widgetname, + std::string sourcePath, + bool browserRequest, + WrtDB::PkgType t): + m_pkgname(widgetname), + m_widgetSource(sourcePath), + m_browser(browserRequest), + m_type(t), + m_temp(new WidgetLocation::DirectoryDeletor()) +{ +} + +std::string WidgetLocation::getInstallationDir() const +{ + return std::string(WrtDB::GlobalConfig::GetUserInstalledWidgetPath()); +} + +std::string WidgetLocation::getPackageInstallationDir() const +{ + return std::string(WrtDB::GlobalConfig::GetUserInstalledWidgetPath()) + "/" + + m_pkgname; +} + +std::string WidgetLocation::getSourceDir() const +{ + return std::string(WrtDB::GlobalConfig::GetUserInstalledWidgetPath()) + "/" + + m_pkgname + "/" + WrtDB::GlobalConfig::GetWidgetSrcPath(); +} + +std::string WidgetLocation::getBinaryDir() const +{ + return std::string(WrtDB::GlobalConfig::GetUserInstalledWidgetPath()) + "/" + + m_pkgname + "/" + WrtDB::GlobalConfig::GetUserWidgetExecPath(); +} + +std::string WidgetLocation::getBackupDir() const +{ + return getPackageInstallationDir() + "/backup"; +} + +std::string WidgetLocation::getTemporaryPackageDir() const +{ + return m_temp->getTempPath(); +} + +bool WidgetLocation::browserRequest() const +{ + return m_browser; +} + +std::string WidgetLocation::getTemporaryRootDir() const +{ + if(m_type == WrtDB::PKG_TYPE_TIZEN_WITHSVCAPP) + { + return getTemporaryPackageDir() + "/" + WrtDB::GlobalConfig::GetWidgetSrcPath(); + } + else + { + return getTemporaryPackageDir(); + } +} + +std::string WidgetLocation::getConfigurationDir() const +{ + if(m_browser) + { + std::string path = "."; + int index = m_widgetSource.find_last_of("\\/"); + if (index != std::string::npos) + { + path = m_widgetSource.substr(0, index); + } + return path; + } + else + { + return getTemporaryRootDir(); + } +} + +std::string WidgetLocation::getInstalledIconPath() const +{ + return m_iconPath; +} + +std::string WidgetLocation::getWidgetSource() const +{ + return m_widgetSource; +} + +void WidgetLocation::setIconTargetFilenameForLocale(const std::string & icon) +{ + m_iconPath = icon; +} |