crystal-cbor/src/cbor/diagnostic.cr

40 lines
901 B
Crystal

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::Bytes
"h'#{token[:value].as(Bytes).hexstring}'"
when Kind::BytesArray
token[:value].as(BytesArray).to_diagnostic
else
token[:kind].to_s
end
end
end