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
|
// Copyright (c) 2014-2020 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/
#ifndef TAO_JSON_PEGTL_READ_INPUT_HPP
#define TAO_JSON_PEGTL_READ_INPUT_HPP
#include <filesystem>
#include <string>
#include "config.hpp"
#include "eol.hpp"
#include "string_input.hpp"
#include "tracking_mode.hpp"
#include "internal/file_reader.hpp"
#include "internal/path_to_string.hpp"
namespace TAO_JSON_PEGTL_NAMESPACE
{
template< tracking_mode P = tracking_mode::eager, typename Eol = eol::lf_crlf >
struct read_input
: string_input< P, Eol >
{
read_input( const std::filesystem::path& path, const std::string& source )
: string_input< P, Eol >( internal::file_reader( path ).read(), source )
{}
explicit read_input( const std::filesystem::path& path )
: read_input( path, internal::path_to_string( path ) )
{}
read_input( FILE* file, const std::filesystem::path& path, const std::string& source )
: string_input< P, Eol >( internal::file_reader( file, path ).read(), source )
{}
read_input( FILE* file, const std::filesystem::path& path )
: read_input( file, path, internal::path_to_string( path ) )
{}
read_input( const read_input& ) = delete;
read_input( read_input&& ) = delete;
~read_input() = default;
void operator=( const read_input& ) = delete;
void operator=( read_input&& ) = delete;
};
template< typename... Ts >
explicit read_input( Ts&&... ) -> read_input<>;
} // namespace TAO_JSON_PEGTL_NAMESPACE
#endif
|