blob: bc06cb0aba63743e90f6869f6f042c98011b1267 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com8a1c16f2008-12-17 15:59:43 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#ifndef SkString_DEFINED
11#define SkString_DEFINED
12
13#include "SkScalar.h"
rmistry@google.comd6bab022013-12-02 13:50:38 +000014#include "SkTArray.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000015
bsalomon@google.comb9cf3932013-03-07 18:05:08 +000016#include <stdarg.h>
17
reed@android.com8a1c16f2008-12-17 15:59:43 +000018/* Some helper functions for C strings
19*/
20
epoger@google.come8ebeb12012-10-29 16:42:11 +000021static bool SkStrStartsWith(const char string[], const char prefixStr[]) {
epoger@google.comc4ae9742012-04-27 17:11:31 +000022 SkASSERT(string);
epoger@google.come8ebeb12012-10-29 16:42:11 +000023 SkASSERT(prefixStr);
24 return !strncmp(string, prefixStr, strlen(prefixStr));
epoger@google.comc4ae9742012-04-27 17:11:31 +000025}
epoger@google.come8ebeb12012-10-29 16:42:11 +000026static bool SkStrStartsWith(const char string[], const char prefixChar) {
27 SkASSERT(string);
28 return (prefixChar == *string);
29}
30
31bool SkStrEndsWith(const char string[], const char suffixStr[]);
32bool SkStrEndsWith(const char string[], const char suffixChar);
33
reed@android.com8a1c16f2008-12-17 15:59:43 +000034int SkStrStartsWithOneOf(const char string[], const char prefixes[]);
epoger@google.come8ebeb12012-10-29 16:42:11 +000035
humper@google.com7af56be2013-01-14 18:49:19 +000036static int SkStrFind(const char string[], const char substring[]) {
humper@google.com61a972f2013-01-14 19:03:46 +000037 const char *first = strstr(string, substring);
humper@google.com7af56be2013-01-14 18:49:19 +000038 if (NULL == first) return -1;
reed@google.com3d5b9982013-02-04 22:40:28 +000039 return SkToS32(first - &string[0]);
humper@google.com7af56be2013-01-14 18:49:19 +000040}
41
epoger@google.comc4ae9742012-04-27 17:11:31 +000042static bool SkStrContains(const char string[], const char substring[]) {
43 SkASSERT(string);
44 SkASSERT(substring);
humper@google.com7af56be2013-01-14 18:49:19 +000045 return (-1 != SkStrFind(string, substring));
epoger@google.comc4ae9742012-04-27 17:11:31 +000046}
epoger@google.come8ebeb12012-10-29 16:42:11 +000047static bool SkStrContains(const char string[], const char subchar) {
48 SkASSERT(string);
humper@google.com7af56be2013-01-14 18:49:19 +000049 char tmp[2];
50 tmp[0] = subchar;
51 tmp[1] = '\0';
52 return (-1 != SkStrFind(string, tmp));
epoger@google.come8ebeb12012-10-29 16:42:11 +000053}
reed@android.com8a1c16f2008-12-17 15:59:43 +000054
humper@google.com7af56be2013-01-14 18:49:19 +000055static inline char *SkStrDup(const char string[]) {
56 char *ret = (char *) sk_malloc_throw(strlen(string)+1);
robertphillips@google.com37ebe3f2013-03-04 20:03:44 +000057 memcpy(ret,string,strlen(string)+1);
humper@google.com7af56be2013-01-14 18:49:19 +000058 return ret;
59}
60
61
62
epoger@google.comd88a3d82013-06-19 18:27:20 +000063#define SkStrAppendU32_MaxSize 10
epoger@google.com27d30252013-06-19 18:52:42 +000064char* SkStrAppendU32(char buffer[], uint32_t);
epoger@google.comd88a3d82013-06-19 18:27:20 +000065#define SkStrAppendU64_MaxSize 20
epoger@google.com27d30252013-06-19 18:52:42 +000066char* SkStrAppendU64(char buffer[], uint64_t, int minDigits);
epoger@google.comd88a3d82013-06-19 18:27:20 +000067
68#define SkStrAppendS32_MaxSize (SkStrAppendU32_MaxSize + 1)
reed@android.com8a1c16f2008-12-17 15:59:43 +000069char* SkStrAppendS32(char buffer[], int32_t);
epoger@google.comd88a3d82013-06-19 18:27:20 +000070#define SkStrAppendS64_MaxSize (SkStrAppendU64_MaxSize + 1)
vandebo@chromium.orgd877fdb2010-10-12 23:08:13 +000071char* SkStrAppendS64(char buffer[], int64_t, int minDigits);
reed@google.com8072e4f2011-03-01 15:44:08 +000072
73/**
74 * Floats have at most 8 significant digits, so we limit our %g to that.
reed@google.come280f1d2011-03-03 18:43:14 +000075 * However, the total string could be 15 characters: -1.2345678e-005
76 *
77 * In theory we should only expect up to 2 digits for the exponent, but on
78 * some platforms we have seen 3 (as in the example above).
reed@google.com8072e4f2011-03-01 15:44:08 +000079 */
reed@google.come280f1d2011-03-03 18:43:14 +000080#define SkStrAppendScalar_MaxSize 15
reed@google.com8072e4f2011-03-01 15:44:08 +000081
82/**
83 * Write the scaler in decimal format into buffer, and return a pointer to
84 * the next char after the last one written. Note: a terminating 0 is not
85 * written into buffer, which must be at least SkStrAppendScalar_MaxSize.
86 * Thus if the caller wants to add a 0 at the end, buffer must be at least
87 * SkStrAppendScalar_MaxSize + 1 bytes large.
88 */
reed@google.com8f4d2302013-12-17 16:44:46 +000089#define SkStrAppendScalar SkStrAppendFloat
vandebo@chromium.org677cbed2011-03-03 18:20:12 +000090
vandebo@chromium.org677cbed2011-03-03 18:20:12 +000091char* SkStrAppendFloat(char buffer[], float);
vandebo@chromium.org677cbed2011-03-03 18:20:12 +000092char* SkStrAppendFixed(char buffer[], SkFixed);
reed@android.com8a1c16f2008-12-17 15:59:43 +000093
94/** \class SkString
95
96 Light weight class for managing strings. Uses reference
97 counting to make string assignments and copies very fast
98 with no extra RAM cost. Assumes UTF8 encoding.
99*/
vandebo@chromium.orga56fedc2012-10-18 23:26:44 +0000100class SK_API SkString {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000101public:
102 SkString();
103 explicit SkString(size_t len);
104 explicit SkString(const char text[]);
105 SkString(const char text[], size_t len);
reed@android.com8015dd82009-06-21 00:49:18 +0000106 SkString(const SkString&);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000107 ~SkString();
108
reed@google.com4bce1152011-09-14 16:13:58 +0000109 bool isEmpty() const { return 0 == fRec->fLength; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000110 size_t size() const { return (size_t) fRec->fLength; }
111 const char* c_str() const { return fRec->data(); }
reed@android.com8015dd82009-06-21 00:49:18 +0000112 char operator[](size_t n) const { return this->c_str()[n]; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000113
mike@reedtribe.org4e1d3ac2011-04-10 01:04:37 +0000114 bool equals(const SkString&) const;
115 bool equals(const char text[]) const;
116 bool equals(const char text[], size_t len) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000117
epoger@google.come8ebeb12012-10-29 16:42:11 +0000118 bool startsWith(const char prefixStr[]) const {
119 return SkStrStartsWith(fRec->data(), prefixStr);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000120 }
epoger@google.come8ebeb12012-10-29 16:42:11 +0000121 bool startsWith(const char prefixChar) const {
122 return SkStrStartsWith(fRec->data(), prefixChar);
123 }
124 bool endsWith(const char suffixStr[]) const {
125 return SkStrEndsWith(fRec->data(), suffixStr);
126 }
127 bool endsWith(const char suffixChar) const {
128 return SkStrEndsWith(fRec->data(), suffixChar);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000129 }
epoger@google.comc4ae9742012-04-27 17:11:31 +0000130 bool contains(const char substring[]) const {
131 return SkStrContains(fRec->data(), substring);
132 }
epoger@google.come8ebeb12012-10-29 16:42:11 +0000133 bool contains(const char subchar) const {
134 return SkStrContains(fRec->data(), subchar);
135 }
humper@google.com7af56be2013-01-14 18:49:19 +0000136 int find(const char substring[]) const {
137 return SkStrFind(fRec->data(), substring);
138 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000139
reed@google.comb530ef52011-07-20 19:55:42 +0000140 friend bool operator==(const SkString& a, const SkString& b) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000141 return a.equals(b);
142 }
reed@google.comb530ef52011-07-20 19:55:42 +0000143 friend bool operator!=(const SkString& a, const SkString& b) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000144 return !a.equals(b);
145 }
146
147 // these methods edit the string
148
reed@google.comb530ef52011-07-20 19:55:42 +0000149 SkString& operator=(const SkString&);
150 SkString& operator=(const char text[]);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000151
reed@google.comb530ef52011-07-20 19:55:42 +0000152 char* writable_str();
reed@android.com8015dd82009-06-21 00:49:18 +0000153 char& operator[](size_t n) { return this->writable_str()[n]; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000154
mike@reedtribe.org4e1d3ac2011-04-10 01:04:37 +0000155 void reset();
156 void resize(size_t len) { this->set(NULL, len); }
157 void set(const SkString& src) { *this = src; }
158 void set(const char text[]);
159 void set(const char text[], size_t len);
160 void setUTF16(const uint16_t[]);
161 void setUTF16(const uint16_t[], size_t len);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000162
mike@reedtribe.org4e1d3ac2011-04-10 01:04:37 +0000163 void insert(size_t offset, const SkString& src) { this->insert(offset, src.c_str(), src.size()); }
164 void insert(size_t offset, const char text[]);
165 void insert(size_t offset, const char text[], size_t len);
166 void insertUnichar(size_t offset, SkUnichar);
167 void insertS32(size_t offset, int32_t value);
168 void insertS64(size_t offset, int64_t value, int minDigits = 0);
epoger@google.comd88a3d82013-06-19 18:27:20 +0000169 void insertU32(size_t offset, uint32_t value);
170 void insertU64(size_t offset, uint64_t value, int minDigits = 0);
mike@reedtribe.org4e1d3ac2011-04-10 01:04:37 +0000171 void insertHex(size_t offset, uint32_t value, int minDigits = 0);
172 void insertScalar(size_t offset, SkScalar);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000173
mike@reedtribe.org4e1d3ac2011-04-10 01:04:37 +0000174 void append(const SkString& str) { this->insert((size_t)-1, str); }
175 void append(const char text[]) { this->insert((size_t)-1, text); }
176 void append(const char text[], size_t len) { this->insert((size_t)-1, text, len); }
177 void appendUnichar(SkUnichar uni) { this->insertUnichar((size_t)-1, uni); }
178 void appendS32(int32_t value) { this->insertS32((size_t)-1, value); }
179 void appendS64(int64_t value, int minDigits = 0) { this->insertS64((size_t)-1, value, minDigits); }
epoger@google.comd88a3d82013-06-19 18:27:20 +0000180 void appendU32(uint32_t value) { this->insertU32((size_t)-1, value); }
181 void appendU64(uint64_t value, int minDigits = 0) { this->insertU64((size_t)-1, value, minDigits); }
mike@reedtribe.org4e1d3ac2011-04-10 01:04:37 +0000182 void appendHex(uint32_t value, int minDigits = 0) { this->insertHex((size_t)-1, value, minDigits); }
183 void appendScalar(SkScalar value) { this->insertScalar((size_t)-1, value); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000184
mike@reedtribe.org4e1d3ac2011-04-10 01:04:37 +0000185 void prepend(const SkString& str) { this->insert(0, str); }
186 void prepend(const char text[]) { this->insert(0, text); }
187 void prepend(const char text[], size_t len) { this->insert(0, text, len); }
188 void prependUnichar(SkUnichar uni) { this->insertUnichar(0, uni); }
189 void prependS32(int32_t value) { this->insertS32(0, value); }
190 void prependS64(int32_t value, int minDigits = 0) { this->insertS64(0, value, minDigits); }
191 void prependHex(uint32_t value, int minDigits = 0) { this->insertHex(0, value, minDigits); }
192 void prependScalar(SkScalar value) { this->insertScalar((size_t)-1, value); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000193
senorblanco@chromium.org3a67a662012-07-09 18:22:08 +0000194 void printf(const char format[], ...) SK_PRINTF_LIKE(2, 3);
195 void appendf(const char format[], ...) SK_PRINTF_LIKE(2, 3);
commit-bot@chromium.orgce0e4ef2013-11-21 17:20:17 +0000196 void appendVAList(const char format[], va_list);
senorblanco@chromium.org3a67a662012-07-09 18:22:08 +0000197 void prependf(const char format[], ...) SK_PRINTF_LIKE(2, 3);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000198
mike@reedtribe.org4e1d3ac2011-04-10 01:04:37 +0000199 void remove(size_t offset, size_t length);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000200
bsalomon@google.comfc296292011-05-06 13:53:47 +0000201 SkString& operator+=(const SkString& s) { this->append(s); return *this; }
202 SkString& operator+=(const char text[]) { this->append(text); return *this; }
epoger@google.com4a8084c2013-05-09 20:01:26 +0000203 SkString& operator+=(const char c) { this->append(&c, 1); return *this; }
bsalomon@google.comfc296292011-05-06 13:53:47 +0000204
mike@reedtribe.org4e1d3ac2011-04-10 01:04:37 +0000205 /**
206 * Swap contents between this and other. This function is guaranteed
207 * to never fail or throw.
208 */
209 void swap(SkString& other);
reed@google.com8072e4f2011-03-01 15:44:08 +0000210
reed@android.com8a1c16f2008-12-17 15:59:43 +0000211private:
212 struct Rec {
213 public:
reed@google.com8cb10882013-06-04 20:36:52 +0000214 uint32_t fLength; // logically size_t, but we want it to stay 32bits
reed@google.com4bce1152011-09-14 16:13:58 +0000215 int32_t fRefCnt;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000216 char fBeginningOfData;
217
218 char* data() { return &fBeginningOfData; }
219 const char* data() const { return &fBeginningOfData; }
220 };
221 Rec* fRec;
222
223#ifdef SK_DEBUG
224 const char* fStr;
225 void validate() const;
226#else
227 void validate() const {}
228#endif
229
230 static const Rec gEmptyRec;
reed@google.com4bce1152011-09-14 16:13:58 +0000231 static Rec* AllocRec(const char text[], size_t len);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000232 static Rec* RefRec(Rec*);
233};
234
tomhudson@google.com3a1f6a02011-06-30 14:39:52 +0000235/// Creates a new string and writes into it using a printf()-style format.
236SkString SkStringPrintf(const char* format, ...);
237
bsalomon@google.comff436612013-02-27 19:07:32 +0000238// Specialized to take advantage of SkString's fast swap path. The unspecialized function is
239// declared in SkTypes.h and called by SkTSort.
240template <> inline void SkTSwap(SkString& a, SkString& b) {
241 a.swap(b);
242}
243
rmistry@google.comd6bab022013-12-02 13:50:38 +0000244// Split str on any characters in delimiters into out. (Think, strtok with a sane API.)
245void SkStrSplit(const char* str, const char* delimiters, SkTArray<SkString>* out);
246
reed@android.com8a1c16f2008-12-17 15:59:43 +0000247#endif