simdjson 4.2.2
Ridiculously Fast JSON
Loading...
Searching...
No Matches
padded_string.h
1#ifndef SIMDJSON_PADDED_STRING_H
2#define SIMDJSON_PADDED_STRING_H
3
4#include "simdjson/base.h"
5#include "simdjson/error.h"
6
7#include "simdjson/error-inl.h"
8
9#include <cstring>
10#include <memory>
11#include <string>
12#include <ostream>
13
14namespace simdjson {
15
16class padded_string_view;
17
23struct padded_string final {
24
28 explicit inline padded_string() noexcept;
34 explicit inline padded_string(size_t length) noexcept;
41 explicit inline padded_string(const char *data, size_t length) noexcept;
42#ifdef __cpp_char8_t
43 explicit inline padded_string(const char8_t *data, size_t length) noexcept;
44#endif
50 inline padded_string(const std::string & str_ ) noexcept;
56 inline padded_string(std::string_view sv_) noexcept;
64 inline padded_string(padded_string &&o) noexcept;
72 inline padded_string &operator=(padded_string &&o) noexcept;
73 inline void swap(padded_string &o) noexcept;
74 ~padded_string() noexcept;
75
81 size_t size() const noexcept;
82
88 size_t length() const noexcept;
89
93 const char *data() const noexcept;
94 const uint8_t *u8data() const noexcept { return static_cast<const uint8_t*>(static_cast<const void*>(data_ptr));}
95
99 char *data() noexcept;
100
104 operator std::string_view() const;
105
109 operator padded_string_view() const noexcept;
110
128 inline static simdjson_result<padded_string> load(std::string_view path) noexcept;
129
130 #if defined(_WIN32) && SIMDJSON_CPLUSPLUS17
140 inline static simdjson_result<padded_string> load(std::wstring_view path) noexcept;
141 #endif
142
143private:
144 padded_string &operator=(const padded_string &o) = delete;
145 padded_string(const padded_string &o) = delete;
146
147 size_t viable_size{0};
148 char *data_ptr{nullptr};
149
150}; // padded_string
151
159inline std::ostream& operator<<(std::ostream& out, const padded_string& s) { return out << s.data(); }
160
161#if SIMDJSON_EXCEPTIONS
171inline std::ostream& operator<<(std::ostream& out, simdjson_result<padded_string> &s) noexcept(false) { return out << s.value(); }
172#endif
173
174} // namespace simdjson
175
176// This is deliberately outside of simdjson so that people get it without having to use the namespace
177inline simdjson::padded_string operator ""_padded(const char *str, size_t len);
178#ifdef __cpp_char8_t
179inline simdjson::padded_string operator ""_padded(const char8_t *str, size_t len);
180#endif
181
182namespace simdjson {
183namespace internal {
184
185// The allocate_padded_buffer function is a low-level function to allocate memory
186// with padding so we can read past the "length" bytes safely. It is used by
187// the padded_string class automatically. It returns nullptr in case
188// of error: the caller should check for a null pointer.
189// The length parameter is the maximum size in bytes of the string.
190// The caller is responsible to free the memory (e.g., delete[] (...)).
191inline char *allocate_padded_buffer(size_t length) noexcept;
192
193} // namespace internal
194} // namespace simdjson
195
196#endif // SIMDJSON_PADDED_STRING_H
User-provided string that promises it has extra padded bytes at the end for use with parser::parse().
The top level simdjson namespace, containing everything the library provides.
Definition base.h:8
String with extra allocation for ease of use with parser::parse()
size_t size() const noexcept
The length of the string.
operator std::string_view() const
Create a std::string_view with the same content.
size_t length() const noexcept
The length of the string.
padded_string() noexcept
Create a new, empty padded string.
padded_string & operator=(padded_string &&o) noexcept
Move one padded string into another.
const char * data() const noexcept
The string data.
static simdjson_result< padded_string > load(std::string_view path) noexcept
Load this padded string from a file.
The result of a simdjson operation that could fail.
Definition error.h:280