1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
/*
* Copyright 2017 The Native Object Protocols Authors
*
* 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.
*/
#ifndef LIBNOP_EXAMPLES_STREAM_UTILITIES_H_
#define LIBNOP_EXAMPLES_STREAM_UTILITIES_H_
#include <unistd.h>
#include <array>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <vector>
#include <utility>
namespace {
// Prints a std::vector<T> to the given stream. This template will work for any
// type T that has an operator<< overload.
template <typename T, typename Allocator>
std::ostream& operator<<(std::ostream& stream,
const std::vector<T, Allocator>& vector) {
stream << "vector{";
const std::size_t length = vector.size();
std::size_t count = 0;
for (const auto& element : vector) {
stream << element;
if (count < length - 1)
stream << ", ";
count++;
}
stream << "}";
return stream;
}
// Prints a std::array<T, Size> to the given stream. This template will work for
// any type T that has an operator<< overload.
template <typename T, std::size_t Size>
std::ostream& operator<<(std::ostream& stream,
const std::array<T, Size>& array) {
stream << "array{";
const std::size_t length = array.size();
std::size_t count = 0;
for (const auto& element : array) {
stream << element;
if (count < length - 1)
stream << ", ";
count++;
}
stream << "}";
return stream;
}
template <typename T, typename U>
std::ostream& operator<<(std::ostream& stream, const std::pair<T, U>& pair) {
stream << "pair{" << pair.first << ", " << pair.second << "}";
return stream;
}
// A very simple and naive streambuf that wraps a file descriptor. This is for
// example use only and should not be used in production. In particular, this
// code does not handle signals properly.
class FdOutputBuffer : public std::streambuf {
public:
FdOutputBuffer(int fd) : fd_{fd} {}
~FdOutputBuffer() { close(fd_); }
int_type overflow(int_type c) override {
if (c != EOF) {
char value = c;
if (write(fd_, &value, sizeof(value)) != 1)
return EOF;
}
return c;
}
std::streamsize xsputn(const char* data, std::streamsize size) override {
return write(fd_, data, size);
}
private:
int fd_;
FdOutputBuffer(const FdOutputBuffer&) = delete;
void operator=(const FdOutputBuffer&) = delete;
};
// A very simple and naive output stream that wraps a file descriptor. This is
// for example use only and should not be used in production. In particular,
// this code does not handle signals properly.
class FdOutputStream : public std::ostream {
public:
FdOutputStream(int fd) : std::ostream{0}, buffer_{fd} { rdbuf(&buffer_); }
private:
FdOutputBuffer buffer_;
FdOutputStream(const FdOutputStream&) = delete;
void operator=(const FdOutputStream&) = delete;
};
// A very simple and naive streambuf that wraps a file descriptor. This is for
// example use only and should not be used in production. In particular, this
// code does not handle signals properly.
class FdInputBuffer : public std::streambuf {
public:
FdInputBuffer(int fd) : fd_{fd} {
setg(&buffer_[4], &buffer_[4], &buffer_[4]);
}
~FdInputBuffer() { close(fd_); }
int_type underflow() override {
// Is read position before end of buffer?
if (gptr() < egptr()) {
return traits_type::to_int_type(*gptr());
}
int num_putback;
num_putback = gptr() - eback();
if (num_putback > 4)
num_putback = 4;
std::memmove(&buffer_[4 - num_putback], gptr() - num_putback, num_putback);
const int count = read(fd_, &buffer_[4], kBufferSize - 4);
if (count <= 0)
return EOF;
setg(&buffer_[4 - num_putback], &buffer_[4], &buffer_[4 + count]);
return traits_type::to_int_type(*gptr());
}
private:
enum : std::size_t { kBufferSize = 10 };
int fd_;
char buffer_[kBufferSize];
FdInputBuffer(const FdInputBuffer&) = delete;
void operator=(const FdInputBuffer&) = delete;
};
// A very simple and naive input stream that wraps a file descriptor. This is
// for example use only and should not be used in production. In particular,
// this code does not handle signals properly.
class FdInputStream : public std::istream {
public:
FdInputStream(int fd) : std::istream{nullptr}, buffer_{fd} {
rdbuf(&buffer_);
}
private:
FdInputBuffer buffer_;
FdInputStream(const FdInputStream&) = delete;
void operator=(const FdInputStream&) = delete;
};
} // anonymous namespace
#endif // LIBNOP_EXAMPLES_STREAM_UTILITIES_H_
|