14 std::vector<std::string>
splitPaths(
const std::string& p) {
17 std::vector<string> res;
18 if (p.empty())
return res;
21 res.emplace_back(
"/");
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);
36 "An exception occurred inside ioda while performing path expansion.",
ioda_Here())
41 std::string
condensePaths(
const std::vector<std::string>& p,
size_t start,
size_t end) {
44 if (end == std::string::npos) end = p.size();
46 for (
size_t i = start; i < end; ++i) {
47 if ((i != start) && (res !=
"/")) res.append(
"/");
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())
64 for (
size_t entry = 0; entry < stringVectors[vectorIndex].size(); entry++) {
65 derivedVector.at(entry) += stringVectors[vectorIndex].at(entry);
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);
87 const char delim =
'@';
90 if (path.find(delim) == std::string::npos)
return path;
92 std::vector<std::string> tokens;
93 size_t prev = 0, pos = 0;
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));
100 }
while (pos < path.length() && prev < path.length());
104 for (
auto it = tokens.crbegin(); it != tokens.crend(); ++it) {
105 if (it != tokens.crbegin()) out +=
"/";
111 "An exception occurred inside ioda while converting a path to v2 format.",
ioda_Here())
The ioda exception class.
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 '/'.
IODA_DL std::vector< std::string > splitPaths(const std::string &p)
Split a string based on occurances of the '/' character.
IODA_DL std::string convertV1PathToV2Path(const std::string &path)
Split path into substrings separated by @ characters, then concatenate them in reverse order,...
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.