rapidyaml 0.16.0
parse and emit YAML, and do it fast
Loading...
Searching...
No Matches
c4::yml::ParseEngine< EventHandler > Class Template Reference

This is the main driver of parsing logic: it scans the YAML or JSON source for tokens, and emits the appropriate sequence of parsing events to its event handler. More...

#include <parse_engine.hpp>

Public Types

using handler_type = EventHandler

Public Member Functions

construction and assignment
 ParseEngine (EventHandler *evt_handler, ParserOptions const &opts={})
 ~ParseEngine () noexcept
 ParseEngine (ParseEngine &&) noexcept
 ParseEngine (ParseEngine const &)
ParseEngineoperator= (ParseEngine &&) noexcept
ParseEngineoperator= (ParseEngine const &)
modifiers
void reserve_stack (id_type capacity)
 Reserve a certain capacity for the parsing stack.
void reserve_locations (size_t num_source_lines)
 Reserve a certain capacity for the array used to track node locations in the source buffer.
getters
ParserOptions const & options () const
 Get the options used to build this parser object.
Callbacks const & callbacks () const
 Get the current callbacks in the parser.
csubstr filename () const
 Get the name of the latest file parsed by this object.
csubstr source () const
 Get the latest YAML buffer parsed by this object.
Encoding_e encoding () const
 Get the encoding of the latest YAML buffer parsed by this object.
id_type stack_capacity () const
size_t locations_capacity () const
parse methods
void parse_in_place_ev (csubstr filename, substr src)
 parse YAML in place, emitting events to the current handler
void parse_json_in_place_ev (csubstr filename, substr src)
 parse JSON in place, emitting events to the current handler
locations
csubstr location_contents (Location const &loc) const
 Get the string starting at a particular location, to the end of the parsed source buffer.
Location val_location (const char *val) const
 Given a pointer to a buffer position, get the location.
scalar filtering
FilterResult filter_scalar_plain (csubstr scalar, substr dst, size_t indentation)
 filter a plain scalar
FilterResult filter_scalar_plain_in_place (substr scalar, size_t cap, size_t indentation)
 filter a plain scalar in place
FilterResult filter_scalar_squoted (csubstr scalar, substr dst)
 filter a single-quoted scalar
FilterResult filter_scalar_squoted_in_place (substr scalar, size_t cap)
 filter a single-quoted scalar in place
FilterResult filter_scalar_dquoted (csubstr scalar, substr dst)
 filter a double-quoted scalar
FilterResultExtending filter_scalar_dquoted_in_place (substr scalar, size_t cap)
 filter a double-quoted scalar in place
FilterResult filter_scalar_block_literal (csubstr scalar, substr dst, size_t indentation, BlockChomp_e chomp)
 filter a block-literal scalar
FilterResult filter_scalar_block_literal_in_place (substr scalar, size_t cap, size_t indentation, BlockChomp_e chomp)
 filter a block-literal scalar in place
FilterResult filter_scalar_block_folded (csubstr scalar, substr dst, size_t indentation, BlockChomp_e chomp)
 filter a block-folded scalar
FilterResult filter_scalar_block_folded_in_place (substr scalar, size_t cap, size_t indentation, BlockChomp_e chomp)
 filter a block-folded scalar in place

Detailed Description

template<class EventHandler>
class c4::yml::ParseEngine< EventHandler >

This is the main driver of parsing logic: it scans the YAML or JSON source for tokens, and emits the appropriate sequence of parsing events to its event handler.

The parse engine itself has no special limitations, and can accomodate containers as keys; it is the event handler may introduce additional constraints.

There are two implemented handlers (see Event Handlers, which has important notes about the event model):

Definition at line 290 of file parse_engine.hpp.

Member Typedef Documentation

◆ handler_type

template<class EventHandler>
using c4::yml::ParseEngine< EventHandler >::handler_type = EventHandler

Definition at line 294 of file parse_engine.hpp.

Constructor & Destructor Documentation

◆ ParseEngine() [1/3]

template<class EventHandler>
c4::yml::ParseEngine< EventHandler >::ParseEngine ( EventHandler * evt_handler,
ParserOptions const & opts = {} )

Definition at line 277 of file parse_engine.def.hpp.

