hudson.os.solaris
Class ZFSProvisioner
java.lang.Object
hudson.FileSystemProvisioner
hudson.os.solaris.ZFSProvisioner
- All Implemented Interfaces:
- ExtensionPoint, Describable<FileSystemProvisioner>, Serializable
public class ZFSProvisioner
- extends FileSystemProvisioner
- implements Serializable
FileSystemProvisioner
for ZFS.
- Author:
- Kohsuke Kawaguchi
- See Also:
- Serialized Form
Method Summary |
void |
discardWorkspace(AbstractProject<?,?> project,
FilePath ws)
When a project is deleted, this method is called to undo the effect of
FileSystemProvisioner.prepareWorkspace(AbstractBuild, FilePath, TaskListener) . |
void |
prepareWorkspace(AbstractBuild<?,?> build,
FilePath ws,
TaskListener listener)
Called very early in the build (before a build places any files
in the workspace, such as SCM checkout) to provision a workspace
for the build. |
WorkspaceSnapshot |
snapshot(AbstractBuild<?,?> build,
FilePath ws,
String glob,
TaskListener listener)
Obtains the snapshot of the workspace of the given build. |
WorkspaceSnapshot |
snapshot(AbstractBuild<?,?> build,
FilePath ws,
TaskListener listener)
Deprecated. as of 1.350 |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ZFSProvisioner
public ZFSProvisioner(Node node)
throws IOException,
InterruptedException
- Throws:
IOException
InterruptedException
prepareWorkspace
public void prepareWorkspace(AbstractBuild<?,?> build,
FilePath ws,
TaskListener listener)
throws IOException,
InterruptedException
- Description copied from class:
FileSystemProvisioner
- Called very early in the build (before a build places any files
in the workspace, such as SCM checkout) to provision a workspace
for the build.
This method can prepare the underlying file system in preparation
for the later #snapshot(AbstractBuild, FilePath, TaskListener)
.
TODO : the method needs to be able to see the snapshot would
be later needed. In fact, perhaps we should only call this method
when Hudson knows that a snapshot is later needed?
- Specified by:
prepareWorkspace
in class FileSystemProvisioner
ws
- New workspace should be prepared in this location. This is the same value as
build.getProject().getWorkspace()
but passed separately for convenience.
- Throws:
IOException
InterruptedException
discardWorkspace
public void discardWorkspace(AbstractProject<?,?> project,
FilePath ws)
throws IOException,
InterruptedException
- Description copied from class:
FileSystemProvisioner
- When a project is deleted, this method is called to undo the effect of
FileSystemProvisioner.prepareWorkspace(AbstractBuild, FilePath, TaskListener)
.
- Specified by:
discardWorkspace
in class FileSystemProvisioner
- Parameters:
project
- Project whose workspace is being discarded.ws
- Workspace to be discarded. This workspace is on the node
this FileSystemProvisioner
is provisioned for.
- Throws:
IOException
InterruptedException
snapshot
public WorkspaceSnapshot snapshot(AbstractBuild<?,?> build,
FilePath ws,
TaskListener listener)
throws IOException,
InterruptedException
- Deprecated. as of 1.350
- Throws:
IOException
InterruptedException
snapshot
public WorkspaceSnapshot snapshot(AbstractBuild<?,?> build,
FilePath ws,
String glob,
TaskListener listener)
throws IOException,
InterruptedException
- Description copied from class:
FileSystemProvisioner
- Obtains the snapshot of the workspace of the given build.
The state of the build when this method is invoked depends on
the project type. Most would call this at the end of the build,
but for example MatrixBuild
would call this after
SCM check out so that the state of the fresh workspace
can be then propagated to elsewhere.
If the implementation of this method needs to store data in a file system,
do so under Run.getRootDir()
, since the lifecycle of
the snapshot is tied to the life cycle of a build.
- Specified by:
snapshot
in class FileSystemProvisioner
ws
- New workspace should be prepared in this location. This is the same value as
build.getWorkspace()
but passed separately for convenience.glob
- Ant-style file glob for files to include in the snapshot. May not be pertinent for all
implementations.
- Throws:
IOException
InterruptedException
Copyright © 2004-2013. All Rights Reserved.