SquidString.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
3  *
4  * Squid software is distributed under GPLv2+ license and includes
5  * contributions from numerous individuals and organizations.
6  * Please see the COPYING and CONTRIBUTORS files for details.
7  */
8 
9 /* DEBUG: section 67 String */
10 
11 #ifndef SQUID_SRC_SQUIDSTRING_H
12 #define SQUID_SRC_SQUIDSTRING_H
13 
14 #include "base/TextException.h"
15 #include "debug/Stream.h"
16 
17 #include <ostream>
18 
19 /* squid string placeholder (for printf) */
20 #ifndef SQUIDSTRINGPH
21 #define SQUIDSTRINGPH "%.*s"
22 #define SQUIDSTRINGPRINT(s) (s).psize(),(s).rawBuf()
23 #endif /* SQUIDSTRINGPH */
24 
25 class String
26 {
27 
28 public:
29  String() = default;
30  String(char const *);
31  String(String const &);
32  String(String && S) : size_(S.size_), len_(S.len_), buf_(S.buf_) {
33  S.buf_ = nullptr; // S is about to be destructed
34  S.size_ = S.len_ = 0;
35  }
36  ~String();
37 
38  typedef size_t size_type; //storage size intentionally unspecified
39  const static size_type npos = static_cast<size_type>(-1);
40 
41  String &operator =(char const *);
42  String &operator =(String const &);
44  if (this != &S) {
45  clean();
46  size_ = S.size_;
47  len_ = S.len_;
48  buf_ = S.buf_;
49  S.size_ = 0;
50  S.len_ = 0;
51  S.buf_ = nullptr; // S is about to be destructed
52  }
53  return *this;
54  }
55 
56  bool operator ==(String const &) const;
57  bool operator !=(String const &) const;
58 
63  char operator [](unsigned int aPos) const {
64  assert(aPos < size_);
65  return buf_[aPos];
66  }
67 
71  static size_type SizeMaxXXX() { return SizeMax_; }
72 
73  size_type size() const { return len_; }
74 
77  int psize() const {
78  Must(size() < INT_MAX);
79  return size();
80  }
81 
86  char const * rawBuf() const { return buf_; }
87 
92  char const * termedBuf() const { return buf_; }
93 
94  void assign(const char *str, int len);
95  void clean();
96  void reset(char const *str);
97  void append(char const *buf, int len);
98  void append(char const *buf);
99  void append(char const);
100  void append(String const &);
101  void absorb(String &old);
102  const char * pos(char const *aString) const;
103  const char * pos(char const ch) const;
106  size_type find(char const ch) const;
107  size_type find(char const *aString) const;
108  const char * rpos(char const ch) const;
109  size_type rfind(char const ch) const;
110  int cmp(char const *) const;
111  int cmp(char const *, size_type count) const;
112  int cmp(String const &) const;
113  int caseCmp(char const *) const;
114  int caseCmp(char const *, size_type count) const;
115  int caseCmp(String const &str) const {
116  return caseCmp(str.rawBuf(),str.size());
117  }
118 
122  static bool CanGrowTo(size_type totalLen, const size_type extras = 0) { return SafeAdd(totalLen, extras) && SafeAdd(totalLen, 1); }
124  bool canGrowBy(const size_type growthLen) const { return CanGrowTo(size(), growthLen); }
125 
126  String substr(size_type from, size_type to) const;
127 
128  void cut(size_type newLength);
129 
130 private:
131  void allocAndFill(const char *str, int len);
132  void allocBuffer(size_type sz);
133  void setBuffer(char *buf, size_type sz);
134 
135  bool defined() const {return buf_!=nullptr;}
136  bool undefined() const {return !defined();}
137 
138  /* never reference these directly! */
139  size_type size_ = 0; /* buffer size; limited by SizeMax_ */
140 
141  size_type len_ = 0; /* current length */
142 
151  static const size_type SizeMax_ = 3*64*1024 - 1;
152 
154  static bool SafeAdd(size_type &base, size_type extra) { if (extra <= SizeMax_ && base <= SizeMax_ - extra) { base += extra; return true; } return false; }
155 
156  char *buf_ = nullptr;
157 
158  void set(char const *loc, char const ch) {
159  if (loc < buf_ || loc > (buf_ + size_))
160  return;
161  buf_[loc-buf_] = ch;
162  }
163 
164  void cutPointer(char const *loc) {
165  if (loc < buf_ || loc > (buf_ + size_))
166  return;
167  len_ = loc-buf_;
168  buf_[len_] = '\0';
169  }
170 };
171 
172 inline std::ostream & operator<<(std::ostream &os, String const &aString)
173 {
174  os.write(aString.rawBuf(),aString.size());
175  return os;
176 }
177 
178 inline bool operator<(const String &a, const String &b)
179 {
180  return a.cmp(b) < 0;
181 }
182 
183 const char *checkNullString(const char *p);
184 int stringHasWhitespace(const char *);
185 int stringHasCntl(const char *);
186 char *strwordtok(char *buf, char **t);
187 
188 #endif /* SQUID_SRC_SQUIDSTRING_H */
189 
bool undefined() const
Definition: SquidString.h:136
int caseCmp(char const *) const
Definition: String.cc:266
char operator[](unsigned int aPos) const
Definition: SquidString.h:63
size_type len_
Definition: SquidString.h:141
bool operator!=(String const &) const
Definition: String.cc:68
const char * rawBuf() const
Definition: SquidString.h:86
int stringHasCntl(const char *)
Definition: String.cc:294
int psize() const
Definition: SquidString.h:77
size_type rfind(char const ch) const
Definition: String.cc:449
String & operator=(char const *)
Definition: String.cc:43
size_type size_
Definition: SquidString.h:139
void setBuffer(char *buf, size_type sz)
Definition: String.cc:28
int cmp(char const *) const
Definition: String.cc:236
String()=default
static bool SafeAdd(size_type &base, size_type extra)
returns true after increasing the first argument by extra if the sum does not exceed SizeMax_
Definition: SquidString.h:154
const static size_type npos
Definition: SquidString.h:39
bool operator==(String const &) const
Definition: String.cc:59
bool canGrowBy(const size_type growthLen) const
whether appending growthLen characters is safe (i.e., unlikely to assert)
Definition: SquidString.h:124
static size_type SizeMaxXXX()
Definition: SquidString.h:71
char * buf_
Definition: SquidString.h:156
static bool CanGrowTo(size_type totalLen, const size_type extras=0)
Definition: SquidString.h:122
void append(char const *buf, int len)
Definition: String.cc:130
const char * rpos(char const ch) const
Definition: String.cc:421
char * strwordtok(char *buf, char **t)
Definition: String.cc:314
#define INT_MAX
Definition: types.h:70
void cutPointer(char const *loc)
Definition: SquidString.h:164
std::ostream & operator<<(std::ostream &os, String const &aString)
Definition: SquidString.h:172
bool operator<(const String &a, const String &b)
Definition: SquidString.h:178
bool defined() const
Definition: SquidString.h:135
void allocAndFill(const char *str, int len)
Definition: String.cc:87
#define assert(EX)
Definition: assert.h:17
void absorb(String &old)
Definition: String.cc:179
const char * pos(char const *aString) const
Definition: String.cc:405
~String()
Definition: String.cc:116
int caseCmp(String const &str) const
Definition: SquidString.h:115
size_t size_type
Definition: SquidString.h:38
void set(char const *loc, char const ch)
Definition: SquidString.h:158
static const size_type SizeMax_
Definition: SquidString.h:151
const char * termedBuf() const
Definition: SquidString.h:92
void cut(size_type newLength)
Definition: String.cc:203
size_type size() const
Definition: SquidString.h:73
void allocBuffer(size_type sz)
Definition: String.cc:18
#define Must(condition)
Definition: TextException.h:75
void reset(char const *str)
Definition: String.cc:122
void assign(const char *str, int len)
Definition: String.cc:78
String(String &&S)
Definition: SquidString.h:32
size_type find(char const ch) const
Definition: String.cc:429
String substr(size_type from, size_type to) const
Definition: String.cc:190
int stringHasWhitespace(const char *)
Definition: String.cc:287
const char * checkNullString(const char *p)
Definition: String.cc:399
void clean()
Definition: String.cc:103

 

Introduction

Documentation

Support

Miscellaneous