Welcome to mirror list, hosted at ThFree Co, Russian Federation.

STR_String.h « string « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97b23345f91fe2505ad244590f135c0d46e18842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
 * All rights reserved.
 */

/** \file
 * \ingroup string
 */

#ifndef __STR_STRING_H__
#define __STR_STRING_H__

#ifndef STR_NO_ASSERTD
#  undef assertd
#  define assertd(exp) ((void)NULL)
#endif

#include <limits.h>
#include <vector>

#include <cstdlib>
#include <cstring>

#ifdef WITH_CXX_GUARDEDALLOC
#  include "MEM_guardedalloc.h"
#endif

#ifdef _WIN32
#  define stricmp _stricmp
#endif

class STR_String;

typedef unsigned long dword;
typedef const STR_String &rcSTR_String;
typedef unsigned char byte;

/**
 * Smart String Value class. Is used by parser when an expression tree is build containing string.
 */

class STR_String {
 public:
  // Initialization
  STR_String();
  STR_String(char c);
  STR_String(char c, int len);
  STR_String(const char *str);
  STR_String(const char *str, int len);
  STR_String(const STR_String &str);
  STR_String(const STR_String &str, int len);
  STR_String(const char *src1, int src1_len, const char *src2, int src2_len);
  explicit STR_String(int val);
  explicit STR_String(dword val);
  explicit STR_String(float val);
  explicit STR_String(double val);
  inline ~STR_String()
  {
    delete[] this->m_data;
  }

  // Operations
  STR_String &Format(const char *fmt, ...)  // Set formatted text to string
#ifdef __GNUC__
      __attribute__((format(printf, 2, 3)))
#endif
      ;
  STR_String &FormatAdd(const char *fmt, ...)  // Add formatted text to string
#ifdef __GNUC__
      __attribute__((format(printf, 2, 3)))
#endif
      ;
  inline void Clear()
  {
    this->m_len = this->m_data[0] = 0;
  }
  inline const STR_String &Reverse()
  {
    for (int i1 = 0, i2 = this->m_len - 1; i1 < i2; i1++, i2--) {
      std::swap(this->m_data[i1], this->m_data[i2]);
    }
    return *this;
  }

  // Properties
  bool IsUpper() const;
  bool IsLower() const;
  inline bool IsEmpty() const
  {
    return this->m_len == 0;
  }
  inline int Length() const
  {
    return this->m_len;
  }

  // Data access
  inline STR_String &SetLength(int len)
  {
    AllocBuffer(len, true);
    this->m_len = len;
    this->m_data[len] = 0;
    return *this;
  }
  inline char GetAt(int pos) const
  {
    assertd(pos < this->m_len);
    return this->m_data[pos];
  }
  inline void SetAt(int pos, char c)
  {
    assertd(pos < this->m_len);
    this->m_data[pos] = c;
  }
  inline void SetAt(int pos, rcSTR_String str);
  inline void SetAt(int pos, int num, rcSTR_String str);
  void Replace(int pos, rcSTR_String str);
  void Replace(int pos, int num, rcSTR_String str);

  // Substrings
  inline STR_String Left(int num) const
  {
    num = (num < this->m_len ? num : this->m_len);
    return STR_String(this->m_data, num);
  }
  inline STR_String Right(int num) const
  {
    num = (num < this->m_len ? num : this->m_len);
    return STR_String(this->m_data + this->m_len - num, num);
  }
  inline STR_String Mid(int pos, int num = INT_MAX) const
  {
    pos = (pos < this->m_len ? pos : this->m_len);
    num = (num < (this->m_len - pos) ? num : (this->m_len - pos));
    return STR_String(this->m_data + pos, num);
  }

  // Comparison
  int Compare(rcSTR_String rhs) const;
  int CompareNoCase(rcSTR_String rhs) const;
  inline bool IsEqual(rcSTR_String rhs) const
  {
    return (Compare(rhs) == 0);
  }
  inline bool IsEqualNoCase(rcSTR_String rhs) const
  {
    return (CompareNoCase(rhs) == 0);
  }

  // Search/replace
  int Find(char c, int pos = 0) const;
  int Find(const char *str, int pos = 0) const;
  int Find(rcSTR_String str, int pos = 0) const;
  int RFind(char c) const;
  int FindOneOf(const char *set, int pos = 0) const;
  int RFindOneOf(const char *set, int pos = 0) const;

  std::vector<STR_String> Explode(char c) const;

  // Formatting
  STR_String &Upper();
  STR_String &Lower();
  STR_String &Capitalize();
  STR_String &TrimLeft();
  STR_String &TrimLeft(char *set);
  STR_String &TrimRight();
  STR_String &TrimRight(char *set);
  STR_String &Trim();
  STR_String &Trim(char *set);
  STR_String &TrimQuotes();

  // Conversions
  //  inline operator char*()                             { return this->m_data; }
  inline operator const char *() const
  {
    return this->m_data;
  }
  inline char *Ptr()
  {
    return this->m_data;
  }
  inline const char *ReadPtr() const
  {
    return this->m_data;
  }
  inline float ToFloat() const
  {
    float x = (float)(atof(this->m_data));
    return x;
  }
  inline int ToInt() const
  {
    return atoi(this->m_data);
  }

