Package PamUtils.worker.filelist
Class FileListWorker<T extends File>
java.lang.Object
PamUtils.worker.filelist.FileListWorker<T>
- Type Parameters:
 T-
- All Implemented Interfaces:
 PamWorkWrapper<FileListData<T>>
- Direct Known Subclasses:
 WavListWorker
public abstract class FileListWorker<T extends File>
extends Object
implements PamWorkWrapper<FileListData<T>>
Class to list files in one or more directories.
- Author:
 - Doug Gillespie
 
- 
Constructor Summary
ConstructorsConstructorDescriptionFileListWorker(FileListUser<T> fileListUser, String fileType) FileListWorker(FileListUser<T> fileListUser, PamFileFilter fileFilter)  - 
Method Summary
Modifier and TypeMethodDescriptionbooleanallFilesTask(FileListData<T> fileList) Called once the main list of files has been made so that additional operations can be applied to every file, such as checking sample rates, etc.abstract TcreateFile(File baseFile) Creates the file.booleaneachFileTask(T aFile) Called every time a file is discovered in the main search.voidfinaliseFileList(PamWorker<FileListData<T>> pamWorker, FileListData<T> newFileList) Do any final jobs to the file list.final PamWorker<FileListData<T>> makeFileListProcess(String[] rootList, boolean subFolders, boolean useOldIfPossible) Create a file list worker.final FileListData<T> runBackgroundTask(PamWorker<FileListData<T>> pamWorker) Run the background task which is in it's own threadfinal voidstartFileListProcess(Window parentFrame, String[] rootList, boolean subFolders, boolean useOldIfPossible) Make a list from multiple files or root directories.final voidstartFileListProcess(Window parentFrame, String root, boolean subFolders, boolean useOldIfPossible) Make a list for a single file or root directoryfinal voidtaskFinished(FileListData<T> result) Called when the background task completes. 
- 
Constructor Details
- 
FileListWorker
 - 
FileListWorker
 
 - 
 - 
Method Details
- 
startFileListProcess
public final void startFileListProcess(Window parentFrame, String root, boolean subFolders, boolean useOldIfPossible) Make a list for a single file or root directory- Parameters:
 parentFrame-root-subFolders-useOldIfPossible-
 - 
startFileListProcess
public final void startFileListProcess(Window parentFrame, String[] rootList, boolean subFolders, boolean useOldIfPossible) Make a list from multiple files or root directories.- Parameters:
 parentFrame-rootList-subFolders-useOldIfPossible-
 - 
makeFileListProcess
public final PamWorker<FileListData<T>> makeFileListProcess(String[] rootList, boolean subFolders, boolean useOldIfPossible) Create a file list worker.- Parameters:
 rootList- - the list of folders to search insubFolders- - true to look for files in sub foldersuseOldIfPossible-
 - 
runBackgroundTask
Description copied from interface:PamWorkWrapperRun the background task which is in it's own thread- Specified by:
 runBackgroundTaskin interfacePamWorkWrapper<T extends File>- Parameters:
 pamWorker- reference to the main worker manager. Make repeated calls to pamWorker.update to update progress in the dialog- Returns:
 - the value which will be passed to taskFinished
 
 - 
finaliseFileList
Do any final jobs to the file list. This is needed in listing of xwav files since we have to go in and get the chunks. Might as well do the start times and audio formats for all files while we're at it to save time later. By doing it here in the progress bar, we can at least show progress sensibly.- Parameters:
 pamWorker-newFileList-
 - 
createFile
Creates the file. Can override to make enhanced file types, e.g. with the wav file audioinfo.- Parameters:
 filePath-- Returns:
 
 - 
eachFileTask
Called every time a file is discovered in the main search. Can check things like consistency of sample rate in each file as progress continues.- Parameters:
 aFile-- Returns:
 - true if processing can continue
 
 - 
allFilesTask
Called once the main list of files has been made so that additional operations can be applied to every file, such as checking sample rates, etc.- Parameters:
 fileList-- Returns:
 - true if all OK.
 
 - 
taskFinished
Description copied from interface:PamWorkWrapperCalled when the background task completes.- Specified by:
 taskFinishedin interfacePamWorkWrapper<T extends File>- Parameters:
 result- result returned by runBackgroundTask or null if an exception occurred.
 
 -