278 : m_options(opts)
280 , m_pending_anchors()
281 , m_pending_tags()
282 , m_has_directives_yaml(false)
283 , m_has_directives(false)
284 , m_doc_empty(true)
285 , m_prev_colon(npos)
286 , m_prev_val_end(npos)
287 , m_encoding(NOBOM)
288 , m_newline_offsets()
289 , m_newline_offsets_size(0)
290 , m_newline_offsets_capacity(0)
291{
293}
This is the main driver of parsing logic: it scans the YAML or JSON source for tokens,...

Referenced by ParseEngine(), ParseEngine(), operator=(), and operator=().

◆ ~ParseEngine()

template<class EventHandler>
c4::yml::ParseEngine< EventHandler >::~ParseEngine ( )
noexcept

Definition at line 270 of file parse_engine.def.hpp.

271{
272 _free();
273 _clr();
274}

◆ ParseEngine() [2/3]

template<class EventHandler>
c4::yml::ParseEngine< EventHandler >::ParseEngine ( ParseEngine< EventHandler > && that)
noexcept

Definition at line 296 of file parse_engine.def.hpp.

297 : m_options(that.m_options)
298 , m_evt_handler(that.m_evt_handler)
299 , m_pending_anchors(that.m_pending_anchors)
300 , m_pending_tags(that.m_pending_tags)
301 , m_has_directives_yaml(that.m_has_directives_yaml)
302 , m_has_directives(that.m_has_directives)
303 , m_doc_empty(that.m_doc_empty)
304 , m_prev_colon(npos)
305 , m_prev_val_end(npos)
306 , m_encoding(NOBOM)
307 , m_newline_offsets(that.m_newline_offsets)
308 , m_newline_offsets_size(that.m_newline_offsets_size)
309 , m_newline_offsets_capacity(that.m_newline_offsets_capacity)
310{
311 that._clr();
312}

◆ ParseEngine() [3/3]

template<class EventHandler>
c4::yml::ParseEngine< EventHandler >::ParseEngine ( ParseEngine< EventHandler > const & that)

Definition at line 315 of file parse_engine.def.hpp.

316 : m_options(that.m_options)
317 , m_evt_handler(that.m_evt_handler)
318 , m_pending_anchors(that.m_pending_anchors)
319 , m_pending_tags(that.m_pending_tags)
320 , m_has_directives_yaml(that.m_has_directives_yaml)
321 , m_has_directives(that.m_has_directives)
322 , m_doc_empty(that.m_doc_empty)
323 , m_prev_colon(npos)
324 , m_prev_val_end(npos)
325 , m_encoding(NOBOM)
326 , m_newline_offsets()
327 , m_newline_offsets_size()
328 , m_newline_offsets_capacity()
329{
330 if(that.m_newline_offsets_capacity)
331 {
332 _resize_locations(that.m_newline_offsets_capacity);
333 RYML_CHECK_BASIC_CB_(m_evt_handler->m_stack.m_callbacks, m_newline_offsets_capacity == that.m_newline_offsets_capacity);
334 memcpy(m_newline_offsets, that.m_newline_offsets, that.m_newline_offsets_size * sizeof(size_t));
335 m_newline_offsets_size = that.m_newline_offsets_size;
336 }
337}

Member Function Documentation

◆ operator=() [1/2]

template<class EventHandler>
ParseEngine< EventHandler > & c4::yml::ParseEngine< EventHandler >::operator= ( ParseEngine< EventHandler > && that)
noexcept

Definition at line 340 of file parse_engine.def.hpp.

341{
342 _free();
343 m_options = (that.m_options);
344 m_evt_handler = that.m_evt_handler;
345 m_pending_anchors = that.m_pending_anchors;
346 m_pending_tags = that.m_pending_tags;
347 m_has_directives_yaml = that.m_has_directives_yaml;
348 m_has_directives = that.m_has_directives;
349 m_doc_empty = that.m_doc_empty;
350 m_prev_colon = that.m_prev_colon;
351 m_prev_val_end = that.m_prev_val_end;
352 m_encoding = that.m_encoding;
353 m_newline_offsets = (that.m_newline_offsets);
354 m_newline_offsets_size = (that.m_newline_offsets_size);
355 m_newline_offsets_capacity = (that.m_newline_offsets_capacity);
356 that._clr();
357 return *this;
358}

◆ operator=() [2/2]

template<class EventHandler>
ParseEngine< EventHandler > & c4::yml::ParseEngine< EventHandler >::operator= ( ParseEngine< EventHandler > const & that)

Definition at line 361 of file parse_engine.def.hpp.

