Class TLcdARINCAirportCommunicationHandler

java.lang.Object
com.luciad.format.arinc.decoder.TLcdARINCAirportCommunicationHandler
All Implemented Interfaces:
ILcdARINCHandler

public class TLcdARINCAirportCommunicationHandler extends Object
This extension of the ALcdARINCHandler interface deals with aerodrome communication records (Airport Communications Records, section code A, subsection code V). Decoded models have as model descriptor an instance of TLcdARINCAirportCommunicationModelDescriptor.

The objects in decoded models are based on the AIS domain objects available in com.luciad.ais.model, which all implement ILcdDataObject. This interface provides a generic and format-independent way of accessing the type and properties (features) of a domain object.

For this handler, the type of the decoded objects is TLcdARINCDataTypes.AerodromeCommunication, which can also be retrieved through ILcdDataObject.getDataType(). The available properties of the objects are defined in TLcdARINCAerodromeCommunicationDataProperties. The values for these properties can be retrieved through ILcdDataObject.getValue(com.luciad.datamodel.TLcdDataProperty).

Next to ILcdDataObject, the objects in decoded models also implement ILcdFeatured, the former interface to access the properties (features) of a domain object. This is still fully supported, and explained in the following comments.

The setCommunicationFeatureNamesToBeDecoded(String[]) setCommunicationFeatureNamesToBeDecoded} method allows the user to specify which ARINC features are decoded into the featured model objects.

If no feature names to be decoded are specified, all features will be decoded.

The following fields (taken from the ARINC specification 424) are supported by the decoder. The list indicates into which feature the fields are decoded. It also indicates from which ARINC version on they are available.

  • Version 15 :
    • Customer/Area Code: ILcdARINCAerodromeCommunicationFeature.CUSTOMER_AREA_CODE
    • Airport Identifier: ILcdARINCAerodromeCommunicationFeature.AERODROME_IDENTIFIER
    • ICAO code: ILcdARINCAerodromeCommunicationFeature.ICAO_CODE
    • Communication type: ILcdARINCAerodromeCommunicationFeature.COMMUNICATION_TYPE
    • Communication Freq: ILcdARINCAerodromeCommunicationFeature.COMMUNICATION_FREQUENCY
    • Guard/Transmit: ILcdARINCAerodromeCommunicationFeature.GUARD_TRANSMIT
    • Frequency units: ILcdARINCAerodromeCommunicationFeature.FREQUENCY_UNITS
    • Service Indicator: ILcdARINCAerodromeCommunicationFeature.SERVICE_INDICATOR
    • Radar Service: ILcdARINCAerodromeCommunicationFeature.RADAR_SERVICE
    • Modulation: ILcdARINCAerodromeCommunicationFeature.MODULATION
    • Signal Emission: ILcdARINCAerodromeCommunicationFeature.SIGNAL_EMISSION
    • Magnetic Variation: ILcdARINCAerodromeCommunicationFeature.MAGNETIC_VARIATION
    • H24 Indicator: ILcdARINCAerodromeCommunicationFeature.H24_INDICATOR
    • Sectorization: ILcdARINCAerodromeCommunicationFeature.SECTORIZATION_BEGIN_BEARING, ILcdARINCAerodromeCommunicationFeature.SECTORIZATION_END_BEARING
    • Altitude Description: ILcdARINCAerodromeCommunicationFeature.ALTITUDE_DESCRIPTION
    • Communication Altitude: ILcdARINCAerodromeCommunicationFeature.COMMUNICATION_ALTITUDE1
    • Communication Altitude: ILcdARINCAerodromeCommunicationFeature.COMMUNICATION_ALTITUDE2
    • Sector facility: ILcdARINCAerodromeCommunicationFeature.SECTOR_FACILITY. Note that to decode this feature, an Aerodrome, DME, VOR, NDB and TACAN model should be set on this handler (see methods setAerodromeModel(ILcdModel), setDMEModel(ILcdModel), setVORModel(ILcdModel), setNDBModel(ILcdModel), setTACANModel(ILcdModel)) from which the sector facilities can be retrieved.
    • ICAO code: ILcdARINCAerodromeCommunicationFeature.SECTOR_FACILITY_ICAO
    • Distance description: ILcdARINCAerodromeCommunicationFeature.DISTANCE_DESCRIPTION
    • Communication distance: ILcdARINCAerodromeCommunicationFeature.COMMUNICATION_DISTANCE
    • Remote Facility: ILcdARINCAerodromeCommunicationFeature.REMOTE_FACILITY. Note that to decode this feature, an Aerodrome, a DME, VOR, NDB and TACAN model should be set on this handler (see methods setAerodromeModel(ILcdModel), setDMEModel(ILcdModel), setVORModel(ILcdModel), setNDBModel(ILcdModel), setTACANModel(ILcdModel)) from which the remote facilities can be retrieved.
    • ICAO code: ILcdARINCAerodromeCommunicationFeature.REMOTE_FACILITY_ICAO
    • Callsign: ILcdARINCAerodromeCommunicationFeature.CALLSIGN
    • Cycle Date: ILcdARINCAerodromeCommunicationFeature.CYCLE_DATE
  • Version 17, 18 : no extra fields added.
  • Version 19 :
    • Transmit Frequency: ILcdARINCAerodromeCommunicationFeature.COMMUNICATION_TRANSMIT_FREQUENCY
    • Receive Frequency: ILcdARINCAerodromeCommunicationFeature.COMMUNICATION_RECEIVE_FREQUENCY

