Sha256: ea79bd5342ee6197b7a4edba6d1070bbd79d085507e36bbf8b9d1b2fdb9d0e1b

Contents?: true

Size: 1.58 KB

Versions: 10

Compression:

Stored size: 1.58 KB

Contents

// 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_CONTRIB_INTERNAL_PEEK_UTF16_HPP
#define TAO_JSON_PEGTL_CONTRIB_INTERNAL_PEEK_UTF16_HPP

#include <type_traits>

#include "../../config.hpp"
#include "../../internal/input_pair.hpp"

#include "read_uint.hpp"

namespace TAO_JSON_PEGTL_NAMESPACE::internal
{
   template< typename R >
   struct peek_utf16_impl
   {
      using data_t = char32_t;
      using pair_t = input_pair< char32_t >;

      using short_t = std::make_unsigned< char16_t >::type;

      static_assert( sizeof( short_t ) == 2 );
      static_assert( sizeof( char16_t ) == 2 );

      template< typename ParseInput >
      [[nodiscard]] static pair_t peek( ParseInput& in ) noexcept( noexcept( in.size( 4 ) ) )
      {
         if( in.size( 2 ) < 2 ) {
            return { 0, 0 };
         }
         const char32_t t = R::read( in.current() );
         if( ( t < 0xd800 ) || ( t > 0xdfff ) ) {
            return { t, 2 };
         }
         if( ( t >= 0xdc00 ) || ( in.size( 4 ) < 4 ) ) {
            return { 0, 0 };
         }
         const char32_t u = R::read( in.current() + 2 );
         if( ( u >= 0xdc00 ) && ( u <= 0xdfff ) ) {
            const auto cp = ( ( ( t & 0x03ff ) << 10 ) | ( u & 0x03ff ) ) + 0x10000;
            return { cp, 4 };
         }
         return { 0, 0 };
      }
   };

   using peek_utf16_be = peek_utf16_impl< read_uint16_be >;
   using peek_utf16_le = peek_utf16_impl< read_uint16_le >;

}  // namespace TAO_JSON_PEGTL_NAMESPACE::internal

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