GRPC C++  1.30.0
proto_buffer_reader.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_IMPL_CODEGEN_PROTO_BUFFER_READER_H
20 #define GRPCPP_IMPL_CODEGEN_PROTO_BUFFER_READER_H
21 
22 #include <type_traits>
23 
32 
35 
36 namespace grpc {
37 
38 extern CoreCodegenInterface* g_core_codegen_interface;
39 
47  public:
50  explicit ProtoBufferReader(ByteBuffer* buffer)
51  : byte_count_(0), backup_count_(0), status_() {
54  if (!buffer->Valid() ||
56  &reader_, buffer->c_buffer())) {
57  status_ = Status(StatusCode::INTERNAL,
58  "Couldn't initialize byte buffer reader");
59  }
60  }
61 
63  if (status_.ok()) {
65  }
66  }
67 
70  bool Next(const void** data, int* size) override {
71  if (!status_.ok()) {
72  return false;
73  }
75  if (backup_count_ > 0) {
76  *data = GRPC_SLICE_START_PTR(*slice_) + GRPC_SLICE_LENGTH(*slice_) -
77  backup_count_;
78  GPR_CODEGEN_ASSERT(backup_count_ <= INT_MAX);
79  *size = (int)backup_count_;
80  backup_count_ = 0;
81  return true;
82  }
85  &slice_)) {
86  return false;
87  }
88  *data = GRPC_SLICE_START_PTR(*slice_);
89  // On win x64, int is only 32bit
90  GPR_CODEGEN_ASSERT(GRPC_SLICE_LENGTH(*slice_) <= INT_MAX);
91  byte_count_ += * size = (int)GRPC_SLICE_LENGTH(*slice_);
92  return true;
93  }
94 
96  Status status() const { return status_; }
97 
101  void BackUp(int count) override {
102  GPR_CODEGEN_ASSERT(count <= static_cast<int>(GRPC_SLICE_LENGTH(*slice_)));
103  backup_count_ = count;
104  }
105 
108  bool Skip(int count) override {
109  const void* data;
110  int size;
111  while (Next(&data, &size)) {
112  if (size >= count) {
113  BackUp(size - count);
114  return true;
115  }
116  // size < count;
117  count -= size;
118  }
119  // error or we have too large count;
120  return false;
121  }
122 
124  int64_t ByteCount() const override { return byte_count_ - backup_count_; }
125 
126  // These protected members are needed to support internal optimizations.
127  // they expose internal bits of grpc core that are NOT stable. If you have
128  // a use case needs to use one of these functions, please send an email to
129  // https://groups.google.com/forum/#!forum/grpc-io.
130  protected:
131  void set_byte_count(int64_t byte_count) { byte_count_ = byte_count; }
132  int64_t backup_count() { return backup_count_; }
133  void set_backup_count(int64_t backup_count) { backup_count_ = backup_count; }
134  grpc_byte_buffer_reader* reader() { return &reader_; }
135  grpc_slice* slice() { return slice_; }
136  grpc_slice** mutable_slice_ptr() { return &slice_; }
137 
138  private:
139  int64_t byte_count_;
140  int64_t backup_count_;
141  grpc_byte_buffer_reader reader_;
142  grpc_slice* slice_;
144  Status status_;
145 };
146 
147 } // namespace grpc
148 
149 #endif // GRPCPP_IMPL_CODEGEN_PROTO_BUFFER_READER_H
GRPC_SLICE_LENGTH
#define GRPC_SLICE_LENGTH(slice)
Definition: slice.h:99
grpc::CoreCodegenInterface::grpc_byte_buffer_reader_peek
virtual int grpc_byte_buffer_reader_peek(grpc_byte_buffer_reader *reader, grpc_slice **slice)=0
grpc
This header provides an object that reads bytes directly from a grpc::ByteBuffer, via the ZeroCopyInp...
Definition: alarm.h:24
status.h
byte_buffer_reader.h
grpc::ProtoBufferReader::ProtoBufferReader
ProtoBufferReader(ByteBuffer *buffer)
Constructs buffer reader from buffer.
Definition: proto_buffer_reader.h:50
serialization_traits.h
grpc::protobuf::io::ZeroCopyInputStream
::google::protobuf::io::ZeroCopyInputStream ZeroCopyInputStream
Definition: config_protobuf.h:97
core_codegen_interface.h
grpc::ProtoBufferReader::~ProtoBufferReader
~ProtoBufferReader()
Definition: proto_buffer_reader.h:62
grpc::ProtoBufferReader::backup_count
int64_t backup_count()
Definition: proto_buffer_reader.h:132
grpc::Status::ok
bool ok() const
Is the status OK?
Definition: status.h:118
byte_buffer.h
grpc::ProtoBufferReader::BackUp
void BackUp(int count) override
The proto library calls this to indicate that we should back up count bytes that have already been re...
Definition: proto_buffer_reader.h:101
grpc_types.h
grpc::Status
Did it work? If it didn't, why?
Definition: status.h:31
grpc::ProtoBufferReader::reader
grpc_byte_buffer_reader * reader()
Definition: proto_buffer_reader.h:134
grpc::ProtoBufferReader::ByteCount
int64_t ByteCount() const override
Returns the total number of bytes read since this object was created.
Definition: proto_buffer_reader.h:124
grpc::ProtoBufferReader::Skip
bool Skip(int count) override
The proto library calls this to skip over count bytes.
Definition: proto_buffer_reader.h:108
grpc::ByteBuffer
A sequence of bytes.
Definition: byte_buffer.h:67
grpc::ProtoBufferReader
This is a specialization of the protobuf class ZeroCopyInputStream The principle is to get one chunk ...
Definition: proto_buffer_reader.h:46
grpc_slice
A grpc_slice s, if initialized, represents the byte range s.bytes[0..s.length-1].
Definition: slice.h:60
grpc::ProtoBufferReader::set_byte_count
void set_byte_count(int64_t byte_count)
Definition: proto_buffer_reader.h:131
grpc::ProtoBufferReader::mutable_slice_ptr
grpc_slice ** mutable_slice_ptr()
Definition: proto_buffer_reader.h:136
grpc::protobuf::util::Status
::google::protobuf::util::Status Status
Definition: config_protobuf.h:90
grpc::CoreCodegenInterface::grpc_byte_buffer_reader_init
virtual int grpc_byte_buffer_reader_init(grpc_byte_buffer_reader *reader, grpc_byte_buffer *buffer) GRPC_MUST_USE_RESULT=0
grpc::ProtoBufferReader::status
Status status() const
Returns the status of the buffer reader.
Definition: proto_buffer_reader.h:96
config_protobuf.h
GRPC_SLICE_START_PTR
#define GRPC_SLICE_START_PTR(slice)
Definition: slice.h:96
grpc::ByteBuffer::Valid
bool Valid() const
Is this ByteBuffer valid?
Definition: byte_buffer.h:163
grpc::g_core_codegen_interface
CoreCodegenInterface * g_core_codegen_interface
Definition: completion_queue_impl.h:93
GPR_CODEGEN_ASSERT
#define GPR_CODEGEN_ASSERT(x)
Codegen specific version of GPR_ASSERT.
Definition: core_codegen_interface.h:146
grpc::ProtoBufferReader::slice
grpc_slice * slice()
Definition: proto_buffer_reader.h:135
grpc_byte_buffer_reader
Definition: byte_buffer_reader.h:28
grpc::ProtoBufferReader::Next
bool Next(const void **data, int *size) override
Give the proto library a chunk of data from the stream.
Definition: proto_buffer_reader.h:70
grpc::ProtoBufferReader::set_backup_count
void set_backup_count(int64_t backup_count)
Definition: proto_buffer_reader.h:133
slice.h
grpc::CoreCodegenInterface::grpc_byte_buffer_reader_destroy
virtual void grpc_byte_buffer_reader_destroy(grpc_byte_buffer_reader *reader)=0
grpc::INTERNAL
Internal errors.
Definition: status_code_enum.h:119