Sha256: 00d20e085fffcc6fbc115f94dee420862f5943c27a0daafaf4fbbb928e8078e1

Contents?: true

Size: 1.07 KB

Versions: 7

Compression:

Stored size: 1.07 KB

Contents

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

#ifndef TAO_JSON_MSGPACK_CONSUME_FILE_HPP
#define TAO_JSON_MSGPACK_CONSUME_FILE_HPP

#include <tao/pegtl/file_input.hpp>

#include "../internal/filesystem.hpp"

#include "../consume.hpp"
#include "../forward.hpp"

#include "parts_parser.hpp"

namespace tao::json::msgpack
{
   template< typename T, template< typename... > class Traits = traits >
   [[nodiscard]] T consume_file( const json::internal::filesystem::path& path )
   {
      msgpack::basic_parts_parser< utf8_mode::check, pegtl::file_input< pegtl::tracking_mode::lazy > > pp( path );
      return json::consume< T, Traits >( pp );
   }

   template< template< typename... > class Traits = traits, typename T >
   void consume_file( const json::internal::filesystem::path& path, T& t )
   {
      msgpack::basic_parts_parser< utf8_mode::check, pegtl::file_input< pegtl::tracking_mode::lazy > > pp( path );
      json::consume< Traits >( pp, t );
   }

}  // namespace tao::json::msgpack

#endif

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
couchbase-3.4.5 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_file.hpp
couchbase-3.4.4 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_file.hpp
couchbase-3.4.3 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_file.hpp
couchbase-3.4.2 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_file.hpp
couchbase-3.4.1 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_file.hpp
couchbase-3.4.0 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_file.hpp
couchbase-3.3.0 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_file.hpp