Package ghidra.framework.data
Class ProjectFileManager
- java.lang.Object
-
- ghidra.framework.data.ProjectFileManager
-
- All Implemented Interfaces:
ProjectData
- Direct Known Subclasses:
TransientProjectData
public class ProjectFileManager extends java.lang.Object implements ProjectData
Helper class to manage files within a project.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringINDEXED_DATA_FOLDER_NAMEstatic java.lang.StringMANGLED_DATA_FOLDER_NAMEName of folder that stores user's datastatic java.lang.StringUSER_FOLDER_NAMEstatic java.lang.StringVERSIONED_FOLDER_NAME
-
Constructor Summary
Constructors Constructor Description ProjectFileManager(ProjectLocator localStorageLocator, boolean isInWritableProject, boolean resetOwner)Constructor for existing projects.ProjectFileManager(ProjectLocator localStorageLocator, RepositoryAdapter repository, boolean isInWritableProject)Constructor for a new project.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDomainFolderChangeListener(DomainFolderChangeListener l)Adds a listener that will be notified when any folder or file changes in the project.voidclose()Close the project storage associated with this project data object.voidconvertProjectToShared(RepositoryAdapter newRepository, TaskMonitor monitor)Convert a local project to a shared project.voiddispose()voidfindOpenFiles(java.util.List<DomainFile> list)Finds all changed domain files and appends them to the specified list.DomainFilegetFile(java.lang.String path)Get domain file specified by an absolute data path.DomainFilegetFileByID(java.lang.String fileID)Get domain file specified by its unique fileID.intgetFileCount()Get the approximate number of files contained within the project.DomainFoldergetFolder(java.lang.String path)Get domain folder specified by an absolute data path.java.lang.Class<? extends LocalFileSystem>getLocalStorageClass()intgetMaxNameLength()java.lang.StringgetOwner()Returns the owner of the project that is associated with this ProjectFileManager.FileSystemgetPrivateFileSystem()java.io.FilegetProjectDir()TaskMonitorgetProjectDisposalMonitor()Get monitor which will be cancelled if project is closedProjectLocatorgetProjectLocator()Returns the projectLocator for the this ProjectData.RepositoryAdaptergetRepository()Return the repository for this project data.GhidraFoldergetRootFolder()Returns the root folder of the project.java.net.URLgetSharedFileURL(java.lang.String path)Get a URL for a shared domain file which is available within a remote repository.UsergetUser()Returns User object associated with remote repository or null if a remote repository is not used.static java.lang.StringgetUserDataFilename(java.lang.String associatedFileID)Returns the standard user data filename associated with the specified file ID.java.lang.StringmakeValidName(java.lang.String name)Transform the specified name into an acceptable folder or file item name.voidrefresh(boolean force)Sync the Domain folder/file structure with the underlying file structure.voidreleaseDomainFiles(java.lang.Object consumer)voidremoveDomainFolderChangeListener(DomainFolderChangeListener l)Removes the listener to be notified of folder and file changes.voidremoveFromIndex(java.lang.String fileID)Remove specified fileID from index.voidtestValidName(java.lang.String name, boolean isPath)Validate a folder/item name or path.voidupdateFileIndex(GhidraFileData fileData)Update the file index for the specified file datavoidupdateRepositoryInfo(RepositoryAdapter newRepository, TaskMonitor monitor)Update the repository for this project; the server may have changed or a different repository is being used.
-
-
-
Field Detail
-
MANGLED_DATA_FOLDER_NAME
public static final java.lang.String MANGLED_DATA_FOLDER_NAME
Name of folder that stores user's data- See Also:
- Constant Field Values
-
INDEXED_DATA_FOLDER_NAME
public static final java.lang.String INDEXED_DATA_FOLDER_NAME
- See Also:
- Constant Field Values
-
USER_FOLDER_NAME
public static final java.lang.String USER_FOLDER_NAME
- See Also:
- Constant Field Values
-
VERSIONED_FOLDER_NAME
public static final java.lang.String VERSIONED_FOLDER_NAME
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ProjectFileManager
public ProjectFileManager(ProjectLocator localStorageLocator, boolean isInWritableProject, boolean resetOwner) throws NotOwnerException, java.io.IOException
Constructor for existing projects.- Parameters:
localStorageLocator- the location of the projectisInWritableProject- true if project content is writable, false if project is read-onlyresetOwner- true to reset the project owner- Throws:
java.io.IOException- if an i/o error occursNotOwnerException- if inProject is true and user is not ownerjava.io.FileNotFoundException- if project directory not found
-
ProjectFileManager
public ProjectFileManager(ProjectLocator localStorageLocator, RepositoryAdapter repository, boolean isInWritableProject) throws java.io.IOException
Constructor for a new project.- Parameters:
localStorageLocator- the location of the projectrepository- a repository if this is a shared project or null if it is a private projectisInWritableProject- true if project content is writable, false if project is read-only- Throws:
java.io.IOException- if an i/o error occurs
-
-
Method Detail
-
getMaxNameLength
public int getMaxNameLength()
- Specified by:
getMaxNameLengthin interfaceProjectData- Returns:
- the maximum name length permitted for folders or items.
-
testValidName
public void testValidName(java.lang.String name, boolean isPath) throws InvalidNameExceptionDescription copied from interface:ProjectDataValidate a folder/item name or path.- Specified by:
testValidNamein interfaceProjectData- Parameters:
name- folder or item nameisPath- if true name represents full path- Throws:
InvalidNameException- if name is invalid
-
getUser
public User getUser()
Description copied from interface:ProjectDataReturns User object associated with remote repository or null if a remote repository is not used.- Specified by:
getUserin interfaceProjectData
-
getLocalStorageClass
public java.lang.Class<? extends LocalFileSystem> getLocalStorageClass()
- Specified by:
getLocalStorageClassin interfaceProjectData- Returns:
- local storage implementation class
-
getOwner
public java.lang.String getOwner()
Returns the owner of the project that is associated with this ProjectFileManager. A value of null indicates an old multiuser project.- Returns:
- the owner of the project
-
getRootFolder
public GhidraFolder getRootFolder()
Description copied from interface:ProjectDataReturns the root folder of the project.- Specified by:
getRootFolderin interfaceProjectData
-
getFolder
public DomainFolder getFolder(java.lang.String path)
Description copied from interface:ProjectDataGet domain folder specified by an absolute data path.- Specified by:
getFolderin interfaceProjectData- Parameters:
path- the absolute path of domain folder relative to the data folder.- Returns:
- domain folder or null if folder not found
-
getFileCount
public int getFileCount()
Description copied from interface:ProjectDataGet the approximate number of files contained within the project. The number may be reduced if not connected to the shared repository. Only the newer indexed file-system supports this capability, a value of -1 will be returned for older projects utilizing the mangled file-system or if an IO Error occurs. An approximate number is provided since the two underlying file systems are consulted separately and the local private file-system does not distinguish between checked-out files and private files. This number is currently intended as a rough sizing number to disable certain features when very large projects are in use. Generally the larger of the two file counts will be returned.- Specified by:
getFileCountin interfaceProjectData- Returns:
- number of project files or -1 if unknown.
-
getFile
public DomainFile getFile(java.lang.String path)
Description copied from interface:ProjectDataGet domain file specified by an absolute data path.- Specified by:
getFilein interfaceProjectData- Parameters:
path- the absolute path of domain file relative to the root folder.- Returns:
- domain file or null if file not found
-
getFileByID
public DomainFile getFileByID(java.lang.String fileID)
Description copied from interface:ProjectDataGet domain file specified by its unique fileID.- Specified by:
getFileByIDin interfaceProjectData- Parameters:
fileID- domain file ID- Returns:
- domain file or null if file not found
-
getSharedFileURL
public java.net.URL getSharedFileURL(java.lang.String path)
Description copied from interface:ProjectDataGet a URL for a shared domain file which is available within a remote repository.- Specified by:
getSharedFileURLin interfaceProjectData- Parameters:
path- the absolute path of domain file relative to the root folder.- Returns:
- URL object for accessing shared file from outside of a project, or null if file does not exist or is not shared.
-
releaseDomainFiles
public void releaseDomainFiles(java.lang.Object consumer)
-
findOpenFiles
public void findOpenFiles(java.util.List<DomainFile> list)
Finds all changed domain files and appends them to the specified list.- Specified by:
findOpenFilesin interfaceProjectData- Parameters:
list- the list to receive the changed domain files
-
getProjectLocator
public ProjectLocator getProjectLocator()
Description copied from interface:ProjectDataReturns the projectLocator for the this ProjectData.- Specified by:
getProjectLocatorin interfaceProjectData
-
addDomainFolderChangeListener
public void addDomainFolderChangeListener(DomainFolderChangeListener l)
Description copied from interface:ProjectDataAdds a listener that will be notified when any folder or file changes in the project.- Specified by:
addDomainFolderChangeListenerin interfaceProjectData- Parameters:
l- the listener to be notified of folder and file changes.
-
removeDomainFolderChangeListener
public void removeDomainFolderChangeListener(DomainFolderChangeListener l)
Description copied from interface:ProjectDataRemoves the listener to be notified of folder and file changes.- Specified by:
removeDomainFolderChangeListenerin interfaceProjectData- Parameters:
l- the listener to be removed.
-
getPrivateFileSystem
public FileSystem getPrivateFileSystem()
-
getRepository
public RepositoryAdapter getRepository()
Description copied from interface:ProjectDataReturn the repository for this project data.- Specified by:
getRepositoryin interfaceProjectData- Returns:
- null if the project is not associated with a repository
-
refresh
public void refresh(boolean force) throws java.io.IOExceptionDescription copied from interface:ProjectDataSync the Domain folder/file structure with the underlying file structure.- Specified by:
refreshin interfaceProjectData- Parameters:
force- if true all folders will be be visited and refreshed, if false only those folders previously visited will be refreshed.- Throws:
java.io.IOException
-
convertProjectToShared
public void convertProjectToShared(RepositoryAdapter newRepository, TaskMonitor monitor) throws java.io.IOException, CancelledException
Description copied from interface:ProjectDataConvert a local project to a shared project. NOTE: The project should be closed and then reopened after this method is called.- Specified by:
convertProjectToSharedin interfaceProjectData- Parameters:
newRepository- the repository that the project will be associated with.monitor- task monitor- Throws:
java.io.IOException- thrown if files under version control are still checked out, or if there was a problem accessing the filesystemCancelledException- if the conversion was cancelled while versioned files were being converted to private files.
-
updateRepositoryInfo
public void updateRepositoryInfo(RepositoryAdapter newRepository, TaskMonitor monitor) throws java.io.IOException, CancelledException
Description copied from interface:ProjectDataUpdate the repository for this project; the server may have changed or a different repository is being used. NOTE: The project should be closed and then reopened after this method is called.- Specified by:
updateRepositoryInfoin interfaceProjectData- Parameters:
newRepository- new repository to usemonitor- task monitor- Throws:
java.io.IOException- thrown if files are still checked out, or if there was a problem accessing the filesystemCancelledException- if the user canceled the update
-
getUserDataFilename
public static java.lang.String getUserDataFilename(java.lang.String associatedFileID)
Returns the standard user data filename associated with the specified file ID.- Parameters:
associatedFileID- the file id- Returns:
- user data filename
-
makeValidName
public java.lang.String makeValidName(java.lang.String name)
Description copied from interface:ProjectDataTransform the specified name into an acceptable folder or file item name. Only an individual folder or file name should be specified, since any separators will be stripped-out. NOTE: Uniqueness of name within the intended target folder is not considered.- Specified by:
makeValidNamein interfaceProjectData- Returns:
- valid name or "unknown" if no valid characters exist within name provided
-
getProjectDir
public java.io.File getProjectDir()
-
close
public void close()
Description copied from interface:ProjectDataClose the project storage associated with this project data object. NOTE: This should not be invoked if this object is utilized by a Project instance.- Specified by:
closein interfaceProjectData
-
dispose
public void dispose()
-
updateFileIndex
public void updateFileIndex(GhidraFileData fileData)
Update the file index for the specified file data- Parameters:
fileData- file data
-
removeFromIndex
public void removeFromIndex(java.lang.String fileID)
Remove specified fileID from index.- Parameters:
fileID- the file ID
-
getProjectDisposalMonitor
public TaskMonitor getProjectDisposalMonitor()
Get monitor which will be cancelled if project is closed- Returns:
- cancel monitor
-
-