# encoding: utf-8
#
# Project name: MXCuBE
# https://github.com/mxcube
#
# This file is part of MXCuBE software.
#
# MXCuBE 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.
#
# MXCuBE 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 MXCuBE. If not, see <http://www.gnu.org/licenses/>.
from mxcubecore.CommandContainer import (
ChannelObject,
CommandObject,
)
__copyright__ = """ Copyright © 2010 - 2020 by MXCuBE Collaboration """
__license__ = "LGPLv3+"
[docs]class MockupCommand(CommandObject):
def __init__(self, name, command_name, list_args=None, timeout=1000, **kwargs):
CommandObject.__init__(self, name, **kwargs)
self.command_name = command_name
self.result = None
def __call__(self, *args, **kwargs):
self.result = args[0]
def get(self):
return self.result
def abort(self):
pass
[docs] def is_connected(self):
return True
[docs]class MockupChannel(ChannelObject):
def __init__(self, name, username=None, timeout=1000, **kwargs):
ChannelObject.__init__(self, name, username, **kwargs)
self.timeout = int(timeout)
self.value = kwargs["default_value"]
[docs] def get_value(self, force=False):
return self.value
def set_value(self, new_value):
self.value = new_value
self.emit("update", self.value)
[docs] def is_connected(self):
# FIXME linkid is not defined for this class but only for Tine
return self.linkid > 0