Sha256: 766842a46355150ee8b0244a2fbda7191e29a484a15c8a9729b62cc9a8a985ef
Contents?: true
Size: 1.3 KB
Versions: 24
Compression:
Stored size: 1.3 KB
Contents
// Copyright (c) 2016-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/ #ifndef TAO_JSON_PEGTL_INTERNAL_CSTREAM_READER_HPP #define TAO_JSON_PEGTL_INTERNAL_CSTREAM_READER_HPP #include <cassert> #include <cstddef> #include <cstdio> #include <system_error> #include "../config.hpp" namespace TAO_JSON_PEGTL_NAMESPACE::internal { struct cstream_reader { explicit cstream_reader( std::FILE* s ) noexcept : m_cstream( s ) { assert( m_cstream != nullptr ); } [[nodiscard]] std::size_t operator()( char* buffer, const std::size_t length ) { if( const auto r = std::fread( buffer, 1, length, m_cstream ) ) { return r; } if( std::feof( m_cstream ) != 0 ) { return 0; } // Please contact us if you know how to provoke the following exception. // The example on cppreference.com doesn't work, at least not on macOS. // LCOV_EXCL_START const auto ec = std::ferror( m_cstream ); assert( ec != 0 ); throw std::system_error( ec, std::system_category(), "fread() failed" ); // LCOV_EXCL_STOP } std::FILE* m_cstream; }; } // namespace TAO_JSON_PEGTL_NAMESPACE::internal #endif
Version data entries
24 entries across 24 versions & 1 rubygems