IODA
StringFuncs.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2020 Ryan Honeyager (ryan@honeyager.info)
3  * (C) Copyright 2021 UCAR
4  *
5  * This software is licensed under the terms of the BSD 2-Clause License.
6  * For details, see the LICENSE file.
7  */
8 
10 
11 #include "ioda/Exception.h"
12 
13 namespace ioda {
14 std::vector<std::string> splitPaths(const std::string& p) {
15  try {
16  using std::string;
17  std::vector<string> res;
18  if (p.empty()) return res;
19  size_t off = 0;
20  if (p[0] == '/') {
21  res.emplace_back("/");
22  off++;
23  }
24 
25  size_t end = 0;
26  while (end != string::npos) {
27  end = p.find('/', off);
28  string s = p.substr(off, end - off);
29  if (!s.empty()) res.push_back(s);
30  off = end + 1;
31  }
32 
33  return res;
34  } catch (...) {
35  std::throw_with_nested(Exception(
36  "An exception occurred inside ioda while performing path expansion.", ioda_Here())
37  .add("path", p));
38  }
39 }
40 
41 std::string condensePaths(const std::vector<std::string>& p, size_t start, size_t end) {
42  try {
43  std::string res;
44  if (end == std::string::npos) end = p.size();
45 
46  for (size_t i = start; i < end; ++i) {
47  if ((i != start) && (res != "/")) res.append("/");
48  res.append(p[i]);
49  }
50 
51  return res;
52  } catch (...) {
53  std::throw_with_nested(Exception("An exception occurred inside ioda.", ioda_Here()));
54  }
55 }
56 
57 std::vector<std::string> concatenateStringVectors(const std::vector<std::vector<std::string> > &stringVectors)
58 {
59  try {
60  std::vector<std::string> derivedVector = stringVectors.at(0);
61  for (size_t vectorIndex = 1; vectorIndex < stringVectors.size(); vectorIndex++) {
62  if (stringVectors[vectorIndex].size() != derivedVector.size())
63  throw Exception("string vectors are of unequal lengths", ioda_Here());
64  for (size_t entry = 0; entry < stringVectors[vectorIndex].size(); entry++) {
65  derivedVector.at(entry) += stringVectors[vectorIndex].at(entry);
66  }
67  }
68  // remove trailing spaces
69  for (std::string& currentEntry : derivedVector) {
70  size_t stringEnd = currentEntry.find_last_not_of(' ');
71  if (stringEnd < currentEntry.size() - 1) {
72  currentEntry.erase(stringEnd + 1, std::string::npos);
73  } else if (stringEnd == std::string::npos) {
74  currentEntry.erase(0, std::string::npos);
75  }
76  }
77  return derivedVector;
78  } catch (...) {
79  std::throw_with_nested(Exception("An exception occurred inside ioda.", ioda_Here()));
80  }
81 
82 
83 }
84 
85 std::string convertV1PathToV2Path(const std::string & path) {
86  try {
87  const char delim = '@';
88 
89  // Only do this swap if an '@' is found.
90  if (path.find(delim) == std::string::npos) return path;
91 
92  std::vector<std::string> tokens;
93  size_t prev = 0, pos = 0;
94  do {
95  pos = path.find(delim, prev);
96  if (pos == std::string::npos) pos = path.length();
97  std::string token = path.substr(prev, pos - prev);
98  if (!token.empty()) tokens.push_back(std::move(token));
99  prev = pos + 1;
100  } while (pos < path.length() && prev < path.length());
101 
102  // Reverse the tokens to get the output path
103  std::string out;
104  for (auto it = tokens.crbegin(); it != tokens.crend(); ++it) {
105  if (it != tokens.crbegin()) out += "/";
106  out += *it;
107  }
108  return out;
109  } catch (...) {
110  std::throw_with_nested(Exception(
111  "An exception occurred inside ioda while converting a path to v2 format.", ioda_Here())
112  .add("path", path));
113  }
114 }
115 
116 } // namespace ioda
IODA's error system.
The ioda exception class.
Definition: Exception.h:54
IODA_DL std::string condensePaths(const std::vector< std::string > &p, size_t start=0, size_t end=std::string::npos)
The inverse of splitPaths. Concatenate strings, separating with '/'.
Definition: StringFuncs.cpp:41
IODA_DL std::vector< std::string > splitPaths(const std::string &p)
Split a string based on occurances of the '/' character.
Definition: StringFuncs.cpp:14
IODA_DL std::string convertV1PathToV2Path(const std::string &path)
Split path into substrings separated by @ characters, then concatenate them in reverse order,...
Definition: StringFuncs.cpp:85
IODA_DL std::vector< std::string > concatenateStringVectors(const std::vector< std::vector< std::string >> &stringVectors)
Concatenate equal-length vectors of strings element-by-element. Removes trailing spaces.
#define ioda_Here()