IODA
StringFuncs.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2021 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /*! \addtogroup ioda_cxx_api
9  *
10  * @{
11  * \file SFuncs.h
12  * \brief Miscellaneous string functions
13  */
14 
15 #include <string>
16 #include <vector>
17 
18 #include "ioda/defs.h"
19 
20 namespace ioda {
21 /// @brief Split a string based on occurances of the '/' character.
22 /// @ingroup ioda_cxx_api
23 /// @param p is the input path
24 /// @return The split path components.
25 IODA_DL std::vector<std::string> splitPaths(const std::string& p);
26 
27 /// @brief The inverse of splitPaths. Concatenate strings, separating with '/'.
28 /// @ingroup ioda_cxx_api
29 /// @param p represents the path components.
30 /// @param start is an index of the vector to start with.
31 /// @param end is an index of the vector to end with. If set to std::string::npos,
32 /// then the end will be determined from p.size().
33 /// @return The resulting string.
34 IODA_DL std::string condensePaths(const std::vector<std::string>& p, size_t start = 0,
35  size_t end = std::string::npos);
36 
37 /// @brief Concatenate equal-length vectors of strings element-by-element. Removes trailing spaces.
38 /// @param stringVectors represents the vectors of strings all stored together in one vector.
39 /// @return The resulting vector of strings.
40 IODA_DL std::vector<std::string> concatenateStringVectors(
41  const std::vector<std::vector<std::string>>& stringVectors);
42 
43 /// @brief Split `path` into substrings separated by `@` characters, then concatenate them in
44 /// reverse order, replacing the `@`s with `/`s.
45 ///
46 /// For example, longitude@MetaData becomes MetaData/longitude.
47 ///
48 /// @param path is the path to convert
49 /// @return The converted path.
50 IODA_DL std::string convertV1PathToV2Path(const std::string & path);
51 
52 } // namespace ioda
53 
54 /// @}
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
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.