org.sourcejammer.project.model.filesys
Class NodeLibraryFS

java.lang.Object
  |
  +--org.sourcejammer.project.model.filesys.NodeLibraryFS
All Implemented Interfaces:
NodeLibrary

public class NodeLibraryFS
extends java.lang.Object
implements NodeLibrary

Title: $FileName: NodeLibraryFS.java$

Version:
$VerNum: 6$ $KeyWordsOff: $

Caching, retrieving, and storage of files, projects, versions, etc..
Author:
$AuthorName: Rob MacGrogan$

Nested Class Summary
static class NodeLibraryFS.NodeType
           
private static class NodeLibraryFS.XMLNodes
           
 
Field Summary
private  FSNodeCache fileCache
           
private  java.util.Random keyGenerator
           
private static java.lang.String LOCK_DIRECTORY
           
private static long LOCK_NUM_TRIES
           
private static long LOCK_RETRY_WAIT
           
private  ArchiveInfoFlexFS moArchiveInfo
           
private  FSNodeCache projectCache
           
 
Constructor Summary
NodeLibraryFS(ArchiveInfoFlexFS info)
           
 
Method Summary
private  void clearLocks()
          Clears all locks from lock directory.
 void deleteNode(ControllerNode node)
           
private  org.w3c.dom.Document generateLockFile(long nodeID, java.lang.String nodeType, long lKey)
          Generates and returns a lock XML file.
 FileNode getFileNode(long nodeID)
          Retrieves and locks a File node on the file system.
 FileNode getFileNode(long nodeID, boolean readOnly)
          Retrieve or construct a FileNode based on it's node id.
private  java.io.File getLockFile(long nodeID, java.lang.String nodeType)
           
private  java.lang.String getLockFileName(long nodeID, java.lang.String nodeType)
          Builds the file name to use for the lock file for the specified node.
 FileNode getNewFileNodeFromModel()
          Subclasses should implement this to return a new FileNode object.
 LabelInfo getNewLabelInfoFromModel()
           
 ProjectNode getNewProjectFromModel()
          Subclasses should implement this to return a new ProjectNode object.
 long getNextVersionNodeID()
          Returns next unique ID for a version.
 java.lang.String getProjectChildName(ProjectChild child)
          Return the name of a project child object.
 ProjectNode getProjectNode(long nodeID)
          Retrieve or construct a ProjectNode based on it's node id.
 java.io.File getSourceFilePointer(org.sourcejammer.project.view.NodeInfo versionNode)
           
private  boolean isNodeLocked(long nodeID, java.lang.String nodeType)
          Returns true if node is already locked.
 long lockNode(ControllerNode nd)
          Locks the node and returns the key.
 long lockNode(ControllerNode nd, long lTimeOutValue)
          Locks the node and returns the key used to lock it.
private  long lockNode(long nodeID, java.lang.String nodeType)
          Locks the node with the specified ID, if that node is not already locked.
private  long obtainLock(long nodeID, java.lang.String nodeType)
           
 void releaseNode(ControllerNode nd)
          Releases the node after use.
 void removeVersion(FileNode ndFile, long fileKey, long versionID)
          Remove all files assocaited with version from file system.
private  long retrieveKey(java.io.File fl)
          Retrieves key for the specified node.
private  long retrieveKey(long nodeID, java.lang.String nodeType)
           
 Label retrieveLabel(LabelInfo labelInfo)
           
 org.sourcejammer.project.NodeList retrieveLabelList()
          Loads all the labels for this archive as a NodeList.
 java.lang.String retrieveVersionComment(long versionID)
           
 Delta retrieveVersionDelta(org.sourcejammer.project.view.NodeInfo versionNode)
           
 java.io.File retrieveVersionDeltaFile(org.sourcejammer.project.view.NodeInfo versionNode)
           
 byte[] retrieveVersionFull(org.sourcejammer.project.view.NodeInfo versionNode)
           
 Delta retrieveVersionTextDelta(org.sourcejammer.project.view.NodeInfo versionNode)
           
 TextLineReader retrieveVersionTextLineReader(org.sourcejammer.project.view.NodeInfo versionNode)
          When implemented, this method returns the full source of the specified VersionNode as a TextLineReader.
 void storeLabel(LabelInfo labelInfo, Label label, org.sourcejammer.project.NodeList allLabels)
          Subclasses should implement to store the labeled version info.
 void storeVersionComment(FileNode ndFile, long fileKey, long versionID, java.lang.String comment)
           
 void storeVersionDelta(FileNode ndFile, long fileKey, long versionID, java.io.File file)
          Subclasses should implement to store file delta in the model implementation.
 void storeVersionFull(FileNode ndFile, long fileKey, long versionID, java.io.File file)
          Subclasses should implement to store version file in the model implementation.
 void storeVersionTextDiff(FileNode ndFile, long fileKey, long versionID, TextDiff file)
           
