/* Copyright 2017 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include "tensorflow/core/distributed_runtime/rpc/grpc_util.h" namespace tensorflow { GrpcByteBufferSource::GrpcByteBufferSource() {} bool GrpcByteBufferSource::Init(const grpc::ByteBuffer& src) { cur_ = -1; left_ = 0; ptr_ = nullptr; byte_count_ = 0; bool ok = src.Dump(&slices_).ok(); if (!ok) { slices_.clear(); } return ok; } bool GrpcByteBufferSource::Next(const void** data, int* size) { // Use loop instead of if in case buffer contained empty slices. while (left_ == 0) { // Advance to next slice. cur_++; if (cur_ >= slices_.size()) { return false; } const ::grpc::Slice& s = slices_[cur_]; left_ = s.size(); ptr_ = reinterpret_cast(s.begin()); } *data = ptr_; *size = left_; byte_count_ += left_; ptr_ += left_; left_ = 0; return true; } void GrpcByteBufferSource::BackUp(int count) { ptr_ -= count; left_ += count; byte_count_ -= count; } bool GrpcByteBufferSource::Skip(int count) { const void* data; int size; while (Next(&data, &size)) { if (size >= count) { BackUp(size - count); return true; } // size < count; count -= size; } // error or we have too large count; return false; } grpc::protobuf::int64 GrpcByteBufferSource::ByteCount() const { return byte_count_; } void GrpcUnparseProto(const protobuf::Message& src, grpc::ByteBuffer* dst) { // TODO(sanjay): For bigger protos, serialize into a ZeroCopyOutputStream. size_t len = src.ByteSizeLong(); grpc_slice s = grpc_slice_malloc(len); src.SerializeWithCachedSizesToArray( reinterpret_cast(GRPC_SLICE_START_PTR(s))); ::grpc::Slice slice(s, ::grpc::Slice::STEAL_REF); ::grpc::ByteBuffer buffer(&slice, 1); // TODO(sanjay): Use Swap() when grpc version we are using is new enough. // dst->Swap(&buffer); *dst = buffer; } bool GrpcParseProto(const grpc::ByteBuffer& src, protobuf::Message* dst) { GrpcByteBufferSource stream; if (!stream.Init(src)) return false; return dst->ParseFromZeroCopyStream(&stream); } void GrpcCounter::Increment() { mutex_lock l(mu_); counter_++; } void GrpcCounter::Decrement() { mutex_lock l(mu_); DCHECK_GT(counter_, 0); counter_--; if (counter_ == 0) { empty_.notify_all(); } } void GrpcCounter::WaitUntilUnused() { mutex_lock l(mu_); while (counter_ != 0) { empty_.wait(l); } } } // namespace tensorflow