3.2.1: 2012-12-13

net.sf.basedb.clients.web.extensions
Class UninstalledFileProcessor

java.lang.Object
  extended by net.sf.basedb.clients.web.extensions.UninstalledFileProcessor
All Implemented Interfaces:
ExtensionsFileProcessor

public class UninstalledFileProcessor
extends Object
implements ExtensionsFileProcessor

File processor implementation that finalizes the uninstallation of an extensions file by removing it from the settings. See Settings.setUninstalledFile(java.io.File) and ExtensionsFile.WriteableExtensionsFile.setUninstalled()

Since:
3.0
Author:
Nicklas
Last modified
$Date: 2011-04-12 14:46:47 +0200 (ti, 12 apr 2011) $

Field Summary
private  int numFiles
           
private  ProcessResults results
           
 
Constructor Summary
UninstalledFileProcessor(ProcessResults results)
           
 
Method Summary
 void begin(ExtensionsManager manager, int numFiles)
          Called by the extensions manager before the processing starts.
 void done(ExtensionsManager manager)
          Called by the extensions manager after a successful completion of the processing.
 void done(ExtensionsManager manager, Throwable t)
          Called by the extensions manager if an exception was thrown by the processor.
 int getNumFiles()
          Get the number of files that was processed.
 void processFile(ExtensionsManager manager, ExtensionsFile.WriteableExtensionsFile wFile)
          Called by the extensions manager for each extensions file that it manages.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

results

private final ProcessResults results

numFiles

private int numFiles
Constructor Detail

UninstalledFileProcessor

public UninstalledFileProcessor(ProcessResults results)
Method Detail

begin

public void begin(ExtensionsManager manager,
                  int numFiles)
Description copied from interface: ExtensionsFileProcessor
Called by the extensions manager before the processing starts.

Specified by:
begin in interface ExtensionsFileProcessor
Parameters:
manager - The manager that is executing the action
numFiles - The number of extension files that is going to be processed this time

processFile

public void processFile(ExtensionsManager manager,
                        ExtensionsFile.WriteableExtensionsFile wFile)
Description copied from interface: ExtensionsFileProcessor
Called by the extensions manager for each extensions file that it manages. The order of the files is generally not predicatable and may change from one invokation to the next.

If the processor throws an exception the manager will abort processing and call ExtensionsFileProcessor.done(ExtensionsManager, Throwable). Error that are related to a specific file should be catched by the processor and registered by calling .......

If all files was processed without exceptions the manager will call ExtensionsFileProcessor.done(ExtensionsManager).

Note that the file is read-only to begin with. If the processor wants to call any write-operation the file must be opened by calling ExtensionsFile.WriteableExtensionsFile.open(). It is recommended that the processor calls ExtensionsFile.WriteableExtensionsFile.close() once it is done writing.

Specified by:
processFile in interface ExtensionsFileProcessor
Parameters:
manager - The manager that is executing the action
wFile - The file to be processed

done

public void done(ExtensionsManager manager)
Description copied from interface: ExtensionsFileProcessor
Called by the extensions manager after a successful completion of the processing.

Specified by:
done in interface ExtensionsFileProcessor
Parameters:
manager - The manager that is executing the action

done

public void done(ExtensionsManager manager,
                 Throwable t)
Description copied from interface: ExtensionsFileProcessor
Called by the extensions manager if an exception was thrown by the processor.

Specified by:
done in interface ExtensionsFileProcessor
Parameters:
manager - The manager that is executing the action
t - The exception

getNumFiles

public int getNumFiles()
Get the number of files that was processed.


3.2.1: 2012-12-13