blob: a3e0f0a9265bdcca3698482ed8fcc3c68624fd7c [file]
/*
* Copyright 2018 The WebRTC Project Authors. All rights reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef RTC_BASE_STRINGS_STRING_BUILDER_H_
#define RTC_BASE_STRINGS_STRING_BUILDER_H_
#include <cstdio>
#include <span>
#include <string>
#include <utility>
#include "absl/strings/has_absl_stringify.h"
#include "absl/strings/str_cat.h"
#include "absl/strings/string_view.h"
namespace webrtc {
// This is a minimalistic string builder class meant to cover the most cases of
// when you might otherwise be tempted to use a stringstream (discouraged for
// anything except logging). It uses a fixed-size buffer provided by the caller
// and concatenates strings and numbers into it, allowing the results to be
// read via `str()`.
class [[deprecated("Use webrtc::StringBuilder instead")]] SimpleStringBuilder {
public:
explicit SimpleStringBuilder(std::span<char> buffer);
SimpleStringBuilder(const SimpleStringBuilder&) = delete;
SimpleStringBuilder& operator=(const SimpleStringBuilder&) = delete;
SimpleStringBuilder& operator<<(char ch);
SimpleStringBuilder& operator<<(absl::string_view str);
SimpleStringBuilder& operator<<(int i);
SimpleStringBuilder& operator<<(unsigned i);
SimpleStringBuilder& operator<<(long i); // NOLINT
SimpleStringBuilder& operator<<(long long i); // NOLINT
SimpleStringBuilder& operator<<(unsigned long i); // NOLINT
SimpleStringBuilder& operator<<(unsigned long long i); // NOLINT
SimpleStringBuilder& operator<<(float f);
SimpleStringBuilder& operator<<(double f);
SimpleStringBuilder& operator<<(long double f);
template <typename T>
requires absl::HasAbslStringify<T>::value
SimpleStringBuilder& operator<<(const T& value) {
return *this << absl::StrCat(value);
}
// Returns a pointer to the built string. The name `str()` is borrowed for
// compatibility reasons as we replace usage of stringstream throughout the
// code base.
const char* str() const { return buffer_.data(); }
// Returns the length of the string. The name `size()` is picked for STL
// compatibility reasons.
size_t size() const { return size_; }
// Allows appending a printf style formatted string.
#if defined(__GNUC__)
__attribute__((__format__(__printf__, 2, 3)))
#endif
SimpleStringBuilder&
AppendFormat(const char* fmt, ...);
private:
bool IsConsistent() const {
return size_ <= buffer_.size() - 1 && buffer_[size_] == '\0';
}
const std::span<char> buffer_;
size_t size_ = 0;
};
// A string builder that supports dynamic resizing while building a string.
// The class is based around an instance of std::string and allows moving
// ownership out of the class once the string has been built.
class StringBuilder {
public:
StringBuilder() = default;
explicit StringBuilder(absl::string_view s) : str_(s) {}
StringBuilder(const StringBuilder&) = default;
StringBuilder& operator=(const StringBuilder&) = default;
StringBuilder& operator<<(const absl::string_view str) {
str_.append(str.data(), str.length());
return *this;
}
StringBuilder& operator<<(char c) {
str_ += c;
return *this;
}
StringBuilder& operator<<(int i) {
str_ += absl::StrCat(i);
return *this;
}
StringBuilder& operator<<(unsigned i) {
str_ += absl::StrCat(i);
return *this;
}
StringBuilder& operator<<(long i) { // NOLINT
str_ += absl::StrCat(i);
return *this;
}
StringBuilder& operator<<(long long i) { // NOLINT
str_ += absl::StrCat(i);
return *this;
}
StringBuilder& operator<<(unsigned long i) { // NOLINT
str_ += absl::StrCat(i);
return *this;
}
StringBuilder& operator<<(unsigned long long i) { // NOLINT
str_ += absl::StrCat(i);
return *this;
}
StringBuilder& operator<<(float f) {
str_ += absl::StrCat(f);
return *this;
}
StringBuilder& operator<<(double f) {
str_ += absl::StrCat(f);
return *this;
}
template <typename T>
requires absl::HasAbslStringify<T>::value
StringBuilder& operator<<(const T& value) {
str_ += absl::StrCat(value);
return *this;
}
const std::string& str() const { return str_; }
void Clear() { str_.clear(); }
size_t size() const { return str_.size(); }
// Moves out the internal std::string.
std::string Release() { return std::move(str_); }
// Allows appending a printf style formatted string.
StringBuilder& AppendFormat(const char* fmt, ...)
#if defined(__GNUC__)
__attribute__((__format__(__printf__, 2, 3)))
#endif
;
private:
std::string str_;
};
} // namespace webrtc
#endif // RTC_BASE_STRINGS_STRING_BUILDER_H_