From 71107dda1c9ab7f73fcc35cd7121effe4de6c8a0 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Tue, 2 May 2023 22:05:00 -0500 Subject: [PATCH] lexer: Add readLen and readRunesLen. Convenience methods for cases where a parser knows it wants to read multiple bytes or runes from the input stream. --- src/vcard/private/lexer.nim | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/src/vcard/private/lexer.nim b/src/vcard/private/lexer.nim index f7580e5..ba3ff25 100644 --- a/src/vcard/private/lexer.nim +++ b/src/vcard/private/lexer.nim @@ -115,21 +115,6 @@ proc readSinceBookmark*(vcl: var VCardLexer): string = return vcl.bookmarkVal[^1] else: return "" -#[ - if vcl.pos < vcl.bookmark: - # p e s b - # 0 1 2 3 4 5 6 7 8 9 - result = newStringOfCap(vcl.buffer.len - vcl.bookmark + vcl.pos) - else: - # s b p e - # 0 1 2 3 4 5 6 7 8 9 - result = newStringOfCap(vcl.pos - vcl.bookmark) - - let curPos = vcl.pos - vcl.pos = vcl.bookmark - while vcl.pos != curPos: result.add(vcl.read) -]# - proc isLineWrap(vcl: var VCardLexer, allowRefill = true): bool = if vcl.buffer[vcl.pos] != '\r': return false @@ -164,6 +149,10 @@ proc read*(vcl: var VCardLexer, peek = false): char = vcl.bookmarkVal[idx].add(result) vcl.pos = wrappedIdx(vcl.pos + 1) +proc readLen*(vcl: var VCardLexer, bytesToRead: int, peek = false): string = + result = newStringOfCap(bytesToRead) + for i in 0..