Change filepath 10/237610/1
authorJunghyun Yeon <jungh.yeon@samsung.com>
Thu, 2 Jul 2020 00:45:22 +0000 (09:45 +0900)
committerJunghyun Yeon <jungh.yeon@samsung.com>
Thu, 2 Jul 2020 00:45:22 +0000 (09:45 +0900)
Its path has changed.

Related changes:
[app-installers] : https://review.tizen.org/gerrit/#/c/platform/core/appfw/app-installers/+/237608

Change-Id: Ib4420a7190ea5378a25cf2fc15d41bf2b9faa6eb
Signed-off-by: Junghyun Yeon <jungh.yeon@samsung.com>
13 files changed:
src/tpk/external_dirs.cc
src/tpk/external_dirs.h
src/tpk/step/filesystem/step_create_tpk_symbolic_link.cc
src/tpk/step/filesystem/step_create_tpk_symbolic_link.h
src/tpk/step/filesystem/step_tpk_prepare_package_directory.cc
src/tpk/step/filesystem/step_tpk_update_package_directory.cc
src/tpk/tpk_app_query_interface.cc
src/tpk/tpk_installer.cc
src/tpk/tpk_installer.h
src/tpk/tpk_installer_factory.cc
src/unit_tests/manifest_test.h
src/unit_tests/smoke_test.cc
src/unit_tests/tpk_smoke_utils.h

index 946d03aa0bb7604f90665e062ca1e41db935ffdc..9d9a798b167e932263c9d07705576870bd9b3191 100644 (file)
@@ -5,7 +5,7 @@
 #include "tpk/external_dirs.h"
 
 #include <common/privileges.h>
-#include <common/pkgmgr_query.h>
+#include <common/utils/pkgmgr_query.h>
 #include <common/shared_dirs.h>
 #include <common/utils/glist_range.h>
 #include <manifest_parser/utils/logging.h>
index 470a7980ba87c396041ea94917ac67c5bc11df6e..aa058baaf330b86b0a4964cc02650212f18e437f 100644 (file)
@@ -5,7 +5,7 @@
 #ifndef TPK_EXTERNAL_DIRS_H_
 #define TPK_EXTERNAL_DIRS_H_
 
-#include <common/request.h>
+#include <common/utils/request.h>
 #include <pkgmgrinfo_basic.h>
 
 #include <string>
index 5bcffed61e44e00210b8763979b16e0ba1ded97e..716a6e31202835c2fa2fc33679be137fa59b4a08 100644 (file)
@@ -5,7 +5,7 @@
 #include <boost/filesystem.hpp>
 #include <boost/system/error_code.hpp>
 
-#include <common/app_installer.h>
+#include <common/installer/app_installer.h>
 #include <common/step/step.h>
 #include <common/installer_context.h>
 #include <common/utils/file_util.h>
index 63cc4f62ae79dfda9d9ad98cd2132abcfa574086..f85caecd47c6d665b0833bf324548874972d2953 100644 (file)
@@ -5,7 +5,7 @@
 
 #include <manifest_parser/utils/logging.h>
 