362{
363 if(&that != this)
364 {
365 _free();
366 m_options = (that.m_options);
367 m_evt_handler = that.m_evt_handler;
368 m_pending_anchors = that.m_pending_anchors;
369 m_pending_tags = that.m_pending_tags;
370 m_has_directives_yaml = that.m_has_directives_yaml;
371 m_has_directives = that.m_has_directives;
372 m_doc_empty = that.m_doc_empty;
373 m_prev_colon = that.m_prev_colon;
374 m_prev_val_end = that.m_prev_val_end;
375 m_encoding = that.m_encoding;
376 if(that.m_newline_offsets_capacity > m_newline_offsets_capacity)
377 _resize_locations(that.m_newline_offsets_capacity);
378 RYML_CHECK_BASIC_CB_(m_evt_handler->m_stack.m_callbacks, m_newline_offsets_capacity >= that.m_newline_offsets_capacity);
379 RYML_CHECK_BASIC_CB_(m_evt_handler->m_stack.m_callbacks, m_newline_offsets_capacity >= that.m_newline_offsets_size);
380 memcpy(m_newline_offsets, that.m_newline_offsets, that.m_newline_offsets_size * sizeof(size_t));
381 m_newline_offsets_size = that.m_newline_offsets_size;
382 }
383 return *this;
384}

◆ reserve_stack()

template<class EventHandler>
void c4::yml::ParseEngine< EventHandler >::reserve_stack ( id_type capacity)
inline

Reserve a certain capacity for the parsing stack.

This should be larger than the expected depth of the parsed YAML tree.

The parsing stack is the only (potential) heap memory used directly by the parser.

If the requested capacity is below the default stack size of 16, the memory is used directly in the parser object; otherwise it will be allocated from the heap.

Note
this reserves memory only for the parser itself; all the allocations for the parsed tree will go through the tree's allocator (when different).
for maximum efficiency, the tree and the arena can (and should) also be reserved.

Definition at line 333 of file parse_engine.hpp.

334 {
336 m_evt_handler->m_stack.reserve(capacity);
337 }

Referenced by sample_global_allocator(), sample_parse_reuse_parser(), and sample_parse_reuse_tree_and_parser().

◆ reserve_locations()

template<class EventHandler>
void c4::yml::ParseEngine< EventHandler >::reserve_locations ( size_t num_source_lines)
inline

Reserve a certain capacity for the array used to track node locations in the source buffer.

Definition at line 341 of file parse_engine.hpp.

342 {
343 _resize_locations(num_source_lines);
344 }

Referenced by sample_location_tracking().

◆ options()

template<class EventHandler>
ParserOptions const & c4::yml::ParseEngine< EventHandler >::options ( ) const
inline

Get the options used to build this parser object.

Definition at line 354 of file parse_engine.hpp.

354{ return m_options; }

Referenced by sample_location_tracking().

◆ callbacks()

template<class EventHandler>
Callbacks const & c4::yml::ParseEngine< EventHandler >::callbacks ( ) const
inline

◆ filename()

template<class EventHandler>
csubstr c4::yml::ParseEngine< EventHandler >::filename ( ) const
inline

Get the name of the latest file parsed by this object.

Definition at line 360 of file parse_engine.hpp.

360{ return m_evt_handler->m_curr ? m_evt_handler->m_curr->pos.name : csubstr{}; }

◆ source()

template<class EventHandler>
csubstr c4::yml::ParseEngine< EventHandler >::source ( ) const
inline

Get the latest YAML buffer parsed by this object.

Definition at line 363 of file parse_engine.hpp.

363{ return m_evt_handler ? m_evt_handler->m_src : csubstr{}; }

Referenced by c4::yml::Tree::location().

◆ encoding()

template<class EventHandler>
Encoding_e c4::yml::ParseEngine< EventHandler >::encoding ( ) const
inline

Get the encoding of the latest YAML buffer parsed by this object.

If no encoding was specified, UTF8 is assumed as per the YAML standard.

Definition at line 367 of file parse_engine.hpp.

367{ return m_encoding != NOBOM ? m_encoding : UTF8; }

◆ stack_capacity()

template<class EventHandler>
id_type c4::yml::ParseEngine< EventHandler >::stack_capacity ( ) const
inline

Definition at line 369 of file parse_engine.hpp.

369{ RYML_ASSERT_BASIC_(m_evt_handler); return m_evt_handler->m_stack.capacity(); }

◆ locations_capacity()

