blob: c67bc1cf2b92a49138a7cf38a38e64ca3ecf1258 [file] [log] [blame]
/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "include/private/SkSLString.h"
#include "src/sksl/SkSLUtil.h"
#include <algorithm>
#include <cinttypes>
#include <errno.h>
#include <limits.h>
#include <locale>
#include <sstream>
#include <string>
template <>
SkSL::String skstd::to_string(float value) {
return skstd::to_string((double)value);
}
template <>
SkSL::String skstd::to_string(double value) {
std::stringstream buffer;
buffer.imbue(std::locale::classic());
buffer.precision(17);
buffer << value;
bool needsDotZero = true;
const std::string str = buffer.str();
for (int i = str.size() - 1; i >= 0; --i) {
char c = str[i];
if (c == '.' || c == 'e') {
needsDotZero = false;
break;
}
}
if (needsDotZero) {
buffer << ".0";
}
return SkSL::String(buffer.str().c_str());
}
namespace SkSL {
String String::printf(const char* fmt, ...) {
va_list args;
va_start(args, fmt);
String result;
vappendf(&result, fmt, args);
va_end(args);
return result;
}
void String::appendf(String* str, const char* fmt, ...) {
va_list args;
va_start(args, fmt);
vappendf(str, fmt, args);
va_end(args);
}
void String::vappendf(String* str, const char* fmt, va_list args) {
#define BUFFER_SIZE 256
char buffer[BUFFER_SIZE];
va_list reuse;
va_copy(reuse, args);
size_t size = vsnprintf(buffer, BUFFER_SIZE, fmt, args);
if (BUFFER_SIZE >= size + 1) {
str->append(buffer, size);
} else {
auto newBuffer = std::unique_ptr<char[]>(new char[size + 1]);
vsnprintf(newBuffer.get(), size + 1, fmt, reuse);
str->append(newBuffer.get(), size);
}
va_end(reuse);
}
String String::operator+(const char* s) const {
String result(*this);
result.append(s);
return result;
}
String String::operator+(const String& s) const {
String result(*this);
result.append(s);
return result;
}
String& String::operator+=(char c) {
INHERITED::operator+=(c);
return *this;
}
String& String::operator+=(const char* s) {
INHERITED::operator+=(s);
return *this;
}
String& String::operator+=(const String& s) {
INHERITED::operator+=(s);
return *this;
}
String& String::operator+=(std::string_view s) {
this->append(s.data(), s.length());
return *this;
}
String operator+(const char* s1, const String& s2) {
String result(s1);
result.append(s2);
return result;
}
bool stod(std::string_view s, SKSL_FLOAT* value) {
std::string str(s.data(), s.size());
std::stringstream buffer(str);
buffer.imbue(std::locale::classic());
buffer >> *value;
return !buffer.fail();
}
bool stoi(std::string_view s, SKSL_INT* value) {
if (s.empty()) {
return false;
}
char suffix = s.back();
if (suffix == 'u' || suffix == 'U') {
s.remove_suffix(1);
}
String str(s); // s is not null-terminated
const char* strEnd = str.data() + str.length();
char* p;
errno = 0;
unsigned long long result = strtoull(str.data(), &p, /*base=*/0);
*value = static_cast<SKSL_INT>(result);
return p == strEnd && errno == 0 && result <= 0xFFFFFFFF;
}
} // namespace SkSL