-#include <common/app_installer.h>
+#include <common/installer/app_installer.h>
 
 namespace tpk {
 namespace filesystem {
index 71ba53de5a6f1c3a49dd79efdef52faa55807215..f9fc9a9e9d1379f420d3a78abff1a793177851c3 100644 (file)
@@ -7,7 +7,7 @@
 #include <boost/filesystem/operations.hpp>
 #include <boost/system/error_code.hpp>
 
-#include <common/paths.h>
+#include <common/utils/paths.h>
 #include <common/utils/file_util.h>
 
 #include "tpk/tpk_mount_path.h"
index 5d01ad63697922bd1a08e428c563a1e96cd4c116..6993ccb16b61dfe6871cd2959864cbb9dd78fd4f 100644 (file)
@@ -7,7 +7,7 @@
 #include <boost/filesystem/operations.hpp>
 #include <boost/system/error_code.hpp>
 
-#include <common/paths.h>
+#include <common/utils/paths.h>
 #include <common/utils/file_util.h>
 
 #include <vector>
index 1f44687006194d3875936735c0b61774351d44b1..c25ae1145c2da973ee1721f05ac69f1e3d64ddf8 100644 (file)
@@ -11,9 +11,9 @@
 #include <boost/filesystem/path.hpp>
 #include <boost/system/error_code.hpp>
 
-#include <common/pkgmgr_query.h>
-#include <common/request.h>
+#include <common/utils/pkgmgr_query.h>
 #include <common/utils/file_util.h>
+#include <common/utils/request.h>
 
 #include <manifest_parser/utils/logging.h>
 #include <tpk_manifest_handlers/application_manifest_constants.h>
index c40f0acc308dfc0439e20239ae332538e142c178..b92dfa91f8f7aceb5188a32d8349dc19a99dcb9d 100644 (file)
@@ -1,7 +1,7 @@
 /* Copyright 2015 Samsung Electronics, license APACHE-2.0, see LICENSE file */
 #include "tpk/tpk_installer.h"
 
-#include <common/app_installer.h>
+#include <common/installer/app_installer.h>
 #include <common/privileges.h>
 #include <common/step/security/step_privilege_compatibility.h>
 #include <common/step/security/step_recover_privilege_compatibility.h>
index 17332a231d7eb35c4b65647e3fff71056468b9ae..810b07d7cb8078e097a61f3e8d8bd2fe72a5f1d0 100644 (file)
@@ -3,7 +3,7 @@
 #ifndef TPK_TPK_INSTALLER_H_
 #define TPK_TPK_INSTALLER_H_
 
-#include <common/app_installer.h>
+#include <common/installer/app_installer.h>
 #include <common/pkgmgr_interface.h>
 #include <manifest_parser/utils/logging.h>
 
index f8f7a5fc6d23911567b88ac33ca2155d18af0583..c3cd57b1d45ce04053e20bf12ed0ec7bf55930a0 100644 (file)
@@ -15,7 +15,7 @@
 #include <string>
 
 #include "common/pkgmgr_interface.h"
-#include "common/pkgmgr_query.h"
+#include "common/utils/pkgmgr_query.h"
 
 namespace ci = common_installer;
 
index 8101a5862603f48d5b480e54e6f965d314baa69e..7fcc18dc671fc5bc2b3eae15d16c984bba3af001 100644 (file)
@@ -8,9 +8,9 @@
 #include <boost/filesystem/path.hpp>
 
 #include <common/installer_context.h>
-#include <common/request.h>
 #include <common/step/configuration/step_parse_manifest.h>
 #include <common/utils/glist_range.h>
+#include <common/utils/request.h>
 
 #include <glib.h>
 #include <gtest/gtest.h>
index 9fac9359597b9d4951d16ad159717dcdc4f9ae7a..07768a9242fb8ea1f4e4ac53d80c73dabe7ec307 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <common/utils/subprocess.h>
 #include <common/utils/file_util.h>
-#include <common/pkgmgr_query.h>
+#include <common/utils/pkgmgr_query.h>
 #include <unit_tests/common/smoke_utils.h>
 
 #include <gtest/gtest.h>
index 57a76ad1d9c2ed91a60d95f9234179e7e68d7efd..18d00defe278fff36a8752707ef5abd6604fddec 100644 (file)
@@ -5,7 +5,7 @@
 #ifndef UNIT_TESTS_TPK_SMOKE_UTILS_H_
 #define UNIT_TESTS_TPK_SMOKE_UTILS_H_
 
-#include <common/app_installer.h>
+#include <common/installer/app_installer.h>
 #include <common/pkgmgr_interface.h>
 #include <common/step/configuration/step_fail.h>
 #include <unit_tests/common/smoke_utils.h>