SUBROUTINE BDI2_SCMAP( NARG, ARGS, OARG, STATUS )
*+
* Name:
* BDI2_SCMAP
* Purpose:
* Service FileItemMap(Scalar,FITSfile,item,type,mode) requests
* Language:
* Starlink Fortran
* Invocation:
* CALL BDI2_SCMAP( NARG, ARGS, OARG, STATUS )
* Description:
* Service FileItemGet(Scalar,FITSfile,item) requests from the BDI system
* Arguments:
* NARG = INTEGER (given)
* Number of method arguments
* ARGS(*) = INTEGER (given)
* ADI identifier of method arguments
* OARG = INTEGER (returned)
* Output data
* STATUS = INTEGER (given and returned)
* The global status.
* Examples:
* {routine_example_text}
* {routine_example_description}
* Pitfalls:
* {pitfall_description}...
* Notes:
* {routine_notes}...
* Prior Requirements:
* {routine_prior_requirements}...
* Side Effects:
* {routine_side_effects}...
* Algorithm:
* {algorithm_description}...
* Accuracy:
* {routine_accuracy}
* Timing:
* {routine_timing}
* External Routines Used:
* {name_of_facility_or_package}:
* {routine_used}...
* Implementation Deficiencies:
* {routine_deficiencies}...
* References:
* BDI Subroutine Guide : http://www.sr.bham.ac.uk/asterix-docs/Programmer/Guides/bdi.html
* Keywords:
* package:bdi, usage:private
* Copyright:
* Copyright (C) University of Birmingham, 1995
* Authors:
* DJA: David J. Allan (Jet-X, University of Birmingham)
* {enter_new_authors_here}
* History:
* 9 Aug 1995 (DJA):
* Original version.
* {enter_changes_here}
* Bugs:
* {note_any_bugs_here}
*-
* Type Definitions:
IMPLICIT NONE ! No implicit typing
* Global Constants:
INCLUDE 'SAE_PAR' ! Standard SAE constants
INCLUDE 'ADI_PAR'
* Arguments Given:
INTEGER NARG, ARGS(*)
* Arguments Returned:
INTEGER OARG
* Status:
INTEGER STATUS ! Global status
* Local Variables:
CHARACTER*20 ITEM
CHARACTER*8 KEYWRD ! Keyword name
CHARACTER*6 MODE ! Mapping mode
CHARACTER*8 TYPE ! Mapping type
INTEGER KID ! Keyword identifier
INTEGER PTR ! Mapped data
INTEGER PSID ! Private storage
INTEGER PHDU ! Primary hdu id
LOGICAL ISCOM ! Comment mapped?
*.
* Check inherited global status.
IF ( STATUS .NE. SAI__OK ) RETURN
* Extract the arguments
CALL ADI_GET0C( ARGS(3), ITEM, STATUS )
CALL ADI_GET0C( ARGS(4), TYPE, STATUS )
CALL ADI_GET0C( ARGS(5), MODE, STATUS )
* Locate the primary hdu
CALL ADI2_FNDHDU( ARGS(2), ' ', PHDU, STATUS )
* Locate the BDI private storage for the item, creating if required
CALL BDI0_LOCPST( ARGS(1), ITEM, .TRUE., PSID, STATUS )
* Switch on the various items
IF ( ITEM .EQ. 'Data' ) THEN
* Locate the keyword
CALL ADI_CGET0C( ARGS(2), 'SubItem', KEYWRD, STATUS )
ISCOM = ( KEYWRD(1:1) .EQ. '&' )
IF ( ISCOM ) THEN
CALL ADI2_HGKY( PHDU, KEYWRD(2:), KID, STATUS )
ELSE
CALL ADI2_HGKY( PHDU, KEYWRD, KID, STATUS )
END IF
* Map the ADI value of the object
CALL ADI_MAP( KID, TYPE, MODE, PTR, STATUS )
* Mark the keyword as changed if the mode wasn't read
IF ( MODE .NE. 'READ' ) THEN
CALL ADI2_MRKCHG( PHDU, KID, STATUS )
END IF
* Store the mapping details
IF ( ISCOM ) THEN
CALL ADI2_STOMAP( PSID, PHDU, 'KC', PTR, TYPE, MODE, STATUS )
ELSE
CALL ADI2_STOMAP( PSID, PHDU, 'K', PTR, TYPE, MODE, STATUS )
END IF
* Store the keyword that is mapped
CALL ADI_CPUTREF( PSID, 'Key', KID, STATUS )
* Release the keyword
CALL ADI_ERASE( KID, STATUS )
END IF
* Release storage
CALL ADI_ERASE( PSID, STATUS )
* Release the primary hdu
CALL ADI_ERASE( PHDU, STATUS )
* Store the pointer
CALL ADI_NEWV0I( PTR, OARG, STATUS )
* Report any errors
IF ( STATUS .NE. SAI__OK ) CALL AST_REXIT( 'BDI2_SCMAP', STATUS )
END