ICU 57.1 57.1
stringpiece.h
Go to the documentation of this file.
1// Copyright (C) 2009-2013, International Business Machines
2// Corporation and others. All Rights Reserved.
3//
4// Copyright 2001 and onwards Google Inc.
5// Author: Sanjay Ghemawat
6
7// This code is a contribution of Google code, and the style used here is
8// a compromise between the original Google code and the ICU coding guidelines.
9// For example, data types are ICU-ified (size_t,int->int32_t),
10// and API comments doxygen-ified, but function names and behavior are
11// as in the original, if possible.
12// Assertion-style error handling, not available in ICU, was changed to
13// parameter "pinning" similar to UnicodeString.
14//
15// In addition, this is only a partial port of the original Google code,
16// limited to what was needed so far. The (nearly) complete original code
17// is in the ICU svn repository at icuhtml/trunk/design/strings/contrib
18// (see ICU ticket 6765, r25517).
19
20#ifndef __STRINGPIECE_H__
21#define __STRINGPIECE_H__
22
28#include "unicode/utypes.h"
29#include "unicode/uobject.h"
30#include "unicode/std_string.h"
31
32// Arghh! I wish C++ literals were "string".
33
35
53 private:
54 const char* ptr_;
55 int32_t length_;
56
57 public:
62 StringPiece() : ptr_(NULL), length_(0) { }
68 StringPiece(const char* str);
69#if U_HAVE_STD_STRING
74 StringPiece(const std::string& str)
75 : ptr_(str.data()), length_(static_cast<int32_t>(str.size())) { }
76#endif
83 StringPiece(const char* offset, int32_t len) : ptr_(offset), length_(len) { }
90 StringPiece(const StringPiece& x, int32_t pos);
99 StringPiece(const StringPiece& x, int32_t pos, int32_t len);
100
111 const char* data() const { return ptr_; }
117 int32_t size() const { return length_; }
123 int32_t length() const { return length_; }
129 UBool empty() const { return length_ == 0; }
130
135 void clear() { ptr_ = NULL; length_ = 0; }
136
143 void set(const char* xdata, int32_t len) { ptr_ = xdata; length_ = len; }
144
150 void set(const char* str);
151
157 void remove_prefix(int32_t n) {
158 if (n >= 0) {
159 if (n > length_) {
160 n = length_;
161 }
162 ptr_ += n;
163 length_ -= n;
164 }
165 }
166
172 void remove_suffix(int32_t n) {
173 if (n >= 0) {
174 if (n <= length_) {
175 length_ -= n;
176 } else {
177 length_ = 0;
178 }
179 }
180 }
181
186 static const int32_t npos; // = 0x7fffffff;
187
196 StringPiece substr(int32_t pos, int32_t len = npos) const {
197 return StringPiece(*this, pos, len);
198 }
199};
200
210
218inline UBool operator!=(const StringPiece& x, const StringPiece& y) {
219 return !(x == y);
220}
221
223
224#endif // __STRINGPIECE_H__
"Smart pointer" base class; do not use directly: use LocalPointer etc.
A string-like object that points to a sized piece of memory.
Definition stringpiece.h:52
StringPiece()
Default constructor, creates an empty StringPiece.
Definition stringpiece.h:62
StringPiece(const char *offset, int32_t len)
Constructs from a const char * pointer and a specified length.
Definition stringpiece.h:83
StringPiece(const char *str)
Constructs from a NUL-terminated const char * pointer.
void set(const char *xdata, int32_t len)
Reset the stringpiece to refer to new data.
StringPiece substr(int32_t pos, int32_t len=npos) const
Returns a substring of this StringPiece.
void set(const char *str)
Reset the stringpiece to refer to new data.
StringPiece(const StringPiece &x, int32_t pos, int32_t len)
Substring of another StringPiece.
void remove_prefix(int32_t n)
Removes the first n string units.
StringPiece(const StringPiece &x, int32_t pos)
Substring of another StringPiece.
static const int32_t npos
Maximum integer, used as a default value for substring methods.
int32_t length() const
Returns the string length.
UBool empty() const
Returns whether the string is empty.
int32_t size() const
Returns the string length.
StringPiece(const std::string &str)
Constructs from a std::string.
Definition stringpiece.h:74
void clear()
Sets to an empty string.
void remove_suffix(int32_t n)
Removes the last n string units.
const char * data() const
Returns the string pointer.
UMemory is the common ICU base class.
Definition uobject.h:110
#define U_EXPORT
Definition platform.h:814
C++ API: Central ICU header for including the C++ standard <string> header and for related definition...
U_EXPORT UBool operator==(const StringPiece &x, const StringPiece &y)
Global operator == for StringPiece.
UBool operator!=(const StringPiece &x, const StringPiece &y)
Global operator != for StringPiece.
int8_t UBool
The ICU boolean type.
Definition umachine.h:234
C++ API: Common ICU base class UObject.
Basic definitions for ICU, for both C and C++ APIs.
#define NULL
Define NULL if necessary, to 0 for C++ and to ((void *)0) for C.
Definition utypes.h:186
#define U_COMMON_API
Set to export library symbols from inside the common library, and to import them from outside.
Definition utypes.h:357
#define U_NAMESPACE_END
This is used to end a declaration of a public ICU C++ API.
Definition uversion.h:130
#define U_NAMESPACE_BEGIN
This is used to begin a declaration of a public ICU C++ API.
Definition uversion.h:129