template<class EventHandler>
size_t c4::yml::ParseEngine< EventHandler >::locations_capacity ( ) const
inline

Definition at line 370 of file parse_engine.hpp.

370{ return m_newline_offsets_capacity; }

◆ parse_in_place_ev()

template<class EventHandler>
void c4::yml::ParseEngine< EventHandler >::parse_in_place_ev ( csubstr filename,
substr src )

parse YAML in place, emitting events to the current handler

◆ parse_json_in_place_ev()

template<class EventHandler>
void c4::yml::ParseEngine< EventHandler >::parse_json_in_place_ev ( csubstr filename,
substr src )

parse JSON in place, emitting events to the current handler

◆ location_contents()

template<class EventHandler>
csubstr c4::yml::ParseEngine< EventHandler >::location_contents ( Location const & loc) const

Get the string starting at a particular location, to the end of the parsed source buffer.

Referenced by sample_location_tracking(), and sample_quick_overview().

◆ val_location()

template<class EventHandler>
Location c4::yml::ParseEngine< EventHandler >::val_location ( const char * val) const

Given a pointer to a buffer position, get the location.

Parameters
[in]valmust be pointing to somewhere in the source buffer that was last parsed by this object.

Referenced by c4::yml::Tree::location(), and sample_deserialize_error().

◆ filter_scalar_plain()

template<class EventHandler>
FilterResult c4::yml::ParseEngine< EventHandler >::filter_scalar_plain ( csubstr scalar,
substr dst,
size_t indentation )

filter a plain scalar

◆ filter_scalar_plain_in_place()

template<class EventHandler>
FilterResult c4::yml::ParseEngine< EventHandler >::filter_scalar_plain_in_place ( substr scalar,
size_t cap,
size_t indentation )

filter a plain scalar in place

◆ filter_scalar_squoted()

template<class EventHandler>
FilterResult c4::yml::ParseEngine< EventHandler >::filter_scalar_squoted ( csubstr scalar,
substr dst )

filter a single-quoted scalar

◆ filter_scalar_squoted_in_place()

template<class EventHandler>
FilterResult c4::yml::ParseEngine< EventHandler >::filter_scalar_squoted_in_place ( substr scalar,
size_t cap )

filter a single-quoted scalar in place

◆ filter_scalar_dquoted()

template<class EventHandler>
FilterResult c4::yml::ParseEngine< EventHandler >::filter_scalar_dquoted ( csubstr scalar,
substr dst )

filter a double-quoted scalar

◆ filter_scalar_dquoted_in_place()

template<class EventHandler>
FilterResultExtending c4::yml::ParseEngine< EventHandler >::filter_scalar_dquoted_in_place ( substr scalar,
size_t cap )

filter a double-quoted scalar in place

◆ filter_scalar_block_literal()

template<class EventHandler>
FilterResult c4::yml::ParseEngine< EventHandler >::filter_scalar_block_literal ( csubstr scalar,
substr dst,
size_t indentation,
BlockChomp_e chomp )

filter a block-literal scalar

◆ filter_scalar_block_literal_in_place()

template<class EventHandler>
FilterResult c4::yml::ParseEngine< EventHandler >::filter_scalar_block_literal_in_place ( substr scalar,
size_t cap,
size_t indentation,
BlockChomp_e chomp )

filter a block-literal scalar in place

◆ filter_scalar_block_folded()

template<class EventHandler>
FilterResult c4::yml::ParseEngine< EventHandler >::filter_scalar_block_folded ( csubstr scalar,
substr dst,
size_t indentation,
BlockChomp_e chomp )

filter a block-folded scalar

◆ filter_scalar_block_folded_in_place()

template<class EventHandler>
FilterResult c4::yml::ParseEngine< EventHandler >::filter_scalar_block_folded_in_place ( substr scalar,
size_t cap,
size_t indentation,
BlockChomp_e chomp )

filter a block-folded scalar in place


The documentation for this class was generated from the following files:
  • /home/docs/checkouts/readthedocs.org/user_builds/rapidyaml/checkouts/v0.16.0/src/c4/yml/fwd.hpp
  • /home/docs/checkouts/readthedocs.org/user_builds/rapidyaml/checkouts/v0.16.0/src/c4/yml/parse_engine.hpp
  • /home/docs/checkouts/readthedocs.org/user_builds/rapidyaml/checkouts/v0.16.0/src/c4/yml/parse_engine.def.hpp