Class OlafStorageMemory

java.lang.Object
be.panako.strategy.olaf.storage.OlafStorageMemory
All Implemented Interfaces:
OlafStorage

public class OlafStorageMemory
extends java.lang.Object
implements OlafStorage
  • Constructor Summary

    Constructors
    Constructor Description
    OlafStorageMemory()  
  • Method Summary

    Modifier and Type Method Description
    void addToQueryQueue​(long queryHash)  
    void addToStoreQueue​(long fingerprintHash, int resourceIdentifier, int t1)  
    void clear()  
    static OlafStorageMemory getInstance()  
    OlafResourceMetadata getMetadata​(long identifier)  
    void processQueryQueue​(java.util.Map<java.lang.Long,​java.util.List<OlafHit>> matchAccumulator, int range)  
    void processQueryQueue​(java.util.Map<java.lang.Long,​java.util.List<OlafHit>> matchAccumulator, int range, java.util.Set<java.lang.Integer> resourcesToAvoid)  
    void processStoreQueue()  
    void storeMetadata​(long resourceID, java.lang.String resourcePath, float duration, int fingerprints)  

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • OlafStorageMemory

      public OlafStorageMemory()
  • Method Details

    • getInstance

      public static OlafStorageMemory getInstance()
      Returns:
      Returns or creates a storage instance. This should be a thread safe operation.
    • storeMetadata

      public void storeMetadata​(long resourceID, java.lang.String resourcePath, float duration, int fingerprints)
      Specified by:
      storeMetadata in interface OlafStorage
    • getMetadata

      public OlafResourceMetadata getMetadata​(long identifier)
      Specified by:
      getMetadata in interface OlafStorage
    • addToStoreQueue

      public void addToStoreQueue​(long fingerprintHash, int resourceIdentifier, int t1)
      Specified by:
      addToStoreQueue in interface OlafStorage
    • processStoreQueue

      public void processStoreQueue()
      Specified by:
      processStoreQueue in interface OlafStorage
    • addToQueryQueue

      public void addToQueryQueue​(long queryHash)
      Specified by:
      addToQueryQueue in interface OlafStorage
    • processQueryQueue

      public void processQueryQueue​(java.util.Map<java.lang.Long,​java.util.List<OlafHit>> matchAccumulator, int range)
      Specified by:
      processQueryQueue in interface OlafStorage
    • processQueryQueue

      public void processQueryQueue​(java.util.Map<java.lang.Long,​java.util.List<OlafHit>> matchAccumulator, int range, java.util.Set<java.lang.Integer> resourcesToAvoid)
      Specified by:
      processQueryQueue in interface OlafStorage
    • clear

      public void clear()