Fix the terminate routine to avoid deadlock in ewk_shutdown
[platform/framework/web/crosswalk-tizen.git] / common / file_utils.cc
1 /*
2  * Copyright (c) 2015 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 #include "common/file_utils.h"
18
19 #include <sys/types.h>
20 #include <libgen.h>
21 #include <unistd.h>
22
23 #include <algorithm>
24 #include <sstream>
25 #include <string>
26
27 namespace common {
28 namespace utils {
29
30 bool Exists(const std::string& path) {
31   return (access(path.c_str(), F_OK) != -1);
32 }
33
34 std::string BaseName(const std::string& path) {
35   char* p = basename(const_cast<char*>(path.c_str()));
36   return std::string(p);
37 }
38
39 std::string DirName(const std::string& path) {
40   char* p = dirname(const_cast<char*>(path.c_str()));
41   return std::string(p);
42 }
43
44 std::string SchemeName(const std::string& uri) {
45   size_t pos = uri.find(":");
46   if (pos != std::string::npos && pos < uri.length()) {
47     return std::string(uri.substr(0, pos));
48   } else {
49     return uri;
50   }
51 }
52
53 std::string ExtName(const std::string& path) {
54   size_t last_dot = path.find_last_of(".");
55   if (last_dot != 0 && last_dot != std::string::npos) {
56     std::string ext = path.substr(last_dot);
57     size_t end_of_ext = ext.find_first_of("?#");
58     if (end_of_ext != std::string::npos)
59       ext = ext.substr(0, end_of_ext);
60     std::transform(ext.begin(), ext.end(), ext.begin(), ::tolower);
61     return ext;
62   } else {
63     return std::string();
64   }
65 }
66
67 std::string GetUserRuntimeDir() {
68   uid_t uid = getuid();
69   std::stringstream ss;
70   ss << "/run/user/" << uid;
71   std::string path = ss.str();
72   if (!Exists(path)) {
73     path = "/tmp";
74   }
75   return path;
76 }
77
78 }  // namespace utils
79 }  // namespace common