Go to the documentation of this file.
19 #ifndef GRPCPP_SUPPORT_SLICE_H
20 #define GRPCPP_SUPPORT_SLICE_H
52 Slice(
const void* buf,
size_t len)
78 std::swap(slice_, other.slice_);
87 Slice(
void* buf,
size_t len,
void (*destroy)(
void*),
void* user_data)
91 Slice(
void* buf,
size_t len,
void (*destroy)(
void*))
92 :
Slice(buf, len, destroy, buf) {}
95 Slice(
void* buf,
size_t len,
void (*destroy)(
void*,
size_t))
142 #endif // GRPCPP_SUPPORT_SLICE_H
GPRAPI grpc_slice grpc_slice_new_with_user_data(void *p, size_t len, void(*destroy)(void *), void *user_data)
Equivalent to grpc_slice_new, but with a separate pointer that is passed to the destroy function.
grpc::string_ref StringRefFromSlice(const grpc_slice *slice)
Definition: slice.h:121
This class is a non owning reference to a string.
Definition: string_ref.h:41
GPRAPI grpc_slice grpc_empty_slice(void)
@ STATIC_SLICE
Definition: slice.h:61
Slice(size_t len)
Allocate a slice of specified size.
Definition: slice.h:49
#define GRPC_SLICE_START_PTR(slice)
Definition: slice_type.h:99
An Alarm posts the user-provided tag to its associated completion queue or invokes the user-provided ...
Definition: alarm.h:33
#define GRPC_SLICE_END_PTR(slice)
Definition: slice_type.h:108
GPRAPI grpc_slice grpc_slice_new_with_len(void *p, size_t len, void(*destroy)(void *, size_t))
Equivalent to grpc_slice_new, but with a two argument destroy function that also takes the slice leng...
const uint8_t * begin() const
Raw pointer to the beginning (first element) of the slice.
Definition: slice.h:102
grpc_slice SliceFromCopiedString(const std::string &str)
Definition: slice.h:136
Slice sub(size_t begin, size_t end) const
Returns a substring of the slice as another slice.
Definition: slice.h:108
GPRAPI grpc_slice grpc_slice_malloc(size_t length)
Equivalent to grpc_slice_new(malloc(len), len, free), but saves one malloc() call.
@ ADD_REF
Definition: slice.h:40
Slice(const void *buf, size_t len)
Construct a slice from a copied buffer.
Definition: slice.h:52
const uint8_t * end() const
Raw pointer to the end (one byte past the last element) of the slice.
Definition: slice.h:105
Slice(const Slice &other)
Copy constructor, adds a reference.
Definition: slice.h:69
@ STEAL_REF
Definition: slice.h:44
GPRAPI grpc_slice grpc_slice_from_copied_buffer(const char *source, size_t len)
Create a slice by copying a buffer.
Slice(void *buf, size_t len, void(*destroy)(void *, size_t))
Similar to the above but has a destroy that also takes slice length.
Definition: slice.h:95
GPRAPI grpc_slice grpc_slice_ref(grpc_slice s)
Increment the refcount of s.
size_t size() const
Byte size.
Definition: slice.h:99
StealRef
Definition: slice.h:44
Slice & operator=(Slice other)
Assignment, reference count is unchanged.
Definition: slice.h:77
Slice()
Construct an empty slice.
Definition: slice.h:36
A sequence of bytes.
Definition: byte_buffer.h:60
A grpc_slice s, if initialized, represents the byte range s.bytes[0..s.length-1].
Definition: slice_type.h:63
AddRef
Definition: slice.h:40
GPRAPI grpc_slice grpc_slice_sub(grpc_slice s, size_t begin, size_t end)
Return a result slice derived from s, which shares a ref count with s, where result....
A wrapper around grpc_slice.
Definition: slice.h:33
grpc_slice c_slice() const
Raw C slice. Caller needs to call grpc_slice_unref when done.
Definition: slice.h:113
~Slice()
Destructor - drops one reference.
Definition: slice.h:38
GPRAPI grpc_slice grpc_slice_from_static_buffer(const void *source, size_t len)
Create a slice pointing to constant memory.
StaticSlice
Definition: slice.h:61
Slice(const std::string &str)
Construct a slice from a copied string.
Definition: slice.h:58
Slice(grpc_slice slice, StealRef)
Construct a slice from slice, stealing a reference.
Definition: slice.h:46
GPRAPI void grpc_slice_unref(grpc_slice s)
Decrement the ref count of s.
Slice(const void *buf, size_t len, StaticSlice)
Construct a slice from a static buffer.
Definition: slice.h:64
Slice(grpc_slice slice, AddRef)
Construct a slice from slice, adding a reference.
Definition: slice.h:42
#define GRPC_SLICE_LENGTH(slice)
Definition: slice_type.h:102
Slice(Slice &&other) noexcept
Move constructor, steals a reference.
Definition: slice.h:72
Slice(void *buf, size_t len, void(*destroy)(void *), void *user_data)
Create a slice pointing at some data.
Definition: slice.h:87
Slice(void *buf, size_t len, void(*destroy)(void *))
Specialization of above for common case where buf == user_data.
Definition: slice.h:91
std::string StringFromCopiedSlice(grpc_slice slice)
Definition: slice.h:127
grpc_slice SliceReferencingString(const std::string &str)
Definition: slice.h:132