#!/usr/bin/env python
##############################################################################
##
# This file is part of Sardana
##
# http://www.sardana-controls.org/
##
# Copyright 2011 CELLS / ALBA Synchrotron, Bellaterra, Spain
##
# Sardana 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.
##
# Sardana 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 Sardana. If not, see <http://www.gnu.org/licenses/>.
##
##############################################################################
"""This module contains the class definition for the MacroServer generic
scan"""
import collections
import numbers
from typing import List as ListType, Tuple, Callable, Union, Sequence, Dict, Any, Optional as OptionalType
__all__ = ["OverloadPrint", "PauseEvent", "Hookable", "ExecMacroHook",
"MacroFinder", "Macro", "macro", "iMacro", "imacro",
"MacroFunc", "Type", "Table", "List", "ViewOption",
"LibraryError", "Optional", "StopException", "AbortException",
"InterruptException"]
__docformat__ = 'restructuredtext'
import sys
import time
import copy
import types
import ctypes
import weakref
import operator
import io
import threading
import traceback
import taurus
from taurus.core.util.log import Logger
from taurus.core.util.prop import propertx
from taurus.console.table import Table
from taurus.console.list import List
import sardana
from sardana.sardanadefs import State
from sardana.util.wrap import wraps
from sardana.util.thread import _asyncexc
from sardana.macroserver.msparameter import Type, ParamType, Optional
from sardana.macroserver.msexception import StopException, AbortException, \
ReleaseException, MacroWrongParameterType, UnknownEnv, UnknownMacro, \
LibraryError, InterruptException
from sardana.macroserver.msoptions import ViewOption
from sardana.macroserver.msmetamacro import MacroClass, MacroFunction, MacroLibrary
from sardana.taurus.core.tango.sardana.pool import Pool, PoolElement
class OverloadPrint(object):
def __init__(self, m):
self._macro = m
self._accum = ""
def __enter__(self):
self.stdout = sys.stdout
sys.stdout = self
def __exit__(self, exc_type, exc_value, traceback):
self.flush()
sys.stdout = self.stdout
def write(self, s):
self._accum += s
# while there is no new line, just accumulate the buffer
try:
if s[-1] == '\n' or s.index('\n') >= 0:
self.flush()
except ValueError:
pass
def flush(self):
b = self._accum
if b is None or len(b) == 0:
return
# take the '\n' because the output is a list of strings, each to be
# interpreted as a separate line in the client
if b[-1] == '\n':
b = b[:-1]
self._macro.output(b)
self._accum = ""
class PauseEvent(Logger):
def __init__(self, macro_obj, abort_timeout=0.2):
self._name = self.__class__.__name__
self._pause_cb = None
self._resume_cb = None
self._macro_obj_wr = weakref.ref(macro_obj)
self._macro_name = macro_obj._getName()
self._wait_for_abort_exception = False
self._wait_for_abort_timeout = abort_timeout
Logger.__init__(self, "Macro_%s %s" % (self._macro_name, self._name))
# we create an event object that is automatically set
self._event = threading.Event()
self._event.set()
@property
def macro_obj(self):
return self._macro_obj_wr()
def pause(self, cb=None):
self.debug("[START] Pause")
self._pause_cb = cb
self._event.clear()
self.debug("[ END ] Pause")
def resume(self, cb=None):
if self.isPaused():
self.debug("[START] Resume")
self._resume_cb = cb
self._event.set()
self.debug("[ END ] Resume")
def resumeForAbort(self):
if self.isPaused():
self.debug("[RESUME] (Abort)")
self._wait_for_abort_exception = True
self._event.set()
def wait(self, timeout=None):
pauseit = not self._event.isSet()
if pauseit and self._pause_cb is not None:
self._pause_cb(self.macro_obj)
self._event.wait(timeout)
# if an event is set because an abort has been issued during a paused
# macro wait for the ashyncronous AbortException to arrive at this
# thread
if self._wait_for_abort_exception:
self._wait_for_abort_exception = False
time.sleep(self._wait_for_abort_timeout)
self.debug('Abort exception did not occured in pause for %ss.'
'Performing a Forced Abort.' % self._wait_for_abort_timeout)
raise AbortException("Forced")
if pauseit and self._resume_cb is not None:
self._resume_cb(self.macro_obj)
def isPaused(self):
return not self._event.isSet()
[docs]
class Hookable(Logger):
# avoid creating an __init__
def _getHooks(self):
try:
return self._hooks
except:
self._hooks = []
return self._hooks
def _getHookHintsDict(self):
try:
return self._hookHintsDict
except:
self._hookHintsDict = {'_ALL_': [], '_NOHINTS_': []}
return self._hookHintsDict
[docs]
def getAllowedHookHints(self):
return self.__class__.hints.get('allowsHooks')
[docs]
def getHints(self):
return list(self._getHookHintsDict().keys())
[docs]
def getHooks(self, hint=None):
"""This will return a list of hooks that have the given hint. Two reserved
hints are always valid:
- "_ALL_": which contains all the hooks
- "_NOHINTS_": which contains the hooks that don't provide any hint
:param hint: (str) a hint. If None is passed, it returns a list of
(hook,hints) tuples
:return: (list) an ordered list of hooks that have the given hint
"""
if hint is None:
return self._getHooks()
else:
return self._getHookHintsDict().get(hint, [])
[docs]
def appendHook(self, hook_info):
"""Append a hook according to the hook information
:param hook_info: sequence of two elements, the first one is the hook
and its optional parameters/arguments, the second one is the list
of hints e.g. hook places
"""
self._getHooks().append(hook_info)
hook = hook_info[0]
hints = hook_info[1]
allowed_hookhints = self.getAllowedHookHints()
if len(hints) == 0:
self._getHookHintsDict()['_ALL_'].append(hook)
self._hookHintsDict['_NOHINTS_'].append(hook)
return
for hint in hints:
if hint in allowed_hookhints:
self._getHookHintsDict()['_ALL_'].append(hook)
break
for hint in hints:
if hint in allowed_hookhints:
try:
self._hookHintsDict[hint].append(hook)
except KeyError:
self._hookHintsDict[hint] = [hook]
@property
def hooks(self):
"""Hooks (callables) attached to the macro object together with the
hook places (places where they will be called).
:getter: Return all hooks attached to the macro object (including
general hooks).
:setter: Set hooks to the object. **This may override eventual
general hooks.**
Use :meth:`~sardana.macroserver.macro.Hookable.appendHook`
if the general hooks want to be kept. For backwards compatibility
accepts hook in the :obj:`list`\<callable\> format.
:type: :obj:`list`\<:obj:`tuple`\> where each tuple has two
elements: callable and :obj:`list`\<:obj:`str`\>
""" # noqa
return self._getHooks()
@hooks.setter
def hooks(self, hooks: ListType[Union[Tuple[Callable, ListType[str]], Callable]]):
"""Sets hooks. Internally two variables instance members are created:
- _hooks (list<callable,list<str>>) (will be a tuple regardless of
what was passed)
- _hookHintsDict (dict<str,list>) a dict of key=hint and value=list
of hooks with that hint. _hookHintsDict also stores two special
keys: "_ALL_": which contains all the hooks "_NOHINTS_": which
contains the hooks that don't provide hints
"""
if len(self.hooks) > 0:
msg = ("This macro defines its own hooks. Previously defined "
"hooks, including the general ones, would be only called "
"if these own hooks were added using the appendHook "
"method or appended to the self.hooks.")
self.warning(msg)
self._setHooks(hooks)
def _setHooks(self, hooks):
if not isinstance(hooks, list):
self.error(
'the hooks must be passed as a list<callable,list<str>>')
return
# store self._hooks, making sure it is of type:
# list<callable,list<str>>
self._hooks = []
for h in hooks:
if isinstance(h, (tuple, list)) and len(h) == 2:
self._hooks.append(h)
else: # we assume that hooks is a list<callable>
self._hooks.append((h, []))
msg = ("Deprecation warning: hooks should be set with a"
" list of hints. See Hookable API docs")
self.info(msg)
# delete _hookHintsDict to force its recreation on the next access
if hasattr(self, '_hookHintsDict'):
del self._hookHintsDict
if len(self._hooks) == 0:
return
# create _hookHintsDict
self._getHookHintsDict()['_ALL_'] = list(zip(*self._hooks))[0]
nohints = self._hookHintsDict['_NOHINTS_']
for hook, hints in self._hooks:
if len(hints) == 0:
nohints.append(hook)
else:
for hint in hints:
try:
self._hookHintsDict[hint].append(hook)
except KeyError:
self._hookHintsDict[hint] = [hook]
class ExecMacroHook(object):
"""A speciallized callable hook for executing a sub macro inside another
macro as a hook.
In order to attach macro with parameters pass all of them in form of
a list (repeat parameters are allowed) e.g.
- ExecMacroHook(self, "ct", 0.1)
- ExecMacroHook(self, ["ct", 0.1])
- ExecMacroHook(self, "mv", "mot01", 0, "mot02", 0)
- ExecMacroHook(self, "mv", [["mot01", 0], ["mot02", 0]])
- ExecMacroHook(self, ["mv", [["mot01", 0], ["mot02", 0]]])
The API basically follows the :meth:`Macro.execMacro`.
"""
def __init__(self, parent_macro, *pars, **kwargs):
self._macro_obj_wr = weakref.ref(parent_macro)
self._pars = pars
self._opts = kwargs
@property
def macro_obj(self):
return self._macro_obj_wr()
def __call__(self):
self.macro_obj.execMacro(*self._pars, **self._opts)
class MacroFinder:
def __init__(self, macro_obj):
self._macro_obj_wr = weakref.ref(macro_obj)
@property
def macro_obj(self):
return self._macro_obj_wr()
def __getattr__(self, name):
def f(*args, **kwargs):
p_m = self.macro_obj
p_m.syncLog()
opts = {'parent_macro': p_m,
'executor': p_m.executor}
kwargs.update(opts)
eargs = [name]
eargs.extend(args)
return p_m.execMacro(*eargs, **kwargs)
setattr(self, name, f)
return f
def mAPI(fn):
"""Wraps the given Macro method as being protected by the stop procedure.
To be used by the :class:`Macro` as a decorator for all methods.
:param: macro method
:return: wrapped macro method"""
@wraps(fn)
def new_fn(*args, **kwargs):
self = args[0]
if not self.isProcessingStop():
is_macro_th = self._macro_thread == threading.current_thread()
if self._shouldRaiseStopException():
if is_macro_th:
self.setProcessingStop(True)
self.executor._waitStopDone()
raise StopException("stopped before calling %s" % fn.__name__)
ret = fn(*args, **kwargs)
if not self.isProcessingStop():
if self._shouldRaiseStopException():
if is_macro_th:
self.setProcessingStop(True)
self.executor._waitStopDone()
raise StopException("stopped after calling %s" % fn.__name__)
return ret
return new_fn
[docs]
class macro(object):
"""Class designed to decorate a python function to transform it into a
macro. Examples::
@macro()
def my_macro1(self):
self.output("Executing %s", self.getName())
@macro([ ["moveable", Type.Moveable, None, "motor to watch"] ])
def where_moveable(self, moveable):
self.output("Moveable %s is at %s", moveable.getName(), moveable.getPosition())"""
param_def = []
result_def = []
env = ()
hints = {}
interactive = False
def __init__(self, param_def=None, result_def=None, env=None, hints=None,
interactive=None):
if param_def is not None:
self.param_def = param_def
if result_def is not None:
self.result_def = result_def
if env is not None:
self.env = env
if hints is not None:
self.hints = hints
if interactive is not None:
self.interactive = interactive
def __call__(self, fn):
fn.macro_data = {}
fn.param_def = self.param_def
fn.result_def = self.result_def
fn.hints = self.hints
fn.env = self.env
fn.interactive = self.interactive
return fn
from functools import partial
imacro = partial(macro, interactive=True)
[docs]
class Macro(Logger):
""" The Macro base class. All macros should inherit directly or indirectly
from this class."""
#: internal variable
Init = State.Init
#: internal variable
Running = State.Running
#: internal variable
Pause = State.Standby
#: internal variable
Stop = State.Standby
#: internal variable
Fault = State.Fault
#: internal variable
Finished = State.On
#: internal variable
Ready = State.On
#: internal variable
Abort = State.On
#: internal variable
Exception = State.Alarm
#: Constant used to specify all elements in a parameter
All = ParamType.All
#: internal variable
BlockStart = '<BLOCK>'
#: internal variable
BlockFinish = '</BLOCK>'
#: This property holds the macro parameter description.
#: It consists of a sequence of parameter information objects.
#: A parameter information object is either:
#:
#: #. a simple parameter object
#: #. a parameter repetition object
#:
#: A simple parameter object is a sequence of:
#:
#: #. a string representing the parameter name
#: #. a member of :obj:`Macro.Type` representing the parameter data type
#: #. a default value for the parameter or None if there is no default value
#: #. a string with the parameter description
#:
#: Example::
#:
#: param_def = ( ('value', Type.Float, None, 'a float parameter' ) )
#:
#: A parameter repetition object is a sequence of:
#:
#: #. a string representing the parameter repetition name
#: #. a sequence of parameter information objects
#: #. a dictionary representing the parameter repetition semantics or None
#: to use the default parameter repetition semantics. Dictionary keys are:
#:
#: * *min* - integer representing minimum number of repetitions or None
#: for no minimum.
#: * *max* - integer representing maximum number of repetitions or None
#: for no maximum.
#:
#: Default parameter repetition semantics is ``{ 'min': 1, 'max' : None }``
#: (in other words, "at least one repetition" semantics)
#:
#: Example::
#:
#: param_def = (
#: ( 'motor_list', ( ( 'motor', Type.Motor, None, 'motor name') ), None, 'List of motors')
#: )
param_def = []
#: This property holds the macro result description.
#: It a single parameter information object.
#:
#: .. seealso:: :obj:`~sardana.macroserver.macro.Macro.param_def`
result_def = []
#: Hints to give a client to perform special tasks.
#: Example: scan macros give hints on the types of hooks they support. A
#: :term:`GUI` can use this information to allow a scan to have sub-macros
#: executed as hooks.
hints = {}
#: a set of mandatory environment variable names without which your macro
#: cannot run
env = ()
#: decide if the macro should be able to receive input from the user
#: [default: False]. A macro which asks input but has this flag set to False
#: will print a warning message each time it is executed
interactive = False
def __init__(self, *args, **kwargs):
"""Constructor"""
self._name = kwargs.get('as', self.__class__.__name__)
self._in_pars = args
self._out_pars = None
self._aborted = False
self._stopped = False
self._processingStop = False
self._on_stop_started = False
self._parent_macro = kwargs.get('parent_macro')
self._executor = kwargs.get('executor')
self._macro_line = kwargs.get('macro_line')
self._interactive_mode = kwargs.get('interactive', True)
self._macro_thread = None
self._id = kwargs.get('id')
self._desc = "Macro '%s'" % self._macro_line
self._macro_status = {'id': self._id,
'name': self._name,
'macro_line': self._macro_line,
'range': (0.0, 100.0),
'state': 'start',
'step': 0.0}
self._pause_event = PauseEvent(self)
log_parent = self.parent_macro or self.door
Logger.__init__(self, "Macro[%s]" % self._name, log_parent)
self._reserveObjs(args)
# @name Official Macro API
# This list contains the set of methods that are part of the official macro
# API. This means that they can be safely used inside any macro.
#@{
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
# Methods to be implemented by the actual macros
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
[docs]
def run(self, *args):
"""**Macro API**. Runs the macro. **Overwrite MANDATORY!** Default implementation
raises RuntimeError.
:raises: RuntimeError"""
raise RuntimeError(
"Macro %s does not implement run method" % self.getName())
[docs]
def prepare(self, *args, **kwargs):
"""**Macro API**. Prepare phase. Overwrite as necessary.
Default implementation does nothing"""
pass
[docs]
def on_abort(self):
"""**Macro API**. Hook executed when an abort occurs.
Overwrite as necessary. Default implementation does nothing"""
pass
[docs]
def on_pause(self):
"""**Macro API**. Hook executed when a pause occurs.
Overwrite as necessary. Default implementation does nothing"""
pass
[docs]
def on_stop(self):
"""**Macro API**. Hook executed when a stop occurs.
Overwrite as necessary. Default implementation calls
:meth:`~Macro.on_abort`"""
return self.on_abort()
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
# API
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
[docs]
@mAPI
def checkPoint(self):
"""**Macro API**.
Empty method that just performs a checkpoint. This can be used
to check for the stop. Usually you won't need to call this method"""
pass
[docs]
@mAPI
def pausePoint(self, timeout: OptionalType[float] = None) -> Any:
"""**Macro API**.
Will establish a pause point where called. If an external source as
invoked a pause then, when this this method is called, it will be block
until the external source calls resume.
You may want to call this method if your macro takes a considerable time
to execute and you may whish to pause it at some time. Example::
for i in range(10000):
time.sleep(0.1)
self.output("At step %d/10000", i)
self.pausePoint()
:param timeout:
timeout in seconds [default: None, meaning wait forever]
"""
return self._pausePoint(timeout=timeout)
@property
def macros(self):
"""**Macro API**.
An object that contains all macro classes as members. With
the returning object you can invoke other macros. Example::
m = self.macros.ascan('th', '0', '90', '10', '2')
scan_data = m.data"""
self.checkPoint()
if not hasattr(self, '_macros'):
self._macros = MacroFinder(self)
return self._macros
[docs]
@mAPI
def getMacroStatus(self) -> Dict:
"""**Macro API**.
Returns the current macro status. Macro status is a :obj:`dict` where
keys are the strings:
* *id* - macro ID (internal usage only)
* *range* - the full progress range of a macro (usually a
:obj:`tuple` of two numbers (0, 100))
* *state* - the current macro state, a string which can have values
*start*, *step*, *stop* and *abort*
* *step* - the current step in macro. Should be a value inside the
allowed macro range
:return: the macro status
"""
return self._macro_status
[docs]
@mAPI
def getName(self) -> str:
"""**Macro API**.
Returns this macro name
:return: the macro name
"""
return self._name
[docs]
@mAPI
def getID(self) -> str:
"""**Macro API**.
Returns this macro id
:return: the macro id
"""
return self._id
[docs]
@mAPI
def getParentMacro(self) -> "Macro":
"""**Macro API**.
Returns the parent macro reference.
:return: the parent macro reference or None if there is no parent macro
"""
return self._parent_macro
[docs]
@mAPI
def getDescription(self) -> str:
"""**Macro API**.
Returns a string description of the macro.
:return: the string description of the macro
"""
return self._desc
[docs]
@mAPI
def getParameters(self) -> List:
"""**Macro API**.
Returns a the macro parameters. It returns a list containning the
parameters with which the macro was executed
:return: the macro parameters
"""
return self._in_pars
[docs]
@mAPI
def getExecutor(self) -> "sardana.macroserver.msmacromanager.MacroExecutor":
"""**Macro API**.
Returns the reference to the object that invoked this macro. Usually
is a MacroExecutor object.
:return: the reference to the object that invoked this macro
"""
return self._executor
[docs]
@mAPI
def getDoorObj(self):
"""**Macro API**.
Returns the reference to the Door that invoked this macro.
:return: the reference to the Door that invoked this macro.
:rype: :class:`~sardana.macroserver.door.Door`"""
return self.executor.getDoor()
[docs]
@mAPI
def getManager(self) -> "sardana.macroserver.macroserver.MacroServer":
"""**Macro API**.
Returns the manager for this macro (usually a MacroServer)
:return: the MacroServer
"""
return self.door.manager
manager = property(getManager)
[docs]
@mAPI
def getMacroServer(self) -> "sardana.macroserver.macroserver.MacroServer":
"""**Macro API**.
Returns the MacroServer for this macro
:return: the MacroServer
"""
return self.door.macro_server
macro_server = property(getMacroServer)
[docs]
@mAPI
def getDoorName(self) -> str:
"""**Macro API**.
Returns the string with the name of the Door that invoked this macro.
:return: the string with the name of the Door that invoked this macro.
"""
return self.door.name
[docs]
@mAPI
def getCommand(self) -> str:
"""**Macro API**.
Returns the string used to execute the macro.
Ex.: 'ascan M1 0 1000 100 0.8'
:return: the macro command.
.. deprecated: Use getMacroCommand() instead."""
self.warning("Deprecated since 3.2.0. Use getMacroCommand() instead.")
return '%s %s' % (self.getName(), ' '.join([str(p) for p in self._in_pars]))
[docs]
@mAPI
def getMacroCommand(self) -> str:
"""**Macro API**.
Returns the string used to execute the macro.
Ex.: 'ascan M1 0 1000 100 0.8'
:return: the macro command.
"""
return '%s %s' % (self.getName(), ' '.join([str(p) for p in self._in_pars]))
[docs]
@mAPI
def getDateString(self, time_format: str = '%a %b %d %H:%M:%S %Y') -> str:
"""**Macro API**.
Helper method. Returns the current date in a string.
:param time_format: the format in which the date should be
returned (optional, default value is
'%a %b %d %H:%M:%S %Y'
:return: the current date
"""
return time.strftime(time_format)
[docs]
@mAPI
def outputDate(self, time_format: str = '%a %b %d %H:%M:%S %Y') -> Any:
"""**Macro API**.
Helper method. Outputs the current date into the output buffer
:param time_format: (str) the format in which the date should be
returned (optional, default value is
'%a %b %d %H:%M:%S %Y'
"""
self.output(self.getDateString(time_format=time_format))
[docs]
@mAPI
def sendRecordData(self, data: Any, codec: OptionalType[str] = None) -> Any:
"""**Macro API**.
Sends the given data to the RecordData attribute of the Door
:param data: data to be sent (must be compatible with the codec)
:param codec: codec to encode data (in Tango server None defaults
to "utf8_json")
"""
self._sendRecordData(data, codec)
def _sendRecordData(self, data, codec=None):
self.executor.sendRecordData(data, codec=codec)
[docs]
@mAPI
def plot(self, *args, **kwargs):
"""**Macro API**.
Sends the plot command to the client using the 'RecordData' DevEncoded
attribute. The data is encoded using the pickle -> BZ2 codec.
:param args: the plotting args
:param kwargs: the plotting keyword args"""
self.pyplot.plot(*args, **kwargs)
# data = dict(args=args, kwargs=kwargs)
# self.sendRecordData(data, codec='bz2_pickle_plot')
@property
@mAPI
def pylab(self):
try:
pylab = self._pylab
except AttributeError:
self._pylab = pylab = self.door.pylab
return pylab
@property
@mAPI
def pyplot(self):
try:
pyplot = self._pyplot
except AttributeError:
self._pyplot = pyplot = self.door.pyplot
return pyplot
[docs]
@mAPI
def getData(self) -> Any:
"""**Macro API**.
Returns the data produced by the macro.
:raises: Exception if no data has been set before on this macro
:return: the data produced by the macro
"""
if not hasattr(self, "_data"):
raise Exception(
"Macro '%s' does not produce any data" % self.getName())
return self._data
[docs]
@mAPI
def setData(self, data: object):
"""**Macro API**. Sets the data for this macro
:param data: new data to be associated with this macro"""
self._data = data
data = property(getData, setData, doc="macro data")
[docs]
@mAPI
def print(self, *args, **kwargs):
"""**Macro API**.
Prints a message. Accepted *args* and
*kwargs* are the same as :func:`print`. Example::
self.print("this is a print for macro", self.getName())
.. note::
you will need python >= 3.0. If you have python 2.x then you must
include at the top of your file the statement::
from __future__ import print_function
"""
fd = kwargs.get('file', sys.stdout)
if fd in (sys.stdout, sys.stderr):
out = io.StringIO()
kwargs['file'] = out
end = kwargs.get('end', '\n')
if end == '\n':
kwargs['end'] = ''
ret = print(*args, **kwargs)
self.output(out.getvalue())
else:
ret = print(*args, **kwargs)
return ret
[docs]
@mAPI
def output(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Macro API**.
Record a log message in this object's output. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.log`.
Example::
self.output("this is a print for macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments"""
return Logger.output(self, msg, *args, **kwargs)
[docs]
@mAPI
def log(self, level: int, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Macro API**.
Record a log message in this object's logger. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.log`.
Example::
self.debug(logging.INFO, "this is a info log message for macro %s", self.getName())
:param level: the record level
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments"""
return Logger.log(self, level, msg, *args, **kwargs)
[docs]
@mAPI
def debug(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Macro API**.
Record a debug message in this object's logger. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.debug`.
Example::
self.debug("this is a log message for macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kw: list of keyword arguments"""
return Logger.debug(self, msg, *args, **kwargs)
[docs]
@mAPI
def info(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Macro API**.
Record an info message in this object's logger. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.info`.
Example::
self.info("this is a log message for macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments"""
return Logger.info(self, msg, *args, **kwargs)
[docs]
@mAPI
def warning(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Macro API**.
Record a warning message in this object's logger. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.warning`.
Example::
self.warning("this is a log message for macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments"""
return Logger.warning(self, msg, *args, **kwargs)
[docs]
@mAPI
def error(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Macro API**.
Record an error message in this object's logger. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.error`.
Example::
self.error("this is a log message for macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments
"""
return Logger.error(self, msg, *args, **kwargs)
[docs]
@mAPI
def critical(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Macro API**.
Record a critical message in this object's logger. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.critical`.
Example::
self.critical("this is a log message for macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments"""
return Logger.critical(self, msg, *args, **kwargs)
[docs]
@mAPI
def trace(self, msg, *args, **kwargs):
"""**Macro API**. Record a trace message in this object's logger.
:param msg: (str) the message to be recorded
:param args: list of arguments
:param kw: list of keyword arguments"""
return Logger.trace(self, msg, *args, **kwargs)
[docs]
@mAPI
def traceback(self, *args, **kwargs):
"""**Macro API**.
Logs the traceback with level TRACE on the macro logger."""
return Logger.traceback(self, *args, **kwargs)
[docs]
@mAPI
def stack(self, *args, **kwargs):
"""**Macro API**.
Logs the stack with level TRACE on the macro logger."""
return Logger.stack(self, *args, **kwargs)
[docs]
@mAPI
def report(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Macro API**.
Record a log message in the sardana report (if enabled) with default
level **INFO**. The msg is the message format string, and the args are
the arguments which are merged into msg using the string formatting
operator. (Note that this means that you can use keywords in the
format string, together with a single dictionary argument.)
*kwargs* are the same as :meth:`logging.Logger.debug` plus an optional
level kwargs which has default value **INFO**
Example::
self.report("this is an official report of macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments"""
return self.getDoorObj().report(msg, *args, **kwargs)
[docs]
@mAPI
def flushOutput(self):
"""**Macro API**.
Flushes the output buffer."""
return Logger.flushOutput(self)
[docs]
@mAPI
def getMacroThread(self) -> threading.Thread:
"""**Macro API**.
Returns the python thread where this macro is running
:return: the python thread where this macro is running
"""
return self._macro_thread
[docs]
@mAPI
def getMacroThreadID(self) -> int:
"""**Macro API**.
Returns the python thread id where this macro is running
:return: the python thread id where this macro is running
"""
return self.getMacroThread().ident
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
# Hook helper API
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
[docs]
@mAPI
def createExecMacroHook(self, par_str_sequence, parent_macro=None):
"""**Macro API**.
Creates a hook that executes the macro given as a sequence of strings
where the first string is macro name and the following strings the
macro parameters
:param par_str_sequence: the macro parameters
:param parent_macro:
the parent macro object. If None is given (default) then the
parent macro is this macro
:return: a ExecMacroHook object (which is a callable object)"""
return ExecMacroHook(parent_macro or self, par_str_sequence)
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
# Handle child macro execution
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
[docs]
@mAPI
def createMacro(self, *pars: Any) -> Tuple["Macro", Sequence[Any]]:
"""**Macro API**. Create a new macro and prepare it for execution
Several different parameter formats are supported::
# several parameters:
self.createMacro('ascan', 'th', '0', '100', '10', '1.0')
self.createMacro('mv', [[motor.getName(), '0']])
self.createMacro('mv', motor.getName(), '0') # backwards compatibility - see note
self.createMacro('ascan', 'th', 0, 100, 10, 1.0)
self.createMacro('mv', [[motor.getName(), 0]])
self.createMacro('mv', motor.getName(), 0) # backwards compatibility - see note
th = self.getObj('th')
self.createMacro('ascan', th, 0, 100, 10, 1.0)
self.createMacro('mv', [[th, 0]])
self.createMacro('mv', th, 0) # backwards compatibility - see note
# a sequence of parameters:
self.createMacro(['ascan', 'th', '0', '100', '10', '1.0'])
self.createMacro(['mv', [[motor.getName(), '0']]])
self.createMacro(['mv', motor.getName(), '0']) # backwards compatibility - see note
self.createMacro(('ascan', 'th', 0, 100, 10, 1.0))
self.createMacro(['mv', [[motor.getName(), 0]]])
self.createMacro(['mv', motor.getName(), 0]) # backwards compatibility - see note
th = self.getObj('th')
self.createMacro(['ascan', th, 0, 100, 10, 1.0])
self.createMacro(['mv', [[th, 0]]])
self.createMacro(['mv', th, 0]) # backwards compatibility - see note
# a space separated string of parameters (this is not compatible
# with multiple or nested repeat parameters, furthermore the repeat
# parameter must be the last one):
self.createMacro('ascan th 0 100 10 1.0')
self.createMacro('mv %s 0' % motor.getName())
.. note:: From Sardana 2.0 the repeat parameter values must be passed
as lists of items. An item of a repeat parameter containing more
than one member is a list. In case when a macro defines only one
repeat parameter and it is the last parameter, for the backwards
compatibility reasons, the plain list of items' members is allowed.
:param pars: the command parameters as explained above
:return:
a sequence of two elements: the macro object and the result of
preparing the macro
"""
return self.prepareMacro(*pars)
[docs]
@mAPI
def prepareMacroObj(self, macro_name_or_klass, *args, **kwargs):
"""**Macro API**. Prepare a new macro for execution
:param macro_name_or_klass name: name of the macro to be prepared or
the macro class itself
:param pars: list of parameter objects
:param init_opts: keyword parameters for the macro constructor
:param prepare_opts: keyword parameters for the macro prepare
:return:
a sequence of two elements: the macro object and the result of
preparing the macro"""
# sync our log before calling the child macro prepare in order to avoid
# mixed outputs between this macro and the child macro
self.syncLog()
init_opts = {'parent_macro': self}
return self.executor.prepareMacroObj(macro_name_or_klass, args,
init_opts, kwargs)
[docs]
@mAPI
def prepareMacro(self, *args, **kwargs):
"""**Macro API**. Prepare a new macro for execution
Several different parameter formats are supported::
# several parameters:
self.prepareMacro('ascan', 'th', '0', '100', '10', '1.0')
self.prepareMacro('mv', [[motor.getName(), '0']])
self.prepareMacro('mv', motor.getName(), '0') # backwards compatibility - see note
self.prepareMacro('ascan', 'th', 0, 100, 10, 1.0)
self.prepareMacro('mv', [[motor.getName(), 0]])
self.prepareMacro('mv', motor.getName(), 0) # backwards compatibility - see note
th = self.getObj('th')
self.prepareMacro('ascan', th, 0, 100, 10, 1.0)
self.prepareMacro('mv', [[th, 0]])
self.prepareMacro('mv', th, 0) # backwards compatibility - see note
# a sequence of parameters:
self.prepareMacro(['ascan', 'th', '0', '100', '10', '1.0'])
self.prepareMacro(['mv', [[motor.getName(), '0']]])
self.prepareMacro(['mv', motor.getName(), '0']) # backwards compatibility - see note
self.prepareMacro(('ascan', 'th', 0, 100, 10, 1.0))
self.prepareMacro(['mv', [[motor.getName(), 0]]])
self.prepareMacro(['mv', motor.getName(), 0]) # backwards compatibility - see note
th = self.getObj('th')
self.prepareMacro(['ascan', th, 0, 100, 10, 1.0])
self.prepareMacro(['mv', [[th, 0]]])
self.prepareMacro(['mv', th, 0]) # backwards compatibility - see note
# a space separated string of parameters (this is not compatible
# with multiple or nested repeat parameters, furthermore the repeat
# parameter must be the last one):
self.prepareMacro('ascan th 0 100 10 1.0')
self.prepareMacro('mv %s 0' % motor.getName())
.. note:: From Sardana 2.0 the repeat parameter values must be passed
as lists of items. An item of a repeat parameter containing more
than one member is a list. In case when a macro defines only one
repeat parameter and it is the last parameter, for the backwards
compatibility reasons, the plain list of items' members is allowed.
:param args: the command parameters as explained above
:param kwargs: keyword optional parameters for prepare
:return:
a sequence of two elements: the macro object and the result of
preparing the macro
"""
# sync our log before calling the child macro prepare in order to avoid
# mixed outputs between this macro and the child macro
self.syncLog()
init_opts = {'parent_macro': self}
return self.executor.prepareMacro(args, init_opts, kwargs)
[docs]
@mAPI
def runMacro(self, *args, **kwargs):
"""**Macro API**. Runs the macro with predefined macro object or
list of arguments representing the macro and returns the result of
macro execution after the macro is completed or an exception is thrown.
In case of some operation needs to be done between the macro
preparation and the macro execution use macro object as first argument.
Passing list of arguments representing the macro implicitly
prepares the macro before running it.
Examples::
macro = self.prepareMacro("mymacro", "myparam")
self.do_my_stuff_with_macro(macro)
self.runMacro(macro)
# pass arguments as in :meth:`~sardana.macroserver.macro.Macro.execMacro`
self.runMacro(["mymacro", "myparam"])
# or
self.runMacro("mymacro", "myparam")
:param args: macro object or parameters as explained in
:meth:`~sardana.macroserver.macro.Macro.execMacro`
:return: macro result"""
if isinstance(args[0], Macro):
# sync our log before calling the child macro prepare in order to avoid
# mixed outputs between this macro and the child macro
self.syncLog()
return self.executor.runMacro(args[0])
else:
return self.execMacro(*args, **kwargs).getResult()
[docs]
@mAPI
def execMacroObj(self, name: str, *args: Any, **kwargs: Any) -> "Macro":
"""**Macro API**. Execute a macro in this macro. The method only returns
after the macro is completed or an exception is thrown. This is a
higher level version of runMacro method. It is the same as::
macro = self.prepareMacroObjs(name, *args, **kwargs)
self.runMacro(macro)
return macro
:param name: name of the macro to be prepared
:param args: list of parameter objects
:param kwargs: list of keyword parameters
:return: a macro object"""
self.debug("Executing macro: %s" % name)
macro_obj, prepare_result = self.prepareMacroObj(name, *args, **kwargs)
self.runMacro(macro_obj)
return macro_obj
[docs]
@mAPI
def execMacro(self, *args, **kwargs):
"""**Macro API**. Execute a macro in this macro. The method only
returns after the macro is completed or an exception is thrown. Several
different parameter formats are supported::
# several parameters:
self.execMacro('ascan', 'th', '0', '100', '10', '1.0')
self.execMacro('mv', [[motor.getName(), '0']])
self.execMacro('mv', motor.getName(), '0') # backwards compatibility - see note
self.execMacro('ascan', 'th', 0, 100, 10, 1.0)
self.execMacro('mv', [[motor.getName(), 0]])
self.execMacro('mv', motor.getName(), 0) # backwards compatibility - see note
th = self.getObj('th')
self.execMacro('ascan', th, 0, 100, 10, 1.0)
self.execMacro('mv', [th, 0]])
self.execMacro('mv', th, 0) # backwards compatibility - see note
# a sequence of parameters:
self.execMacro(['ascan', 'th', '0', '100', '10', '1.0')
self.execMacro(['mv', [[motor.getName(), '0']]])
self.execMacro(['mv', motor.getName(), '0']) # backwards compatibility - see note
self.execMacro(('ascan', 'th', 0, 100, 10, 1.0))
self.execMacro(['mv', [[motor.getName(), 0]]])
self.execMacro(['mv', motor.getName(), 0]) # backwards compatibility - see note
th = self.getObj('th')
self.execMacro(['ascan', th, 0, 100, 10, 1.0])
self.execMacro(['mv', [[th, 0]]])
self.execMacro(['mv', th, 0]) # backwards compatibility - see note
# a space separated string of parameters (this is not compatible
# with multiple or nested repeat parameters, furthermore the repeat
# parameter must be the last one):
self.execMacro('ascan th 0 100 10 1.0')
self.execMacro('mv %s 0' % motor.getName())
.. note:: From Sardana 2.0 the repeat parameter values must be passed
as lists of items. An item of a repeat parameter containing more
than one member is a list. In case when a macro defines only one
repeat parameter and it is the last parameter, for the backwards
compatibility reasons, the plain list of items' members is allowed.
:param pars: the command parameters as explained above
:return: a macro object
"""
# obtaining macro name
macro_name = None
arg0 = args[0]
if len(args) == 1:
if isinstance(arg0, str):
# dealing with sth like args = ('ascan th 0 100 10 1.0',)
macro_name = arg0.split()[0]
elif isinstance(arg0, collections.abc.Sequence):
# dealing with sth like args = (['ascan', 'th', '0', '100',
# '10', '1.0'],)
macro_name = arg0[0]
else:
# dealing with sth like args = ('ascan', 'th', '0', '100', '10',
# '1.0')
macro_name = args[0]
self.debug("Executing macro: %s" % macro_name)
macro_obj, _ = self.prepareMacro(*args, **kwargs)
self.runMacro(macro_obj)
return macro_obj
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
# taurus helpers
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
[docs]
@mAPI
def getTangoFactory(self) -> taurus.core.tango.TangoFactory:
"""**Macro API**. Helper method that returns the tango factory.
:return: the tango factory singleton
"""
import taurus
return taurus.Factory()
[docs]
@mAPI
def getDevice(self, dev_name: Any) -> taurus.core.TaurusDevice:
"""**Macro API**. Helper method that returns the device for the given
device name
:return: the taurus device for the given device name
"""
import taurus
return taurus.Device(dev_name)
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
# Handle parameter objects
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
[docs]
@mAPI
def setLogBlockStart(self):
"""**Macro API**. Specifies the begining of a block of data. Basically
it outputs the 'BLOCK' tag"""
self.output(Macro.BlockStart)
[docs]
@mAPI
def setLogBlockFinish(self):
"""**Macro API**. Specifies the end of a block of data. Basically it
outputs the '/BLOCK' tag"""
self.output(Macro.BlockFinish)
[docs]
@mAPI
def outputBlock(self, line: str):
"""**Macro API**. Sends an line tagged as a block to the output
:param line: line to be sent"""
if isinstance(line, str):
o = line
elif isinstance(line, collections.abc.Sequence):
o = "\n".join(line)
else:
o = str(line)
self.output("%s\n%s\n%s" % (Macro.BlockStart, o, Macro.BlockFinish))
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
# Handle parameter objects
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
[docs]
@mAPI
def getPools(self) -> Sequence[Pool]:
"""**Macro API**. Returns the list of known device pools.
:return: the list of known device pools
"""
return self.door.get_pools()
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
# Handle parameter objects
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
[docs]
@mAPI
def addObj(self, obj: object, priority: int = 0) -> Any:
"""**Macro API**. Adds the given object to the list of controlled
objects of this macro. In practice it means that if a stop is
executed the stop method of the given object will be called.
:param obj: the object to be controlled
:param priority:
wheater or not reserve with priority [default: 0 meaning no
priority ]
"""
self.executor.reserveObj(obj, self, priority=priority)
[docs]
@mAPI
def addObjs(self, obj_list: Sequence[Any]) -> Any:
"""**Macro API**. Adds the given objects to the list of controlled
objects of this macro. In practice it means that if a stop is
executed the stop method of the given object will be called.
:param obj_list: list of objects to be controlled
"""
for o in obj_list:
self.addObj(o)
[docs]
def returnObj(self, obj: Any) -> object:
"""Removes the given objects to the list of controlled objects of this
macro.
:param obj: object to be released from the control
"""
self.executor.returnObj(obj, self)
[docs]
@mAPI
def getObj(self, name: str, type_class: Any = All, subtype: Any = All, pool: Any = All, reserve: Any = True) -> Any:
"""**Macro API**. Gets the object of the given type belonging to the
given pool with the given name. The object (if found) will automatically
become controlled by the macro.
:raises: MacroWrongParameterType if name is not a string
:raises: AttributeError if more than one matching object is found
:param name:
string representing the name of the object. Can be a regular
expression
:param type_class:
the type of object [default: All]
:param subtype:
a string representing the subtype [default: All]
Ex.: if type_class is Type.ExpChannel, subtype could be
'CTExpChannel'
:param pool:
the pool to which the object should belong [default: All]
:param reserve:
automatically reserve the object for this macro [default: True]
:return: the object or None if no compatible object is found"""
if not isinstance(name, str):
raise self._buildWrongParamExp("getObj", "name", "string",
str(type(name)))
obj = self.door.get_object(name, type_class=type_class,
subtype=subtype, pool=pool)
if obj and reserve:
self.addObj(obj)
return obj
[docs]
@mAPI
def getObjs(self, names, type_class=All, subtype=All, pool=All, reserve=True):
"""**Macro API**. Gets the objects of the given type belonging to the
given pool with the given names. The objects (if found) will
automatically become controlled by the macro.
:param names: a string or a sequence of strings representing the
names of the objects. Each string can be a regular
expression
:param type_class: the type of object (optional, default is All).
Example: Type.Motor, Type.ExpChannel
:param subtype: a string representing the subtype (optional,
default is All)
Ex.: if type_class is Type.ExpChannel, subtype could
be 'CTExpChannel'
:param pool: the pool to which the object should belong (optional,
default is All)
:param reserve: automatically reserve the object for this macro
(optional, default is True)
:return: a list of objects or empty list if no compatible object is
found"""
obj_list = self.door.get_objects(names, type_class=type_class,
subtype=subtype, pool=pool)
if reserve:
self.addObjs(obj_list)
return obj_list or []
[docs]
@mAPI
def findObjs(self, names, type_class=All, subtype=All, pool=All,
reserve=True):
"""**Macro API**. Gets the objects of the given type belonging to the
given pool with the given names. The objects (if found) will
automatically become controlled by the macro.
:param names:
a string or a sequence of strings representing the names of the
objects. Each string can be a regular expression
:param type_class: the type of object (optional, default is All)
:param subtype:
a string representing the subtype [default: All]
Ex.: if type_class is Type.ExpChannel, subtype could be
'CTExpChannel'
:param pool:
the pool to which the object should belong [default: All]
:param reserve:
automatically reserve the object for this macro [default: True]
:return:
a list of objects or empty list if no compatible object is found"""
obj_list = self.door.find_objects(names, type_class=type_class,
subtype=subtype, pool=pool)
if reserve:
self.addObjs(obj_list)
return obj_list
[docs]
@mAPI
def getMacroNames(self) -> Sequence[str]:
"""**Macro API**. Returns a list of strings containing the names of all
known macros
:return: a sequence of macro names
"""
return self.door.get_macro_names()
[docs]
@mAPI
def getMacros(self, filter: OptionalType[str] = None) -> Sequence[Union[MacroClass, MacroFunction]]:
"""**Macro API**. Returns a sequence of
:class:`~sardana.macroserver.msmetamacro.MacroClass`
/:class:`~sardana.macroserver.msmetamacro.MacroFunction` objects for all
known macros that obey the filter expression.
:param filter:
a regular expression for the macro name (optional, default is None
meaning match all macros)
:return:
a sequence of :class:`~sardana.macroserver.msmetamacro.MacroClass`
/:class:`~sardana.macroserver.msmetamacro.MacroFunction`
objects
"""
ret = sorted(self.door.get_macros(filter=filter).values())
return ret
[docs]
@mAPI
def getMacroLibraries(self, filter: OptionalType[str] = None) -> Sequence[MacroLibrary]:
"""**Macro API**. Returns a sequence of
:class:`~sardana.macroserver.msmetamacro.MacroLibrary` objects for all
known macros that obey the filter expression.
:param filter:
a regular expression for the macro library [default: None meaning
match all macro libraries)
:return:
a sequence of :class:`~sardana.macroserver.msmetamacro.MacroLibrary`
objects
"""
ret = sorted(self.door.get_macro_libs(filter=filter).values())
return ret
[docs]
@mAPI
def getMacroLibrary(self, lib_name: str) -> MacroLibrary:
"""**Macro API**. Returns a
:class:`~sardana.macroserver.msmetamacro.MacroLibrary` object for the
given library name.
:param lib_name:
library name
:return:
a macro library :class:`~sardana.macroserver.msmetamacro.MacroLibrary`
"""
ret = self.door.get_macro_lib(lib_name)
return ret
getMacroLib = getMacroLibrary
getMacroLibs = getMacroLibraries
[docs]
@mAPI
def getMacroInfo(self, macro_name: str) -> Union[MacroClass, MacroFunction]:
"""**Macro API**. Returns the corresponding
:class:`~sardana.macroserver.msmetamacro.MacroClass`
/:class:`~sardana.macroserver.msmetamacro.MacroFunction` object.
:param macro_name: a string with the desired macro name.
:return:
a :class:`~sardana.macroserver.msmetamacro.MacroClass`
/:class:`~sardana.macroserver.msmetamacro.MacroFunction` object or
None if the macro with the given name was not found
"""
return self.door.get_macro(macro_name)
[docs]
@mAPI
def getMotion(self, elems, motion_source=None, read_only=False, cache=True):
"""**Macro API**. Returns a new Motion object containing the given
elements.
:raises:
Exception if no elements are defined or the elems is not recognized
as valid, or an element is not found or an element appears more
than once
:param elems: list of moveable object names
:param motion_source:
obj or list of objects containing moveable elements. Usually this
is a Pool object or a list of Pool objects (optional, default is
None, meaning all known pools will be searched for the given
moveable items
:param read_only: not used. Reserved for future use
:param cache: not used. Reserved for future use
:return: a Motion object
"""
decoupled = False
try:
decoupled = self.getEnv("MotionDecoupled")
except UnknownEnv:
pass
motion = self.door.get_motion(elems, motion_source=motion_source,
read_only=read_only, cache=cache,
decoupled=decoupled)
if motion is not None:
self.addObj(motion, priority=1)
return motion
[docs]
@mAPI
def getElementsWithInterface(self, interface):
return self.door.get_elements_with_interface(interface)
[docs]
@mAPI
def getControllers(self):
return self.door.get_controllers()
[docs]
@mAPI
def getMoveables(self):
return self.door.get_moveables()
[docs]
@mAPI
def getMotors(self):
return self.door.get_motors()
[docs]
@mAPI
def getPseudoMotors(self):
return self.door.get_pseudo_motors()
[docs]
@mAPI
def getIORegisters(self):
return self.door.get_io_registers()
[docs]
@mAPI
def getMeasurementGroups(self):
return self.door.get_measurement_groups()
[docs]
@mAPI
def getExpChannels(self):
return self.door.get_exp_channels()
[docs]
@mAPI
def getCounterTimers(self):
return self.door.get_counter_timers()
[docs]
@mAPI
def get0DExpChannels(self):
return self.door.get_0d_exp_channels()
[docs]
@mAPI
def get1DExpChannels(self):
return self.door.get_1d_exp_channels()
[docs]
@mAPI
def get2DExpChannels(self):
return self.door.get_2d_exp_channels()
[docs]
@mAPI
def getPseudoCounters(self):
return self.door.get_pseudo_counters()
[docs]
@mAPI
def getInstruments(self):
return self.door.get_instruments()
[docs]
@mAPI
def getElementWithInterface(self, interface, name):
return self.door.get_element_with_interface(interface, name)
[docs]
@mAPI
def getController(self, name):
return self.door.get_controller(name)
[docs]
@mAPI
def getMoveable(self, name):
return self.door.get_moveable(name)
[docs]
@mAPI
def getMotor(self, name):
return self.door.get_motor(name)
[docs]
@mAPI
def getPseudoMotor(self, name):
return self.door.get_pseudo_motor(name)
[docs]
@mAPI
def getIORegister(self, name):
return self.door.get_io_register(name)
[docs]
@mAPI
def getMeasurementGroup(self, name):
return self.door.get_measurement_group(name)
[docs]
@mAPI
def getExpChannel(self, name):
return self.door.get_exp_channel(name)
[docs]
@mAPI
def getCounterTimer(self, name):
return self.door.get_counter_timer(name)
[docs]
@mAPI
def get0DExpChannel(self, name):
return self.door.get_0d_exp_channel(name)
[docs]
@mAPI
def get1DExpChannel(self, name):
return self.door.get_1d_exp_channel(name)
[docs]
@mAPI
def get2DExpChannel(self, name):
return self.door.get_2d_exp_channel(name)
[docs]
@mAPI
def getPseudoCounter(self, name):
return self.door.get_pseudo_counter(name)
[docs]
@mAPI
def getInstrument(self, name):
return self.door.get_instrument(name)
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
# Handle macro environment
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
def _getEnv(self, key=None, macro_name=None, door_name=None):
door_name = door_name or self.door.name
macro_name = macro_name or self._name
return self.door.macro_server.get_env(key=key, macro_name=macro_name,
door_name=door_name)
[docs]
@mAPI
def getEnv(self, key: OptionalType[str] = None, macro_name: OptionalType[str] = None, door_name: OptionalType[str] = None) -> Dict:
"""**Macro API**. Gets the local environment matching the given
parameters:
- door_name and macro_name define the context where to look for
the environment. If both are None, the global environment is
used. If door name is None but macro name not, the given macro
environment is used and so on...
- If key is None it returns the complete environment, otherwise
key must be a string containing the environment variable name.
:raises: UnknownEnv
:param key:
environment variable name [default: None, meaning all environment]
:param door_name:
local context for a given door [default: None, meaning no door
context is used]
:param macro_name:
local context for a given macro [default: None, meaning no macro
context is used]
:return: a :obj:`dict` containing the environment
"""
return self._getEnv(key=key, macro_name=macro_name, door_name=door_name)
[docs]
@mAPI
def getGlobalEnv(self) -> Dict:
"""**Macro API**. Returns the global environment.
:return: a :obj:`dict` containing the global environment
"""
return self.macro_server.get_env()
[docs]
@mAPI
def getAllEnv(self) -> Dict:
"""**Macro API**. Returns the enviroment for the macro.
:return: a :obj:`dict` containing the environment for the macro
"""
return self.getEnv(None)
[docs]
@mAPI
def getAllDoorEnv(self) -> Dict:
"""**Macro API**. Returns the enviroment for the door where the macro
is running.
:return: a :obj:`dict` containing the environment
"""
return self.door.get_env()
def _setEnv(self, key, value):
return self.door.set_env(key, value)
[docs]
@mAPI
def setEnv(self, key: str, value: Any) -> Tuple[str, Any]:
"""**Macro API**. Sets the environment key to the new value and
stores it persistently.
:return: a :obj:`tuple` with the key and value objects stored
"""
return self._setEnv(key, value)
[docs]
@mAPI
def unsetEnv(self, key: str) -> Any:
"""**Macro API**. Unsets the given environment variable.
:param key: the environment variable name
"""
return self.macro_server.unset_env(key)
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
# Reload API
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
[docs]
@mAPI
def reloadLibrary(self, lib_name: str) -> Any:
"""**Macro API**. Reloads the given library(=module) names
:raises: ImportError in case the library does not exist
:param lib_name: library(=module) name
:return:
the reloaded python module object"""
lib = self.door.reload_lib(lib_name)
if lib is None:
raise ImportError("Library with name {0} does not exist. "
"(Hint: if {0} is not a typo, "
"make sure {0} is importable from python on "
"server side)".format(lib_name))
return lib
[docs]
@mAPI
def reloadMacro(self, macro_name: str) -> Any:
"""**Macro API**. Reloads the module corresponding to the given macro
name
:raises: MacroServerExceptionList in case the macro is unknown or the
reload process is not successfull
:param macro_name: macro name
"""
return self.door.reload_macro(macro_name)
[docs]
@mAPI
def reloadMacros(self, macro_names: Sequence[str]) -> None:
"""**Macro API**. Reloads the modules corresponding to the given macro
names.
:raises: MacroServerExceptionList in case the macro(s) are unknown or
the reload process is not successfull
:param macro_names: a list of macro names
"""
return self.reload_macros(macro_names)
[docs]
@mAPI
def reloadMacroLibrary(self, lib_name: str) -> MacroLibrary:
"""**Macro API**. Reloads the given library(=module) names
:raises: MacroServerExceptionList in case the reload process is not
successfull
:param lib_name: library(=module) name
:return:
the :class:`~sardana.macroserver.metamacro.MacroLibrary` for the
reloaded library
"""
return self.door.reload_macro_lib(lib_name)
[docs]
@mAPI
def reloadMacroLibraries(self, lib_names: Sequence[str]) -> Sequence[MacroLibrary]:
"""**Macro API**. Reloads the given library(=module) names
:raises: MacroServerExceptionList in case the reload process is not
successfull for at least one lib
param lib_names: a list of library(=module) names
:return:
a sequence of :class:`~sardana.macroserver.metamacro.MacroLibrary`
objects for the reloaded libraries
"""
return self.door.reload_macro_libs(lib_names)
reloadMacroLib = reloadMacroLibrary
reloadMacroLibs = reloadMacroLibraries
[docs]
@mAPI
def getViewOption(self, name):
return self._getViewOption(name)
[docs]
@mAPI
def getViewOptions(self):
vo = self._getViewOptions()
# ensure that all view options known by sardana are present, in case
# there were missing ones, update _ViewOptions dictionary after
# initializing missing options with the default values
ivo = copy.deepcopy(vo)
ViewOption.init_options(ivo)
if vo != ivo:
self.setEnv('_ViewOptions', vo)
return ivo
[docs]
@mAPI
def setViewOption(self, name, value):
vo = self._getViewOptions()
vo[name] = value
self.setEnv('_ViewOptions', vo)
[docs]
@mAPI
def resetViewOption(self, name):
vo = self._getViewOptions()
ViewOption.reset_option(vo, name)
self.setEnv('_ViewOptions', vo)
return vo.get(name)
#@}
# @name Unofficial Macro API
# This list contains the set of methods that are <b>NOT</b> part of the
# the macro developer knows what he is doing.
# Please check before is there is an official API that does the samething
# before executing any of these methods.
# If you see that your macro needs to execute any of these methods please
# consider informing the MacroServer developer so he may expose this in a
# safe way.
#@{
def _getViewOptions(self):
'''Gets _ViewOption dictionary. If it is not defined in the environment,
sets it with the default values dictionary and returns it.
'''
try:
vo = self.getEnv('_ViewOptions')
except UnknownEnv:
vo = ViewOption.init_options(dict())
self.setEnv('_ViewOptions', vo)
return vo
def _getViewOption(self, name):
'''Gets _ViewOption of a given name. If it is not defined in
the environment, sets it to a default value and returns it.
'''
view_options = self._getViewOptions()
if name not in view_options:
ViewOption.reset_option(view_options, name)
self.setEnv('_ViewOptions', view_options)
return view_options[name]
def _input(self, msg, *args, **kwargs):
"""**Unofficial Macro API**.
If args is present, it is written to standard output without a trailing
newline. The function then reads a line from input, converts it to a
string (stripping a trailing newline), and returns that.
Depending on which type of application you are running, some of the
keywords may have no effect (ex.: spock ignores decimals when a number
is asked).
Recognized kwargs:
- data_type : [default: Type.String] specific input type. Can also
specify a sequence of strings with possible values (use
allow_multiple=True to say multiple values can be selected)
- key : [default: no default] variable/label to assign to this input
- unit: [default: no default] units (useful for GUIs)
- timeout : [default: None, meaning wait forever for input]
- default_value : [default: None, meaning no default value]
When given, it must be compatible with data_type
- allow_multiple : [default: False] in case data_type is a
sequence of values, allow multiple selection
- minimum : [default: None] When given, must be compatible with data_type (useful for GUIs)
- maximum : [default: None] When given, must be compatible with data_type (useful for GUIs)
- step : [default: None] When given, must be compatible with data_type (useful for GUIs)
- decimals : [default: None] When given, must be compatible with data_type (useful for GUIs)
Examples::
device_name = self.input("Which device name (%s)?", "tab separated")
point_nb = self.input("How many points?", data_type=Type.Integer)
calc_mode = self.input("Which algorithm?", data_type=["Average", "Integral", "Sum"],
default_value="Average", allow_multiple=False)"""
if not self.interactive:
self.warning("Non interactive macro '%s' is asking for input "
"(please set this macro interactive to True)",
self.getName())
if self._interactive_mode:
kwargs['data_type'] = kwargs.get('data_type', Type.String)
kwargs['allow_multiple'] = kwargs.get('allow_multiple', False)
kwargs['macro_id'] = self.getID()
kwargs['macro_name'] = self.getName()
kwargs['macro'] = self
return self.getDoorObj().input(msg, *args, **kwargs)
else:
if 'default_value' not in kwargs:
if 'key' not in kwargs:
self.warning("%s running in non attended mode was asked "
"for input without default value or key. "
"Returning None")
return None
else:
return self.getEnv(kwargs['key'])
return kwargs['default_value']
def _output(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""****Unofficial Macro API**.
Record a log message in this object's output. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.log`.
Example::
self.output("this is a print for macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments"""
return Logger.output(self, msg, *args, **kwargs)
def _outputBlock(self, line: str):
"""**Unofficial Macro API**.
Sends a line tagged as a block to the output
:param line: line to be sent"""
if isinstance(line, str):
o = line
elif isinstance(line, collections.abc.Sequence):
o = "\n".join(line)
else:
o = str(line)
self._output("%s\n%s\n%s" % (Macro.BlockStart, o, Macro.BlockFinish))
def _log(self, level: int, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Unofficial Macro API**.
Record a log message in this object's logger. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.log`.
Example::
self.debug(logging.INFO, "this is a info log message for macro %s", self.getName())
:param level: the record level
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments"""
return Logger.log(self, level, msg, *args, **kwargs)
def _debug(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Unofficial Macro API**.
Record a debug message in this object's logger. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.debug`.
Example::
self.debug("this is a log message for macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kw: list of keyword arguments"""
return Logger.debug(self, msg, *args, **kwargs)
def _info(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Unofficial Macro API**.
Record an info message in this object's logger. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.info`.
Example::
self.info("this is a log message for macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments"""
return Logger.info(self, msg, *args, **kwargs)
@mAPI
def _warning(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Unofficial Macro API**.
Record a warning message in this object's logger. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.warning`.
Example::
self.warning("this is a log message for macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments"""
return Logger.warning(self, msg, *args, **kwargs)
def _error(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Unofficial Macro API**.
Record an error message in this object's logger. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.error`.
Example::
self.error("this is a log message for macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments
"""
return Logger.error(self, msg, *args, **kwargs)
def _critical(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Unofficial Macro API**.
Record a critical message in this object's logger. Accepted *args* and
*kwargs* are the same as :meth:`logging.Logger.critical`.
Example::
self.critical("this is a log message for macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments"""
return Logger.critical(self, msg, *args, **kwargs)
def _trace(self, msg, *args, **kwargs):
"""**Unofficial Macro API**. Record a trace message in this object's logger.
:param msg: (str) the message to be recorded
:param args: list of arguments
:param kw: list of keyword arguments"""
return Logger.trace(self, msg, *args, **kwargs)
def _traceback(self, *args, **kwargs):
"""**Unofficial Macro API**.
Logs the traceback with level TRACE on the macro logger."""
return Logger.traceback(self, *args, **kwargs)
def _stack(self, *args, **kwargs):
"""**Unofficial Macro API**.
Logs the stack with level TRACE on the macro logger."""
return Logger.stack(self, *args, **kwargs)
def _report(self, msg: str, *args: Any, **kwargs: Any) -> Any:
"""**Unofficial Macro API**.
Record a log message in the sardana report (if enabled) with default
level **INFO**. The msg is the message format string, and the args are
the arguments which are merged into msg using the string formatting
operator. (Note that this means that you can use keywords in the
format string, together with a single dictionary argument.)
*kwargs* are the same as :meth:`logging.Logger.debug` plus an optional
level kwargs which has default value **INFO**
Example::
self.report("this is an official report of macro %s", self.getName())
:param msg: the message to be recorded
:param args: list of arguments
:param kwargs: list of keyword arguments"""
return self.door.report(msg, *args, **kwargs)
def _flushOutput(self):
"""**Unofficial Macro API**.
Flushes the output buffer."""
return Logger.flushOutput(self)
@property
def executor(self):
"""**Unofficial Macro API**. Alternative to :meth:`getExecutor` that
does not throw StopException in case of a Stop. This should be
called only internally"""
return self._executor
@property
def door(self):
"""**Unofficial Macro API**. Alternative to :meth:`getDoorObj` that
does not throw StopException in case of a Stop. This should be
called only internally"""
return self.executor.getDoor()
@property
def parent_macro(self):
"""**Unofficial Macro API**. Alternative to getParentMacro that does not
throw StopException in case of a Stop. This should be called only
internally by the *Executor*"""
return self._parent_macro
@property
def macro_command(self):
"""**Unofficial Macro API**. Alternative to getMacroCommand that does not
throw StopException in case of a Stop."""
return '%s %s' % (self._getName(), ' '.join([str(p) for p in self._in_pars]))
@property
def description(self):
"""**Unofficial Macro API**. Alternative to :meth:`getDescription` that
does not throw StopException in case of a Stop. This should be
called only internally by the *Executor*"""
return self._desc
[docs]
def isAborted(self):
"""**Unofficial Macro API**."""
return self._aborted
[docs]
def isStopped(self):
"""**Unofficial Macro API**."""
return self._stopped
[docs]
def isPaused(self):
"""**Unofficial Macro API**."""
return self._pause_event.isPaused()
[docs]
def isAnyAncestorStopped(self):
next_ancestor = self.parent_macro
while next_ancestor is not None:
if next_ancestor.isStopped():
return True
next_ancestor = next_ancestor.parent_macro
return False
[docs]
def isAnyAncestorExecutingOnStop(self):
next_ancestor = self.parent_macro
while next_ancestor is not None:
if next_ancestor._on_stop_started:
return True
next_ancestor = next_ancestor.parent_macro
return False
[docs]
def hasResult(self) -> bool:
"""**Unofficial Macro API**. Returns True if the macro should return
a result or False otherwise
:return: True if the macro should return a result or False otherwise
"""
return len(self.result_def) > 0
[docs]
def getResult(self):
"""**Unofficial Macro API**. Returns the macro result object (if any)
:return: the macro result object or None"""
return self._out_pars
[docs]
def setResult(self, result):
"""**Unofficial Macro API**. Sets the result of this macro
:param result: (object) the result for this macro"""
self._out_pars = result
# @name Internal methods
# This list contains the set of methods that are for INTERNAL macro usage.
# Macro developers should never call any of these methods
#@{
@staticmethod
def _buildWrongParamExp(method_name, param_name, expected, found):
"""**Internal method**. """
s = "Macro.%s called with wrong parameter type in '%s'. " \
"Expected %s got %s" % (method_name, param_name, expected, found)
return MacroWrongParameterType(s)
def _getName(self):
"""**Internal method**. """
return self._name
def _getDescription(self):
"""**Internal method**. """
return self._desc
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
# Macro execution methods
#-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
def _getMacroStatus(self) -> Dict:
"""**Internal method**.
Returns the current macro status. Macro status is a :obj:`dict` where
keys are the strings:
* *id* - macro ID (internal usage only)
* *range* - the full progress range of a macro (usually a
:obj:`tuple` of two numbers (0, 100))
* *state* - the current macro state, a string which can have values
*start*, *step*, *stop* and *abort*
* *step* - the current step in macro. Should be a value inside the
allowed macro range
:return: the macro status
"""
return self._macro_status
def _shouldRaiseStopException(self):
return (not self.isAborted()
and self.isStopped()
and not self.isProcessingStop())
def _reserveObjs(self, args):
"""**Internal method**. Used to reserve a set of objects for this
macro"""
for obj in args:
# isiterable
if not type(obj) in list(map(type, ([], ()))):
# if not operator.isSequenceType(obj) or type(obj) in
# types.StringTypes:
obj = (obj,)
for sub_obj in obj:
if isinstance(sub_obj, PoolElement):
self.addObj(sub_obj)
[docs]
def exec_(self):
"""**Internal method**. Execute macro as an iterator"""
self._macro_thread = threading.current_thread()
macro_status = self.getMacroStatus()
# make sure a 0.0 progress is sent
yield macro_status
# Avoid repeating same information on subsequent events. If, in the
# future, clients that connect in the middle of macro execution need
# this information, just simply remove the lines below
macro_status.pop('name', None)
macro_status.pop('macro_line', None)
# allow any macro to be paused at the beginning of its execution
self.pausePoint()
# Run the macro or obtain a generator
res = self.run(*self._in_pars)
# If macro returns a generator then running the macro means go through
# the generator steps, otherwise the macro has already ran
if isinstance(res, types.GeneratorType):
it = iter(res)
for i in it:
if isinstance(i, collections.abc.Mapping):
new_range = i.get('range')
if new_range is not None:
macro_status['range'] = new_range
new_step = i.get('step')
if new_step is not None:
macro_status['step'] = new_step
elif isinstance(i, numbers.Number):
macro_status['step'] = i
macro_status['state'] = 'step'
yield macro_status
# make sure a 'stop' progress is sent in case an exception occurs
macro_status['state'] = 'stop'
else:
self._out_pars = res
macro_status['step'] = 100.0
macro_status['state'] = 'finish'
yield macro_status
def __prepareResult(self, out):
"""**Internal method**. Decodes the given output in order to be able to
send to the result channel
:param out: output value
:return: the output as a sequence of strings
"""
if out is None:
out = ()
if isinstance(out, collections.abc.Sequence) and not type(out) in str:
out = list(map(str, out))
else:
out = (str(out),)
return out
def _stopOnError(self):
"""**Internal method**. The stop procedure. Calls the user 'on_abort'
protecting it against exceptions"""
try:
self._on_stop_started = True
self.on_stop()
except AbortException:
raise
except Exception:
Logger.error(self, "Error in on_stop(): %s",
traceback.format_exc())
Logger.debug(self, "Details: ", exc_info=1)
def _abortOnError(self):
"""**Internal method**. The stop procedure. Calls the user 'on_abort'
protecting it against exceptions"""
try:
self.on_abort()
except ReleaseException:
pass
except Exception:
Logger.error(self, "Error in on_abort(): %s",
traceback.format_exc())
Logger.debug(self, "Details: ", exc_info=1)
def _pausePoint(self, timeout=None):
"""**Internal method**."""
if self._pause_event.isPaused():
self.on_pause()
self._pause_event.wait(timeout)
[docs]
def stop(self):
"""**Internal method**. Activates the stop flag on this macro."""
self._stopped = True
[docs]
def abort(self):
"""**Internal method**. Aborts the macro abruptly."""
# carefull: Inside this method never call a method that has the
# mAPI decorator
Logger.debug(self, "Aborting...")
self._aborted = True
ret, i = 0, 0
while ret != 1:
self.__resumeForAbort()
th = self._macro_thread
th_id = ctypes.c_long(th.ident)
Logger.debug(self, "Sending AbortException to %s", th.name)
ret = _asyncexc(th_id, ctypes.py_object(AbortException))
i += 1
if ret == 0:
# try again
if i > 2:
self.error("Failed to abort after three tries!")
break
time.sleep(0.1)
if ret > 1:
# if it returns a number greater than one, you're in trouble,
# and you should call it again with exc=NULL to revert the
# effect
asyncexc(th_id, None)
Logger.error(
self, "Failed to abort (unknown error code %d)" % ret)
break
[docs]
def setProcessingStop(self, yesno):
"""**Internal method**. Activates the processing stop flag on this
macro"""
self._processingStop = yesno
[docs]
def isProcessingStop(self):
"""**Internal method**. Checks if this macro is processing stop"""
return self._processingStop
[docs]
def pause(self, cb=None):
"""**Internal method**. Pauses the macro execution. To be called by the
Door running the macro to pause the current macro"""
self._pause_event.pause(cb=cb)
[docs]
def resume(self, cb=None):
"""**Internal method**. Resumes the macro execution. To be called by
the Door running the macro to resume the current macro"""
self._pause_event.resume(cb=cb)
def __resumeForAbort(self):
"""Called internally to resume the macro execution in case of an abort.
The macro is resumed but instead of allowing the next user instruction
to proceed it just waits for an ashyncronous AbortException to be
thrown"""
self._pause_event.resumeForAbort()
#@}
def __getattr__(self, name):
try:
self.door.get_macro(name)
except UnknownMacro:
raise AttributeError("%r object has no attribute %r" %
(type(self).__name__, name))
def f(*args, **kwargs):
self.syncLog()
opts = dict(parent_macro=self, executor=self.executor)
kwargs.update(opts)
eargs = [name]
eargs.extend(args)
return self.execMacro(*eargs, **kwargs)
setattr(self, name, f)
return f
[docs]
class iMacro(Macro):
interactive = True
class MacroFunc(Macro):
def __init__(self, *args, **kwargs):
function = kwargs['function']
self._function = function
kwargs['as'] = self._function.__name__
if function.param_def is not None:
self.param_def = function.param_def
if function.result_def is not None:
self.result_def = function.result_def
if function.env is not None:
self.env = function.env
if function.hints is not None:
self.hints = function.hints
if function.interactive is not None:
self.interactive = function.interactive
Macro.__init__(self, *args, **kwargs)
def run(self, *args):
return self._function(self, *args)