// ---------------------------------------------------------------------------- // Copyright (C) 2015 Sebastian Redl // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // For more information, see www.boost.org // ---------------------------------------------------------------------------- #ifndef BOOST_PROPERTY_TREE_DETAIL_JSON_PARSER_READ_HPP #define BOOST_PROPERTY_TREE_DETAIL_JSON_PARSER_READ_HPP #include #include #include #include #include #include #include #include namespace boost { namespace property_tree { namespace json_parser { namespace detail { template struct encoding; template <> struct encoding : utf8_utf8_encoding {}; template <> struct encoding : wide_wide_encoding {}; template void read_json_internal( std::basic_istream &stream, Ptree &pt, const std::string &filename) { typedef typename Ptree::key_type::value_type char_type; typedef standard_callbacks callbacks_type; typedef detail::encoding encoding_type; typedef std::istreambuf_iterator iterator; callbacks_type callbacks; encoding_type encoding; detail::parser parser(callbacks, encoding); parser.set_input(filename, boost::make_iterator_range(iterator(stream), iterator())); parser.parse_value(); parser.finish(); pt.swap(callbacks.output()); } }}}} #endif