GRPC C++  1.62.0
byte_buffer.h
Go to the documentation of this file.
1 //
2 //
3 // Copyright 2015 gRPC authors.
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 //
18 
19 #ifndef GRPCPP_SUPPORT_BYTE_BUFFER_H
20 #define GRPCPP_SUPPORT_BYTE_BUFFER_H
21 
22 #include <vector>
23 
24 #include <grpc/byte_buffer.h>
25 #include <grpc/grpc.h>
26 #include <grpc/support/log.h>
28 #include <grpcpp/support/config.h>
29 #include <grpcpp/support/slice.h>
30 #include <grpcpp/support/status.h>
31 
32 namespace grpc {
33 
34 class ServerInterface;
35 class ByteBuffer;
36 class ServerInterface;
37 
38 namespace internal {
39 template <class RequestType, class ResponseType>
40 class CallbackUnaryHandler;
41 template <class RequestType, class ResponseType>
42 class CallbackServerStreamingHandler;
43 template <class RequestType>
45 template <class ServiceType, class RequestType, class ResponseType>
46 class ServerStreamingHandler;
47 template <grpc::StatusCode code>
48 class ErrorMethodHandler;
49 class CallOpSendMessage;
50 template <class R>
51 class CallOpRecvMessage;
52 class CallOpGenericRecvMessage;
53 class ExternalConnectionAcceptorImpl;
54 template <class R>
55 class DeserializeFuncType;
56 class GrpcByteBufferPeer;
57 
58 } // namespace internal
60 class ByteBuffer final {
61  public:
63  ByteBuffer() : buffer_(nullptr) {}
64 
66  ByteBuffer(const Slice* slices, size_t nslices) {
67  // The following assertions check that the representation of a grpc::Slice
68  // is identical to that of a grpc_slice: it has a grpc_slice field, and
69  // nothing else.
70  static_assert(std::is_same<decltype(slices[0].slice_), grpc_slice>::value,
71  "Slice must have same representation as grpc_slice");
72  static_assert(sizeof(Slice) == sizeof(grpc_slice),
73  "Slice must have same representation as grpc_slice");
74  // The following assertions check that the representation of a ByteBuffer is
75  // identical to grpc_byte_buffer*: it has a grpc_byte_buffer* field,
76  // and nothing else.
77  static_assert(std::is_same<decltype(buffer_), grpc_byte_buffer*>::value,
78  "ByteBuffer must have same representation as "
79  "grpc_byte_buffer*");
80  static_assert(sizeof(ByteBuffer) == sizeof(grpc_byte_buffer*),
81  "ByteBuffer must have same representation as "
82  "grpc_byte_buffer*");
83  // The const_cast is legal if grpc_raw_byte_buffer_create() does no more
84  // than its advertised side effect of increasing the reference count of the
85  // slices it processes, and such an increase does not affect the semantics
86  // seen by the caller of this constructor.
88  reinterpret_cast<grpc_slice*>(const_cast<Slice*>(slices)), nslices);
89  }
90 
95  ByteBuffer(const ByteBuffer& buf) : buffer_(nullptr) { operator=(buf); }
96 
98  if (buffer_) {
99  grpc_byte_buffer_destroy(buffer_);
100  }
101  }
102 
107  if (this != &buf) {
108  Clear(); // first remove existing data
109  }
110  if (buf.buffer_) {
111  // then copy
112  buffer_ = grpc_byte_buffer_copy(buf.buffer_);
113  }
114  return *this;
115  }
116 
117  // If this ByteBuffer's representation is a single flat slice, returns a
118  // slice referencing that array.
119  Status TrySingleSlice(Slice* slice) const;
120 
122  Status DumpToSingleSlice(Slice* slice) const;
123 
125  Status Dump(std::vector<Slice>* slices) const;
126 
128  void Clear() {
129  if (buffer_) {
130  grpc_byte_buffer_destroy(buffer_);
131  buffer_ = nullptr;
132  }
133  }
134 
140  void Duplicate() { buffer_ = grpc_byte_buffer_copy(buffer_); }
141 
144  void Release() { buffer_ = nullptr; }
145 
147  size_t Length() const {
148  return buffer_ == nullptr ? 0 : grpc_byte_buffer_length(buffer_);
149  }
150 
152  void Swap(ByteBuffer* other) {
153  grpc_byte_buffer* tmp = other->buffer_;
154  other->buffer_ = buffer_;
155  buffer_ = tmp;
156  }
157 
159  bool Valid() const { return (buffer_ != nullptr); }
160 
161  private:
162  friend class SerializationTraits<ByteBuffer, void>;
163  friend class ServerInterface;
165  template <class R>
168  template <class RequestType>
170  grpc::Status*, RequestType*);
171  template <class ServiceType, class RequestType, class ResponseType>
173  template <class RequestType, class ResponseType>
175  template <class RequestType, class ResponseType>
177  template <StatusCode code>
179  template <class R>
181  friend class ProtoBufferReader;
182  friend class ProtoBufferWriter;
185 
186  grpc_byte_buffer* buffer_;
187 
188  // takes ownership
189  void set_buffer(grpc_byte_buffer* buf) {
190  if (buffer_) {
191  Clear();
192  }
193  buffer_ = buf;
194  }
195 
196  grpc_byte_buffer* c_buffer() { return buffer_; }
197  grpc_byte_buffer** c_buffer_ptr() { return &buffer_; }
198 
199  class ByteBufferPointer {
200  public:
201  // NOLINTNEXTLINE(google-explicit-constructor)
202  ByteBufferPointer(const ByteBuffer* b)
203  : bbuf_(const_cast<ByteBuffer*>(b)) {}
204  // NOLINTNEXTLINE(google-explicit-constructor)
205  operator ByteBuffer*() { return bbuf_; }
206  // NOLINTNEXTLINE(google-explicit-constructor)
207  operator grpc_byte_buffer*() { return bbuf_->buffer_; }
208  // NOLINTNEXTLINE(google-explicit-constructor)
209  operator grpc_byte_buffer**() { return &bbuf_->buffer_; }
210 
211  private:
212  ByteBuffer* bbuf_;
213  };
214  ByteBufferPointer bbuf_ptr() const { return ByteBufferPointer(this); }
215 };
216 
217 template <>
219  public:
220  static Status Deserialize(ByteBuffer* byte_buffer, ByteBuffer* dest) {
221  dest->set_buffer(byte_buffer->buffer_);
222  return Status::OK;
223  }
224  static Status Serialize(const ByteBuffer& source, ByteBuffer* buffer,
225  bool* own_buffer) {
226  *buffer = source;
227  *own_buffer = true;
228  return grpc::Status::OK;
229  }
230 };
231 
232 } // namespace grpc
233 
234 #endif // GRPCPP_SUPPORT_BYTE_BUFFER_H
grpc::ProtoBufferWriter
This is a specialization of the protobuf class ZeroCopyOutputStream.
Definition: proto_buffer_writer.h:55
grpc::internal::CallOpGenericRecvMessage
Definition: call_op_set.h:526
grpc::ByteBuffer::Duplicate
void Duplicate()
Make a duplicate copy of the internals of this byte buffer so that we have our own owned version of i...
Definition: byte_buffer.h:140
grpc
An Alarm posts the user-provided tag to its associated completion queue or invokes the user-provided ...
Definition: alarm.h:33
grpc::internal::CallOpSendMessage
Definition: call_op_set.h:286
grpc::ByteBuffer::Length
size_t Length() const
Buffer size in bytes.
Definition: byte_buffer.h:147
grpc::internal::ErrorMethodHandler
General method handler class for errors that prevent real method use e.g., handle unknown method by r...
Definition: completion_queue.h:80
grpc_byte_buffer_destroy
GRPCAPI void grpc_byte_buffer_destroy(grpc_byte_buffer *bb)
Destroys byte_buffer deallocating all its memory.
grpc::ByteBuffer::ByteBuffer
ByteBuffer(const Slice *slices, size_t nslices)
Construct buffer from slices, of which there are nslices.
Definition: byte_buffer.h:66
grpc::ByteBuffer::operator=
ByteBuffer & operator=(const ByteBuffer &buf)
Wrapper of core function grpc_byte_buffer_copy .
Definition: byte_buffer.h:106
status.h
grpc::ByteBuffer::DumpToSingleSlice
Status DumpToSingleSlice(Slice *slice) const
Dump (read) the buffer contents into slics.
grpc_byte_buffer_length
GRPCAPI size_t grpc_byte_buffer_length(grpc_byte_buffer *bb)
Returns the size of the given byte buffer, in bytes.
grpc::ByteBuffer::~ByteBuffer
~ByteBuffer()
Definition: byte_buffer.h:97
grpc::ByteBuffer::ByteBuffer
ByteBuffer()
Constuct an empty buffer.
Definition: byte_buffer.h:63
grpc::Status
Did it work? If it didn't, why?
Definition: status.h:35
log.h
grpc::internal::UnaryDeserializeHelper
void * UnaryDeserializeHelper(grpc_byte_buffer *, grpc::Status *, RequestType *)
A helper function with reduced templating to do deserializing.
Definition: method_handler.h:81
grpc::ByteBuffer::Clear
void Clear()
Remove all data.
Definition: byte_buffer.h:128
grpc::SerializationTraits< ByteBuffer, void >::Deserialize
static Status Deserialize(ByteBuffer *byte_buffer, ByteBuffer *dest)
Definition: byte_buffer.h:220
grpc.h
grpc::internal::DeserializeFuncType
Definition: call_op_set.h:513
grpc_byte_buffer
Definition: grpc_types.h:43
grpc::ByteBuffer
A sequence of bytes.
Definition: byte_buffer.h:60
grpc::internal::CallbackUnaryHandler
Definition: server_callback_handlers.h:33
grpc::SerializationTraits< ByteBuffer, void >::Serialize
static Status Serialize(const ByteBuffer &source, ByteBuffer *buffer, bool *own_buffer)
Definition: byte_buffer.h:224
grpc::ByteBuffer::Swap
void Swap(ByteBuffer *other)
Swap the state of *this and *other.
Definition: byte_buffer.h:152
grpc::ProtoBufferReader
This is a specialization of the protobuf class ZeroCopyInputStream The principle is to get one chunk ...
Definition: proto_buffer_reader.h:47
grpc::internal::CallbackServerStreamingHandler
Definition: server_callback_handlers.h:442
grpc_slice
A grpc_slice s, if initialized, represents the byte range s.bytes[0..s.length-1].
Definition: slice_type.h:63
grpc::SerializationTraits
Defines how to serialize and deserialize some type.
Definition: serialization_traits.h:58
grpc_byte_buffer_copy
GRPCAPI grpc_byte_buffer * grpc_byte_buffer_copy(grpc_byte_buffer *bb)
Copies input byte buffer bb.
grpc::ByteBuffer::GrpcByteBufferPeer
friend class internal::GrpcByteBufferPeer
Definition: byte_buffer.h:183
grpc::Slice
A wrapper around grpc_slice.
Definition: slice.h:33
byte_buffer.h
serialization_traits.h
grpc::internal::ServerStreamingHandler
A wrapper class of an application provided server streaming handler.
Definition: completion_queue.h:76
grpc::Status::OK
static const Status & OK
An OK pre-defined instance.
Definition: status.h:113
grpc::ByteBuffer::Dump
Status Dump(std::vector< Slice > *slices) const
Dump (read) the buffer contents into slices.
config.h
grpc::ByteBuffer::ByteBuffer
ByteBuffer(const ByteBuffer &buf)
Construct a byte buffer by referencing elements of existing buffer buf.
Definition: byte_buffer.h:95
grpc::ByteBuffer::ExternalConnectionAcceptorImpl
friend class internal::ExternalConnectionAcceptorImpl
Definition: byte_buffer.h:184
grpc::ByteBuffer::Valid
bool Valid() const
Is this ByteBuffer valid?
Definition: byte_buffer.h:159
grpc::internal::CallOpRecvMessage
Definition: call_op_set.h:424
grpc::ByteBuffer::Release
void Release()
Forget underlying byte buffer without destroying Use this only for un-owned byte buffers.
Definition: byte_buffer.h:144
grpc::ServerInterface
Definition: server_interface.h:60
slice.h
grpc::ByteBuffer::TrySingleSlice
Status TrySingleSlice(Slice *slice) const
grpc_raw_byte_buffer_create
GRPCAPI grpc_byte_buffer * grpc_raw_byte_buffer_create(grpc_slice *slices, size_t nslices)
Returns a RAW byte buffer instance over the given slices (up to nslices).