Sha256: 2582dafe1d1e0bbb9c093d4cfcf81b4e3fd6c34c2e3cbfb82977329df47b8000

Contents?: true

Size: 815 Bytes

Versions: 10

Compression:

Stored size: 815 Bytes

Contents

// Copyright (c) 2016-2020 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_EVENTS_FROM_FILE_HPP
#define TAO_JSON_EVENTS_FROM_FILE_HPP

#include <filesystem>

#include "../internal/action.hpp"
#include "../internal/errors.hpp"
#include "../internal/grammar.hpp"

#include "../external/pegtl/file_input.hpp"

namespace tao::json::events
{
   // Events producer to parse a file containing a JSON string representation.

   template< typename Consumer >
   void from_file( Consumer& consumer, const std::filesystem::path& path )
   {
      pegtl::file_input< pegtl::tracking_mode::lazy > in( path );
      pegtl::parse< internal::grammar, internal::action, internal::errors >( in, consumer );
   }

}  // namespace tao::json::events

#endif

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
couchbase-3.2.0-universal-darwin-20 ext/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.2.0 ext/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.1.1 ext/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.1.1-universal-darwin-20 ext/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.1.0 ext/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.0.3 ext/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.0.3-universal-darwin-20 ext/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.0.2 ext/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.0.1-universal-darwin-19 ext/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.0.1 ext/third_party/json/include/tao/json/events/from_file.hpp