1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-13 19:39:05 +00:00
trezor-firmware/trezorlib/transport.py

47 lines
1.4 KiB
Python
Raw Normal View History

2016-11-25 21:53:55 +00:00
# This file is part of the TREZOR project.
#
# Copyright (C) 2012-2016 Marek Palatinus <slush@satoshilabs.com>
# Copyright (C) 2012-2016 Pavol Rusnak <stick@satoshilabs.com>
# Copyright (C) 2016 Jochen Hoenicke <hoenicke@gmail.com>
2016-11-25 21:53:55 +00:00
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# 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.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <http://www.gnu.org/licenses/>.
2016-09-27 20:49:51 +00:00
from __future__ import absolute_import
2017-06-23 19:31:42 +00:00
class TransportException(Exception):
pass
2012-11-13 14:09:39 +00:00
class Transport(object):
def __init__(self):
self.session_counter = 0
2016-02-10 15:46:58 +00:00
2013-09-09 13:36:17 +00:00
def session_begin(self):
if self.session_counter == 0:
self.open()
self.session_counter += 1
2016-02-10 15:46:58 +00:00
2013-09-09 13:36:17 +00:00
def session_end(self):
self.session_counter = max(self.session_counter - 1, 0)
if self.session_counter == 0:
self.close()
2016-06-26 19:29:29 +00:00
def open(self):
raise NotImplementedError
2016-06-26 19:29:29 +00:00
def close(self):
2017-08-24 12:41:31 +00:00
raise NotImplementedError