Go to the documentation of this file.
19 #ifndef GRPCPP_IMPL_CODEGEN_SLICE_H
20 #define GRPCPP_IMPL_CODEGEN_SLICE_H
56 Slice(
const void* buf,
size_t len)
58 reinterpret_cast<const char*>(buf), len)) {}
63 str.c_str(), str.length())) {}
70 reinterpret_cast<const char*>(buf), len)) {}
78 std::swap(slice_, other.slice_);
87 Slice(
void* buf,
size_t len,
void (*destroy)(
void*),
void* user_data)
89 buf, len, destroy, user_data)) {}
92 Slice(
void* buf,
size_t len,
void (*destroy)(
void*))
93 :
Slice(buf, len, destroy, buf) {}
96 Slice(
void* buf,
size_t len,
void (*destroy)(
void*,
size_t))
143 #endif // GRPCPP_IMPL_CODEGEN_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:120
This class is a non owning reference to a string.
Definition: string_ref.h:41
GPRAPI grpc_slice grpc_empty_slice(void)
#define GRPC_SLICE_LENGTH(slice)
Definition: slice.h:99
Slice(size_t len)
Allocate a slice of specified size.
Definition: slice.h:52
This header provides an object that reads bytes directly from a grpc::ByteBuffer, via the ZeroCopyInp...
Definition: alarm.h:24
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:104
grpc::string StringFromCopiedSlice(grpc_slice slice)
Definition: slice.h:126
GPRAPI grpc_slice grpc_slice_malloc(size_t length)
Equivalent to grpc_slice_new(malloc(len), len, free), but saves one malloc() call.
Slice(const void *buf, size_t len)
Construct a slice from a copied buffer.
Definition: slice.h:56
Slice(const grpc::string &str)
Construct a slice from a copied string.
Definition: slice.h:61
const uint8_t * end() const
Raw pointer to the end (one byte past the last element) of the slice.
Definition: slice.h:107
Slice(const Slice &other)
Copy constructor, adds a reference.
Definition: slice.h:73
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:96
GPRAPI grpc_slice grpc_slice_ref(grpc_slice s)
Increment the refcount of s.
size_t size() const
Byte size.
Definition: slice.h:101
StealRef
Definition: slice.h:47
Slice & operator=(Slice other)
Assignment, reference count is unchanged.
Definition: slice.h:77
Slice()
Construct an empty slice.
Definition: slice.h:38
A sequence of bytes.
Definition: byte_buffer.h:67
A grpc_slice s, if initialized, represents the byte range s.bytes[0..s.length-1].
Definition: slice.h:60
AddRef
Definition: slice.h:42
A wrapper around grpc_slice.
Definition: slice.h:35
grpc_slice c_slice() const
Raw C slice. Caller needs to call grpc_slice_unref when done.
Definition: slice.h:110
~Slice()
Destructor - drops one reference.
Definition: slice.h:40
grpc_slice SliceFromCopiedString(const grpc::string &str)
Definition: slice.h:136
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:65
std::string string
Definition: config.h:35
virtual void grpc_slice_unref(grpc_slice slice)=0
#define GRPC_SLICE_START_PTR(slice)
Definition: slice.h:96
Slice(grpc_slice slice, StealRef)
Construct a slice from slice, stealing a reference.
Definition: slice.h:49
Slice(const void *buf, size_t len, StaticSlice)
Construct a slice from a static buffer.
Definition: slice.h:68
#define GRPC_SLICE_END_PTR(slice)
Definition: slice.h:105
virtual grpc_slice grpc_slice_from_static_buffer(const void *buffer, size_t length)=0
Slice(grpc_slice slice, AddRef)
Construct a slice from slice, adding a reference.
Definition: slice.h:44
CoreCodegenInterface * g_core_codegen_interface
Definition: completion_queue_impl.h:93
grpc_slice SliceReferencingString(const grpc::string &str)
Definition: slice.h:131
virtual grpc_slice grpc_slice_ref(grpc_slice slice)=0
Slice(void *buf, size_t len, void(*destroy)(void *), void *user_data)
Create a slice pointing at some data.
Definition: slice.h:87
virtual grpc_slice grpc_slice_from_copied_buffer(const void *buffer, size_t length)=0
Slice(void *buf, size_t len, void(*destroy)(void *))
Specialization of above for common case where buf == user_data.
Definition: slice.h:92