Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.apo.nmsu.edu/35m_operations/TUI/Scripts/Programming.html
Дата изменения: Sat Sep 6 02:16:02 2014
Дата индексирования: Sun Apr 10 01:06:58 2016
Кодировка:
TUI:Scripts:Programming

TUI:Scripts:Programming

Contents

Introduction

It is possible to write simple scripts for TUI, and most people should start there. But it is also possible to add your own windows in TUI, incorporating them as if they were built in. This document primarily deals with adding windows to TUI and with the internal workings of TUI.

TUI is written in Python, hence it should be fairly easy to modify or extend. Python is a simple but powerful language that blends elements of C (without the pointer and memory management headaches), Java, Perl (without the obscure syntax) and Smalltalk (ditto). Before starting, you should gain some familiarity with Python (e.g. via the excellent tutorial at Python's home) and buy a good reference book, such as Python Essential Reference or Python in a Nutshell.

Before you begin, it is very important to add <tui_root>, the root directory of TUI, to your python path. Otherwise it will be nearly impossible to test your code or ask for help on existing TUI code. In unix, set the environment variable PYTHONPATH appropriately. MacOS X is the same, but you will probably want to download your own copy of the source code for this purpose (the MacOS X binary does include the code, but the source is missing, making it less useful). On Windows, I'm not sure how you modify the python path, but you will probably want a copy of the source in any case.

Getting Help

See APO Documentation for links to manuals for the instruments, hub and TCC. The rest of this section deals with the code in TUI.

TUI code uses python's standard documentation technique of "doc strings". This means you can use python's built-in help system to study the code. It is well worth getting familiar with this help system.

For example, the documentation below says that the dispatcher is an instance of the KeyDispatcher class in RO.KeyDispatcher and you use its "executeCmd" method to execute a command. Want more information? Run python, import the RO.KeyDispatcher module and let's find out:
% python
>>>import RO.KeyDispatcher
Warning: the import will fail if <tui_root> is not on the python path. See the introduction for more information

Here is help on the entire RO.KeyDispatcher module. This is often too much information, because it includes internal details such as constants and helper classes and functions: >>>help(RO.KeyDispatcher)

You can easily narrow your search. Here we ask for information on just the KeyDispatcher object in the RO.KeyDispatcher module:
>>>help(RO.KeyDispatcher.KeyDispatcher)

You can narrow your search even further. Here we ask for help on just the executeCmd method of KeyDispatcher:
>>>help(RO.KeyDispatcher.KeyDispatcher.executeCmd)

You can find out what a variable is using repr(var) or var.__class__ (these will give different results; both may be of interest).

You can list the attributes of an object using dir(). Often this is all you need to remember how to do something, or at least to know what to ask for help on:
>>>import RO.KeyDispatcher
>>>dir(RO.KeyDispatcher) # classes, constants and functions in the KeyDispatcher module
>>>dir(RO.KeyDispatcher.KeyDispatcher) # constants and methods in the KeyDispatcher class

Looking through the existing source code is also an excellent idea. I include lots of comments (including the doc strings that make the help system work). See the next section for the code layout.

Source Code Directories

TUI's source code is structured as follows (highlighting the most important bits). The location of <tui_root> will depend on where TUI was installed, but you can always download your own copy to study.

Note: the reason help works on my code is because I use "doc strings", the standard Python documenting technique. Doc strings are strings specified right after each function, class and module definition begins. Please do this for your own code; it makes life much easier for anybody trying to understand it (including you, later, when you can't remember exactly what you did).

Basic Architecture

One or more TUIs and other users (all called "commanders") talk to the hub, which runs at APO. The hub forwards commands to the appropriate "actors": instruments, the TCC, hub scripts such as expose, etc. The hub sends replies from actors to all commanders.

Commands are sent to the hub in whatever format the actor expects. Replies, on the other hand, are in APO-standard keyword, value format, e.g.: keyword1=value1a, value1b,...; keyword2; keyword3=value3.... This makes it easy to parse reply data and maintain the proper state within TUI. Both commands and replies have some header information (including the name of the actor, a command ID number assigned by the commander, and for replies, the name of the commander), that is managed by the hub. The rest of the information (the command or reply) is passed along unaltered, except that the hub takes the liberty of correcting certain kinds of errors in replies, such as misterminated strings.

TUI contains various "models" that keep track of the state of each instrument, the TCC and TUI itself. To obtain a copy of a model, import the appropriate module and call getModel(). For example: TUI.TUIModel.getModel().

TUI's model contains fundamental variables that any programmer will need, including:

Models for the instruments (e.g. TUI.Inst.DIS.DISModel) and TCC (TUI.Inst.TCC.TCCModel) contain variables reflecting the current state of the actor in question.

Receiving Data

The hub continually outputs data about the state of the telescope and instruments. Some of this is in response to your commands or other users' commands. Some of it is unsolicited notification of a state change somewhere. Your TUI gets it all, even if another user triggered the reply. This makes it easy for TUI to keep its displays and internal data current.

There are two basic ways of monitoring data: listening to keywords or to commands. Listen to keywords keep track of the current state of the telescope. Keyword data is updated when the state changes, regardless of who triggered the change, so your information is always current. Listening to commands is more specialized; you can only monitor the state of commands you sent yourself and you typically only do this to report to the user whether the command succeeded or failed, or to proceed with the next step in a command sequence.

To monitor a keyword, create a "keyword variable" (instances of the various classes defined in RO.KeyVariable) and register it with the dispatcher. You can set up a keyword variable to update a display widget (typically one of the classes in RO.Wdg.Label) and/or call a function when its value changes. Most actors have an associated "model" object (as defined in TUI.TCC.TCCModel and TUI.Inst.DISModel and returned via the getModule function) that contains a large set of keywords appropriate for the given actor. Always look there first before creating your own keyword variables. If you need to monitor a keyword that may be of general interest, consider asking TUI's maintainer's to add it to the model.

To monitor a command, see the next section

Sending Commands

To issue commands, use "key commands" (instances of RO.KeyVariable.CmdVar). You specify the actor, the command string and a time limit. You may also specify a function to be called when the command finishes (or when the command receives any replies, depending on callTypes), and a list of keyword variables to record values from while executing the command.

KeyCommands take care of some important tasks for you, including assigning a unique command ID number, keeping track of timeouts and keeping track of replies to the command. Please do not take shortcuts (such as trying to construct commands and send them yourself) as you may mess up TUI's internals.

If you wish to wait for a command to finish (for instance if you are issuing a series of commands, each of which must complete before the next), use RO.ScriptRunner to issue the commands. This avoids locking up TUI.

For commands that may take a long time (such as slewing), the controller ("actor") may return a keyword whose value is the maximum time the command should take. CmdVar allows you to take advantage of such information: simply specify a time limit keyword in addition to a normal not-very-long time limit. TUI uses the normal time limit until the time limit keyword is seen, at which point TUI uses the value in the time limit keyword (plus the normal time limit, for some extra slop).

Often the best option for handling command timeouts is to let the user do it. The user should be able to cancel any operation in any case so they aren't stuck with a dead window due to problems elsewhere. Thus they already can cancel if a command takes too long. And reporting a command as timed out that is actually worked but took longer than usual (perhaps due to a slow network) is very, very frustrating for the user. It is usually better not to guess and let the user decide when it's time to cancel.

Useful Modules

There are a number of modules which may help you program your own TUI window modules. These include

RO.InputCont: powerful containers for a wide variety of input widgets (including standard Tk widgets and EntryWdg widgets). Input containers make it easy to retrieve the data from a large set of input widgets as one nicely formatted command. They also make it easy to save that command (e.g. see the RO.Wdg.HistoryMenu widget) and restore it (resetting the various input widgets to some previous state). For an example of this, see the TCC Slew widget.

RO.Wdg.Entry: numeric entry widgets that perform syntax and range checking. These include widgets for floating point, integer and sexagesimal (e.g. d:m:s) input. Sexagesimal input widgets include absolute (for positions) and relative (e.g. for exposure time), and can automatically update a units label as the user adds or deletes fields (the TCC Slew widget's object position input is a good example).

RO.Wdg.Label: output widgets that support many useful functions including setting via callbacks from KeyVariables, automatic handling of background color (indicating invalid data) and text color (indicating normal, warning or error state).

RO.Wdg.Gridder: simplifies generating sets of input or output widgets with name labels to the left and an optional units label to the right. Many of TUI's windows are laid out using Gridder.

RO.StringUtil: string handling facilities including the ability to convert sexagesimal numbers between numeric values and formatted strings.

RO.Astro: coordinate conversions and time handling

RO.OS: operating-system utilities for navigating directory trees and such

See also RO.MathUtil, RO.SeqUtil, PhysConst, etc.

Where To Put Your Code

TUI's windows are generated by "window modules" contained in TUIAdditions for local additions and TUIRoot/TUI for TUI's standard windows. Each window module is a python source file whose name ends with "Window.py". The module must define a function addWindow(tlSet) and this function must call tlSet.createToplevel for each window it adds to TUI (a window module can define more than one window). Look at any existing window module for an example and at RO.Wdg.Toplevel for documentation on tlSet.createToplevel (tlSet is an RO.Wdg.ToplevelSet).

Typically your code will go in one of the TUIAdditions directories. TUI scans these directories at startup and automtically tries to load all window modules it finds. It prints a message to the log window as it loads each one.

Notes on TUI Additions:

Adding code to TUI's standard distribution is slightly trickier because TUI does not scan TUIRoot/TUI at startup. Instead, you must run python TUIRoot/genLoadStdModules.py whenever you add, delete or move any window module in TUIRoot/TUI. This finds the standard code and create a python module to load it (TUIRoot/TUI/loadStdModules.py). Finding the standard code in advance simplifies packaging the code for binary distributions and also speeds startup. In addition, TUI is not forgiving of errors in standard windows; load errors will cause TUI to die.

If you have a lot of code you you should create a package (a directory containing python modules and a text file named __init__.py; read any python manual for more information). Your window module may be at any depth in a python package, but it is necessary that the root of the package be in TUIAdditions or TUIRoot/TUI. For example, for code in .../TUIAdditions, if you trace the directory tree from TUIAdditions down to the directory containing your window module(s), every one of those directories (not including TUIAdditions itself) must contain a file named __init__.py. If you forget this, TUI will fail when it tries to load your window module(s).

An alternative mechanism for running python code is to do it manually. Open the Python window (in the TUI menu) and type in code or load a file and run it. Any code run this way has access to all the local variables in TUI.Main, including tuiModel, which has such important things as dispatcher, prefs and tlSet (the set of all "Toplevels", i.e. windows). For more information about tuiModel, see TUI/TUIModel.py.