protected  void unlockNode(ControllerNode nd)
           
protected  void unlockNode(long nodeID, java.lang.String nodeType, long key)
          Unlocks the node with the specified ID and type, using the key.
private  void writeNodeToFileSys(NodeFS nd)
          Writes node info to filesystem.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

LOCK_DIRECTORY

private static final java.lang.String LOCK_DIRECTORY
See Also:
Constant Field Values

LOCK_RETRY_WAIT

private static final long LOCK_RETRY_WAIT
See Also:
Constant Field Values

LOCK_NUM_TRIES

private static final long LOCK_NUM_TRIES
See Also:
Constant Field Values

moArchiveInfo

private ArchiveInfoFlexFS moArchiveInfo

keyGenerator

private java.util.Random keyGenerator

fileCache

private FSNodeCache fileCache

projectCache

private FSNodeCache projectCache
Constructor Detail

NodeLibraryFS

public NodeLibraryFS(ArchiveInfoFlexFS info)
Method Detail

obtainLock

private long obtainLock(long nodeID,
                        java.lang.String nodeType)
                 throws ObjectLockingException
ObjectLockingException

lockNode

private long lockNode(long nodeID,
                      java.lang.String nodeType)
               throws ObjectLockingException
Locks the node with the specified ID, if that node is not already locked.

Parameters:
nodeID - -- unique ID of the node.
Returns:
-- the key to use in setting values in the node and in unlocking it.
Throws:
ObjectLockingException - if the node is already locked.

clearLocks

private void clearLocks()
Clears all locks from lock directory. Should only run on start up of server.


unlockNode

protected void unlockNode(long nodeID,
                          java.lang.String nodeType,
                          long key)
                   throws ObjectLockingException
Unlocks the node with the specified ID and type, using the key.

Parameters:
nodeID - -- unique id of the node.
Throws:
ObjectLockingException - if the node is not locked, or if the key is inaccurate.

getProjectNode

public ProjectNode getProjectNode(long nodeID)
                           throws FileAccessException,
                                  ProjectDoesNotExistException,
                                  SecurityException
Description copied from interface: NodeLibrary
Retrieve or construct a ProjectNode based on it's node id.

Specified by:
getProjectNode in interface NodeLibrary
FileAccessException
ProjectDoesNotExistException
SecurityException

getProjectChildName

public java.lang.String getProjectChildName(ProjectChild child)
                                     throws FileAccessException,
                                            org.sourcejammer.project.NodeDoesNotExistException
Return the name of a project child object. First checks cache. Then checks filesystem. Does not add child Node to cache.

Specified by:
getProjectChildName in interface NodeLibrary
FileAccessException
org.sourcejammer.project.NodeDoesNotExistException

getFileNode

public FileNode getFileNode(long nodeID)
                     throws FileAccessException,
                            FileDoesNotExistException,
                            SecurityException
Retrieves and locks a File node on the file system.

Specified by:
getFileNode in interface NodeLibrary
FileAccessException
FileDoesNotExistException
SecurityException

getFileNode

public FileNode getFileNode(long nodeID,
                            boolean readOnly)
                     throws FileAccessException,
                            FileDoesNotExistException,
                            SecurityException
Retrieve or construct a FileNode based on it's node id.

