|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objecthudson.model.Descriptor<FileSystemProvisioner>
hudson.FileSystemProvisionerDescriptor
hudson.FileSystemProvisioner.Default.DescriptorImpl
@Extension public static final class FileSystemProvisioner.Default.DescriptorImpl
Nested Class Summary |
---|
Nested classes/interfaces inherited from class hudson.model.Descriptor |
---|
Descriptor.FormException, Descriptor.PropertyType, Descriptor.Self |
Nested classes/interfaces inherited from interface hudson.ExtensionPoint |
---|
ExtensionPoint.LegacyInstancesAreScopedToHudson |
Field Summary |
---|
Fields inherited from class hudson.model.Descriptor |
---|
clazz |
Fields inherited from interface hudson.model.Saveable |
---|
NOOP |
Constructor Summary | |
---|---|
FileSystemProvisioner.Default.DescriptorImpl()
|
Method Summary | |
---|---|
boolean |
discard(FilePath ws,
TaskListener listener)
Called to clean up a workspace that may potentially belong to this FileSystemProvisioner . |
String |
getDisplayName()
Human readable name of this kind of configurable object. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public FileSystemProvisioner.Default.DescriptorImpl()
Method Detail |
---|
public boolean discard(FilePath ws, TaskListener listener) throws IOException, InterruptedException
FileSystemProvisionerDescriptor
FileSystemProvisioner
.
Because users may modify the file system behind Hudson, and slaves may come and go when configuration changes hapen, in general case Hudson is unable to keep track of which jobs have workspaces in which slaves.
So instead we rey on a garbage collection mechanism, to look at workspaces left in the file system without the contextual information of the owner project, and try to clean that up.
This method is called to do this, after Hudson determines that the workspace should be deleted
to reclaim disk space. The implementation of this method is expected to sniff the contents of
the workspace, and if it looks like the one created by FileSystemProvisioner.prepareWorkspace(AbstractBuild, FilePath, TaskListener)
,
perform the necessary deletion operation, and return true.
If the workspace isn't the one created by this FileSystemProvisioner
, or if the
workspace can be simply deleted by FilePath.deleteRecursive()
, then simply
return false to give other FileSystemProvisionerDescriptor
s a chance to
discard them.
discard
in class FileSystemProvisionerDescriptor
ws
- The workspace directory to be removed.listener
- The status of the operation, error message, etc., should go here.
FileSystemProvisionerDescriptor
is responsible for de-alocating the workspace.
false otherwise, in which case the other FileSystemProvisionerDescriptor
s are asked to
clean up the workspace.
IOException
InterruptedException
public String getDisplayName()
Descriptor
getDisplayName
in class Descriptor<FileSystemProvisioner>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |