Replace obsoleted util headers 20/121720/1
authorMu-Woong Lee <muwoong.lee@samsung.com>
Tue, 28 Mar 2017 13:10:04 +0000 (22:10 +0900)
committerMu-Woong Lee <muwoong.lee@samsung.com>
Tue, 28 Mar 2017 13:10:04 +0000 (22:10 +0900)
Change-Id: Ib239fff20cbd3163cee14786a6ac6237696b6858
Signed-off-by: Mu-Woong Lee <muwoong.lee@samsung.com>
src/client/context_store.cpp
src/server/SchemaLoader.cpp
src/server/StoreManager.cpp
src/shared/ContextStoreTypesPrivate.h
src/shared/ContextStoreUtil.cpp [deleted file]
src/shared/ContextStoreUtil.h [deleted file]

index 2907759..0451aab 100644 (file)
@@ -18,7 +18,6 @@
 #include <string>
 #include <map>
 #include <ContextStoreTypesPrivate.h>
-#include <ContextStoreUtil.h>
 #include <context_store_internal.h>
 #include "ContextStore.h"
 #include "ContextStoreManager.h"
index 146ed54..edb205f 100644 (file)
@@ -20,7 +20,7 @@
 #include <sstream>
 #include <regex>
 #include <dirent.h>
-#include <PathUtil.h>
+#include <ServerUtil.h>
 #include "DatabaseManager.h"
 #include "Schema.h"
 #include "SchemaChecker.h"
@@ -104,7 +104,7 @@ bool SchemaLoader::load()
 
 bool SchemaLoader::__createMetadataTables()
 {
-       std::string path = PathUtil::getSystemPath(TZ_SYS_DATA, BASE_PATH "/init.sql");
+       std::string path = util::getSystemPath(TZ_SYS_DATA, BASE_PATH "/init.sql");
        IF_FAIL_RETURN(!path.empty(), false);
 
        std::ifstream inFile(path);
@@ -354,7 +354,7 @@ Database& SystemSchemaLoader::__getDatabase()
 
 std::string SystemSchemaLoader::__getSchemaDir()
 {
-       return PathUtil::getSystemPath(TZ_SYS_DATA, BASE_PATH "/system");
+       return util::getSystemPath(TZ_SYS_DATA, BASE_PATH "/system");
 }
 
 
@@ -369,5 +369,5 @@ Database& UserSchemaLoader::__getDatabase()
 
 std::string UserSchemaLoader::__getSchemaDir()
 {
-       return PathUtil::getSystemPath(TZ_SYS_DATA, BASE_PATH "/user");
+       return util::getSystemPath(TZ_SYS_DATA, BASE_PATH "/user");
 }
index 5a6cee0..9119884 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
  */
 
-#include <ContextStoreUtil.h>
 #include "DatabaseManager.h"
 #include "UserStore.h"
 #include "SystemStore.h"
index 9dbd2d0..3651bb8 100644 (file)
@@ -18,7 +18,7 @@
 #define __CONTEXT_STORE_TYPES_PRIVATE_H__
 
 #include <ContextTypes.h>
-#include <ContextErrorUtil.h>
+#include <SharedUtil.h>
 
 #define CTX_CONTEXT_STORE      "ContextStore"
 #define CTX_CONTEXT_STORE_SPEC \
diff --git a/src/shared/ContextStoreUtil.cpp b/src/shared/ContextStoreUtil.cpp
deleted file mode 100644 (file)
index 5d6d5f2..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (c) 2017 Samsung Electronics Co., Ltd.
- *
- * 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.
- */
-
-#include "ContextStoreTypesPrivate.h"
-#include "ContextStoreUtil.h"
-
-using namespace ctx;
-
-std::vector<std::string> util::tokenizeString(std::string& in, const char* delim)
-{
-       std::vector<std::string> tokens;
-       std::size_t begin = 0;
-       std::size_t end = in.find(delim, 0);
-
-       while (end != std::string::npos) {
-               tokens.push_back(in.substr(begin, end - begin));
-               begin = end + 1;
-               end = in.find(delim, begin);
-       }
-
-       return tokens;
-}
diff --git a/src/shared/ContextStoreUtil.h b/src/shared/ContextStoreUtil.h
deleted file mode 100644 (file)
index 52348e8..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (c) 2017 Samsung Electronics Co., Ltd.
- *
- * 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.
- */
-
-#ifndef __CONTEXT_STORE_UTIL_H__
-#define __CONTEXT_STORE_UTIL_H__
-
-#include <vector>
-#include <string>
-
-namespace ctx { namespace util {
-
-       std::vector<std::string> tokenizeString(std::string& in, const char* delim);
-
-} }
-
-#endif