/* * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * * https://www.orfeo-toolbox.org/ * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef otbStringUtils_h #define otbStringUtils_h #include #include #include #include #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wshadow" #pragma GCC diagnostic ignored "-Wunused-parameter" #pragma GCC diagnostic ignored "-Wunused-local-typedefs" #include #include #include #include #pragma GCC diagnostic pop #else #include #include #include #include #endif namespace otb { namespace Utils { template inline Res LexicalCast(In const& in, std::string const& kind) { try { return boost::lexical_cast(in); } catch (boost::bad_lexical_cast&) { std::ostringstream oss; oss << "Cannot decode '" << in << "' as this is not a valid value for '" << kind << "'"; throw std::runtime_error(oss.str()); } } /**\ingroup Utils * Converts a delimiter separated string into a collection of \c T's. * \tparam Collection type. It shall define \c value_type and \c push_back() * \param[out] ret output collection. * \param[in] str input string * \param[in] errmsg a msg complement used to build the error message to be shown if there is \c lexical_cast exception. See \c otb:Utils::LexicalCast(). * \param delims delimiter characters (space is default) * \throw std::bad_alloc in case of exhausted memory * \throw std::runtime_error in case an element from the input string cannot be converted into a valid \c T instance. * \pre delims shall not be null (untested) * * \see \c otb::Utils::LexicalCast() */ template void ConvertStringToVector(std::string const& str, T& ret, std::string const& errmsg, const char* delims = " ") { typedef std::vector> ListType; ListType split; boost::split(split, str, boost::is_any_of(delims)); for (size_t i = 0; i < split.size(); i++) { typename T::value_type value = LexicalCast(split[i], errmsg); ret.push_back(value); } } /**\ingroup Utils * split a given std::string of into key value based on given delimiter * string. The default delimiter is '='. If the string does not have a delimiter * the key is set to input string and value is set to defValue. * \param[in] str input string * \param key[out] An std::string reference where key will be stored * \param value[out] a reference of \cT where value will be stored * \param defValue[in] a default value if there is no delimiter fo * \param[in] errmsg a msg complement used to build the error message to be shown if there is \c lexical_cast exception. See \cotb:Utils::LexicalCast(). * \param delims delimiter characters (space is default) * \throw std::bad_alloc in case of exhausted memory * \throw std::runtime_error in case an element from the input string cannot be converted into a valid \c T instance. * \pre delims shall not be null (untested) * * \see \c otb::Utils::LexicalCast() */ template void SplitStringToSingleKeyValue(const std::string& str, std::string& key, T& value, const T& defValue, std::string const& errmsg, const std::string delims = "=") { typedef boost::iterator_range BoostRangeIteratorType; typedef std::list ListType; ListType split; boost::split(split, str, boost::is_any_of(delims), boost::token_compress_on); typename ListType::iterator it = split.begin(); BoostRangeIteratorType kIt = boost::trim_copy((*it)); key.assign(kIt.begin(), kIt.end()); ++it; if (it != split.end()) { value = LexicalCast(boost::trim_copy(*it), errmsg); ++it; } else { value = defValue; } } } // end namespace Utils } // end namespace otb #endif // otbStringUtils_h