require "./lexer" require "./token" # Reads a CBOR input into a diagnostic string. # This consumes the IO and is mostly usedful to tests again the example # provided in the RFC and ensuring a correct functioning of the `CBOR::Lexer`. class CBOR::Diagnostic @lexer : Lexer def initialize(input) @lexer = Lexer.new(input) end # Reads the content of the IO and prints out a diagnostic string # represation of the input. def to_s : String result = "" while value = next_value result += value end result end private def next_value : String? token = @lexer.read_next return nil unless token case token.kind when Kind::Int token.value.to_s when Kind::String %("#{token.value.as(String)}") when Kind::Bytes "h'#{token.value.as(Bytes).hexstring}'" when Kind::BytesArray token.value.as(BytesArray).to_diagnostic when Kind::StringArray token.value.as(StringArray).to_diagnostic else token.kind.to_s end end end