Class ALcdDAFIFMultiModelDecoder

java.lang.Object
com.luciad.format.dafif.decoder.ALcdDAFIFDecoder
com.luciad.format.dafif.decoder.ALcdDAFIFMultiModelDecoder
All Implemented Interfaces:
ILcdDAFIFDecoder, ILcdDAFIFMultiModelDecoder, ILcdInputStreamFactoryCapable, ILcdModelDecoder
Direct Known Subclasses:
TLcdDAFIFAerodromeNavaidDecoder, TLcdDAFIFILSDecoder, TLcdDAFIFNavaidDecoder, TLcdDAFIFRefuelingTrackDecoder, TLcdDAFIFVFRRouteDecoder

public abstract class ALcdDAFIFMultiModelDecoder extends ALcdDAFIFDecoder implements ILcdDAFIFMultiModelDecoder
This abstract extension of the ALcdDAFIFDecoder class defines the skeleton of the decode algorithm used to decode DAFIF data files.

The decode method will loop through all records in the source file. A concrete decoder can decide on what to do with each record by implementing the handleRecord method.

Extensions of the ALcdDAFIFMultiModelDecoder class will produce so-called "multi" models. A "multi" model contains several submodels. The number of submodels should be specified by calling the setModelCount method.

  • Constructor Details

    • ALcdDAFIFMultiModelDecoder

      public ALcdDAFIFMultiModelDecoder(Properties aDAFIFProperties)
      Initializes the DAFIFProperties field with the specified properties object. This object may be null.

      If you don't have a properties object here, you can still specify it by decoding a .toc file containing the dafif properties. The decoder will read the properties from the .toc file and look for the data file to be decoded in the directory containing this .toc file.

      Parameters:
      aDAFIFProperties - a Properties object containing for each domain object the name of its data file or NULL
  • Method Details

    • cleanUp

      protected void cleanUp()
      Description copied from class: ALcdDAFIFDecoder
      This method should be implemented by a concrete class.

      It should empty all temporary data structures used during the decoding process.

      Specified by:
      cleanUp in class ALcdDAFIFDecoder
    • setModelCount

      public void setModelCount(int aNumberOfModels)
      Description copied from interface: ILcdDAFIFMultiModelDecoder
      Specifies the number of submodels that will be decoded using this decoder.

      Note: this method should be called before calling the decode method.

      Specified by:
      setModelCount in interface ILcdDAFIFMultiModelDecoder
      Parameters:
      aNumberOfModels - the number of submodels in the model produced by this decoder
      See Also:
    • getModelCount

      public int getModelCount()
      Description copied from interface: ILcdDAFIFMultiModelDecoder
      Returns the number of models that will be available in the model produced by the decode method.
      Specified by:
      getModelCount in interface ILcdDAFIFMultiModelDecoder
      Returns:
      the number of submodels in the model produced by this decoder
      See Also:
    • createModelDescriptor

      public abstract TLcdEditableModelListDescriptor createModelDescriptor(String aSource)
      Description copied from interface: ILcdDAFIFMultiModelDecoder
      Creates and returns the model descriptor to be set on the model returned in the decode method.
      Specified by:
      createModelDescriptor in interface ILcdDAFIFMultiModelDecoder
      Parameters:
      aSource - the source that will be used to build the model
      Returns:
      the model descriptor to be set on the model produced by this decoder
    • decode

      public ILcdModel decode(String aSource) throws IOException
      Returns a model containing one or more submodels. Each submodel contains domain objects of the same type (e.g. a navaid model will contain four submodels; a TACAN, a VOR a NDB and a DME model).

      The submodels will be build by looping through the records found in the source file. Each record will be manipulated by the abstract handleRecord method.

      Furthermore, the error message will be initialized and filled with reports about errors occurred during the decode process.

      Specified by:
      decode in interface ILcdModelDecoder
      Parameters:
      aSource - either the directory containing the DAFIF source file to decode (if you did not specify a properties file in the constructor, the default file name will be used), a .toc file containing the DAFIF properties (the data file should be in the same directory as the .toc file) or a single file which name corresponds to the file name associated with this decoder (see getDecodeFileName()).
      Returns:
      the model build by reading the file found with aSource
      Throws:
      IOException - if an error occurs during the reading process
      See Also:
    • setKeyFeatureNames

      public void setKeyFeatureNames(int aIndex, String[] aKeyFeatureNames)
      Specifies for each submodel an Array object containing the names of the features that will be used as a key to insert objects into the submodel.

      Please retrieve these feature names from the feature interfaces corresponding with the domain objects (e.g. com.luciad.ais.model.aerodrome.ILcdAerodromeFeature).

      Parameters:
      aIndex - the index of the submodel whose keyFeatureNames are being specified
      aKeyFeatureNames - an Array object containing the names of the features that will be used as a key to insert objects into the model
    • handleRecord

      protected abstract void handleRecord(int aFormat, char[] aRecord)
      Deals with one record of input.
      Parameters:
      aFormat - the format of the record
      aRecord - the record to deal with
    • createModelDescriptor

      protected abstract ILcdModelDescriptor createModelDescriptor(int aIndex, String aSource)
      Creates and returns the model descriptor to be set on the model with index aIndex in the model (i.e. in the model returned in the decode method).
      Parameters:
      aSource - the source to be decoded
      Returns:
      a model descriptor describing the data in the submodel at position aIndex in the model produced by this decoder
    • postProcess

      protected void postProcess()
      This method is usually not implemented. However in some cases it may be useful for decoders to perform some actions after reading all records, but before the different models are merged into the modelList. In that case all those actions can be put in this method.