Package gov.nasa.pds.tools.util
Class LabelUtil
java.lang.Object
gov.nasa.pds.tools.util.LabelUtil
Class that keep track of different Information Model (IM) versions found when parsing labels and
report a WARNING if multiple versions of the Information Model (IM) are found.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetIdentifiersCommon(DOMSource source, URL context, String[] tagsList, String searchPathName) Common function to retrieve values either from logical_identifier or lid_reference/lidvid_reference tags.static StringgetIMVersion(DOMSource source, URL context) Get the Information Model (IM) version of the label (as a DOMSource)Returns the list of IMs registered so far.static StringGet the name of the executable of validate.getLidVidReferences(DOMSource source, URL context) Get the LIDVID references in the label (as a DOMSource)static StringGet the location of the label currently processing.getLogicalIdentifiers(DOMSource source, URL context) Get the local identifiers the label (as a DOMSource)static voidReset Information Model Versions List to zero size.static voidReduce Information Model Versions List to just one if it contains more than one elementsstatic voidregisterIMVersion(String informationModelVersion) Register the Information Model (IM) version.static voidreportIfMoreThanOneVersion(String validationRule) Report a WARNING if the number of unique IM versions are more than one.static voidreset()Reset all list(s) and variables back to their default states.static voidsetLauncherURIName(String launcherURIName) Set the name of the executable of validate.static voidsetLocation(String location) Set the location of the label currently processing.static voidSet the report to log status of labels or WARNING messages.
-
Field Details
-
LIDVID_REFERENCE
-
LID_REFERENCE
-
CONTEXT_AREA_TARGET_IDENTIFICATION_REFERENCE
-
CONTEXT_AREA_OBSERVATION_SYSTEM_COMPONENT_REFERENCE
-
CONTEXT_AREA_INVESTIGATION_AREA_REFERENCE
-
-
Constructor Details
-
LabelUtil
public LabelUtil()
-
-
Method Details
-
reduceInformationModelVersions
public static void reduceInformationModelVersions()Reduce Information Model Versions List to just one if it contains more than one elements- Parameters:
None-
-
hardResetInformationModelVersions
public static void hardResetInformationModelVersions()Reset Information Model Versions List to zero size.- Parameters:
None-
-
reset
public static void reset()Reset all list(s) and variables back to their default states.- Parameters:
None-
-
setLauncherURIName
Set the name of the executable of validate.- Parameters:
launcherURIName- The name of the executable of validate.
-
getLauncherURIName
Get the name of the executable of validate.- Parameters:
None-- Returns:
- The name of the executable of validate.
-
setReport
Set the report to log status of labels or WARNING messages.- Parameters:
report- The Report object.
-
registerIMVersion
Register the Information Model (IM) version.- Parameters:
informationModelVersion- The version of the IM to register, e.g. 1.12.0.0, 1.10.0.0
-
getInformationModelVersions
Returns the list of IMs registered so far.- Returns:
- informationModelVersions the list of IMs registered: {1.12.0.0, 1.10.0.0}
-
setLocation
Set the location of the label currently processing.- Parameters:
location- informationModelVersion The version of the IM to register, e.g. 1.12.0.0, 1.10.0.0
-
getLocation
Get the location of the label currently processing.- Returns:
- location of the label currently processing.
-
getIMVersion
Get the Information Model (IM) version of the label (as a DOMSource)- Parameters:
source- The content of context as a DOMSource. # @param context The location of the label being parsed from- Returns:
- informationModelVersion the version of the IM
-
getIdentifiersCommon
public static ArrayList<String> getIdentifiersCommon(DOMSource source, URL context, String[] tagsList, String searchPathName) Common function to retrieve values either from logical_identifier or lid_reference/lidvid_reference tags. Note that because a node for logical_identifier can have a version id in another tag, they both must be check before combining them together to . Due the fact that this function can be called by multiple threads and indirectly mutates container util.Utility.cachedTargets, it is necessary to add 'synchronized' to make sure that it does not happen.- Parameters:
source-context-tagsList-searchPathName-- Returns:
-
getLidVidReferences
Get the LIDVID references in the label (as a DOMSource)- Parameters:
source- The content of context as a DOMSource. # @param context The location of the label being parsed from.- Returns:
- lidOrLidVidReference The LID or LIDVID referenced in this label.
-
getLogicalIdentifiers
Get the local identifiers the label (as a DOMSource)- Parameters:
source- The content of context as a DOMSource. # @param context The location of the label being parsed from.- Returns:
- logicalIdentifiers A list of logical identifiers in this label.
-
reportIfMoreThanOneVersion
Report a WARNING if the number of unique IM versions are more than one.- Parameters:
validationRule- The rule of the validation, e.g. pds4.label, pds4.bundle. This value can be null since a rule is is not required within validate module.
-