Documentation of 'org.apache.lucene.store.Directory' Java class
Directory
org.apache.lucene.store

Class Directory

  • Direct Known Subclasses:
    FSDirectory, RAMDirectory


    public abstract class Directory
    extends java.lang.Object
    A Directory is a flat list of files. Files may be written once, when they are created. Once a file is created it may only be opened for read, or deleted. Random access is permitted both when reading and writing.

    Java's i/o APIs not used directly, but rather all i/o is through this API. This permits things such as:

    • implementation of RAM-based indices;
    • implementation indices stored in a database, via JDBC;
    • implementation of an index as a single file;
    Directory locking is implemented by an instance of LockFactory, and can be changed for each Directory instance using setLockFactory(org.apache.lucene.store.LockFactory).
    • Constructor Summary

      Constructors 
      Constructor and Description
      Directory() 
    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method and Description
      void clearLock(java.lang.String name)
      Attempt to clear (forcefully unlock and remove) the specified lock.
      abstract void close()
      Closes the store.
      static void copy(Directory src, Directory dest, boolean closeDirSrc)
      Copy contents of a directory src to a directory dest.
      abstract IndexOutput createOutput(java.lang.String name)
      Creates a new, empty file in the directory with the given name.
      abstract void deleteFile(java.lang.String name)
      Removes an existing file in the directory.
      abstract boolean fileExists(java.lang.String name)
      Returns true iff a file with the given name exists.
      abstract long fileLength(java.lang.String name)
      Returns the length of a file in the directory.
      abstract long fileModified(java.lang.String name)
      Returns the time the named file was last modified.
      LockFactory getLockFactory()
      Get the LockFactory that this Directory instance is using for its locking implementation.
      java.lang.String getLockID()
      Return a string identifier that uniquely differentiates this Directory instance from other Directory instances.
      abstract java.lang.String[] list()
      Returns an array of strings, one for each file in the directory.
      Lock makeLock(java.lang.String name)
      Construct a Lock.
      abstract IndexInput openInput(java.lang.String name)
      Returns a stream reading an existing file.
      IndexInput openInput(java.lang.String name, int bufferSize)
      Returns a stream reading an existing file, with the specified read buffer size.
      abstract void renameFile(java.lang.String from, java.lang.String to)
      Deprecated.  
      void setLockFactory(LockFactory lockFactory)
      Set the LockFactory that this Directory instance should use for its locking implementation.
      abstract void touchFile(java.lang.String name)
      Set the modified time of an existing file to now.
      • Methods inherited from class java.lang.Object

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

      • Directory

        public Directory()
    • Method Detail

      • list

        public abstract java.lang.String[] list()
                                         throws java.io.IOException
        Returns an array of strings, one for each file in the directory. This method may return null (for example for FSDirectory if the underlying directory doesn't exist in the filesystem or there are permissions problems).
        Throws:
        java.io.IOException
      • fileExists

        public abstract boolean fileExists(java.lang.String name)
                                    throws java.io.IOException
        Returns true iff a file with the given name exists.
        Throws:
        java.io.IOException
      • fileModified

        public abstract long fileModified(java.lang.String name)
                                   throws java.io.IOException
        Returns the time the named file was last modified.
        Throws:
        java.io.IOException
      • touchFile

        public abstract void touchFile(java.lang.String name)
                                throws java.io.IOException
        Set the modified time of an existing file to now.
        Throws:
        java.io.IOException
      • deleteFile

        public abstract void deleteFile(java.lang.String name)
                                 throws java.io.IOException
        Removes an existing file in the directory.
        Throws:
        java.io.IOException
      • renameFile

        public abstract void renameFile(java.lang.String from,
                                        java.lang.String to)
                                 throws java.io.IOException
        Deprecated. 
        Renames an existing file in the directory. If a file already exists with the new name, then it is replaced. This replacement is not guaranteed to be atomic.
        Throws:
        java.io.IOException
      • fileLength

        public abstract long fileLength(java.lang.String name)
                                 throws java.io.IOException
        Returns the length of a file in the directory.
        Throws:
        java.io.IOException
      • createOutput

        public abstract IndexOutput createOutput(java.lang.String name)
                                          throws java.io.IOException
        Creates a new, empty file in the directory with the given name. Returns a stream writing this file.
        Throws:
        java.io.IOException
      • openInput

        public abstract IndexInput openInput(java.lang.String name)
                                      throws java.io.IOException
        Returns a stream reading an existing file.
        Throws:
        java.io.IOException
      • openInput

        public IndexInput openInput(java.lang.String name,
                                    int bufferSize)
                             throws java.io.IOException
        Returns a stream reading an existing file, with the specified read buffer size. The particular Directory implementation may ignore the buffer size. Currently the only Directory implementations that respect this parameter are FSDirectory and CompoundFileReader.
        Throws:
        java.io.IOException
      • makeLock

        public Lock makeLock(java.lang.String name)
        Construct a Lock.
        Parameters:
        name - the name of the lock file
      • clearLock

        public void clearLock(java.lang.String name)
                       throws java.io.IOException
        Attempt to clear (forcefully unlock and remove) the specified lock. Only call this at a time when you are certain this lock is no longer in use.
        Parameters:
        name - name of the lock to be cleared.
        Throws:
        java.io.IOException
      • close

        public abstract void close()
                            throws java.io.IOException
        Closes the store.
        Throws:
        java.io.IOException
      • setLockFactory

        public void setLockFactory(LockFactory lockFactory)
        Set the LockFactory that this Directory instance should use for its locking implementation. Each * instance of LockFactory should only be used for one directory (ie, do not share a single instance across multiple Directories).
        Parameters:
        lockFactory - instance of LockFactory.
      • getLockFactory

        public LockFactory getLockFactory()
        Get the LockFactory that this Directory instance is using for its locking implementation. Note that this may be null for Directory implementations that provide their own locking implementation.
      • getLockID

        public java.lang.String getLockID()
        Return a string identifier that uniquely differentiates this Directory instance from other Directory instances. This ID should be the same if two Directory instances (even in different JVMs and/or on different machines) are considered "the same index". This is how locking "scopes" to the right index.
      • copy

        public static void copy(Directory src,
                                Directory dest,
                                boolean closeDirSrc)
                         throws java.io.IOException
        Copy contents of a directory src to a directory dest. If a file in src already exists in dest then the one in dest will be blindly overwritten.
        Parameters:
        src - source directory
        dest - destination directory
        closeDirSrc - if true, call close() method on source directory
        Throws:
        java.io.IOException

DataMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.