  // Operators
  inline rcSTR_String operator=(const byte *rhs)
  {
    return Copy((const char *)rhs, strlen((const char *)rhs));
  }
  inline rcSTR_String operator=(rcSTR_String rhs)
  {
    return Copy(rhs.ReadPtr(), rhs.Length());
  }
  inline rcSTR_String operator=(char rhs)
  {
    return Copy(&rhs, 1);
  }
  inline rcSTR_String operator=(const char *rhs)
  {
    return Copy(rhs, strlen(rhs));
  }

  inline rcSTR_String operator+=(const char *rhs)
  {
    return Concat(rhs, strlen(rhs));
  }
  inline rcSTR_String operator+=(rcSTR_String rhs)
  {
    return Concat(rhs.ReadPtr(), rhs.Length());
  }
  inline rcSTR_String operator+=(char rhs)
  {
    return Concat(&rhs, 1);
  }

  inline friend bool operator<(rcSTR_String lhs, rcSTR_String rhs)
  {
    return (strcmp(lhs, rhs) < 0);
  }
  inline friend bool operator<(rcSTR_String lhs, const char *rhs)
  {
    return (strcmp(lhs, rhs) < 0);
  }
  inline friend bool operator<(const char *lhs, rcSTR_String rhs)
  {
    return (strcmp(lhs, rhs) < 0);
  }
  inline friend bool operator>(rcSTR_String lhs, rcSTR_String rhs)
  {
    return (strcmp(lhs, rhs) > 0);
  }
  inline friend bool operator>(rcSTR_String lhs, const char *rhs)
  {
    return (strcmp(lhs, rhs) > 0);
  }
  inline friend bool operator>(const char *lhs, rcSTR_String rhs)
  {
    return (strcmp(lhs, rhs) > 0);
  }
  inline friend bool operator<=(rcSTR_String lhs, rcSTR_String rhs)
  {
    return (strcmp(lhs, rhs) <= 0);
  }
  inline friend bool operator<=(rcSTR_String lhs, const char *rhs)
  {
    return (strcmp(lhs, rhs) <= 0);
  }
  inline friend bool operator<=(const char *lhs, rcSTR_String rhs)
  {
    return (strcmp(lhs, rhs) <= 0);
  }
  inline friend bool operator>=(rcSTR_String lhs, rcSTR_String rhs)
  {
    return (strcmp(lhs, rhs) >= 0);
  }
  inline friend bool operator>=(rcSTR_String lhs, const char *rhs)
  {
    return (strcmp(lhs, rhs) >= 0);
  }
  inline friend bool operator>=(const char *lhs, rcSTR_String rhs)
  {
    return (strcmp(lhs, rhs) >= 0);
  }
  inline friend bool operator==(rcSTR_String lhs, rcSTR_String rhs)
  {
    return ((lhs.Length() == rhs.Length()) && (memcmp(lhs, rhs, lhs.Length()) == 0));
  }
  inline friend bool operator==(rcSTR_String lhs, const char *rhs)
  {
    return (strncmp(lhs, rhs, lhs.Length() + 1) == 0);
  }
  inline friend bool operator==(const char *lhs, rcSTR_String rhs)
  {
    return (strncmp(lhs, rhs, rhs.Length() + 1) == 0);
  }
  inline friend bool operator!=(rcSTR_String lhs, rcSTR_String rhs)
  {
    return ((lhs.Length() != rhs.Length()) || (memcmp(lhs, rhs, lhs.Length()) != 0));
  }
  inline friend bool operator!=(rcSTR_String lhs, const char *rhs)
  {
    return (strncmp(lhs, rhs, lhs.Length() + 1) != 0);
  }
  inline friend bool operator!=(const char *lhs, rcSTR_String rhs)
  {
    return (strncmp(lhs, rhs, rhs.Length() + 1) != 0);
  }

  // serializing
  // int           Serialize(pCStream stream);

 protected:
  // Implementation
  void AllocBuffer(int len, bool keep_contents);
  rcSTR_String Copy(const char *src, int len);
  rcSTR_String Concat(const char *data, int len);

  static bool isLower(char c)
  {
    return !isUpper(c);
  }
  static bool isUpper(char c)
  {
    return (c >= 'A') && (c <= 'Z');
  }
  static bool isSpace(char c)
  {
    return (c == ' ') || (c == '\t');
  }

  char *m_data;  // -> STR_String data
  int m_len;     // z Data length
  int m_max;     // Space in data buffer

#ifdef WITH_CXX_GUARDEDALLOC
  MEM_CXX_CLASS_ALLOC_FUNCS("CXX:STR_String")
#endif
};

inline STR_String operator+(rcSTR_String lhs, rcSTR_String rhs)
{
  return STR_String(lhs.ReadPtr(), lhs.Length(), rhs.ReadPtr(), rhs.Length());
}
inline STR_String operator+(rcSTR_String lhs, char rhs)
{
  return STR_String(lhs.ReadPtr(), lhs.Length(), &rhs, 1);
}
inline STR_String operator+(char lhs, rcSTR_String rhs)
{
  return STR_String(&lhs, 1, rhs.ReadPtr(), rhs.Length());
}
inline STR_String operator+(rcSTR_String lhs, const char *rhs)
{
  return STR_String(lhs.ReadPtr(), lhs.Length(), rhs, strlen(rhs));
}
inline STR_String operator+(const char *lhs, rcSTR_String rhs)
{
  return STR_String(lhs, strlen(lhs), rhs.ReadPtr(), rhs.Length());
}

#endif  //__STR_STRING_H__