ARINC handlers rely on a specific set of key features that uniquely define an object. This set of features must always be included in the set of features to be decoded. For aerodrome communications the key features are:

Since:
6.2
See Also:
  • Constructor Details

    • TLcdARINCAirportCommunicationHandler

      public TLcdARINCAirportCommunicationHandler()
      Constructs a new TLcdARINCAirportCommunicationHandler object.
  • Method Details

    • handleRecord

      public void handleRecord(char[] aRecord)
      Description copied from interface: ILcdARINCHandler
      Deals with one record of ARINC data.

      Each implementation of the ILcdARINCHandler interface decides by itself whether to use the information found in the given record to create or modify a domain object, or to do nothing at all.

      Typically, this method will be called when looping through the records of a data source.

      The domain objects created or modified when calling this method will be stored in a model. The user can obtain this model by calling the getModel method.

      Specified by:
      handleRecord in interface ILcdARINCHandler
      Parameters:
      aRecord - the record to deal with created with data from the given record in
      See Also:
    • getCommunicationFeatureNamesToBeDecoded

      public String[] getCommunicationFeatureNamesToBeDecoded()
      Returns the features that will be stored in the domain objects created by this handler.
      Returns:
      an array containing the names of the features to be stored in the domain objects created by this handler
      See Also:
    • setCommunicationFeatureNamesToBeDecoded

      public void setCommunicationFeatureNamesToBeDecoded(String[] aFeatureNamesToBeDecoded)
      Specifies which features should be stored in the domain objects created by this handler.
      Parameters:
      aFeatureNamesToBeDecoded - an array containing the names of the features to be stored in the domain objects created by this handler. Feature names should be taken from the ILcdARINCAerodromeCommunicationFeature interface.
      See Also:
    • setAerodromeModel

      public void setAerodromeModel(ILcdModel aAerodromeModel)
      Specifies a model of aerodromes that is used to retrieve sector or remote facilities.

      This is only required when the features ILcdARINCAerodromeCommunicationFeature.REMOTE_FACILITY or ILcdARINCAerodromeCommunicationFeature.SECTOR_FACILITY are decoded (see setCommunicationFeatureNamesToBeDecoded(String[]) setCommunicationFeatureNamesToBeDecoded} method).

      Parameters:
      aAerodromeModel - the aerodrome model to retrieve sector facilities.
    • setNDBModel

      public void setNDBModel(ILcdModel aNDBModel)
      Specifies a model of NDBs that is used to retrieve sector or remote facilities.

      This is only required when the features ILcdARINCAerodromeCommunicationFeature.REMOTE_FACILITY or ILcdARINCAerodromeCommunicationFeature.SECTOR_FACILITY are decoded (see setCommunicationFeatureNamesToBeDecoded(String[]) setCommunicationFeatureNamesToBeDecoded} method).

      Parameters:
      aNDBModel - the NDB model to retrieve sector or remote facilities.
    • setDMEModel

      public void setDMEModel(ILcdModel aDMEModel)
      Specifies a model of DMEs that is used to retrieve sector or remote facilities.

      This is only required when the features ILcdARINCAerodromeCommunicationFeature.REMOTE_FACILITY or ILcdARINCAerodromeCommunicationFeature.SECTOR_FACILITY are decoded (see setCommunicationFeatureNamesToBeDecoded(String[]) setCommunicationFeatureNamesToBeDecoded} method).

      Parameters:
      aDMEModel - the DME model to retrieve sector or remote facilities.
    • setTACANModel

      public void setTACANModel(ILcdModel aTACANModel)
      Specifies a model of TACANs that is used to retrieve sector or remote facilities.

      This is only required when the features ILcdARINCAerodromeCommunicationFeature.REMOTE_FACILITY or ILcdARINCAerodromeCommunicationFeature.SECTOR_FACILITY are decoded (see setCommunicationFeatureNamesToBeDecoded(String[]) setCommunicationFeatureNamesToBeDecoded} method).

      Parameters:
      aTACANModel - the TACAN model to retrieve sector or remote facilities.
    • setVORModel

      public void setVORModel(ILcdModel aVORModel)
      Specifies a model of VORs that is used to retrieve sector or remote facilities.

      This is only required when the features ILcdARINCAerodromeCommunicationFeature.REMOTE_FACILITY or ILcdARINCAerodromeCommunicationFeature.SECTOR_FACILITY are decoded (see setCommunicationFeatureNamesToBeDecoded(String[]) setCommunicationFeatureNamesToBeDecoded} method).

      Parameters:
      aVORModel - the VOR model to retrieve sector or remote facilities.
    • setDomainFactory

      @Deprecated public void setDomainFactory(ALcdAISObjectFactory aDomainFactory)
      Deprecated.
      Description copied from interface: ILcdARINCHandler
      Specifies the domainFactory to be used to create domain objects.

      The given domainFactory must not be null.

      Specified by:
      setDomainFactory in interface ILcdARINCHandler
      Parameters:
      aDomainFactory - the domainFactory to be used to create domain objects
      See Also:
    • getDomainFactory

      @Deprecated public ALcdAISObjectFactory getDomainFactory()
      Deprecated.
      Description copied from interface: ILcdARINCHandler
      Returns the domainFactory to be used to create domain objects.
      Specified by:
      getDomainFactory in interface ILcdARINCHandler
      Returns:
      the domainFactory to be used to create domain objects
      See Also:
    • setDataObjectFactory

      public void setDataObjectFactory(TLcdAISDataObjectFactory aFactory)
      Description copied from interface: ILcdARINCHandler
      Specifies the factory to be used to create domain objects.

      The given factory must not be null.

      Specified by:
      setDataObjectFactory in interface ILcdARINCHandler
      Parameters:
      aFactory - the domainFactory to be used to create domain objects
      See Also:
    • getDataObjectFactory

      public TLcdAISDataObjectFactory getDataObjectFactory()
      Description copied from interface: ILcdARINCHandler
      Returns the factory to be used to create domain objects.
      Specified by:
      getDataObjectFactory in interface ILcdARINCHandler
      Returns:
      the factory to be used to create domain objects
      See Also:
    • setDefaultGeodeticDatum

      public void setDefaultGeodeticDatum(ILcdGeodeticDatum aDefaultGeodeticDatum)
      Sets the default geodetic datum code. This is used for records which do not mention an explicit geodetic datum.

      By default, this is WGS 84. Note that null can also be provided: in that case, records which do not mention a geodetic datum will be ignored.

      Parameters:
      aDefaultGeodeticDatum - The default geodetic datum.
    • getModel

      Description copied from interface: ILcdARINCHandler
      Returns the model build by this handler.

      Please remark that this handler is only capable of creating the expected model if the user calls

      • the newModel method to reset the internal state before he or she starts the decoding process,
      • the handleRecord method each time a new record in the data source is accessed.
      Specified by:
      getModel in interface ILcdARINCHandler
      Returns:
      the model build by this handler
    • setBoundsToFilterOn

      public void setBoundsToFilterOn(ILcdBounds aBoundsToFilterOn)
      Description copied from interface: ILcdARINCHandler
      Specifies (geodetic) bounds that will be used as a filter on the model created by this handler.

      If this bounds is null, all objects found in the data source will be inserted into the model. If this bounds is not null, only the objects whose bounds interact with the specified bounds will be inserted into the model.

      Specified by:
      setBoundsToFilterOn in interface ILcdARINCHandler
      Parameters:
      aBoundsToFilterOn - the bounds to be used as a filter
    • getBoundsToFilterOn

      public ILcdBounds getBoundsToFilterOn()
      Description copied from interface: ILcdARINCHandler
      Returns the (geodetic) bounds that will be used as a filter on the model created by this handler.
      Specified by:
      getBoundsToFilterOn in interface ILcdARINCHandler
      Returns:
      the bounds that will be used as a filter on the model created by this handler
      See Also:
    • setInitialBounds

      public void setInitialBounds(ILcdBounds aInitialBounds)
      Description copied from interface: ILcdARINCHandler
      Specifies a bounds to be used as initial bounds for the model created by this handler.

      This bounds should be large enough to enclose (most of) the model objects. This option is used to avoid to many expansions of the model bounds.

      This parameter may be null.

      Note: This bounds is not a filter! If a model objects bounds does not interact with aInitialBounds, aInitialBounds will be enlarged to enclose the object.

      Specified by:
      setInitialBounds in interface ILcdARINCHandler
      Parameters:
      aInitialBounds - the initial bounds for the model created by this handler
    • getInitialBounds

      public ILcdBounds getInitialBounds()
      Description copied from interface: ILcdARINCHandler
      Returns the bounds to be used as initial bounds for the model created by this handler.
      Specified by:
      getInitialBounds in interface ILcdARINCHandler
      Returns:
      bounds to be used as initial bounds for the model created by this handler
      See Also:
    • newModel

      public void newModel(String aSource, ILcdARINCErrorMessageSupport aErrorMessage)
      Description copied from interface: ILcdARINCHandler
      Resets the internal state of this handler so that it is ready to handle a new data source from scratch.

      The user should call this method before using this handler in a decoding process.

      Specified by:
      newModel in interface ILcdARINCHandler
      Parameters:
      aSource - the name of the source that will be handled
      aErrorMessage - for each irregular situation during the decoding, a report should be added to this object
    • setARINCModelFilter

      public void setARINCModelFilter(ILcdARINCModelFilter aFilter)
      Description copied from interface: ILcdARINCHandler
      Specifies a filter to be used while creating the model. Only model objects that pass through the filter will be in the resulting model.
      Specified by:
      setARINCModelFilter in interface ILcdARINCHandler
      Parameters:
      aFilter - an ILcdARINCModelFilter to filter the model objects
    • isTraceOn

      public boolean isTraceOn()
      Deprecated.
      This method has been deprecated. It is recommended to use the standard Java logging framework directly.
      Returns true if tracing is enabled for this class.
      Returns:
      true if tracing is enabled for this class, false otherwise.
    • setClassTraceOn

      public static void setClassTraceOn(boolean aTraceOn)
      Deprecated.
      This method has been deprecated. It is recommended to use the standard Java logging framework directly.
      Enables tracing for all instances of this class. If the argument is true then all log messages are recorded, otherwise only the informative, warning and error messages are recorded.
      Parameters:
      aTraceOn - if true then all log messages are recorded, otherwise only the informative, warning and error messages are recorded.
    • setTraceOn

      public void setTraceOn(boolean aTraceOn)
      Deprecated.
      This method has been deprecated. It is recommended to use the standard Java logging framework directly.
      Enables tracing for this class instance. Calling this method with either true or false as argument automatically turns off tracing for all other class instances for which setTraceOn has not been called. If the argument is false then only the informative, warning and error log messages are recorded.
      Parameters:
      aTraceOn - if true then all log messages are recorded for this instance. If false, then only the informative, warning and error log messages are recorded.
    • readSectionCode

      protected char readSectionCode(char[] aRecord)
      Reads the section code of an ARINC record.
      Parameters:
      aRecord - the record to read of
      Returns:
      the section code of the record
    • read

      protected String read(char[] aRecord, int aStart, int aLength)
      Reads from aRecord from position aStart to aStart + aLength - 1, trims the resulting String object and returns it.
      Parameters:
      aRecord - the record to be read of
      aStart - the start position for reading
      aLength - the length of the String to be read
      Returns:
      a trimmed String object
    • getLocalHorizontalDatum

      protected ILcdGeodeticDatum getLocalHorizontalDatum(String aGeodeticDatumCode)
      Returns an instance of an implementation of the ILcdGeodeticDatum interface according to the given geodetic datum code. The datum code is expected to be specified by their three character representation, as it is used in the ARINC specification.

      The full list of supported geodetic datum codes can be found in the ARINC Developer's Guide.

      If the supplied code is null or empty, the default geodetic datum is returned. This is WGS 84 by default, but it can be configured through setDefaultGeodeticDatum. If no geodetic datum can be found, null is returned.

      Parameters:
      aGeodeticDatumCode - the code for the geodetic datum to be returned
      Returns:
      the geodetic datum according to the given code
    • setStoreOriginalReference

      public void setStoreOriginalReference(boolean aStoreRef)
      Description copied from interface: ILcdARINCHandler
      If true, the decoder will store the original geodetic datum of each domain object in a feature.
      Specified by:
      setStoreOriginalReference in interface ILcdARINCHandler
      Parameters:
      aStoreRef - specifies if the decoder must store the original geodetic datum of each domain object in a feature.
    • isStoreOriginalReference

      public boolean isStoreOriginalReference()
      Description copied from interface: ILcdARINCHandler
      If true, the decoder will store the original geodetic datum of each domain object in a feature.
      Specified by:
      isStoreOriginalReference in interface ILcdARINCHandler
      Returns:
      whether the decoder will store the original geodetic datum of each domain object in a feature.