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>
|
2017-08-24 12:29:27 +00:00
|
|
|
# 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/>.
|
|
|
|
|
2017-09-05 15:15:00 +00:00
|
|
|
class TransportException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2012-11-13 14:09:39 +00:00
|
|
|
class Transport(object):
|
2017-08-24 12:29:27 +00:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.session_counter = 0
|
2016-02-10 15:46:58 +00:00
|
|
|
|
2018-03-02 14:44:24 +00:00
|
|
|
def __str__(self):
|
|
|
|
return self.get_path()
|
|
|
|
|
|
|
|
def get_path(self):
|
|
|
|
return '{}:{}'.format(self.PATH_PREFIX, self.device)
|
|
|
|
|
2013-09-09 13:36:17 +00:00
|
|
|
def session_begin(self):
|
2017-08-24 12:29:27 +00:00
|
|
|
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):
|
2017-08-24 12:29:27 +00:00
|
|
|
self.session_counter = max(self.session_counter - 1, 0)
|
|
|
|
if self.session_counter == 0:
|
|
|
|
self.close()
|
2016-06-26 19:29:29 +00:00
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
def open(self):
|
|
|
|
raise NotImplementedError
|
2016-06-26 19:29:29 +00:00
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
def close(self):
|
2017-08-24 12:41:31 +00:00
|
|
|
raise NotImplementedError
|
2018-03-02 14:44:24 +00:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def enumerate(cls):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def find_by_path(cls, path, prefix_search = True):
|
|
|
|
for device in cls.enumerate():
|
|
|
|
if path is None or device.get_path() == path \
|
|
|
|
or (prefix_search and device.get_path().startswith(path)):
|
|
|
|
return device
|
|
|
|
|
|
|
|
raise TransportException('{} device not found: {}'.format(cls.PATH_PREFIX, path))
|