FastDeploy  latest
Fast & Easy to Deploy!
path.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <string>
18 #include <vector>
19 #include <fstream>
20 #ifdef _MSC_VER
21 #define PATH_SEP "\\"
22 #else
23 #define PATH_SEP "/"
24 #endif
25 
26 namespace fastdeploy {
27 
28 inline std::string PathJoin(const std::vector<std::string>& paths,
29  const std::string& sep = PATH_SEP) {
30  if (paths.size() == 1) {
31  return paths[0];
32  }
33  std::string filepath = "";
34  for (const auto& path : paths) {
35  if (filepath == "") {
36  filepath += path;
37  continue;
38  }
39  if (path[0] == sep[0] || filepath.back() == sep[0]) {
40  filepath += path;
41  } else {
42  filepath += sep + path;
43  }
44  }
45  return filepath;
46 }
47 
48 inline std::string PathJoin(const std::string& folder,
49  const std::string& filename,
50  const std::string& sep = PATH_SEP) {
51  return PathJoin(std::vector<std::string>{folder, filename}, sep);
52 }
53 
54 inline std::string GetDirFromPath(const std::string& path) {
55  auto pos = path.find_last_of(PATH_SEP);
56  if (pos == std::string::npos) {
57  return "";
58  }
59  // The root path in UNIX systems
60  if (pos == 0) {
61  return "/";
62  }
63  return path.substr(0, pos);
64 }
65 
66 inline bool CheckFileExists(const std::string& path) {
67  std::fstream fin(path, std::ios::in);
68  if (!fin) {
69  return false;
70  }
71  return true;
72 }
73 
74 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16