cannam@147: // Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors cannam@147: // Licensed under the MIT License: cannam@147: // cannam@147: // Permission is hereby granted, free of charge, to any person obtaining a copy cannam@147: // of this software and associated documentation files (the "Software"), to deal cannam@147: // in the Software without restriction, including without limitation the rights cannam@147: // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell cannam@147: // copies of the Software, and to permit persons to whom the Software is cannam@147: // furnished to do so, subject to the following conditions: cannam@147: // cannam@147: // The above copyright notice and this permission notice shall be included in cannam@147: // all copies or substantial portions of the Software. cannam@147: // cannam@147: // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR cannam@147: // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, cannam@147: // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE cannam@147: // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER cannam@147: // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, cannam@147: // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN cannam@147: // THE SOFTWARE. cannam@147: cannam@147: #ifndef KJ_IO_H_ cannam@147: #define KJ_IO_H_ cannam@147: cannam@147: #if defined(__GNUC__) && !KJ_HEADER_WARNINGS cannam@147: #pragma GCC system_header cannam@147: #endif cannam@147: cannam@147: #include cannam@147: #include "common.h" cannam@147: #include "array.h" cannam@147: #include "exception.h" cannam@147: cannam@147: namespace kj { cannam@147: cannam@147: // ======================================================================================= cannam@147: // Abstract interfaces cannam@147: cannam@147: class InputStream { cannam@147: public: cannam@147: virtual ~InputStream() noexcept(false); cannam@147: cannam@147: size_t read(void* buffer, size_t minBytes, size_t maxBytes); cannam@147: // Reads at least minBytes and at most maxBytes, copying them into the given buffer. Returns cannam@147: // the size read. Throws an exception on errors. Implemented in terms of tryRead(). cannam@147: // cannam@147: // maxBytes is the number of bytes the caller really wants, but minBytes is the minimum amount cannam@147: // needed by the caller before it can start doing useful processing. If the stream returns less cannam@147: // than maxBytes, the caller will usually call read() again later to get the rest. Returning cannam@147: // less than maxBytes is useful when it makes sense for the caller to parallelize processing cannam@147: // with I/O. cannam@147: // cannam@147: // Never blocks if minBytes is zero. If minBytes is zero and maxBytes is non-zero, this may cannam@147: // attempt a non-blocking read or may just return zero. To force a read, use a non-zero minBytes. cannam@147: // To detect EOF without throwing an exception, use tryRead(). cannam@147: // cannam@147: // If the InputStream can't produce minBytes, it MUST throw an exception, as the caller is not cannam@147: // expected to understand how to deal with partial reads. cannam@147: cannam@147: virtual size_t tryRead(void* buffer, size_t minBytes, size_t maxBytes) = 0; cannam@147: // Like read(), but may return fewer than minBytes on EOF. cannam@147: cannam@147: inline void read(void* buffer, size_t bytes) { read(buffer, bytes, bytes); } cannam@147: // Convenience method for reading an exact number of bytes. cannam@147: cannam@147: virtual void skip(size_t bytes); cannam@147: // Skips past the given number of bytes, discarding them. The default implementation read()s cannam@147: // into a scratch buffer. cannam@147: }; cannam@147: cannam@147: class OutputStream { cannam@147: public: cannam@147: virtual ~OutputStream() noexcept(false); cannam@147: cannam@147: virtual void write(const void* buffer, size_t size) = 0; cannam@147: // Always writes the full size. Throws exception on error. cannam@147: cannam@147: virtual void write(ArrayPtr> pieces); cannam@147: // Equivalent to write()ing each byte array in sequence, which is what the default implementation cannam@147: // does. Override if you can do something better, e.g. use writev() to do the write in a single cannam@147: // syscall. cannam@147: }; cannam@147: cannam@147: class BufferedInputStream: public InputStream { cannam@147: // An input stream which buffers some bytes in memory to reduce system call overhead. cannam@147: // - OR - cannam@147: // An input stream that actually reads from some in-memory data structure and wants to give its cannam@147: // caller a direct pointer to that memory to potentially avoid a copy. cannam@147: cannam@147: public: cannam@147: virtual ~BufferedInputStream() noexcept(false); cannam@147: cannam@147: ArrayPtr getReadBuffer(); cannam@147: // Get a direct pointer into the read buffer, which contains the next bytes in the input. If the cannam@147: // caller consumes any bytes, it should then call skip() to indicate this. This always returns a cannam@147: // non-empty buffer or throws an exception. Implemented in terms of tryGetReadBuffer(). cannam@147: cannam@147: virtual ArrayPtr tryGetReadBuffer() = 0; cannam@147: // Like getReadBuffer() but may return an empty buffer on EOF. cannam@147: }; cannam@147: cannam@147: class BufferedOutputStream: public OutputStream { cannam@147: // An output stream which buffers some bytes in memory to reduce system call overhead. cannam@147: // - OR - cannam@147: // An output stream that actually writes into some in-memory data structure and wants to give its cannam@147: // caller a direct pointer to that memory to potentially avoid a copy. cannam@147: cannam@147: public: cannam@147: virtual ~BufferedOutputStream() noexcept(false); cannam@147: cannam@147: virtual ArrayPtr getWriteBuffer() = 0; cannam@147: // Get a direct pointer into the write buffer. The caller may choose to fill in some prefix of cannam@147: // this buffer and then pass it to write(), in which case write() may avoid a copy. It is cannam@147: // incorrect to pass to write any slice of this buffer which is not a prefix. cannam@147: }; cannam@147: cannam@147: // ======================================================================================= cannam@147: // Buffered streams implemented as wrappers around regular streams cannam@147: cannam@147: class BufferedInputStreamWrapper: public BufferedInputStream { cannam@147: // Implements BufferedInputStream in terms of an InputStream. cannam@147: // cannam@147: // Note that the underlying stream's position is unpredictable once the wrapper is destroyed, cannam@147: // unless the entire stream was consumed. To read a predictable number of bytes in a buffered cannam@147: // way without going over, you'd need this wrapper to wrap some other wrapper which itself cannam@147: // implements an artificial EOF at the desired point. Such a stream should be trivial to write cannam@147: // but is not provided by the library at this time. cannam@147: cannam@147: public: cannam@147: explicit BufferedInputStreamWrapper(InputStream& inner, ArrayPtr buffer = nullptr); cannam@147: // Creates a buffered stream wrapping the given non-buffered stream. No guarantee is made about cannam@147: // the position of the inner stream after a buffered wrapper has been created unless the entire cannam@147: // input is read. cannam@147: // cannam@147: // If the second parameter is non-null, the stream uses the given buffer instead of allocating cannam@147: // its own. This may improve performance if the buffer can be reused. cannam@147: cannam@147: KJ_DISALLOW_COPY(BufferedInputStreamWrapper); cannam@147: ~BufferedInputStreamWrapper() noexcept(false); cannam@147: cannam@147: // implements BufferedInputStream ---------------------------------- cannam@147: ArrayPtr tryGetReadBuffer() override; cannam@147: size_t tryRead(void* buffer, size_t minBytes, size_t maxBytes) override; cannam@147: void skip(size_t bytes) override; cannam@147: cannam@147: private: cannam@147: InputStream& inner; cannam@147: Array ownedBuffer; cannam@147: ArrayPtr buffer; cannam@147: ArrayPtr bufferAvailable; cannam@147: }; cannam@147: cannam@147: class BufferedOutputStreamWrapper: public BufferedOutputStream { cannam@147: // Implements BufferedOutputStream in terms of an OutputStream. Note that writes to the cannam@147: // underlying stream may be delayed until flush() is called or the wrapper is destroyed. cannam@147: cannam@147: public: cannam@147: explicit BufferedOutputStreamWrapper(OutputStream& inner, ArrayPtr buffer = nullptr); cannam@147: // Creates a buffered stream wrapping the given non-buffered stream. cannam@147: // cannam@147: // If the second parameter is non-null, the stream uses the given buffer instead of allocating cannam@147: // its own. This may improve performance if the buffer can be reused. cannam@147: cannam@147: KJ_DISALLOW_COPY(BufferedOutputStreamWrapper); cannam@147: ~BufferedOutputStreamWrapper() noexcept(false); cannam@147: cannam@147: void flush(); cannam@147: // Force the wrapper to write any remaining bytes in its buffer to the inner stream. Note that cannam@147: // this only flushes this object's buffer; this object has no idea how to flush any other buffers cannam@147: // that may be present in the underlying stream. cannam@147: cannam@147: // implements BufferedOutputStream --------------------------------- cannam@147: ArrayPtr getWriteBuffer() override; cannam@147: void write(const void* buffer, size_t size) override; cannam@147: cannam@147: private: cannam@147: OutputStream& inner; cannam@147: Array ownedBuffer; cannam@147: ArrayPtr buffer; cannam@147: byte* bufferPos; cannam@147: UnwindDetector unwindDetector; cannam@147: }; cannam@147: cannam@147: // ======================================================================================= cannam@147: // Array I/O cannam@147: cannam@147: class ArrayInputStream: public BufferedInputStream { cannam@147: public: cannam@147: explicit ArrayInputStream(ArrayPtr array); cannam@147: KJ_DISALLOW_COPY(ArrayInputStream); cannam@147: ~ArrayInputStream() noexcept(false); cannam@147: cannam@147: // implements BufferedInputStream ---------------------------------- cannam@147: ArrayPtr tryGetReadBuffer() override; cannam@147: size_t tryRead(void* buffer, size_t minBytes, size_t maxBytes) override; cannam@147: void skip(size_t bytes) override; cannam@147: cannam@147: private: cannam@147: ArrayPtr array; cannam@147: }; cannam@147: cannam@147: class ArrayOutputStream: public BufferedOutputStream { cannam@147: public: cannam@147: explicit ArrayOutputStream(ArrayPtr array); cannam@147: KJ_DISALLOW_COPY(ArrayOutputStream); cannam@147: ~ArrayOutputStream() noexcept(false); cannam@147: cannam@147: ArrayPtr getArray() { cannam@147: // Get the portion of the array which has been filled in. cannam@147: return arrayPtr(array.begin(), fillPos); cannam@147: } cannam@147: cannam@147: // implements BufferedInputStream ---------------------------------- cannam@147: ArrayPtr getWriteBuffer() override; cannam@147: void write(const void* buffer, size_t size) override; cannam@147: cannam@147: private: cannam@147: ArrayPtr array; cannam@147: byte* fillPos; cannam@147: }; cannam@147: cannam@147: class VectorOutputStream: public BufferedOutputStream { cannam@147: public: cannam@147: explicit VectorOutputStream(size_t initialCapacity = 4096); cannam@147: KJ_DISALLOW_COPY(VectorOutputStream); cannam@147: ~VectorOutputStream() noexcept(false); cannam@147: cannam@147: ArrayPtr getArray() { cannam@147: // Get the portion of the array which has been filled in. cannam@147: return arrayPtr(vector.begin(), fillPos); cannam@147: } cannam@147: cannam@147: // implements BufferedInputStream ---------------------------------- cannam@147: ArrayPtr getWriteBuffer() override; cannam@147: void write(const void* buffer, size_t size) override; cannam@147: cannam@147: private: cannam@147: Array vector; cannam@147: byte* fillPos; cannam@147: cannam@147: void grow(size_t minSize); cannam@147: }; cannam@147: cannam@147: // ======================================================================================= cannam@147: // File descriptor I/O cannam@147: cannam@147: class AutoCloseFd { cannam@147: // A wrapper around a file descriptor which automatically closes the descriptor when destroyed. cannam@147: // The wrapper supports move construction for transferring ownership of the descriptor. If cannam@147: // close() returns an error, the destructor throws an exception, UNLESS the destructor is being cannam@147: // called during unwind from another exception, in which case the close error is ignored. cannam@147: // cannam@147: // If your code is not exception-safe, you should not use AutoCloseFd. In this case you will cannam@147: // have to call close() yourself and handle errors appropriately. cannam@147: cannam@147: public: cannam@147: inline AutoCloseFd(): fd(-1) {} cannam@147: inline AutoCloseFd(decltype(nullptr)): fd(-1) {} cannam@147: inline explicit AutoCloseFd(int fd): fd(fd) {} cannam@147: inline AutoCloseFd(AutoCloseFd&& other) noexcept: fd(other.fd) { other.fd = -1; } cannam@147: KJ_DISALLOW_COPY(AutoCloseFd); cannam@147: ~AutoCloseFd() noexcept(false); cannam@147: cannam@147: inline AutoCloseFd& operator=(AutoCloseFd&& other) { cannam@147: AutoCloseFd old(kj::mv(*this)); cannam@147: fd = other.fd; cannam@147: other.fd = -1; cannam@147: return *this; cannam@147: } cannam@147: cannam@147: inline AutoCloseFd& operator=(decltype(nullptr)) { cannam@147: AutoCloseFd old(kj::mv(*this)); cannam@147: return *this; cannam@147: } cannam@147: cannam@147: inline operator int() const { return fd; } cannam@147: inline int get() const { return fd; } cannam@147: cannam@147: operator bool() const = delete; cannam@147: // Deleting this operator prevents accidental use in boolean contexts, which cannam@147: // the int conversion operator above would otherwise allow. cannam@147: cannam@147: inline bool operator==(decltype(nullptr)) { return fd < 0; } cannam@147: inline bool operator!=(decltype(nullptr)) { return fd >= 0; } cannam@147: cannam@147: private: cannam@147: int fd; cannam@147: UnwindDetector unwindDetector; cannam@147: }; cannam@147: cannam@147: inline auto KJ_STRINGIFY(const AutoCloseFd& fd) cannam@147: -> decltype(kj::toCharSequence(implicitCast(fd))) { cannam@147: return kj::toCharSequence(implicitCast(fd)); cannam@147: } cannam@147: cannam@147: class FdInputStream: public InputStream { cannam@147: // An InputStream wrapping a file descriptor. cannam@147: cannam@147: public: cannam@147: explicit FdInputStream(int fd): fd(fd) {} cannam@147: explicit FdInputStream(AutoCloseFd fd): fd(fd), autoclose(mv(fd)) {} cannam@147: KJ_DISALLOW_COPY(FdInputStream); cannam@147: ~FdInputStream() noexcept(false); cannam@147: cannam@147: size_t tryRead(void* buffer, size_t minBytes, size_t maxBytes) override; cannam@147: cannam@147: inline int getFd() const { return fd; } cannam@147: cannam@147: private: cannam@147: int fd; cannam@147: AutoCloseFd autoclose; cannam@147: }; cannam@147: cannam@147: class FdOutputStream: public OutputStream { cannam@147: // An OutputStream wrapping a file descriptor. cannam@147: cannam@147: public: cannam@147: explicit FdOutputStream(int fd): fd(fd) {} cannam@147: explicit FdOutputStream(AutoCloseFd fd): fd(fd), autoclose(mv(fd)) {} cannam@147: KJ_DISALLOW_COPY(FdOutputStream); cannam@147: ~FdOutputStream() noexcept(false); cannam@147: cannam@147: void write(const void* buffer, size_t size) override; cannam@147: void write(ArrayPtr> pieces) override; cannam@147: cannam@147: inline int getFd() const { return fd; } cannam@147: cannam@147: private: cannam@147: int fd; cannam@147: AutoCloseFd autoclose; cannam@147: }; cannam@147: cannam@147: // ======================================================================================= cannam@147: // Win32 Handle I/O cannam@147: cannam@147: #ifdef _WIN32 cannam@147: cannam@147: class AutoCloseHandle { cannam@147: // A wrapper around a Win32 HANDLE which automatically closes the handle when destroyed. cannam@147: // The wrapper supports move construction for transferring ownership of the handle. If cannam@147: // CloseHandle() returns an error, the destructor throws an exception, UNLESS the destructor is cannam@147: // being called during unwind from another exception, in which case the close error is ignored. cannam@147: // cannam@147: // If your code is not exception-safe, you should not use AutoCloseHandle. In this case you will cannam@147: // have to call close() yourself and handle errors appropriately. cannam@147: cannam@147: public: cannam@147: inline AutoCloseHandle(): handle((void*)-1) {} cannam@147: inline AutoCloseHandle(decltype(nullptr)): handle((void*)-1) {} cannam@147: inline explicit AutoCloseHandle(void* handle): handle(handle) {} cannam@147: inline AutoCloseHandle(AutoCloseHandle&& other) noexcept: handle(other.handle) { cannam@147: other.handle = (void*)-1; cannam@147: } cannam@147: KJ_DISALLOW_COPY(AutoCloseHandle); cannam@147: ~AutoCloseHandle() noexcept(false); cannam@147: cannam@147: inline AutoCloseHandle& operator=(AutoCloseHandle&& other) { cannam@147: AutoCloseHandle old(kj::mv(*this)); cannam@147: handle = other.handle; cannam@147: other.handle = (void*)-1; cannam@147: return *this; cannam@147: } cannam@147: cannam@147: inline AutoCloseHandle& operator=(decltype(nullptr)) { cannam@147: AutoCloseHandle old(kj::mv(*this)); cannam@147: return *this; cannam@147: } cannam@147: cannam@147: inline operator void*() const { return handle; } cannam@147: inline void* get() const { return handle; } cannam@147: cannam@147: operator bool() const = delete; cannam@147: // Deleting this operator prevents accidental use in boolean contexts, which cannam@147: // the void* conversion operator above would otherwise allow. cannam@147: cannam@147: inline bool operator==(decltype(nullptr)) { return handle != (void*)-1; } cannam@147: inline bool operator!=(decltype(nullptr)) { return handle == (void*)-1; } cannam@147: cannam@147: private: cannam@147: void* handle; // -1 (aka INVALID_HANDLE_VALUE) if not valid. cannam@147: }; cannam@147: cannam@147: class HandleInputStream: public InputStream { cannam@147: // An InputStream wrapping a Win32 HANDLE. cannam@147: cannam@147: public: cannam@147: explicit HandleInputStream(void* handle): handle(handle) {} cannam@147: explicit HandleInputStream(AutoCloseHandle handle): handle(handle), autoclose(mv(handle)) {} cannam@147: KJ_DISALLOW_COPY(HandleInputStream); cannam@147: ~HandleInputStream() noexcept(false); cannam@147: cannam@147: size_t tryRead(void* buffer, size_t minBytes, size_t maxBytes) override; cannam@147: cannam@147: private: cannam@147: void* handle; cannam@147: AutoCloseHandle autoclose; cannam@147: }; cannam@147: cannam@147: class HandleOutputStream: public OutputStream { cannam@147: // An OutputStream wrapping a Win32 HANDLE. cannam@147: cannam@147: public: cannam@147: explicit HandleOutputStream(void* handle): handle(handle) {} cannam@147: explicit HandleOutputStream(AutoCloseHandle handle): handle(handle), autoclose(mv(handle)) {} cannam@147: KJ_DISALLOW_COPY(HandleOutputStream); cannam@147: ~HandleOutputStream() noexcept(false); cannam@147: cannam@147: void write(const void* buffer, size_t size) override; cannam@147: cannam@147: private: cannam@147: void* handle; cannam@147: AutoCloseHandle autoclose; cannam@147: }; cannam@147: cannam@147: #endif // _WIN32 cannam@147: cannam@147: } // namespace kj cannam@147: cannam@147: #endif // KJ_IO_H_