Programmer Guide/Shell Items: Difference between revisions

From STX Wiki
Jump to navigationJump to search
No edit summary
 
(47 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:{{SUBPAGENAME}}}}
{{DISPLAYTITLE:{{SUBPAGENAME}}}}
{{Shell}}
{{Shell Item}}
{| class="wikitable"
!colspan="13"|[[Programmer_Guide/Shell_Items|Shell Items]]
|-
|[[Programmer_Guide/Shell_Items/DCOM|<code>DCOM</code>]]
|[[Programmer_Guide/Shell_Items/DDECONV|<code>DDECONV</code>]]
|[[Programmer_Guide/Shell_Items/Dialog|<code>DIALOG|MENU</code>]]
|[[Programmer_Guide/Shell_Items/Display|<code>DISPLAY</code>]]
|[[Programmer_Guide/Shell_Items/File|<code>FILE</code>]]
|[[Programmer_Guide/Shell_Items/Graph|<code>GRAPH</code>]]
|[[Programmer_Guide/Shell_Items/Instance|<code>INSTANCE</code>]]
|[[Programmer_Guide/Shell_Items/IP|<code>IP</code>]]
|[[Programmer_Guide/Shell_Items/SPU|<code>SPU</code>]]
|[[Programmer_Guide/Shell_Items/Table|<code>TABLE</code>]]
|[[Programmer_Guide/Shell_Items/Value|<code>VALUE</code>]]
|[[Programmer_Guide/Shell_Items/Wave|<code>WAVE</code>]]
|[[#References to shell items|Shell Item Reference]]
|}
{{STX}} implements a number of different objects which can be used to manipulate files, graphics, dialogs, etc. These objects are called ''shell items''.  
{{STX}} implements a number of different objects which can be used to manipulate files, graphics, dialogs, etc. These objects are called ''shell items''.  


A shell item is an object designed to be good at a specific range of tasks. There is, for example, a file item which allowing to read, write, copy, rename, and list files: and there is a dialog item, allowing to design, and display dialog boxes, and to react to user input.
A [[Programmer_Guide/Concepts/Shell|shell]] item is an object designed to be good at a specific range of tasks. There is, for example, a file item which is really good in reading, writing, copying, renaming, and listing files; and there is a dialog item, allowing to design, and display dialog boxes, and to react to user input.


Shell items are implemented in C++, making them very performant. The {{STX}} programmer may interact with shell items
Shell items are implemented in C++, making them very performant. The {{STX}} programmer may interact with shell items
Line 11: Line 31:
The commands, attributes, and messages each kind of shell item provides are documented in the chapter on the respective shell item (see the list below).
The commands, attributes, and messages each kind of shell item provides are documented in the chapter on the respective shell item (see the list below).


Every instance of a shell item has a unique name, either chosen by the {{STX}} programmer, if he and/or she so wishes, automatically assigned by {{STX}} itself. This item name is used as a reference (a kind of pointer) to the item.
Every instance of a shell item has a unique name, either chosen by the {{STX}} programmer, if he and/or she so wishes, or automatically assigned by {{STX}} itself. This item name is used as a reference (a kind of pointer) to the item.


;Currently {{STX}} supports the following shell items:
Currently {{STX}} supports the following shell items (in fairly alphabetic order):
{|class="einrahmen"
{|class="einrahmen"
| [[Programmer_Guide/Shell_Items/DCOM|DCOM]]  
| [[Programmer_Guide/Shell_Items/DCOM|<code>DCOM</code>]]  
| A shell item for working with Distributed Component Object Model (DCOM) interfaces (e.g. with the DCOM interface for the statistics package '''R''').
| A shell item for working with Distributed Component Object Model (DCOM) interfaces (e.g. with the DCOM interface for the statistics package '''[http://www.r-project.org/ R]''').
|-
|-
|[[Programmer_Guide/Shell_Items/DDECONV|DDECONV]]  
|[[Programmer_Guide/Shell_Items/DDECONV|<code>DDECONV</code>]]  
|A shell item for initiating a Dynamic Data Exchange (DDE) conversation with a DDE server and exchanging data between the server and the item (e.g. to exchange data with microsoft EXCEL or WORD).
|A shell item for initiating a Dynamic Data Exchange (DDE) conversation with a DDE server and exchanging data between the server and the item (e.g. to exchange data with Microsoft Excel, a spreadsheet application popular among Windows users, or Word, a kind of text editor).
|-
|-
|[[Programmer_Guide/Shell_Items/Dialog|MENU (dialog)]]  
|[[Programmer_Guide/Shell_Items/Dialog|<code>DIALOG|MENU</code>]]  
| A shell item for designing and displaying dialog boxes and processing user input. A dialog is always a part of a display item.<BR>Note:For historical reasons the type id used for dialog items is '''MENU'''.
| A shell item for designing and displaying dialog boxes and processing user input. A dialog is always a part of a display item.<BR>Note: It is a bit misleading that the dialog item may also be called a <code>MENU</code> item. This has historical reasons, and is retained for backward compatibility (as of {{STX}} 4.3.
|-
|-
|[[Programmer_Guide/Shell_Items/Display|DISPLAY]]
|[[Programmer_Guide/Shell_Items/Display|<code>DISPLAY</code>]]
|A shell item for displaying one or more graph items and optionally a dialog. Each window displayed by {{STX}} is a display item.
| A shell item for displaying one or more graph items and optionally a dialog. Each window displayed by {{STX}} is a display item.
|-
|-
|[[Programmer_Guide/Shell_Items/File|FILE]]
|[[Programmer_Guide/Shell_Items/File|<code>FILE</code>]]
|A shell item for accessing files on disk and manipulating files in memory. It can be used to list files, to apply system commands (like copy, rename, move, ...) to files or to access data of different file formats (plane text, section files, xml, binary).
| A shell item for accessing files on disk and manipulating files in memory. It can be used to list files, to apply system commands (like copy, rename, move, &hellip;) to files or to access data of different file formats (plane text, plain text, section files, XML, binary).
|-
|-
|[[Programmer_Guide/Shell_Items/Graph|GRAPH]]  
|[[Programmer_Guide/Shell_Items/Graph|<code>GRAPH</code>]]  
|A shell item for displaying graphical representations of data, e.g. spectrograms. A graph is always a part of a display item.
| A shell item for displaying graphical representations of data, e.g. spectrograms. A graph is always a part of a display item.
|-
|-
|[[Programmer_Guide/Shell_Items/Instance|INSTANCE]]  
|[[Programmer_Guide/Shell_Items/Instance|<code>INSTANCE</code>]]  
|A shell item instance of an {{STX}} class. The instance items are used to implemented object oriented script programming.
| A shell item instance of an {{STX}} class. The instance items are used to implemented object oriented script programming.
|-
|-
|[[Programmer_Guide/Shell_Items/IP|IP]]  
|[[Programmer_Guide/Shell_Items/IP|<code>IP</code>]]  
|A shell item for sending and receiving data via the TCP/IP protocol. The ip item supports both the TCP and the UDP protocols and can act as server or client. The ip item can transfer data using the Open Sound Control protocol (OSC), an {{STX}} protocol, or as ASCII or UNICODE strings.
| A shell item for sending and receiving data via the TCP/IP protocol. The IP item supports both the Transmission Control Protocol (TCP) and the User Datagram Protocol (UDP). It can act as server or client. The IP item can transfer data using the Open Sound Control protocol (OSC), an {{STX}} protocol, or as ASCII (American Standard Code for Information Interchange) or UNICODE strings.
|-
|-
|[[Programmer_Guide/Shell_Items/SPU|SPU]]
|[[Programmer_Guide/Shell_Items/SPU|<code>SPU</code>]]
|A shell item for controlling Signal Processing Units (SPUs). An SPU is a circuit connecting one or more Signal Processing Atom (see the [[Programmer_Guide/SPU_Reference|SPU Reference]] for details) together.
| A shell item for controlling Signal Processing Units (SPUs). An SPU is a circuit connecting one or more Signal Processing Atoms (see the [[Programmer_Guide/SPU_Reference|SPU Reference]] for details).
|-
|-
|[[Programmer_Guide/Shell_Items/Table|TABLE]]  
|[[Programmer_Guide/Shell_Items/Table|<code>TABLE</code>]]  
|A shell item for storing data in columns and rows with sorting and find functions. The table items can be used to implement simple database functions and for numerical operations.
| A shell item for storing data in columns and rows and for indexed access. There are a lot of methods providing e.g. sorting and searching. The table items can be used to implement simple database functions and for numerical operations.
|-
|-
|[[Programmer_Guide/Shell_Items/Value|VALUE]]  
|[[Programmer_Guide/Shell_Items/Value|<code>VALUE</code>]]  
|A shell item for exchanging data between SPU and graph items and macros. They can also be used as timers and for numerical operations.
| A shell item for exchanging data between SPU and graph items and macros. They can also be used as timers and for numerical operations.
|-
|-
|[[Programmer_Guide/Shell_Items/Wave|WAVE]]  
|[[Programmer_Guide/Shell_Items/Wave|<code>WAVE</code>]]  
|A shell item to access stored signal, playback and record wave soundfiles as well as create and manipulate sound sequences. It is also possible to use wave items in numerical operations (e.g. to read source signals are write output signals of a dsp algorithm).
| A shell item for handling wave soundfiles, allowing playback and recording wave soundfiles as well as creating and manipulating sound sequencess. Wave items may also be used in numerical operations (e.g. to apply a DSP algorithm on a signal).
|-
|-
|[[#References to shell items|Reference]]
|[[#References to shell items|Shell Item Reference]]
|A shell item reference is not an item in itself, but rather a reference to an existing shell item. It is mainly used to share shell items between shells (for data exchange reasons). E.g. the dataset file item and the config file item are file items which are created by the master-shell of {{STX}} but shared between all application shells.
| A shell item reference is not an item in itself, but rather a reference to an existing shell item. It is mainly used to share shell items between shells (for data exchange reasons). For example, the dataset file item and the config file item are file items which are created by the master-shell of {{STX}} but shared between all application shells.
|}
|}


'''Note:''' Shell items of types TABLE, VALUE, FILE, and WAVE also may be directly used in numerical expressions (see the [[Programmer_Guide/Command_Reference/EVAL|EVAL]] command).
'''Note:''' Shell items of types <code>TABLE</code>, <code>VALUE</code>, <code>FILE</code>, and <code>WAVE</code> also may be directly used in numerical expressions (see the [[Programmer_Guide/Command_Reference/EVAL|EVAL]] command).




== Creating and deleting items, executing item functions ==
== Creating and deleting items, executing item functions ==


The commands [[Programmer_Guide/Command_Reference/NEW|NEW]], [[Programmer_Guide/Command_Reference/SET|SET]] and [[Programmer_Guide/Command_Reference/DELETE|DELETE]] are used for dealing with shell items.
The commands <code>[[Programmer_Guide/Command_Reference/NEW|NEW]]</code>, <code>[[Programmer_Guide/Command_Reference/SET|SET]]</code>, and <code>[[Programmer_Guide/Command_Reference/DELETE|DELETE]]</code> are used for dealing with shell items.


;<code>[[Programmer_Guide/Command_Reference/NEW|NEW <var>itemtype itemname &hellip;</var>]]</code>: create and initialize a shell item. On success, the command returns the name of the created shell item (identical to the ''itemname'' argument, if other than '''*'''). If there is an error, the command returns the string '''*'''. If the argument ''itemname'' is set to '''*''', the item will be assigned a unique name (e.g. <var>T#1</var>, <var>T#2</var>, &hellip; for tables).  
[[Programmer_Guide/Command_Reference/NEW|NEW]] <var>itemtype</var> <var>itemname</var> &hellip;
;<code>[[Programmer_Guide/Command_Reference/SET|SET <var>itemname function ...</var>]]</code>: perform an action on a shell item. In most cases you may omit the string <code>SET</code> altogether, meaning that the command <code>SET ''itemname function'' ...</code> is equivalent to <code>''itemname function'' ...</code>.
create and initialize a shell item. On success, the command returns the name of the created shell item (identical to the <var>itemname</var> argument, if other than the asterisk, &quot;<code>*</code>&quot;). If there is an error, the command returns the string &quot;<code>*</code>&quot; (the asterisk). If you supply an asterisk for the <var>itemname</var> argument , the item will be assigned a unique name (e.g. <var>T#1</var>, <var>T#2</var>, &hellip; for tables).  
;<code>[[Programmer_Guide/Command_Reference/DELETE|DELETE <var>itemname ...</var>]]</code>: delete shell item(s).
 
[[Programmer_Guide/Command_Reference/SET|SET]] <var>itemname</var> function &hellip;
perform an action on a shell item. In most cases you may omit the string <code>SET</code> altogether, meaning that the command <code>SET <var>itemname</var> function &hellip;</code> is equivalent to <code><var>itemname</var> function &hellip;</code>.
 
[[Programmer_Guide/Command_Reference/DELETE|DELETE]] <var>itemname<sub>1</sub></var> &hellip;
delete shell item(s) <var>itemname<sub>1</sub></var>, and so on.
 
The type of an item can be retrieved using this syntax: <code>itemname[?]</code>. E.g.:
#table := new table *
if '$#table[?]' == table then
  // the new table command was successful
end


'''Note that:'''
'''Note that:'''
Line 71: Line 102:
   
   
=== NEW ===
=== NEW ===
''see'' [[Programmer_Guide/Command_Reference/NEW|<code>NEW</code> <var>itemtype itemname &hellip;</var>]]
''see'' [[Programmer_Guide/Command_Reference/NEW|<code>NEW</code> <var>itemtype</var> <var>itemname</var> &hellip;]]


  // create a simple table item
  // create a simple table item
Line 85: Line 116:


=== SET ===
=== SET ===
''see'' <code>[[Programmer_Guide/Command_Reference/SET|SET <var>itemname function ...</var>]]</code>
''see'' <code>[[Programmer_Guide/Command_Reference/SET|SET <var>itemname</var> <var>function</var> &hellip;]]</code>


  // append 2 lines to a simple table
  // append 2 lines to a simple table
Line 98: Line 129:


=== DELETE ===
=== DELETE ===
''see'' <code>[[Programmer_Guide/Command_Reference/DELETE|DELETE <var>itemname ...</var>]]</code>
''see'' <code>[[Programmer_Guide/Command_Reference/DELETE|DELETE <var>itemname<sub>1</sub></var> &hellip;]]</code>


  // delete an item whose name is stored in a variable
  // delete an item whose name is stored in a variable
Line 106: Line 137:
  // delete an item whose name is stored in a variable,
  // delete an item whose name is stored in a variable,
  // *and* clear the respective variable
  // *and* clear the respective variable
  // (today, this is the most common use case)
  // (today, this is, or should be:), the most common use case)
  delete /Var #table
  delete /Var #table
   
   
Line 117: Line 148:
All shell items have attributes which may be accessed with the following syntax:
All shell items have attributes which may be accessed with the following syntax:
{|class="keinrahmen"
{|class="keinrahmen"
| valign="top" | <code>''itemName''[!''attributeName'']</code>
| <code><var>itemName</var>[!<var>attributeName</var>]</code>
| Here, the item is referred to by its item name directly. This is, actually, the less common use case - normally, {{STX}} programmers store their item names in an {{STX}} variable.
| Here, the item is referred to by its item name directly. This is, actually, the less common use case - normally, {{STX}} programmers store their item names in an {{STX}} variable.
|-
|-
| valign="top" | <code>$''varname''[!''attributeName'']</code>
| <code>$<var>varname</var>[!<var>attributeName</var>]</code>
| if the item name is stored in a variable, which is the most common use case.
| if the item name is stored in a variable, which is the most common use case.
|}
|}
Line 163: Line 194:


==References to shell items==
==References to shell items==
There are shell item references, i.e. entities that may be used to ''referring to'' to a shell item instance. This works even if the owner of the target item (the item the reference is referring to) is a different shell, making shell item references a convenient way of sharing data between shells (but beware synchronization issues - see below, and see the <code>LOCK</code> and <code>UNLOCK</code> functions). References may refer to [[/Table|table]], [[/File|file]], and [[/Instance|instance]] items.
Shell item references are entities that ''refer to'' to a shell item instance. This works even if the owner of the target item (the item the reference is referring to) is a different shell, making shell item references a convenient way of sharing data between shells (but beware of synchronization issues - see below, and see the <code>LOCK</code> and <code>UNLOCK</code> functions). References may '''only''' refer to '''[[/Table|table]]''', '''[[/File|file]]''', and '''[[/Instance|instance]]''' '''items'''.


  <var>refName</var> := NEW <var>origType</var> * /Z <var>origName</var> [ <var>origShell</var> ]
  <var>refName</var> := NEW <var>origType</var> * /Z <var>origName</var> [ <var>origShell</var> ] [/I]


This command creates the reference <var>refName</var>, which refers to the original item whose type is <var>origType</var> and whose name is <var>origName</var>. If the original item is owned by another shell, its shell ID <var>origShell</var> must be specified, too. It is the option letter '''/Z''' that causes the [[Programmer_Guide/Command_Reference/NEW|NEW]] command to create a reference instead of a new item.
This command creates the reference <var>refName</var>, which refers to the original item whose type is <var>origType</var> and whose name is <var>origName</var>. If the original item is owned by another shell, its shell ID <var>origShell</var> must be specified, too. It is the option letter '''/Z''' that causes the [[Programmer_Guide/Command_Reference/NEW|NEW]] command to create a reference instead of a new item.
Line 173: Line 204:
* The workspace object [[../Macro_Library/BSTXIni|BSTXIni]] and the project object [[../Macro_Library/BDataSet|BDataSet]] use references in order to share the XML workspace file and the XML project file.
* The workspace object [[../Macro_Library/BSTXIni|BSTXIni]] and the project object [[../Macro_Library/BDataSet|BDataSet]] use references in order to share the XML workspace file and the XML project file.
* Deletion of the target item (i.e., the item a reference is referring to) is deferred until the last reference to the respective item gets deleted.
* Deletion of the target item (i.e., the item a reference is referring to) is deferred until the last reference to the respective item gets deleted.
If the option '''/I''' is specified, errors will generate warning messages rather than error messages. See the [[Programmer_Guide/Command_Reference_Options/Silent_Flag|Silent Flag]] page for details.


==Protected shell items==
==Protected shell items==
In some situations it may be useful to protect shell items from (accidental) deletion. Our first user of this feature is the[[Programmer_Guide/BScript|script console]] which protects all its vital objects.
In some situations it may be useful to protect shell items from (accidental) deletion. Our first user of this feature is the [[Programmer_Guide/BScript|script console]] which protects all its vital objects.


{{STX}} implements two kinds of item protection:
{{STX}} implements two kinds of item protection:
Line 183: Line 216:
As the name implies, this protects a single item.
As the name implies, this protects a single item.


;<code><var>protecedItem</var> := [[Programmer_Guide/Command_Reference/NEW|NEW]] <var>itemtype itemname&hellip;</var> /u</code>: creates a protected item. Note that, unlike other {{STX}} commands, the option letter for single item protection ''must'' be the lower-case letter &quot;u&quot;.
;<code><var>protecedItem</var> := [[Programmer_Guide/Command_Reference/NEW|NEW]] <var>itemtype itemname&hellip;</var> /u</code>: creates a protected item. Note that, unlike with {{STX}} commands, the option letter for single item protection is ''case-sensitive''. It ''must'' be the ''lower-case'' letter &quot;u&quot;.
;<code>[[Programmer_Guide/Command_Reference/DELETE|DELETE]] <var>protectedItem</var> /u</code>: deletes a protected item. Here, too, the option letter must be lower case.
;<code>[[Programmer_Guide/Command_Reference/DELETE|DELETE]] <var>protectedItem</var> /u</code>: deletes a protected item. Here, too, the option letter must be lower case.


Line 195: Line 228:
* Global protection is disabled when the master item is deleted
* Global protection is disabled when the master item is deleted


;<code><var>masterItem</var> := [[Programmer_Guide/Command_Reference/NEW|NEW]] <var>itemtype itemname&hellip;</var> /U</code>:create the master-item and enable global protection
==== Enabling Global Protection ====
;<code>[[Programmer_Guide/Command_Reference/DELETE|DELETE]] <var>masterItem</var> /u</code>:delete the master-item and disable global protection
 
The following command will create the master-item and enable global protection:
 
<var>masterItem</var> := [[Programmer_Guide/Command_Reference/NEW|NEW]] <var>itemtype itemname&hellip;</var> /U
 
Note that, unlike with other {{STX}} commands, the option letter for global item protection is case-sensitive. It ''must'' be the ''upper-case'' letter &quot;U&quot;.
 
==== Disabling Global Protection ====
 
The following command deletes the master item and disables global protection.
 
[[Programmer_Guide/Command_Reference/DELETE|DELETE]] <var>masterItem</var> /u
 
Here the option letter is case-sensitive, too.
 
== Temporary shell items ==
A ''temporary shell item'', also called ''local shell item'', is a shell item that is deleted automatically as soon as control-flow leaves the context where the item has been created.
 
There are two ways to (intentionally, or unintentionally) create a temporary shell item:
* supplying the option <code>/Garbage</code> to the <code>[[Programmer_Guide/Command_Reference/NEW|NEW]]</code> command;
* using an expression returning a vector or a matrix, and ''not'' assigning the resulting entity to an existing shell item of the appropriate type. Such expressions are:
*# certain <code>[[Programmer_Guide/Command_Reference/EVAL|EVAL]]</code> functions;
*# expressions extracting a row or a column from a [[/Value|value item]], or from a [[/Table|table item]]; and
* calling a user-defined macro function returning a temporary shell item as its sole result, and ''not'' assigning its result to an existing shell item of the appropriate type.
 
=== The <code>NEW /Garbage</code> command ===
 
The most straightforward way to create a temporary shell item is to explicitly supply the '''<code>/Garbage</code>''' option when creating an item with the [[Programmer_Guide/Command_Reference/NEW|NEW]] command:
 
<var>#table</var> := new table * /garbage
 
=== Expressions returning a vector or a matrix ===
 
Firstly, using an [[Programmer_Guide/Command_Reference/EVAL|EVAL]] expression returning a matrix or a vector will always create a temporary parameter table item, ''unless'' you are assigning the respective entity to an existing shell item of the appropriate type (in which case the matrix or the vector will directly be stored in the target item). For example, provided that <var>#matrix</var> does ''not'' contain the name of an existing shell item, the command&hellip;


'''N.B.:''' The options used for item protection control ('''/U''' and '''/u''') are case-sensitive.
#matrix := eval init(100,100,0)


==Temporary shell items==
&hellip;will create a temporary parameter table, and will assign its name (e.g. <var>T#9A</var>) to the variable <var>#matrix</var>.
A ''temporary shell item'' (also called ''local shell item'') is a shell item, which is automatically deleted, when the macro which creates the shell item is leaved.  


Secondly, any expression that extracts a row or a column from a [[/Value|value item]] or a [[/Table|table item]] will normally create a temporary parameter table - ''unless'', again, you are assigning the expression to an existing shell item of the appropriate type, in which case the extracted row or column will directly be stored in the existing target item.


A temporary shell item is created ...
#rowVector := $#table[10,*]
*by the command [[Programmer_Guide/Command_Reference/NEW|NEW]], if the option '''/Garbage''' is specified
::<code>#table := new table * /g</code>
*by the [[Programmer_Guide/Command_Reference/EVAL|EVAL]] command, if the return value is a vector or a matrix and the result is not assigned to an item. The returned data are stored in a automatically created temporary parameter table.
::<code>#matrix := eval init(100,100,0)</code>
*if a row or column of a [[/Value|value item]] or [[/Table|table item]] is extracted and not assigned to an item. The extracted data are stored in a automatically created temporary parameter table.
::<code>#rowVector := $#table[10,*]


Here, again, <var>#rowVector</var> will be assigned a temporary vector, provided that <var>#rowVector</var> does not already contain the name of an appropriate shell item the vector may directly be assigned to.


It is possible to return temporary shell items from a macro. In this case the name of the temporary shell item must be the only return value of the macro and the return value must be assigned directly to a variable of the caller.
=== Returning temporary items from macro functions ===


<pre>
It is also possible for a macro function to return a temporary shell item. For this to happen, the name of the temporary shell item must be the only return value of the macro, and the return value must be assigned directly to a variable of the caller.
[macro testTempItem]
// create vector #1; the temporary vector returned by makeZeroVector is
// converted (during the assignment) to a temporary vector of testTempItem
#vector1 := makeZeroVector 20       
showitem $#vector1      // display the content of table $#vector1
// create vector #2; the temporary vector returned by makeZeroVector is not
// assigned and therefore deleted; the name of the (now invalid) item is
// stored in the variable RESULT
makeZeroVector 10                   
readvar result #vector2 // copy the returned item name to a local variable
showitem $#vector2      // display content of table $#vector2 failes,
                        // because the string stored in #vector2 is not the name of an item
// exit (and delete temporary #vector1)
exit                               


[macro makeZeroVector #size=100]
[macro testTempItem]
// create a vector with #size zeros; the result of the eval command is a  
// temporary numerical table item with 1 column and $#size rows
// create vector #1; the temporary vector returned by makeZeroVector is
#vector := eval fill($#size, 0, 0)   
// converted (during the assignment) to a temporary vector of testTempItem
// return the vector (temporary table item) to the caller
#vector1 := makeZeroVector 20       
exit 1 set $#vector                
showitem $#vector1      // display the content of table $#vector1
</pre>
// create vector #2; the temporary vector returned by makeZeroVector is not
// assigned and therefore deleted; the name of the (now invalid) item is
// stored in the variable RESULT
makeZeroVector 10                   
readvar result #vector2 // copy the returned item name to a local variable
showitem $#vector2      // display content of table $#vector2 failes, because
                        // because the string stored in #vector2 is not the
                        // name of an item anymore
// exit (and delete temporary #vector1)
exit                               
[macro makeZeroVector #size=100]
// create a vector with #size zeros; the result of the eval command is a  
// temporary numerical table item with 1 column and $#size rows
#vector := eval fill($#size, 0, 0)   
// return the vector (temporary table item) to the caller
exit 1 set $#vector

Latest revision as of 09:44, 15 March 2018

Shell Items
DCOM DDECONV DIALOG|MENU DISPLAY FILE GRAPH INSTANCE IP SPU TABLE VALUE WAVE Shell Item Reference

STx implements a number of different objects which can be used to manipulate files, graphics, dialogs, etc. These objects are called shell items.

A shell item is an object designed to be good at a specific range of tasks. There is, for example, a file item which is really good in reading, writing, copying, renaming, and listing files; and there is a dialog item, allowing to design, and display dialog boxes, and to react to user input.

Shell items are implemented in C++, making them very performant. The STx programmer may interact with shell items

  • by executing commands they provide;
  • by reading, or writing, their attributes; and
  • by receiving their messages

The commands, attributes, and messages each kind of shell item provides are documented in the chapter on the respective shell item (see the list below).

Every instance of a shell item has a unique name, either chosen by the STx programmer, if he and/or she so wishes, or automatically assigned by STx itself. This item name is used as a reference (a kind of pointer) to the item.

Currently STx supports the following shell items (in fairly alphabetic order):

DCOM A shell item for working with Distributed Component Object Model (DCOM) interfaces (e.g. with the DCOM interface for the statistics package R).
DDECONV A shell item for initiating a Dynamic Data Exchange (DDE) conversation with a DDE server and exchanging data between the server and the item (e.g. to exchange data with Microsoft Excel, a spreadsheet application popular among Windows users, or Word, a kind of text editor).
DIALOG|MENU A shell item for designing and displaying dialog boxes and processing user input. A dialog is always a part of a display item.
Note: It is a bit misleading that the dialog item may also be called a MENU item. This has historical reasons, and is retained for backward compatibility (as of STx 4.3.
DISPLAY A shell item for displaying one or more graph items and optionally a dialog. Each window displayed by STx is a display item.
FILE A shell item for accessing files on disk and manipulating files in memory. It can be used to list files, to apply system commands (like copy, rename, move, …) to files or to access data of different file formats (plane text, plain text, section files, XML, binary).
GRAPH A shell item for displaying graphical representations of data, e.g. spectrograms. A graph is always a part of a display item.
INSTANCE A shell item instance of an STx class. The instance items are used to implemented object oriented script programming.
IP A shell item for sending and receiving data via the TCP/IP protocol. The IP item supports both the Transmission Control Protocol (TCP) and the User Datagram Protocol (UDP). It can act as server or client. The IP item can transfer data using the Open Sound Control protocol (OSC), an STx protocol, or as ASCII (American Standard Code for Information Interchange) or UNICODE strings.
SPU A shell item for controlling Signal Processing Units (SPUs). An SPU is a circuit connecting one or more Signal Processing Atoms (see the SPU Reference for details).
TABLE A shell item for storing data in columns and rows and for indexed access. There are a lot of methods providing e.g. sorting and searching. The table items can be used to implement simple database functions and for numerical operations.
VALUE A shell item for exchanging data between SPU and graph items and macros. They can also be used as timers and for numerical operations.
WAVE A shell item for handling wave soundfiles, allowing playback and recording wave soundfiles as well as creating and manipulating sound sequencess. Wave items may also be used in numerical operations (e.g. to apply a DSP algorithm on a signal).
Shell Item Reference A shell item reference is not an item in itself, but rather a reference to an existing shell item. It is mainly used to share shell items between shells (for data exchange reasons). For example, the dataset file item and the config file item are file items which are created by the master-shell of STx but shared between all application shells.

Note: Shell items of types TABLE, VALUE, FILE, and WAVE also may be directly used in numerical expressions (see the EVAL command).


Creating and deleting items, executing item functions

The commands NEW, SET, and DELETE are used for dealing with shell items.

NEW itemtype itemname

create and initialize a shell item. On success, the command returns the name of the created shell item (identical to the itemname argument, if other than the asterisk, "*"). If there is an error, the command returns the string "*" (the asterisk). If you supply an asterisk for the itemname argument , the item will be assigned a unique name (e.g. T#1, T#2, … for tables).

SET itemname function …

perform an action on a shell item. In most cases you may omit the string SET altogether, meaning that the command SET itemname function … is equivalent to itemname function ….

DELETE itemname1

delete shell item(s) itemname1, and so on.

The type of an item can be retrieved using this syntax: itemname[?]. E.g.:

#table := new table *
if '$#table[?]' == table then
  // the new table command was successful
end

Note that:

  • Certain kinds of items may not be deleted at will. For example, an SPU must not be deleted before it has reached the EXIT state.
  • The deletion of an item owned by another item is deferred until the owner itself has been deleted. For example, graphs are deleted when the owning display is deleted.

NEW

see NEW itemtype itemname

// create a simple table item
// simple tables can be used to store strings (e.g. filenames)

#table := new table *

// create a parameter table item with 20 numerical fields
#data := new table * * num:x:20

// open a textfile for reading; the variable #path contains the path of the file
#textfile := new file * '$#path' /read /text

SET

see SET itemname function

// append 2 lines to a simple table
set $#table * 'first entry'  // explicit SET command
$#table * 'second entry'     // implicit SET command

// copy the content of a table to the clipboard
$#table clipboard

// load a whole file into a table
$#textfile load $#table

DELETE

see DELETE itemname1

// delete an item whose name is stored in a variable
// (this is a common use case)
delete $#table

// delete an item whose name is stored in a variable,
// *and* clear the respective variable
// (today, this is, or should be:), the most common use case)
delete /Var #table

// delete an item by its name
// (this is a slightly unusual use case)
delete T#8

Item Attributes

All shell items have attributes which may be accessed with the following syntax:

itemName[!attributeName] Here, the item is referred to by its item name directly. This is, actually, the less common use case - normally, STx programmers store their item names in an STx variable.
$varname[!attributeName] if the item name is stored in a variable, which is the most common use case.

For example, you may retrieve the sampling rate of a wave item as follows:

#srate := $#wave[!srate]

If the attribute being requested does not exist, then an empty string is returned. Please see the documentation of each shell item type for a list of the supported attributes.

Some items have attributes with more than one value. Such attribute values are addressed by comma separated IDs.

// get item name, row and column of all graphs of a display
for #i := 0 to $#i < $#display[!graphs] step #i := int $#i+1
    readstr '$#display[!graph,$#i]' #gname #grow #gcol
    conlog 'graph $#gname is displayed in column $#gcol of row $#grow'
end

In some cases it may be necessary to use an item attribute in a string. To make sure that the item name is correctly terminated, the character ~ (tilde) should be used:

#table := new table MyTable
MyTable * 'just testing'

// The following statement will NOT work, actually trying to
// access the non-existent table textMyTable
writelog 'textMyTable[0]'  // → will not work

// The following statement will work, printing the string
// "testjust testing"  (no intervening blank!)
writelog 'text~MyTable[0]' // → okay

// The following statement will work, too, but there will
// be a blank between "test" and "just": "test just testing"
writelog 'text MyTable[0]' // → okay

Item Messages

Some items uses messages to send informations to the shell. These messages may be intercepted by the user program by the aid of the command MSG, or by the message handling system implemented in the library macros SETMSGHANDLER (install/remove message handler for an item), and GETMESSAGE (message loop, get and process messages).

The message sent to the shell contains information about the sending item and the message data in the following format:

itemtype itemname msgid msgpar

Here, itemtype and itemname are the type and the name of the sending item, whereas msgid and msgpar are the message ID and the optional message data.

For a full documentation of the messages sent by each kind of shell item, see the documentation of the respective item.

References to shell items

Shell item references are entities that refer to to a shell item instance. This works even if the owner of the target item (the item the reference is referring to) is a different shell, making shell item references a convenient way of sharing data between shells (but beware of synchronization issues - see below, and see the LOCK and UNLOCK functions). References may only refer to table, file, and instance items.

refName := NEW origType * /Z origName [ origShell ] [/I]

This command creates the reference refName, which refers to the original item whose type is origType and whose name is origName. If the original item is owned by another shell, its shell ID origShell must be specified, too. It is the option letter /Z that causes the NEW command to create a reference instead of a new item.

  • A reference item has, obviously, exactly the same properties (type, attributes, data content,…) as the item it is referring to, meaning that it may be used just like the original.
  • If the reference and the original item are owned by different shells, the access to the items must be synchronized. For this purpose there are the functions LOCK and UNLOCK.
  • The workspace object BSTXIni and the project object BDataSet use references in order to share the XML workspace file and the XML project file.
  • Deletion of the target item (i.e., the item a reference is referring to) is deferred until the last reference to the respective item gets deleted.

If the option /I is specified, errors will generate warning messages rather than error messages. See the Silent Flag page for details.

Protected shell items

In some situations it may be useful to protect shell items from (accidental) deletion. Our first user of this feature is the script console which protects all its vital objects.

STx implements two kinds of item protection:

Single Item Protection

As the name implies, this protects a single item.

protecedItem := NEW itemtype itemname… /u
creates a protected item. Note that, unlike with STx commands, the option letter for single item protection is case-sensitive. It must be the lower-case letter "u".
DELETE protectedItem /u
deletes a protected item. Here, too, the option letter must be lower case.

Global Item Protection

Global item protection uses a master item to control (i.e., enable/disable) global protection.

  • Only those items created before the master item are protected.
  • Items created after the master item will not be protected.
  • There must be no more than one master item at any time.
  • Global protection is enabled as soon as the master item is created.
  • Global protection is disabled when the master item is deleted

Enabling Global Protection

The following command will create the master-item and enable global protection:

masterItem := NEW itemtype itemname… /U

Note that, unlike with other STx commands, the option letter for global item protection is case-sensitive. It must be the upper-case letter "U".

Disabling Global Protection

The following command deletes the master item and disables global protection.

DELETE masterItem /u

Here the option letter is case-sensitive, too.

Temporary shell items

A temporary shell item, also called local shell item, is a shell item that is deleted automatically as soon as control-flow leaves the context where the item has been created.

There are two ways to (intentionally, or unintentionally) create a temporary shell item:

  • supplying the option /Garbage to the NEW command;
  • using an expression returning a vector or a matrix, and not assigning the resulting entity to an existing shell item of the appropriate type. Such expressions are:
    1. certain EVAL functions;
    2. expressions extracting a row or a column from a value item, or from a table item; and
  • calling a user-defined macro function returning a temporary shell item as its sole result, and not assigning its result to an existing shell item of the appropriate type.

The NEW /Garbage command

The most straightforward way to create a temporary shell item is to explicitly supply the /Garbage option when creating an item with the NEW command:

#table := new table * /garbage

Expressions returning a vector or a matrix

Firstly, using an EVAL expression returning a matrix or a vector will always create a temporary parameter table item, unless you are assigning the respective entity to an existing shell item of the appropriate type (in which case the matrix or the vector will directly be stored in the target item). For example, provided that #matrix does not contain the name of an existing shell item, the command…

#matrix := eval init(100,100,0)

…will create a temporary parameter table, and will assign its name (e.g. T#9A) to the variable #matrix.

Secondly, any expression that extracts a row or a column from a value item or a table item will normally create a temporary parameter table - unless, again, you are assigning the expression to an existing shell item of the appropriate type, in which case the extracted row or column will directly be stored in the existing target item.

#rowVector := $#table[10,*]

Here, again, #rowVector will be assigned a temporary vector, provided that #rowVector does not already contain the name of an appropriate shell item the vector may directly be assigned to.

Returning temporary items from macro functions

It is also possible for a macro function to return a temporary shell item. For this to happen, the name of the temporary shell item must be the only return value of the macro, and the return value must be assigned directly to a variable of the caller.

[macro testTempItem]

// create vector #1; the temporary vector returned by makeZeroVector is 
// converted (during the assignment) to a temporary vector of testTempItem
#vector1 := makeZeroVector 20        
showitem $#vector1      // display the content of table $#vector1

// create vector #2; the temporary vector returned by makeZeroVector is not 
// assigned and therefore deleted; the name of the (now invalid) item is 
// stored in the variable RESULT 
makeZeroVector 10                    
readvar result #vector2 // copy the returned item name to a local variable
showitem $#vector2      // display content of table $#vector2 failes, because
                        // because the string stored in #vector2 is not the
                        // name of an item anymore
// exit (and delete temporary #vector1)
exit                                 

[macro makeZeroVector #size=100]

// create a vector with #size zeros; the result of the eval command is a 
// temporary numerical table item with 1 column and $#size rows
#vector := eval fill($#size, 0, 0)   

// return the vector (temporary table item) to the caller
exit 1 set $#vector

Navigation menu

Personal tools