Specified by:
getFileNode in interface NodeLibrary
Parameters:
nodeID - -- unique id of the FileNode to retrieve.
readOnly - -- if true, the FileNode will not be lock-able and should probably be a clone of any FileNode stored in the cache.
FileAccessException
FileDoesNotExistException
SecurityException

releaseNode

public void releaseNode(ControllerNode nd)
                 throws FileAccessException
Description copied from interface: NodeLibrary
Releases the node after use.

Specified by:
releaseNode in interface NodeLibrary
FileAccessException

unlockNode

protected void unlockNode(ControllerNode nd)
                   throws FileAccessException
FileAccessException

writeNodeToFileSys

private void writeNodeToFileSys(NodeFS nd)
                         throws ObjectLockingException
Writes node info to filesystem.

ObjectLockingException

getLockFileName

private java.lang.String getLockFileName(long nodeID,
                                         java.lang.String nodeType)
Builds the file name to use for the lock file for the specified node.


isNodeLocked

private boolean isNodeLocked(long nodeID,
                             java.lang.String nodeType)
Returns true if node is already locked. False otherwise.


generateLockFile

private org.w3c.dom.Document generateLockFile(long nodeID,
                                              java.lang.String nodeType,
                                              long lKey)
Generates and returns a lock XML file.


retrieveKey

private long retrieveKey(long nodeID,
                         java.lang.String nodeType)
                  throws java.io.IOException,
                         org.xml.sax.SAXException
java.io.IOException
org.xml.sax.SAXException

retrieveKey

private long retrieveKey(java.io.File fl)
                  throws java.io.IOException,
                         org.xml.sax.SAXException
Retrieves key for the specified node.

java.io.IOException
org.xml.sax.SAXException

getLockFile

private java.io.File getLockFile(long nodeID,
                                 java.lang.String nodeType)

storeLabel

public void storeLabel(LabelInfo labelInfo,
                       Label label,
                       org.sourcejammer.project.NodeList allLabels)
                throws FileAccessException
Subclasses should implement to store the labeled version info.

Specified by:
storeLabel in interface NodeLibrary
FileAccessException

storeVersionFull

public void storeVersionFull(FileNode ndFile,
                             long fileKey,
                             long versionID,
                             java.io.File file)
                      throws FileAccessException
Subclasses should implement to store version file in the model implementation. FileNode must be locked and passed key must "fit" the FileNode, or SecurityException is thrown.

Specified by:
storeVersionFull in interface NodeLibrary
FileAccessException

storeVersionDelta

public void storeVersionDelta(FileNode ndFile,
                              long fileKey,
                              long versionID,
                              java.io.File file)
                       throws FileAccessException
Subclasses should implement to store file delta in the model implementation. FileNode must be locked and passed key must "fit" the FileNode, or SecurityException is thrown.

Specified by:
storeVersionDelta in interface NodeLibrary
FileAccessException

storeVersionTextDiff

public void storeVersionTextDiff(FileNode ndFile,
                                 long fileKey,
                                 long versionID,
                                 TextDiff file)
                          throws FileAccessException
Specified by:
storeVersionTextDiff in interface NodeLibrary
FileAccessException

getNewProjectFromModel

public ProjectNode getNewProjectFromModel()
                                   throws FileAccessException
Subclasses should implement this to return a new ProjectNode object. Unique ID for new project will be already be set in returned Node.

Specified by:
getNewProjectFromModel in interface NodeLibrary
FileAccessException

getNewFileNodeFromModel

public FileNode getNewFileNodeFromModel()
                                 throws FileAccessException
Subclasses should implement this to return a new FileNode object. Unique Id for file will already be set in returned Node.

Specified by:
getNewFileNodeFromModel in interface NodeLibrary
FileAccessException

getNextVersionNodeID

public long getNextVersionNodeID()
                          throws FileAccessException
Returns next unique ID for a version.

Specified by:
getNextVersionNodeID in interface NodeLibrary
FileAccessException

getNewLabelInfoFromModel

public LabelInfo getNewLabelInfoFromModel()
                                   throws FileAccessException
Specified by:
getNewLabelInfoFromModel in interface NodeLibrary
FileAccessException

storeVersionComment

