python-trezor/trezorlib/transport.py

47 lines
1.4 KiB
Python
Raw Normal View History

2016-11-25 13:53:55 -08: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 13:53:55 -08: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 13:49:51 -07:00
from __future__ import absolute_import
2017-06-23 12:31:42 -07:00
class TransportException(Exception):
pass
2012-11-13 06:09:39 -08:00
class Transport(object):
def __init__(self):
self.session_counter = 0
2016-02-10 07:46:58 -08:00
2013-09-09 06:36:17 -07:00
def session_begin(self):
if self.session_counter == 0:
self.open()
self.session_counter += 1
2016-02-10 07:46:58 -08:00
2013-09-09 06:36:17 -07:00
def session_end(self):
self.session_counter = max(self.session_counter - 1, 0)
if self.session_counter == 0:
self.close()
2016-06-26 12:29:29 -07:00
def open(self):
raise NotImplementedError
2016-06-26 12:29:29 -07:00
def close(self):
2017-08-24 05:41:31 -07:00
raise NotImplementedError