added sysprog entities
This commit is contained in:
79
SYSPROG/STPROC/PROMOTED_READ_RECORD_ACTION.txt
Normal file
79
SYSPROG/STPROC/PROMOTED_READ_RECORD_ACTION.txt
Normal file
@ -0,0 +1,79 @@
|
||||
Function Promoted_Read_Record_Action(Action, Reserved1, FSList, Handle, Name, FMC, Record, Status, OrigRecord, Param1, Param2, Param3, Param4, Param5, Param6, Param7, Param8, Param9, Param10)
|
||||
/***********************************************************************************************************************
|
||||
|
||||
This program is proprietary and is not to be used by or disclosed to others, nor is it to be copied without written
|
||||
permission from SRP Computer Solutions, Inc.
|
||||
|
||||
Name : Promoted_Read_Record_Action
|
||||
|
||||
Description : Promoted (e.g. generic) handler for READ_RECORD action.
|
||||
|
||||
Notes : Typically called by BASE_MFS
|
||||
|
||||
Parameters :
|
||||
Action [in] -- Name of the action to be taken
|
||||
Reserved1 [in] -- Currently being reserved.
|
||||
FSList [in] -- The list of MFSs and the BFS name for the current file or volume. This is an @SVM
|
||||
delimited array, with the current MFS name as the first value in the array, and the BFS
|
||||
name as the last value. Normally set by a calling MFS.
|
||||
Handle [in] -- The file handle of the file or media map being accessed. Note, this does contain the
|
||||
entire handle structure that the Basic+ Open statement would provide. Normally set by a
|
||||
calling MFS.
|
||||
Name [in] -- The name (key) of the record or file being accessed. Normally set by a calling MFS.
|
||||
FMC [in] -- Various functions. Normally set by a calling MFS.
|
||||
Record [in] -- The entire record (for record-oriented functions) or a newly-created handle (for
|
||||
"get handle" functions). Normally set by a calling MFS.
|
||||
Status [in/out] -- Indicator of the success or failure of an action. Normally set by the calling MFS but
|
||||
for some actions can be set by the action handler to indicate failure.
|
||||
Param1-10 [in/out] -- Additional request parameter holders
|
||||
ActionFlow [out] -- Used to control the action chain (see the ACTION_SETUP insert for more information.)
|
||||
Can also be used to return a special value, such as the results of the CalcField
|
||||
method.
|
||||
|
||||
History : (Date, Initials, Notes)
|
||||
03/07/20 dmb Original programmer.
|
||||
|
||||
***********************************************************************************************************************/
|
||||
|
||||
#pragma precomp SRP_PreCompiler
|
||||
|
||||
$insert LOGICAL
|
||||
$insert FILE.SYSTEM.EQUATES
|
||||
$insert ACTION_SETUP
|
||||
|
||||
If Action[-3, 3] EQ "PRE" then
|
||||
// This is a pre-BFS handler promoted action.
|
||||
GoSub Pre
|
||||
end else
|
||||
// This is a post-BFS handler promoted action.
|
||||
GoSub Post
|
||||
end
|
||||
|
||||
// If ActionFlow hasn't already been assigned then assume it should continue
|
||||
If Assigned(ActionFlow) else ActionFlow = ACTION_CONTINUE$
|
||||
|
||||
Return ActionFlow
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Actions
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
//----------------------------------------------------------------------------------------------------------------------
|
||||
// Pre
|
||||
//
|
||||
// All pre-BFS action handler logic.
|
||||
//----------------------------------------------------------------------------------------------------------------------
|
||||
Pre:
|
||||
|
||||
return
|
||||
|
||||
|
||||
//----------------------------------------------------------------------------------------------------------------------
|
||||
// Post
|
||||
//
|
||||
// All post-BFS action handler logic.
|
||||
//----------------------------------------------------------------------------------------------------------------------
|
||||
Post:
|
||||
|
||||
return
|
Reference in New Issue
Block a user