$CommBg: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 11: Line 11:
</ul>
</ul>


The <var>$CommBg</var> function accepts five arguments and returns a number indicating the success of the function. It is also [[Calling Sirius Mods $functions|callable]].
The <var>$CommBg</var> function is [[Calling Sirius Mods $functions|callable]].
 
==Syntax==
==Syntax==
<p class="syntax"><section begin="syntax" />%rc = $CommBg(inlist, file, descriptor, outlist, msgctl)
<p class="syntax"><section begin="syntax" />%rc = $CommBg(inlist, [file], [descriptor], [outlist], [msgctl])
<section end="syntax" /></p>
<section end="syntax" /></p>
<p>
</p>
<p class="caption"> %rc is set to 0 or an error code.</p>


<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%rc</th>
<td>A numeric variable that is set to 0 or to a positive [[#Return codes|error code]].</td></tr>
===Syntax terrms===
<tr><th>inlist</th>
<tr><th>inlist</th>
<td>The identifier of a $list that contains the <var class="product">Model 204</var> commands to be executed in the sdaemon. If the request is an "asynchronous" request ('''outlist''' argument missing), the contents of this $list are passed to the sdaemon, and they become no longer available to the invoking program. This is a required argument. After execution of $COMMBG, this list is empty.</td></tr>
<td>The identifier of a $list that contains the <var class="product">Model 204</var> commands to be executed in the sdaemon. If the request is an "asynchronous" request (<var class="term">outlist</var> argument missing), the contents of this $list are passed to the sdaemon, and they become no longer available to the invoking program. This is a required argument. After execution of <var>$CommBg</var>, this list is empty.</td></tr>
 
<tr><th>file</th>
<tr><th>file</th>
<td>A string indicating the name of a file that is to be automatically opened by the sdaemon and made the current file before commands in '''inlist''' are executed. This file is opened with the same access privileges the user currently has for the file. This is an optional parameter.</td></tr>
<td>A string indicating the name of a file that is to be automatically opened by the sdaemon and made the current file before commands in '''inlist''' are executed. This file is opened with the same access privileges the user currently has for the file. This is an optional parameter.</td></tr>
<tr><th>descriptor</th>
<tr><th>descriptor</th>
<td>A string identifying the background task. This information used to be examined via the <var>$BgQuery</var> function which is now obsolete, so this parameter is also obsolete -- and ignored. This is an optional argument.</td></tr>
<td>A string identifying the background task. This information used to be examined via the <var>$BgQuery</var> function which is now obsolete, so this parameter is also obsolete &mdash; and ignored. This is an optional argument.</td></tr>
 
<tr><th>outlist</th>
<tr><th>outlist</th>
<td>The identifier of a $list to receive the printed output from the <var class="product">Model 204</var> commands in the input $list. If this optional argument is present, <var>$CommBg</var> works in "synchronous" mode: it does not return until all the <var class="product">Model 204</var>. commands in the input $list have been executed. If this argument is not present, <var>$CommBg</var> works in "asynchronous" mode: it returns before any of the <var class="product">Model 204</var>. commands in the input $list are executed, and the output lines of the background task are placed on the audit trail as "AD" lines. Under <var class="product">[[Sirius Mods]]</var> Version 6.2 and earlier, the output line width was always set to 255. Under <var class="product">[[Sirius Mods]]</var> Version 6.3 and later, the output line width is set to the minimum LOBUFF value for any sdaemon thread in the Online.</td></tr>
<td>The identifier of a $list to receive the printed output from the <var class="product">Model 204</var> commands in the input $list. If this optional argument is present, <var>$CommBg</var> works in "synchronous" mode: it does not return until all the <var class="product">Model 204</var>. commands in the input $list have been executed. If this argument is not present, <var>$CommBg</var> works in "asynchronous" mode: it returns before any of the <var class="product">Model 204</var> commands in the input $list are executed, and the output lines of the background task are placed on the audit trail as "AD" lines. The output line width is set to the minimum <var>LOBUFF</var> value for any sdaemon thread in the Online.</td></tr>
 
<tr><th>msgctl</th>
<tr><th>msgctl</th>
<td>A number indicating the setting to be used for MSGCTL when running the commands in the sdaemon. This is an optional parameter, and it defaults to the user's current MSGCTL setting.
<td>A number indicating the setting to be used for MSGCTL when running the commands in the sdaemon. This is an optional parameter, and it defaults to the user's current MSGCTL setting.
Line 33: Line 39:
</table>
</table>


===Return codes===
<p class="code">  
<p class="code">  
   0 - Request successfully created
   0 - Request successfully created
Line 45: Line 52:
  40 - Invalid file identifier
  40 - Invalid file identifier
</p>
</p>
<p class="caption">$CommBg return codes
</p>


The following program does a PAI dump of file COMPSON in an sdaemon.
 
<p class="code"> B
==Example==
%LIST = $ListNew
The following program does a PAI dump of file <code>COMPSON</code> in an sdaemon:
%RC = $ListAdd(%LIST, 'USE OUTFILE')
<p class="code">B
%RC = $ListAdd(%LIST, 'B')
%LIST = $ListNew
%RC = $ListAdd(%LIST, 'FOR EACH RECORD')
%RC = $ListAdd(%LIST, 'USE OUTFILE')
%RC = $ListAdd(%LIST, ' PRINT ''*''')
%RC = $ListAdd(%LIST, 'B')
%RC = $ListAdd(%LIST, ' PAI')
%RC = $ListAdd(%LIST, 'FOR EACH RECORD')
%RC = $ListAdd(%LIST, 'END FOR')
%RC = $ListAdd(%LIST, ' PRINT ''*''')
%RC = $ListAdd(%LIST, 'END')
%RC = $ListAdd(%LIST, ' PAI')
%RC = $ListAdd(%LIST, 'END FOR')
%RC = $ListAdd(%LIST, 'END')
   
   
%RC = $CommBg(%LIST, 'COMPSON', 'PAI UNLOAD')
%RC = $CommBg(%LIST, 'COMPSON', 'PAI UNLOAD')
END
END
</p>
</p>


The following program creates a permanent group called SNOPES and then opens that group.
The following program creates a permanent group called <code>SNOPES</code> and then opens that group:
<p class="code"> B
<p class="code">B
%ILIST = $ListNew
%ILIST = $ListNew
%OLIST = $ListNew
%OLIST = $ListNew
%RC = $ListAdd(%ILIST, -
%RC = $ListAdd(%ILIST, -
'CREATE PERM GROUP SNOPES FROM FLEM,IKE')
'CREATE PERM GROUP SNOPES FROM FLEM,IKE')
%RC = $ListAdd(%ILIST, 'PARAMETER PROCFILE=*')
%RC = $ListAdd(%ILIST, 'PARAMETER PROCFILE=*')
%RC = $ListAdd(%ILIST, 'END')
%RC = $ListAdd(%ILIST, 'END')
%RC = $CommBg(%ILIST, , ,%OLIST)
%RC = $CommBg(%ILIST, , ,%OLIST)
OPEN PERM GROUP SNOPES
OPEN PERM GROUP SNOPES
END
END
</p>
</p>
<p class="code">
 


[[Category:$Functions|$CommBg]]
[[Category:$Functions|$CommBg]]

Revision as of 19:10, 29 October 2012

Execute Model 204 commands on sdaemon

Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $CommBg function is Run (Daemon function). The OO APIs emphasize the use of the Daemon methods; users are strongly urged to use the new Daemon API instead of the old $functions.

This function allows one or more Model 204 commands to be executed on an sdaemon. It has two basic modes of operation:

  • "asynchronous" mode is used when the output from the Model 204 commands are not to be returned into a $list. This is indicated by the absence of the fourth parameter (the output $list identifier). When a request is initiated in "asynchronous" mode, $CommBg returns immediately, before the commands in the input $list are executed.
  • "synchronous" mode is used when the output from the Model 204 commands are to be returned into a $list. When a request is initiated in "synchronous" mode, $CommBg does not return until all commands in the input $list have been executed.

The $CommBg function is callable.

Syntax

<section begin="syntax" />%rc = $CommBg(inlist, [file], [descriptor], [outlist], [msgctl]) <section end="syntax" />

Syntax terrms

%rc A numeric variable that is set to 0 or to a positive error code.
inlist The identifier of a $list that contains the Model 204 commands to be executed in the sdaemon. If the request is an "asynchronous" request (outlist argument missing), the contents of this $list are passed to the sdaemon, and they become no longer available to the invoking program. This is a required argument. After execution of $CommBg, this list is empty.
file A string indicating the name of a file that is to be automatically opened by the sdaemon and made the current file before commands in inlist are executed. This file is opened with the same access privileges the user currently has for the file. This is an optional parameter.
descriptor A string identifying the background task. This information used to be examined via the $BgQuery function which is now obsolete, so this parameter is also obsolete — and ignored. This is an optional argument.
outlist The identifier of a $list to receive the printed output from the Model 204 commands in the input $list. If this optional argument is present, $CommBg works in "synchronous" mode: it does not return until all the Model 204. commands in the input $list have been executed. If this argument is not present, $CommBg works in "asynchronous" mode: it returns before any of the Model 204 commands in the input $list are executed, and the output lines of the background task are placed on the audit trail as "AD" lines. The output line width is set to the minimum LOBUFF value for any sdaemon thread in the Online.
msgctl A number indicating the setting to be used for MSGCTL when running the commands in the sdaemon. This is an optional parameter, and it defaults to the user's current MSGCTL setting.

Return codes

0 - Request successfully created 4 - Counting errors in sdaemon (synchronous only) 6 - Invalid $list identifier 7 - Input $list is empty 8 - sdaemon was restarted (synchronous only) 12 - Insufficient input for sdaemon (synchronous only) 16 - No sdaemons are running 20 - Out of storage 24 - Output $list or CCATEMP full (synchronous only) 40 - Invalid file identifier


Example

The following program does a PAI dump of file COMPSON in an sdaemon:

B %LIST = $ListNew %RC = $ListAdd(%LIST, 'USE OUTFILE') %RC = $ListAdd(%LIST, 'B') %RC = $ListAdd(%LIST, 'FOR EACH RECORD') %RC = $ListAdd(%LIST, ' PRINT *') %RC = $ListAdd(%LIST, ' PAI') %RC = $ListAdd(%LIST, 'END FOR') %RC = $ListAdd(%LIST, 'END') %RC = $CommBg(%LIST, 'COMPSON', 'PAI UNLOAD') END

The following program creates a permanent group called SNOPES and then opens that group:

B %ILIST = $ListNew %OLIST = $ListNew %RC = $ListAdd(%ILIST, - 'CREATE PERM GROUP SNOPES FROM FLEM,IKE') %RC = $ListAdd(%ILIST, 'PARAMETER PROCFILE=*') %RC = $ListAdd(%ILIST, 'END') %RC = $CommBg(%ILIST, , ,%OLIST) OPEN PERM GROUP SNOPES END