class YAML::PullParser

Overview

A pull parser allows parsing a YAML document by events.

When creating an instance, the parser is positioned in the first event. To get the event kind invoke #kind. If the event is a scalar you can invoke #value to get its string value. Other methods like #tag, #anchor and #scalar_style let you inspect other information from events.

Invoking #read_next reads the next event.

Defined in:

yaml/pull_parser.cr

Constructors

Instance Method Summary

Instance methods inherited from class Reference

==(other : self)
==(other : JSON::Any)
==(other : YAML::Any)
==(other) ==
, dup dup, hash(hasher) hash, inspect(io : IO) : Nil inspect, object_id : UInt64 object_id, pretty_print(pp) : Nil pretty_print, same?(other : Reference) : Bool
same?(other : Nil) same?
, to_s(io : IO) : Nil to_s

Constructor methods inherited from class Reference

new new

Instance methods inherited from class Object

! : Bool !, !=(other) !=, !~(other) !~, ==(other) ==, ===(other : JSON::Any)
===(other : YAML::Any)
===(other) ===
, =~(other) =~, as(type : Class) as, as?(type : Class) as?, class class, dup dup, hash(hasher)
hash hash
, in?(collection : Object) : Bool
in?(*values : Object) : Bool in?
, inspect(io : IO) : Nil
inspect : String inspect
, is_a?(type : Class) : Bool is_a?, itself itself, nil? : Bool nil?, not_nil! not_nil!, pretty_inspect(width = 79, newline = "\n", indent = 0) : String pretty_inspect, pretty_print(pp : PrettyPrint) : Nil pretty_print, responds_to?(name : Symbol) : Bool responds_to?, tap(&) tap, to_json(io : IO) : Nil
to_json : String to_json
, to_pretty_json(indent : String = " ") : String
to_pretty_json(io : IO, indent : String = " ") : Nil to_pretty_json
, to_s(io : IO) : Nil
to_s : String to_s
, to_yaml(io : IO) : Nil
to_yaml : String to_yaml
, try(&) try, unsafe_as(type : T.class) forall T unsafe_as

Class methods inherited from class Object

from_json(string_or_io, root : String)
from_json(string_or_io) from_json
, from_yaml(string_or_io : String | IO) from_yaml

Constructor Detail

def self.new(content : String | IO)Source

def self.new(content, &)Source

Creates a parser, yields it to the block, and closes the parser at the end of it.

Instance Method Detail

def anchor : String?Source

Returns the anchor associated to the current event, or nil if there's no anchor.

def close : NilSource

def end_column : Int32Source

def end_line : Int32Source

def expect_kind(kind : EventKind) : NilSource

Raises if the current kind is not the expected one.

def finalizeSource

def kind : EventKindSource

The current event kind.

def location : Tuple(Int32, Int32)Source

def mapping_style : MappingStyleSource

Returns the mapping style, assuming the pull parser is located at a mapping begin event. Raises otherwise.

def raise(msg : String, line_number = self.start_line, column_number = self.start_column, context_info = nil) : NoReturnSource

def read(expected_kind : EventKind) : EventKindSource

Reads an expected event kind.

def read_alias : String?Source

Reads an alias event, returning its anchor.

def read_document(&)Source

Reads a "document start" event, yields to the block, and then reads a "document end" event.

def read_document_endSource

Reads a "document end" event.

def read_document_startSource

Reads a "document start" event.

def read_mapping(&)Source

Reads a "mapping start" event, yields to the block, and then reads a "mapping end" event.

def read_mapping_endSource

Reads a "mapping end" event.

def read_mapping_startSource

Reads a "mapping start" event.

def read_next : EventKindSource

Reads the next event.

def read_scalar : StringSource

Reads a scalar, returning its value.

def read_sequence(&)Source

Reads a "sequence start" event, yields to the block, and then reads a "sequence end" event.

def read_sequence_endSource

Reads a "sequence end" event.

def read_sequence_startSource

Reads a "sequence start" event.

def read_stream(&)Source

Reads a "stream start" event, yields to the block, and then reads a "stream end" event.

def read_stream_endSource

Reads a "stream end" event.

def read_stream_startSource

Reads a "stream start" event.

def scalar_style : ScalarStyleSource

Returns the scalar style, assuming the pull parser is located at a scalar event. Raises otherwise.

def sequence_style : SequenceStyleSource

Returns the sequence style, assuming the pull parser is located at a sequence begin event. Raises otherwise.

def skip : YAML::EventKindSource

def start_column : Int32Source

def start_line : Int32Source

def tag : String?Source

Returns the tag associated to the current event, or nil if there's no tag.

def value : StringSource

Returns the scalar value, assuming the pull parser is located at a scalar. Raises otherwise.

© 2012–2021 Manas Technology Solutions.
Licensed under the Apache License, Version 2.0.
https://crystal-lang.org/api/1.2.1/YAML/PullParser.html