1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-14 03:30:02 +00:00

little perf tweaks in protobuf

This commit is contained in:
Jan Pochyla 2016-09-25 15:35:04 +02:00 committed by Pavol Rusnak
parent 5c02718c58
commit 7570977cc4
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -58,7 +58,7 @@ class UVarintType:
value, shift, quantum = 0, 0, 0x80
while (quantum & 0x80) == 0x80:
data = yield from source.read(1)
quantum = ord(bytes(data))
quantum = data[0]
value, shift = value + ((quantum & 0x7F) << shift), shift + 7
return value
@ -101,8 +101,7 @@ class UnicodeType:
@staticmethod
def load(source):
data = yield from BytesType.load(source)
data = bytes(data) # TODO: avoid the copy
return data.decode('utf-8', 'strict')
return str(data, 'utf-8', 'strict')
class EmbeddedMessage:
@ -157,6 +156,7 @@ class StreamReader:
chunk = yield
buf.extend(chunk)
# TODO: is this the most officient way?
result = buf[:n]
buf[:] = buf[n:]
return result