blob: 56278f32598849aba0961bec18d53e813162f227 [file] [log] [blame]
David Reiss9f3296b2010-08-31 16:58:41 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20#include "TZmqClient.h"
21#include <cstring>
22
23namespace apache { namespace thrift { namespace transport {
24
Jens Geyer3e9c3a22014-12-22 22:21:24 +010025uint32_t TZmqClient::read_virt(uint8_t* buf, uint32_t len) {
David Reiss9f3296b2010-08-31 16:58:41 +000026 if (rbuf_.available_read() == 0) {
27 (void)sock_.recv(&msg_);
28 rbuf_.resetBuffer((uint8_t*)msg_.data(), msg_.size());
29 }
30 return rbuf_.read(buf, len);
31}
32
Jens Geyer3e9c3a22014-12-22 22:21:24 +010033void TZmqClient::write_virt(const uint8_t* buf, uint32_t len) {
David Reiss9f3296b2010-08-31 16:58:41 +000034 return wbuf_.write(buf, len);
35}
36
Jens Geyer3e9c3a22014-12-22 22:21:24 +010037uint32_t TZmqClient::writeEnd() {
David Reiss9f3296b2010-08-31 16:58:41 +000038 uint8_t* buf;
39 uint32_t size;
40 wbuf_.getBuffer(&buf, &size);
41 zmq::message_t msg(size);
42 std::memcpy(msg.data(), buf, size);
43 (void)sock_.send(msg);
44 wbuf_.resetBuffer(true);
Jens Geyer3e9c3a22014-12-22 22:21:24 +010045 return size;
David Reiss9f3296b2010-08-31 16:58:41 +000046}
47
48}}} // apache::thrift::transport