StringUtils.hh
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. #ifndef HADOOP_STRING_UTILS_HH
  19. #define HADOOP_STRING_UTILS_HH
  20. #include <stdint.h>
  21. #include <string>
  22. #include <vector>
  23. namespace HadoopUtils {
  24.   /**
  25.    * Convert an integer to a string.
  26.    */
  27.   std::string toString(int32_t x);
  28.   /**
  29.    * Convert a string to an integer.
  30.    * @throws Error if the string is not a valid integer
  31.    */
  32.   int32_t toInt(const std::string& val);
  33.   /**
  34.    * Convert the string to a float.
  35.    * @throws Error if the string is not a valid float
  36.    */
  37.   float toFloat(const std::string& val);
  38.   /**
  39.    * Convert the string to a boolean.
  40.    * @throws Error if the string is not a valid boolean value
  41.    */
  42.   bool toBool(const std::string& val);
  43.   /**
  44.    * Get the current time in the number of milliseconds since 1970.
  45.    */
  46.   uint64_t getCurrentMillis();
  47.   /**
  48.    * Split a string into "words". Multiple deliminators are treated as a single
  49.    * word break, so no zero-length words are returned.
  50.    * @param str the string to split
  51.    * @param separator a list of characters that divide words
  52.    */
  53.   std::vector<std::string> splitString(const std::string& str,
  54.                                        const char* separator);
  55.   /**
  56.    * Quote a string to avoid "", non-printable characters, and the 
  57.    * deliminators.
  58.    * @param str the string to quote
  59.    * @param deliminators the set of characters to always quote
  60.    */
  61.   std::string quoteString(const std::string& str,
  62.                           const char* deliminators);
  63.   /**
  64.    * Unquote the given string to return the original string.
  65.    * @param str the string to unquote
  66.    */
  67.   std::string unquoteString(const std::string& str);
  68. }
  69. #endif