Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
SkSLString.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2017 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
10#include "src/sksl/SkSLString.h"
11
12#include <cerrno>
13#include <cmath>
14#include <cstdio>
15#include <cstdlib>
16#include <locale>
17#include <memory>
18#include <sstream>
19#include <string>
20#include <string_view>
21
22template <typename RoundtripType, int kFullPrecision>
23static std::string to_string_impl(RoundtripType value) {
24 std::stringstream buffer;
25 buffer.imbue(std::locale::classic());
26 buffer.precision(7);
27 buffer << value;
28 std::string text = buffer.str();
29
30 double roundtripped;
31 buffer >> roundtripped;
32 if (value != (RoundtripType)roundtripped && std::isfinite(value)) {
33 buffer.str({});
34 buffer.clear();
35 buffer.precision(kFullPrecision);
36 buffer << value;
37 text = buffer.str();
38 SkASSERTF((buffer >> roundtripped, value == (RoundtripType)roundtripped),
39 "%.17g -> %s -> %.17g", value, text.c_str(), roundtripped);
40 }
41
42 // We need to emit a decimal point to distinguish floats from ints.
43 if (!skstd::contains(text, '.') && !skstd::contains(text, 'e')) {
44 text += ".0";
45 }
46
47 return text;
48}
49
50std::string skstd::to_string(float value) {
51 return to_string_impl<float, 9>(value);
52}
53
54std::string skstd::to_string(double value) {
55 return to_string_impl<double, 17>(value);
56}
57
58bool SkSL::stod(std::string_view s, SKSL_FLOAT* value) {
59 std::string str(s.data(), s.size());
60 std::stringstream buffer(str);
61 buffer.imbue(std::locale::classic());
62 buffer >> *value;
63 return !buffer.fail() && std::isfinite(*value);
64}
65
66bool SkSL::stoi(std::string_view s, SKSL_INT* value) {
67 if (s.empty()) {
68 return false;
69 }
70 char suffix = s.back();
71 if (suffix == 'u' || suffix == 'U') {
72 s.remove_suffix(1);
73 }
74 std::string str(s); // s is not null-terminated
75 const char* strEnd = str.data() + str.length();
76 char* p;
77 errno = 0;
78 unsigned long long result = strtoull(str.data(), &p, /*base=*/0);
79 *value = static_cast<SKSL_INT>(result);
80 return p == strEnd && errno == 0 && result <= 0xFFFFFFFF;
81}
82
83std::string SkSL::String::printf(const char* fmt, ...) {
84 va_list args;
85 va_start(args, fmt);
86 std::string result;
88 va_end(args);
89 return result;
90}
91
92void SkSL::String::appendf(std::string *str, const char* fmt, ...) {
93 va_list args;
94 va_start(args, fmt);
95 vappendf(str, fmt, args);
96 va_end(args);
97}
98
99void SkSL::String::vappendf(std::string *str, const char* fmt, va_list args) {
100 #define BUFFER_SIZE 256
101 char buffer[BUFFER_SIZE];
102 va_list reuse;
103 va_copy(reuse, args);
104 size_t size = vsnprintf(buffer, BUFFER_SIZE, fmt, args);
105 if (BUFFER_SIZE >= size + 1) {
106 str->append(buffer, size);
107 } else {
108 auto newBuffer = std::unique_ptr<char[]>(new char[size + 1]);
109 vsnprintf(newBuffer.get(), size + 1, fmt, reuse);
110 str->append(newBuffer.get(), size);
111 }
112 va_end(reuse);
113}
#define SkASSERTF(cond, fmt,...)
Definition SkAssert.h:117
int64_t SKSL_INT
Definition SkSLDefines.h:16
float SKSL_FLOAT
Definition SkSLDefines.h:17
static std::string to_string_impl(RoundtripType value)
#define BUFFER_SIZE
struct MyStruct s
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * args
static const uint8_t buffer[]
uint8_t value
GAsyncResult * result
std::u16string text
std::string void void vappendf(std::string *str, const char *fmt, va_list va) SK_PRINTF_LIKE(2
std::string printf(const char *fmt,...) SK_PRINTF_LIKE(1
std::string void appendf(std::string *str, const char *fmt,...) SK_PRINTF_LIKE(2
bool stod(std::string_view s, SKSL_FLOAT *value)
bool stoi(std::string_view s, SKSL_INT *value)
std::string to_string(float value)
constexpr bool contains(std::string_view str, std::string_view needle)
static SkString fmt(SkColor4f c)
Definition p3.cpp:43