ICU 78.3 78.3
Loading...
Searching...
No Matches
bytestream.h
Go to the documentation of this file.
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
3// Copyright (C) 2009-2012, International Business Machines
4// Corporation and others. All Rights Reserved.
5//
6// Copyright 2007 Google Inc. All Rights Reserved.
7// Author: sanjay@google.com (Sanjay Ghemawat)
8//
9// Abstract interface that consumes a sequence of bytes (ByteSink).
10//
11// Used so that we can write a single piece of code that can operate
12// on a variety of output string types.
13//
14// Various implementations of this interface are provided:
15// ByteSink:
16// CheckedArrayByteSink Write to a flat array, with bounds checking
17// StringByteSink Write to an STL string
18
19// This code is a contribution of Google code, and the style used here is
20// a compromise between the original Google code and the ICU coding guidelines.
21// For example, data types are ICU-ified (size_t,int->int32_t),
22// and API comments doxygen-ified, but function names and behavior are
23// as in the original, if possible.
24// Assertion-style error handling, not available in ICU, was changed to
25// parameter "pinning" similar to UnicodeString.
26//
27// In addition, this is only a partial port of the original Google code,
28// limited to what was needed so far. The (nearly) complete original code
29// is in the ICU svn repository at icuhtml/trunk/design/strings/contrib
30// (see ICU ticket 6765, r25517).
31
32#ifndef __BYTESTREAM_H__
33#define __BYTESTREAM_H__
34
39
40#include "unicode/utypes.h"
41
42#if U_SHOW_CPLUSPLUS_API
43
44#include <type_traits>
45
46#include "unicode/uobject.h"
47#include "unicode/std_string.h"
48
49U_NAMESPACE_BEGIN
50
56public:
66 virtual ~ByteSink();
67
74 virtual void Append(const char* bytes, int32_t n) = 0;
75
87 inline void AppendU8(const char* bytes, int32_t n) {
88 Append(bytes, n);
89 }
90
91#if defined(__cpp_char8_t) || defined(U_IN_DOXYGEN)
103 inline void AppendU8(const char8_t* bytes, int32_t n) {
104 Append(reinterpret_cast<const char*>(bytes), n);
105 }
106#endif
107
150 virtual char* GetAppendBuffer(int32_t min_capacity,
151 int32_t desired_capacity_hint,
152 char* scratch, int32_t scratch_capacity,
153 int32_t* result_capacity);
154
163 virtual void Flush();
164
165private:
166 ByteSink(const ByteSink &) = delete;
167 ByteSink &operator=(const ByteSink &) = delete;
168};
169
170// -------------------------------------------------------------
171// Some standard implementations
172
183public:
190 CheckedArrayByteSink(char* outbuf, int32_t capacity);
211 virtual void Append(const char* bytes, int32_t n) override;
226 virtual char* GetAppendBuffer(int32_t min_capacity,
227 int32_t desired_capacity_hint,
228 char* scratch, int32_t scratch_capacity,
229 int32_t* result_capacity) override;
235 int32_t NumberOfBytesWritten() const { return size_; }
242 UBool Overflowed() const { return overflowed_; }
250 int32_t NumberOfBytesAppended() const { return appended_; }
251private:
252 char* outbuf_;
253 const int32_t capacity_;
254 int32_t size_;
255 int32_t appended_;
256 UBool overflowed_;
257
258 CheckedArrayByteSink() = delete;
260 CheckedArrayByteSink &operator=(const CheckedArrayByteSink &) = delete;
261};
262
263namespace prv {
265template<typename StringClass, typename = void>
268 using type = char;
269};
270
271template<typename StringClass>
272struct value_type_or_char<StringClass, std::void_t<typename StringClass::value_type>> {
274 using type = typename StringClass::value_type;
275};
276
277template<typename StringClass>
279}
280
290template<typename StringClass>
291class StringByteSink : public ByteSink {
292 using Unit = typename prv::value_type_or_char_t<StringClass>;
293 public:
299 StringByteSink(StringClass* dest) : dest_(dest) { }
307 StringByteSink(StringClass* dest, int32_t initialAppendCapacity) : dest_(dest) {
308 if (initialAppendCapacity > 0 &&
309 static_cast<uint32_t>(initialAppendCapacity) > dest->capacity() - dest->length()) {
310 dest->reserve(dest->length() + initialAppendCapacity);
311 }
312 }
313
319 virtual void Append(const char* data, int32_t n) override {
320 if constexpr (std::is_same_v<Unit, char>) {
321 dest_->append(data, n);
322 } else {
323 dest_->append(reinterpret_cast<const Unit*>(data), n);
324 }
325 }
326 private:
327 StringClass* dest_;
328
329 StringByteSink() = delete;
330 StringByteSink(const StringByteSink &) = delete;
331 StringByteSink &operator=(const StringByteSink &) = delete;
332};
333
334U_NAMESPACE_END
335
336#endif /* U_SHOW_CPLUSPLUS_API */
337
338#endif // __BYTESTREAM_H__
typename value_type_or_char< StringClass >::type value_type_or_char_t
Definition bytestream.h:278
virtual char * GetAppendBuffer(int32_t min_capacity, int32_t desired_capacity_hint, char *scratch, int32_t scratch_capacity, int32_t *result_capacity)
Returns a writable buffer for appending and writes the buffer's capacity to *result_capacity.
void AppendU8(const char *bytes, int32_t n)
Appends n bytes to this.
Definition bytestream.h:87
virtual void Append(const char *bytes, int32_t n)=0
Append "bytes[0,n-1]" to this.
ByteSink()
Default constructor.
Definition bytestream.h:61
void AppendU8(const char8_t *bytes, int32_t n)
Appends n bytes to this.
Definition bytestream.h:103
virtual void Flush()
Flush internal buffers.
virtual ~ByteSink()
Virtual destructor.
Implementation of ByteSink that writes to a flat byte array, with bounds-checking: This sink will not...
Definition bytestream.h:182
int32_t NumberOfBytesWritten() const
Returns the number of bytes actually written to the sink.
Definition bytestream.h:235
CheckedArrayByteSink(char *outbuf, int32_t capacity)
Constructs a ByteSink that will write to outbuf[0..capacity-1].
virtual ~CheckedArrayByteSink()
Destructor.
virtual CheckedArrayByteSink & Reset()
Returns the sink to its original state, without modifying the buffer.
int32_t NumberOfBytesAppended() const
Returns the number of bytes appended to the sink.
Definition bytestream.h:250
UBool Overflowed() const
Returns true if any bytes were discarded, i.e., if there was an attempt to write more than 'capacity'...
Definition bytestream.h:242
virtual void Append(const char *bytes, int32_t n) override
Append "bytes[0,n-1]" to this.
virtual char * GetAppendBuffer(int32_t min_capacity, int32_t desired_capacity_hint, char *scratch, int32_t scratch_capacity, int32_t *result_capacity) override
Returns a writable buffer for appending and writes the buffer's capacity to *result_capacity.
Implementation of ByteSink that writes to a "string".
Definition bytestream.h:291
StringByteSink(StringClass *dest, int32_t initialAppendCapacity)
Constructs a ByteSink that reserves append capacity and will append bytes to the dest string.
Definition bytestream.h:307
StringByteSink(StringClass *dest)
Constructs a ByteSink that will append bytes to the dest string.
Definition bytestream.h:299
virtual void Append(const char *data, int32_t n) override
Append "bytes[0,n-1]" to this.
Definition bytestream.h:319
UMemory is the common ICU base class.
Definition uobject.h:115
C++ API: Central ICU header for including the C++ standard <string> header and for related definition...
int8_t UBool
The ICU boolean type, a signed-byte integer.
Definition umachine.h:269
C++ API: Common ICU base class UObject.
Basic definitions for ICU, for both C and C++ APIs.
#define U_COMMON_API
Set to export library symbols from inside the common library, and to import them from outside.
Definition utypes.h:315