Sha256: b4afde255fc2c1b47506f4fe052ee7dddb722e5011ddefc21a2cc7cd387e097b

Contents?: true

Size: 1.02 KB

Versions: 10

Compression:

Stored size: 1.02 KB

Contents

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

#ifndef TAO_JSON_CBOR_CONSUME_FILE_HPP
#define TAO_JSON_CBOR_CONSUME_FILE_HPP

#include <filesystem>

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

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

#include "parts_parser.hpp"

namespace tao::json::cbor
{
   template< typename T, template< typename... > class Traits = traits >
   [[nodiscard]] T consume_file( const std::filesystem::path& path )
   {
      cbor::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 std::filesystem::path& path, T& t )
   {
      cbor::basic_parts_parser< utf8_mode::check, pegtl::file_input< pegtl::tracking_mode::lazy > > pp( path );
      json::consume< Traits >( pp, t );
   }

}  // namespace tao::json::cbor

#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/cbor/consume_file.hpp
couchbase-3.2.0 ext/third_party/json/include/tao/json/cbor/consume_file.hpp
couchbase-3.1.1 ext/third_party/json/include/tao/json/cbor/consume_file.hpp
couchbase-3.1.1-universal-darwin-20 ext/third_party/json/include/tao/json/cbor/consume_file.hpp
couchbase-3.1.0 ext/third_party/json/include/tao/json/cbor/consume_file.hpp
couchbase-3.0.3 ext/third_party/json/include/tao/json/cbor/consume_file.hpp
couchbase-3.0.3-universal-darwin-20 ext/third_party/json/include/tao/json/cbor/consume_file.hpp
couchbase-3.0.2 ext/third_party/json/include/tao/json/cbor/consume_file.hpp
couchbase-3.0.1-universal-darwin-19 ext/third_party/json/include/tao/json/cbor/consume_file.hpp
couchbase-3.0.1 ext/third_party/json/include/tao/json/cbor/consume_file.hpp