Flutter Engine
The Flutter Engine
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;
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;
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)
Definition: SkSLString.cpp:23
#define BUFFER_SIZE
struct MyStruct s
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * args
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
Definition: SkSLString.cpp:99
std::string printf(const char *fmt,...) SK_PRINTF_LIKE(1
Definition: SkSLString.cpp:83
std::string void appendf(std::string *str, const char *fmt,...) SK_PRINTF_LIKE(2
Definition: SkSLString.cpp:92
bool stod(std::string_view s, SKSL_FLOAT *value)
Definition: SkSLString.cpp:58
bool stoi(std::string_view s, SKSL_INT *value)
Definition: SkSLString.cpp:66
va_start(args, format)
va_end(args)
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
Definition: switches.h:126
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition: switches.h:259
std::string to_string(float value)
Definition: SkSLString.cpp:50
constexpr bool contains(std::string_view str, std::string_view needle)
Definition: SkStringView.h:41
SINT bool isfinite(const Vec< N, T > &v)
Definition: SkVx.h:1003
static SkString fmt(SkColor4f c)
Definition: p3.cpp:43