Interface ILcdModelProvider

All Superinterfaces:
AutoCloseable, ILcdDisposable, ILcdOGCModelProvider
All Known Implementing Classes:
ALcdMultiDimensionalModelProvider, TLcdWMSModelProvider

public interface ILcdModelProvider extends ILcdOGCModelProvider
Interface defining implementations that can provide models corresponding to some source name.
  • Method Details

    • getModel

      ILcdModel getModel(String aSourceName, ALcdRequestContext aRequestContext) throws IOException
      Returns the ILcdModel corresponding to a source name and request context.
      Specified by:
      getModel in interface ILcdOGCModelProvider
      Parameters:
      aSourceName - the source name of the model.
      aRequestContext - the request context, which is an instance of type TLcdWMSRequestContext. This can be null if the method is called by a process which is not handling a request.
      Returns:
      the ILcdModel corresponding to a source name.
      Throws:
      IOException - if the model can not be returned (because decoding fails).
    • getModelUpdateSequence

      default String getModelUpdateSequence(String aSourceName, ALcdRequestContext aRequestContext) throws IOException

      Returns the update sequence value associated with the mode identified by the given source name. The update sequence identifies the state of the model.

      The update sequence should comply with a number of conditions:

      • The sequence number should be different from all previous update sequences for this model (if the model has changed).
      • If the model is different, the sequence number should be different as well. Failing to do so will cause malfunctions in combination with caching.
      • If the model doesn't change, the sequence number should also remain the same. Failing to do so lowers the effect of caching, and will result in worse performance.
      • The sequence number should be unique across sessions. Failing to do so may cause malfunctions in combination with caching. An easy mistake to make would for example be to use a counter that is reset when the server is restarted.

      By default, this method always returns "0". This means that the default implementation assumes that models never change. If models change, this method should be implemented differently.

      One way to generate update sequences would be to use a (persistent) counter that gets incremented on every (file system) change. Another way would be to use System.currentTimeMillis() from a correct clock.

      This method must be used by model provider implementations that contain a model cache. The result of this method must be used to invalidate this cache if needed.

      Because of caching on the request/view level, it is possible that the getModel method is called infrequently. This method will need to be called at least once for each request though. This means that for performance reasons, this method needs to have a fast implementation, ideally avoiding any I/O.

      The ALcdWMSLayer class has an update sequence concept as well. See ALcdWMSLayer.getUpdateSequence() for more information.

      Specified by:
      getModelUpdateSequence in interface ILcdOGCModelProvider
      Parameters:
      aSourceName - the source name of the model.
      aRequestContext - the request context, which is an instance of type TLcdWMSRequestContext. This can be null if the method is called by a process which is not handling a request.
      Returns:
      the update sequence value associated with the mode identified by the given source name.
      Throws:
      IOException - if the update sequence can not be determined
      Since:
      2017.0