public void storeVersionComment(FileNode ndFile,
                                long fileKey,
                                long versionID,
                                java.lang.String comment)
                         throws FileAccessException
Specified by:
storeVersionComment in interface NodeLibrary
FileAccessException

retrieveVersionComment

public java.lang.String retrieveVersionComment(long versionID)
                                        throws FileAccessException
Specified by:
retrieveVersionComment in interface NodeLibrary
FileAccessException

getSourceFilePointer

public java.io.File getSourceFilePointer(org.sourcejammer.project.view.NodeInfo versionNode)
Specified by:
getSourceFilePointer in interface NodeLibrary

retrieveVersionFull

public byte[] retrieveVersionFull(org.sourcejammer.project.view.NodeInfo versionNode)
                           throws FileAccessException,
                                  WrongFileTypeException
Specified by:
retrieveVersionFull in interface NodeLibrary
FileAccessException
WrongFileTypeException

retrieveVersionTextLineReader

public TextLineReader retrieveVersionTextLineReader(org.sourcejammer.project.view.NodeInfo versionNode)
                                             throws FileAccessException,
                                                    WrongFileTypeException,
                                                    org.sourcejammer.util.SourceJammerVersionException
When implemented, this method returns the full source of the specified VersionNode as a TextLineReader. This method should only be called for files stored as Text. Implementing classes should throw WrongFileType if the underlying file is not text.

Specified by:
retrieveVersionTextLineReader in interface NodeLibrary
FileAccessException
WrongFileTypeException
org.sourcejammer.util.SourceJammerVersionException

retrieveVersionDeltaFile

public java.io.File retrieveVersionDeltaFile(org.sourcejammer.project.view.NodeInfo versionNode)
                                      throws FileAccessException,
                                             WrongFileTypeException
Specified by:
retrieveVersionDeltaFile in interface NodeLibrary
FileAccessException
WrongFileTypeException

retrieveVersionDelta

public Delta retrieveVersionDelta(org.sourcejammer.project.view.NodeInfo versionNode)
                           throws FileAccessException,
                                  WrongFileTypeException
Specified by:
retrieveVersionDelta in interface NodeLibrary
FileAccessException
WrongFileTypeException

retrieveVersionTextDelta

public Delta retrieveVersionTextDelta(org.sourcejammer.project.view.NodeInfo versionNode)
                               throws FileAccessException,
                                      WrongFileTypeException
Specified by:
retrieveVersionTextDelta in interface NodeLibrary
FileAccessException
WrongFileTypeException

retrieveLabel

public Label retrieveLabel(LabelInfo labelInfo)
                    throws FileAccessException
Specified by:
retrieveLabel in interface NodeLibrary
FileAccessException

lockNode

public long lockNode(ControllerNode nd)
              throws SecurityException
Locks the node and returns the key. Times out after default number of milliseconds.

Specified by:
lockNode in interface NodeLibrary
SecurityException

lockNode

public long lockNode(ControllerNode nd,
                     long lTimeOutValue)
              throws SecurityException
Locks the node and returns the key used to lock it. Calling routines MUST remember to UNLOCK the node when they are done with it. Method waits for node to unlock for lTimeOutValue milliseconds.

Specified by:
lockNode in interface NodeLibrary
SecurityException

retrieveLabelList

public org.sourcejammer.project.NodeList retrieveLabelList()
                                                    throws FileAccessException
Loads all the labels for this archive as a NodeList.

Specified by:
retrieveLabelList in interface NodeLibrary
FileAccessException

deleteNode

public void deleteNode(ControllerNode node)
                throws FileAccessException,
                       org.sourcejammer.project.NodeDoesNotExistException,
                       SecurityException
Specified by:
deleteNode in interface NodeLibrary
FileAccessException
org.sourcejammer.project.NodeDoesNotExistException
SecurityException

removeVersion

public void removeVersion(FileNode ndFile,
                          long fileKey,
                          long versionID)
                   throws FileAccessException,
                          NoSuchVersionException
Remove all files assocaited with version from file system.

Specified by:
removeVersion in interface NodeLibrary
FileAccessException
NoSuchVersionException


Copyright © 2003 Soucejammer project.