Merged PR 31131: Rename PM/PM_SPEC tables
This commit is contained in:
parent
9749af69cf
commit
2ab25e05a3
303
LSL2/STPROC/RECURRING_TASK_SPEC_ACTIONS.txt
Normal file
303
LSL2/STPROC/RECURRING_TASK_SPEC_ACTIONS.txt
Normal file
@ -0,0 +1,303 @@
|
||||
Function RECURRING_TASK_SPEC_Actions(Action, CalcColName, FSList, Handle, Name, FMC, Record, Status, OrigRecord, Param1, Param2, Param3, Param4, Param5, Param6, Param7, Param8, Param9, Param10)
|
||||
#pragma precomp SRP_PreCompiler
|
||||
|
||||
/***********************************************************************************************************************
|
||||
|
||||
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 Infineon.
|
||||
|
||||
Name : RECURRING_TASK_SPEC_Actions
|
||||
|
||||
Description : Handles calculated columns and MFS calls for the current table.
|
||||
|
||||
Notes : This function uses @ID, @RECORD, and @DICT to make sure {ColumnName} references work correctly.
|
||||
If called from outside of a calculated column these will need to be set and restored.
|
||||
|
||||
Parameters :
|
||||
Action [in] -- Name of the action to be taken
|
||||
CalcColName [in] -- Name of the calculated column that needs to be processed. Normally this should only be
|
||||
populated when the CalcField action is being used.
|
||||
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.
|
||||
OrigRecord [in] -- Original content of the record being processed by the current action. This is
|
||||
automatically being assigned by the WRITE_RECORD and DELETE_RECORD actions within
|
||||
BASE_MFS.
|
||||
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)
|
||||
08/25/23 jro Original programmer.
|
||||
|
||||
***********************************************************************************************************************/
|
||||
|
||||
$insert APP_INSERTS
|
||||
$insert FILE.SYSTEM.EQUATES
|
||||
$insert ACTION_SETUP
|
||||
$insert RECURRING_TASK_EQUATES
|
||||
$insert RECURRING_TASK_SPEC_EQUATES
|
||||
$insert RLIST_EQUATES
|
||||
$insert PM_SCHED_EQUATES
|
||||
$insert TOOL_EQUATES
|
||||
|
||||
Equ Comma$ to ','
|
||||
|
||||
Declare function Error_Services, Database_Services, Environment_Services, Obj_RECURRING_TASK_SPEC
|
||||
Declare function SRP_Array, SRP_Datetime
|
||||
Declare subroutine Error_Services, Database_Services, Environment_Services, Logging_Services
|
||||
Declare subroutine RList
|
||||
|
||||
If KeyID then GoSub Initialize_System_Variables
|
||||
|
||||
Begin Case
|
||||
|
||||
Case Action _EQC 'CalculateColumn' ; GoSub CalculateColumn
|
||||
Case Action _EQC 'READ_RECORD_PRE' ; GoSub READ_RECORD_PRE
|
||||
Case Action _EQC 'READ_RECORD' ; GoSub READ_RECORD
|
||||
Case Action _EQC 'READONLY_RECORD_PRE' ; GoSub READONLY_RECORD_PRE
|
||||
Case Action _EQC 'READONLY_RECORD' ; GoSub READONLY_RECORD
|
||||
Case Action _EQC 'WRITE_RECORD_PRE' ; GoSub WRITE_RECORD_PRE
|
||||
Case Action _EQC 'WRITE_RECORD' ; GoSub WRITE_RECORD
|
||||
Case Action _EQC 'DELETE_RECORD_PRE' ; GoSub DELETE_RECORD_PRE
|
||||
Case Action _EQC 'DELETE_RECORD' ; GoSub DELETE_RECORD
|
||||
Case Otherwise$ ; Status = 'Invalid Action'
|
||||
|
||||
End Case
|
||||
|
||||
If KeyID then GoSub Restore_System_Variables
|
||||
|
||||
If Assigned(ActionFlow) else ActionFlow = ACTION_CONTINUE$
|
||||
|
||||
Return ActionFlow
|
||||
|
||||
|
||||
// ----- Calculated Columns --------------------------------------------------------------------------------------------
|
||||
//
|
||||
// The typical structure of a calculated column will look like this:
|
||||
//
|
||||
// Declare function TableName_Actions
|
||||
//
|
||||
// A = {COL1} ; * Reference as many data columns in this way to ensure the dictionary dependency is generated.
|
||||
//
|
||||
// @ANS = TableName_Actions('CalcField', 'CalcColName')
|
||||
//
|
||||
// ---------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
CalculateColumn:
|
||||
|
||||
// Make sure the ActionFlow return variable is cleared in case nothing is calculated.
|
||||
ActionFlow = ''
|
||||
|
||||
Begin Case
|
||||
Case CalcColName EQ 'EARLY_START' ; GoSub EARLY_START
|
||||
Case CalcColName EQ 'LAST_PM_DTM' ; GoSub LAST_PM_DTM
|
||||
Case CalcColName EQ 'LATE_START' ; GoSub LATE_START
|
||||
Case CalcColName EQ 'NEXT_PM_DT' ; GoSub NEXT_PM_DT
|
||||
Case CalcColName EQ 'PM_DTM' ; GoSub PM_DTM
|
||||
Case CalcColName EQ 'PM_STATUS' ; GoSub PM_STATUS
|
||||
Case CalcColName EQ 'SCHED_START' ; GoSub SCHED_START
|
||||
Case CalcColName EQ 'TOOL_CYCLE_CNT' ; GoSub TOOL_CYCLE_CNT
|
||||
Case CalcColName EQ 'TOOL_DESC' ; GoSub TOOL_DESC
|
||||
Case CalcColName EQ 'TOOL_LOCATION' ; GoSub TOOL_LOCATION
|
||||
Case CalcColName EQ 'TOOL_TYPE' ; GoSub TOOL_TYPE
|
||||
|
||||
End Case
|
||||
|
||||
return
|
||||
|
||||
EARLY_START:
|
||||
|
||||
ActionFlow = obj_recurring_task_spec('EarlyStart',@ID:@RM:@RECORD)
|
||||
|
||||
return
|
||||
|
||||
LAST_PM_DTM:
|
||||
|
||||
ActionFlow = obj_recurring_task_spec('LastPMCompDTM',@ID)
|
||||
|
||||
return
|
||||
|
||||
LATE_START:
|
||||
|
||||
ActionFlow = obj_recurring_task_spec('LateStart',@ID:@RM:@RECORD)
|
||||
|
||||
return
|
||||
|
||||
NEXT_PM_DT:
|
||||
|
||||
ActionFlow = ''
|
||||
|
||||
return
|
||||
|
||||
PM_DTM:
|
||||
|
||||
PMKeys = @RECORD<18>
|
||||
Ans = ''
|
||||
pmCnt = COUNT(PMKeys,@VM) + (PMKeys NE '')
|
||||
|
||||
FOR I = 1 TO pmCnt
|
||||
Ans<1,I> = PMKeys<1,I>[-1,'B*']
|
||||
NEXT I
|
||||
|
||||
ActionFlow = Ans
|
||||
|
||||
return
|
||||
|
||||
PM_STATUS:
|
||||
|
||||
PMKeys = @RECORD<18>
|
||||
ActionFlow = XLATE('RECURRING_TASK',PMKeys,'STATUS','X')
|
||||
|
||||
return
|
||||
|
||||
SCHED_START:
|
||||
|
||||
ActionFlow = obj_recurring_task_spec('SchedStart',@ID:@RM:@RECORD)
|
||||
|
||||
return
|
||||
|
||||
TOOL_CYCLE_CNT:
|
||||
|
||||
ToolID = @RECORD<PM_SCHED_TOOL_ID$>
|
||||
ActionFlow = XLATE('TOOL',ToolID,TOOL_CYCLE_CNT$,'X')
|
||||
|
||||
return
|
||||
|
||||
TOOL_DESC:
|
||||
|
||||
ToolID = @RECORD<PM_SCHED_TOOL_ID$>
|
||||
ActionFlow = XLATE('TOOL',ToolID,TOOL_TOOL_DESC$,'X')
|
||||
|
||||
return
|
||||
|
||||
TOOL_LOCATION:
|
||||
|
||||
ToolID = @RECORD<PM_SCHED_TOOL_ID$>
|
||||
ActionFlow = XLATE('TOOL',ToolID,'LOCATION','X')
|
||||
|
||||
return
|
||||
|
||||
TOOL_TYPE:
|
||||
|
||||
ToolID = @RECORD<PM_SCHED_TOOL_ID$>
|
||||
ActionFlow = XLATE('TOOL',ToolID,TOOL_TOOL_TYPE$,'X')
|
||||
|
||||
return
|
||||
|
||||
// ----- MFS calls -----------------------------------------------------------------------------------------------------
|
||||
|
||||
READ_RECORD_PRE:
|
||||
// In order to stop a record from being read in this action these lines of code must be used:
|
||||
//
|
||||
// OrigFileError = 100 : @FM : KeyID
|
||||
// Status = 0
|
||||
// Record = ''
|
||||
// ActionFlow = ACTION_STOP$
|
||||
return
|
||||
|
||||
|
||||
READ_RECORD:
|
||||
// In order to stop a record from being read in this action these lines of code must be used:
|
||||
//
|
||||
// OrigFileError = 100 : @FM : KeyID
|
||||
// Status = 0
|
||||
// Record = ''
|
||||
* LockOwner = Record<WO_MAT_LOCKED_BY$>
|
||||
* If LockOwner EQ '' then Record<WO_MAT_LOCKED_BY$> = @User4
|
||||
* If @User4 EQ 'DANIEL_ST' then
|
||||
* Database_Services('WriteDataRow', 'LOCKS', @Station:'*WO_MAT*':Name, '')
|
||||
* end
|
||||
|
||||
return
|
||||
|
||||
READONLY_RECORD_PRE:
|
||||
// In order to stop a record from being read in this action these lines of code must be used:
|
||||
//
|
||||
// OrigFileError = 100 : @FM : KeyID
|
||||
// Status = 0
|
||||
// Record = ''
|
||||
// ActionFlow = ACTION_STOP$
|
||||
return
|
||||
|
||||
READONLY_RECORD:
|
||||
// In order to stop a record from being read in this action these lines of code must be used:
|
||||
//
|
||||
// OrigFileError = 100 : @FM : KeyID
|
||||
// Status = 0
|
||||
// Record = ''
|
||||
return
|
||||
|
||||
WRITE_RECORD_PRE:
|
||||
|
||||
return
|
||||
|
||||
WRITE_RECORD:
|
||||
|
||||
return
|
||||
|
||||
DELETE_RECORD_PRE:
|
||||
|
||||
return
|
||||
|
||||
DELETE_RECORD:
|
||||
|
||||
return
|
||||
|
||||
// ----- Internal Methods ----------------------------------------------------------------------------------------------
|
||||
|
||||
Initialize_System_Variables:
|
||||
// Save these for restoration later
|
||||
SaveDict = @DICT
|
||||
SaveID = @ID
|
||||
SaveRecord = @RECORD
|
||||
OrigFileError = @FILE.ERROR
|
||||
|
||||
// Now make sure @DICT, ID, and @RECORD are populated
|
||||
CurrentDictName = ''
|
||||
If @DICT then
|
||||
DictHandle = @DICT<1, 2>
|
||||
Locate DictHandle in @TABLES(5) Using @FM Setting fPos then
|
||||
CurrentDictName = Field(@TABLES(0), @FM, fPos, 1)
|
||||
end
|
||||
end
|
||||
|
||||
If CurrentDictName NE DictName then
|
||||
Open DictName to @DICT else Status = 'Unable to initialize @DICT'
|
||||
end
|
||||
|
||||
@ID = KeyID
|
||||
If Record else
|
||||
// Record might not have been passed in. Read the record from the database table just to make sure.
|
||||
@FILE.ERROR = ''
|
||||
Open TableName to hTable then
|
||||
FullFSList = hTable[1, 'F' : @VM]
|
||||
BFS = FullFSList[-1, 'B' : @SVM]
|
||||
LastHandle = hTable[-1, 'B' : \0D\]
|
||||
FileHandle = \0D\ : LastHandle[1, @VM]
|
||||
|
||||
Call @BFS(READO.RECORD, BFS, FileHandle, KeyID, FMC, Record, ReadOStatus)
|
||||
end
|
||||
end
|
||||
@RECORD = Record
|
||||
return
|
||||
|
||||
Restore_System_Variables:
|
||||
Transfer SaveDict to @DICT
|
||||
Transfer SaveID to @ID
|
||||
Transfer SaveRecord to @RECORD
|
||||
@FILE.ERROR = OrigFileError
|
||||
return
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user