avoid copying data
This commit is contained in:
parent
c7dd442a30
commit
e9f09a14dd
1 changed files with 13 additions and 10 deletions
|
@ -65,8 +65,9 @@ type
|
||||||
channel: Mask
|
channel: Mask
|
||||||
|
|
||||||
DecoderState = object
|
DecoderState = object
|
||||||
buffer: string
|
buffer: ptr UncheckedArray[uint8]
|
||||||
pos, bitsBuffered: int
|
len, pos: int
|
||||||
|
bitsBuffered: int
|
||||||
bitBuffer: uint32
|
bitBuffer: uint32
|
||||||
hitEnd: bool
|
hitEnd: bool
|
||||||
imageHeight, imageWidth: int
|
imageHeight, imageWidth: int
|
||||||
|
@ -102,9 +103,9 @@ template clampByte(x: int32): uint8 =
|
||||||
|
|
||||||
proc readUint8(state: var DecoderState): uint8 =
|
proc readUint8(state: var DecoderState): uint8 =
|
||||||
## Reads a byte from the input stream.
|
## Reads a byte from the input stream.
|
||||||
if state.pos >= state.buffer.len:
|
if state.pos >= state.len:
|
||||||
failInvalid()
|
failInvalid()
|
||||||
result = cast[uint8](state.buffer[state.pos])
|
result = state.buffer[state.pos]
|
||||||
inc state.pos
|
inc state.pos
|
||||||
|
|
||||||
proc readUint16be(state: var DecoderState): uint16 =
|
proc readUint16be(state: var DecoderState): uint16 =
|
||||||
|
@ -121,14 +122,15 @@ proc readUint32be(state: var DecoderState): uint32 =
|
||||||
|
|
||||||
proc readStr(state: var DecoderState, n: int): string =
|
proc readStr(state: var DecoderState, n: int): string =
|
||||||
## Reads n number of bytes as a string.
|
## Reads n number of bytes as a string.
|
||||||
if state.pos + n > state.buffer.len:
|
if state.pos + n > state.len:
|
||||||
failInvalid()
|
failInvalid()
|
||||||
result = state.buffer[state.pos ..< state.pos + n]
|
result.setLen(n)
|
||||||
|
copyMem(result[0].addr, state.buffer[state.pos].addr, n)
|
||||||
state.pos += n
|
state.pos += n
|
||||||
|
|
||||||
proc skipBytes(state: var DecoderState, n: int) =
|
proc skipBytes(state: var DecoderState, n: int) =
|
||||||
## Skips a number of bytes.
|
## Skips a number of bytes.
|
||||||
if state.pos + n > state.buffer.len:
|
if state.pos + n > state.len:
|
||||||
failInvalid()
|
failInvalid()
|
||||||
state.pos += n
|
state.pos += n
|
||||||
|
|
||||||
|
@ -836,8 +838,8 @@ proc checkRestart(state: var DecoderState) =
|
||||||
if state.bitsBuffered < 24:
|
if state.bitsBuffered < 24:
|
||||||
state.fillBitBuffer()
|
state.fillBitBuffer()
|
||||||
|
|
||||||
if state.buffer[state.pos] == 0xFF.char:
|
if state.buffer[state.pos] == 0xFF:
|
||||||
if state.buffer[state.pos + 1] in {0xD0.char .. 0xD7.char}:
|
if state.buffer[state.pos + 1] in {0xD0 .. 0xD7}:
|
||||||
state.pos += 2
|
state.pos += 2
|
||||||
else:
|
else:
|
||||||
failInvalid("did not get expected restart marker")
|
failInvalid("did not get expected restart marker")
|
||||||
|
@ -1012,7 +1014,8 @@ proc decodeJpeg*(data: string): Image {.raises: [PixieError].} =
|
||||||
## Decodes the JPEG into an Image.
|
## Decodes the JPEG into an Image.
|
||||||
|
|
||||||
var state = DecoderState()
|
var state = DecoderState()
|
||||||
state.buffer = data
|
state.buffer = cast[ptr UncheckedArray[uint8]](data[0].unsafeAddr)
|
||||||
|
state.len = data.len
|
||||||
|
|
||||||
while true:
|
while true:
|
||||||
if state.readUint8() != 0xFF:
|
if state.readUint8() != 0xFF:
|
||||||
|
|
Loading…
Reference in a new issue