2018-06-21 14:28:34 +00:00
|
|
|
# This file is part of the Trezor project.
|
2016-11-25 21:53:55 +00:00
|
|
|
#
|
2019-05-29 16:44:09 +00:00
|
|
|
# Copyright (C) 2012-2019 SatoshiLabs and contributors
|
2016-11-25 21:53:55 +00:00
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
2018-06-21 14:28:34 +00:00
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# as published by the Free Software Foundation.
|
2016-11-25 21:53:55 +00:00
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
2018-06-21 14:28:34 +00:00
|
|
|
# You should have received a copy of the License along with this library.
|
|
|
|
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
|
2016-11-25 21:53:55 +00:00
|
|
|
|
2020-03-05 16:38:31 +00:00
|
|
|
import io
|
|
|
|
from typing import Tuple
|
|
|
|
|
|
|
|
from . import messages, protobuf
|
2012-11-13 14:09:39 +00:00
|
|
|
|
2013-10-08 18:32:40 +00:00
|
|
|
map_type_to_class = {}
|
2012-11-13 14:09:39 +00:00
|
|
|
map_class_to_type = {}
|
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2013-10-08 18:32:40 +00:00
|
|
|
def build_map():
|
2021-06-01 09:29:20 +00:00
|
|
|
for entry in messages.MessageType:
|
|
|
|
msg_class = getattr(messages, entry.name, None)
|
|
|
|
if msg_class is None:
|
2018-08-13 16:21:24 +00:00
|
|
|
raise ValueError(
|
2021-06-01 09:29:20 +00:00
|
|
|
f"Implementation of protobuf message '{entry.name}' is missing"
|
2018-08-13 16:21:24 +00:00
|
|
|
)
|
2017-12-12 15:40:11 +00:00
|
|
|
|
2021-06-01 09:29:20 +00:00
|
|
|
if msg_class.MESSAGE_WIRE_TYPE != entry.value:
|
2018-08-13 16:21:24 +00:00
|
|
|
raise ValueError(
|
2021-06-01 09:29:20 +00:00
|
|
|
f"Inconsistent wire type and MessageType record for '{entry.name}'"
|
2018-08-13 16:21:24 +00:00
|
|
|
)
|
2017-12-12 15:40:11 +00:00
|
|
|
|
2017-12-17 02:17:37 +00:00
|
|
|
register_message(msg_class)
|
|
|
|
|
|
|
|
|
|
|
|
def register_message(msg_class):
|
|
|
|
if msg_class.MESSAGE_WIRE_TYPE in map_type_to_class:
|
2018-08-13 16:21:24 +00:00
|
|
|
raise Exception(
|
|
|
|
"Message for wire type %s is already registered by %s"
|
|
|
|
% (msg_class.MESSAGE_WIRE_TYPE, get_class(msg_class.MESSAGE_WIRE_TYPE))
|
|
|
|
)
|
2017-12-17 02:17:37 +00:00
|
|
|
|
|
|
|
map_class_to_type[msg_class] = msg_class.MESSAGE_WIRE_TYPE
|
|
|
|
map_type_to_class[msg_class.MESSAGE_WIRE_TYPE] = msg_class
|
2016-01-12 23:17:38 +00:00
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2012-11-13 14:09:39 +00:00
|
|
|
def get_type(msg):
|
|
|
|
return map_class_to_type[msg.__class__]
|
|
|
|
|
2013-08-31 22:00:49 +00:00
|
|
|
|
2012-11-13 14:09:39 +00:00
|
|
|
def get_class(t):
|
|
|
|
return map_type_to_class[t]
|
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2020-03-05 16:38:31 +00:00
|
|
|
def encode(msg: protobuf.MessageType) -> Tuple[int, bytes]:
|
|
|
|
message_type = msg.MESSAGE_WIRE_TYPE
|
|
|
|
buf = io.BytesIO()
|
|
|
|
protobuf.dump_message(buf, msg)
|
|
|
|
return message_type, buf.getvalue()
|
|
|
|
|
|
|
|
|
|
|
|
def decode(message_type: int, message_bytes: bytes) -> protobuf.MessageType:
|
|
|
|
cls = get_class(message_type)
|
|
|
|
buf = io.BytesIO(message_bytes)
|
|
|
|
return protobuf.load_message(buf, cls)
|
|
|
|
|
|
|
|
|
2013-10-08 18:32:40 +00:00
|
|
|
build_map()
|