string.h 3.7 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
//
// 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.

#pragma once
#include <stdarg.h>  // For va_start, etc.
#include <algorithm>
#include <cstring>
19
#include <iterator>
Y
Yan Chunwei 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
#include <memory>  // For std::unique_ptr
#include <string>
#include <vector>
#include "lite/utils/replace_stl/stream.h"

namespace paddle {
namespace lite {

static std::string string_format(const std::string fmt_str, ...) {
  /* Reserve two times as much as the length of the fmt_str */
  int final_n, n = (static_cast<int>(fmt_str.size())) * 2;
  std::unique_ptr<char[]> formatted;
  va_list ap;
  while (1) {
    formatted.reset(
        new char[n]); /* Wrap the plain char array into the unique_ptr */
    std::strcpy(&formatted[0], fmt_str.c_str());  // NOLINT
    va_start(ap, fmt_str);
    final_n = vsnprintf(&formatted[0], n, fmt_str.c_str(), ap);
    va_end(ap);
    if (final_n < 0 || final_n >= n)
      n += abs(final_n - n + 1);
    else
      break;
  }
  return std::string(formatted.get());
}

template <typename T>
static std::string to_string_with_precision(const T& v, const int n = 6) {
  STL::stringstream ss;
  ss.precision(n);
52 53 54 55 56 57 58 59
  ss << v;
  return ss.str();
}

template <typename T>
static std::string to_string(const T& v) {
  STL::stringstream ss;
  ss << v;
Y
Yan Chunwei 已提交
60 61 62
  return ss.str();
}

63 64 65 66 67 68 69
static std::string to_string(int index) {
  const int BUFFER_LENGTH = 15;
  char buffer[BUFFER_LENGTH];
  snprintf(buffer, sizeof(buffer), "%d", index);
  return std::string(buffer);
}

70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
template <typename T = std::string>
static T parse_string(const std::string& v) {
  return v;
}

template <>
int32_t parse_string<int32_t>(const std::string& v) {
  return std::stoi(v);
}

template <>
int64_t parse_string<int64_t>(const std::string& v) {
  return std::stoll(v);
}

template <>
float parse_string<float>(const std::string& v) {
  return std::stof(v);
}

template <>
double parse_string<double>(const std::string& v) {
  return std::stod(v);
}

Y
Yan Chunwei 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
template <typename T>
std::string Join(const std::vector<T>& vec, const std::string& delim) {
  if (vec.empty()) return "";

  STL::stringstream ss;
  for (size_t i = 0; i < vec.size() - 1; i++) ss << vec[i] << delim;
  if (!vec.empty()) {
    ss << vec.back();
  }

  return ss.str();
}

static std::string Repr(const std::string& x) { return "\"" + x + "\""; }

static std::string Repr(const std::vector<std::string>& v) {
  std::vector<std::string> tmp;
  std::transform(
      v.begin(), v.end(), std::back_inserter(tmp), [](const std::string& x) {
        return Repr(x);
      });
  return "{" + Join(tmp, ",") + "}";
}

119 120 121 122
template <class T = std::string>
static std::vector<T> Split(const std::string& original,
                            const std::string& separator) {
  std::vector<T> results;
Y
Yan Chunwei 已提交
123 124 125 126
  std::string::size_type pos1, pos2;
  pos2 = original.find(separator);
  pos1 = 0;
  while (std::string::npos != pos2) {
127
    results.push_back(parse_string<T>(original.substr(pos1, pos2 - pos1)));
Y
Yan Chunwei 已提交
128 129 130 131
    pos1 = pos2 + separator.size();
    pos2 = original.find(separator, pos1);
  }
  if (pos1 != original.length()) {
132
    results.push_back(parse_string<T>(original.substr(pos1)));
Y
Yan Chunwei 已提交
133 134 135 136 137 138
  }
  return results;
}

}  // namespace lite
}  // namespace paddle