/* Copyright (c) 2021 Xie Meiyi(xiemeiyi@hust.edu.cn) and OceanBase and/or its affiliates. All rights reserved. miniob is licensed under Mulan PSL v2. You can use this software according to the terms and conditions of the Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details. */ // // Created by Longda on 2010 // #ifndef __COMMON_LANG_STRING_H__ #define __COMMON_LANG_STRING_H__ // Basic includes #include #include #include #include #include #include #include #include #include #include #include "common/defs.h" namespace common { /** * remove all white space(like ' ', '\t', '\n') from string */ void strip(std::string &str); char *strip(char *str); /** * Convert an integer size in a padded string * @param[in] size size to be converted and 0 padded * @param[in] pad decimal digits for the string padding * return output 0-padded size string */ std::string size_to_pad_str(int size, int pad); /** * Convert a string to upper case. * @param[in,out] s the string to modify * @return a reference to the string that was modified. */ std::string &str_to_upper(std::string &s); /** * Convert a string to lower case. * @param[in,out] s the string to modify * @return a reference to the string that was modified. */ std::string &str_to_lower(std::string &s); /** * Split string str using 'delimiter's * @param[in] str the string to be split up * @param[in] delims elimiter characters * @param[in,out] results ector containing the split up string */ void split_string(const std::string &str, std::string delim, std::set &results); void split_string(const std::string &str, std::string delim, std::vector &results); void split_string(char *str, char dim, std::vector &results, bool keep_null = false); void merge_string(std::string &str, std::string delim, std::vector &result, size_t result_len = 0); /** * replace old with new in the string */ void replace(std::string &str, const std::string &old, const std::string &new_str); /** * binary to hexadecimal */ char *bin_to_hex(const char *s, const int len, char *hex_buff); /** * hexadecimal to binary */ char *hex_to_bin(const char *s, char *bin_buff, int *dest_len); /** * Convert a number in a string format to a numeric value * @param[in] str input number string * @param[out] val output value * @param[in] radix an optional parameter that specifies the * radix for the conversion. By default, the * radix is set to std::dec (decimal). See * also, std::oct (octal) and std::hex * (hexidecimal). * @return \c true if the string was successfully converted to a * number, \c false otherwise */ template bool str_to_val(const std::string &str, T &val, std::ios_base &(*radix)(std::ios_base &) = std::dec); /** * Convert a numeric value into its string representation * @param[in] val numeric value * @param[out] str string representation of the numeric value * @param[in] radix an optional parameter that specifies the * radix for the conversion. By default, the * radix is set to std::dec (decimal). See * also, std::oct (octal) and std::hex * (hexidecimal). */ template void val_to_str(const T &val, std::string &str, std::ios_base &(*radix)(std::ios_base &) = std::dec); /** * get type's name */ template std::string get_type_name(const T &val); template bool str_to_val(const std::string &str, T &val, std::ios_base &(*radix)(std::ios_base &)/* = std::dec */) { bool success = true; std::istringstream is(str); if (!(is >> radix >> val)) { val = 0; success = false; } return success; } template void val_to_str(const T &val, std::string &str, std::ios_base &(*radix)(std::ios_base &)/* = std::dec */) { std::stringstream strm; strm << radix << val; str = strm.str(); } template std::string get_type_name(const T &val) { int status = 0; char *stmp = abi::__cxa_demangle(typeid(val).name(), 0, 0, &status); if (!stmp) return ""; std::string sret(stmp); ::free(stmp); return sret; } bool is_blank(const char *s); } // namespace common #endif // __COMMON_LANG_STRING_H__