tasks/system/CopyTask.php

Show: inherited
Table of Contents

\CopyTask

Package: phing\tasks\system

A phing copy task. Copies a file or directory to a new file or directory. Files are only copied if the source file is newer than the destination file, or when the destination file does not exist. It is possible to explictly overwrite existing files.

Parent(s)
\Task < \ProjectComponent
Children
\XsltTask
\MoveTask
Author
Andreas Aderhold, andi@binarycloud.com  
Version
$Revision: 985 $ $Date: 2010-11-11 16:58:35 +0100 (Thu, 11 Nov 2010) $  

Properties

Propertyprotected  $completeDirMap= 'array()'
Default valuearray()Details
Type
n/a
Propertyprotected  $destDir= 'null'
Default valuenullDetails
Type
n/a
Propertyprotected  $destFile= 'null'
Default valuenullDetails
Type
n/a
Propertyprotected  $dirCopyMap= 'array()'
Default valuearray()Details
Type
n/a
Propertyprotected  $file= 'null'
Default valuenullDetails
Type
n/a
Propertyprotected  $fileCopyMap= 'array()'
Default valuearray()Details
Type
n/a
Propertyprotected  $fileUtils= 'null'
Default valuenullDetails
Type
n/a
Propertyprotected  $filelists= 'array()'
Default valuearray()Details
Type
n/a
Propertyprotected  $filesets= 'array()'
Default valuearray()Details
Type
n/a
Propertyprotected  $filterChains= 'array()'
Default valuearray()Details
Type
n/a
Propertyprotected  $flatten= 'false'
Default valuefalseDetails
Type
n/a
Propertyprotected  $haltonerror= 'true'
Default valuetrueDetails
Type
n/a
Propertyprotected  $includeEmpty= 'true'
Default valuetrueDetails
Type
n/a
Propertyprotected  $mapperElement= 'null'
Default valuenullDetails
Type
n/a
Propertyprotected  $mode= '0755'
Default value0755Details
Type
n/a
Propertyprotected  $overwrite= 'false'
Default valuefalseDetails
Type
n/a
Propertyprotected  $preserveLMT= 'false'
Default valuefalseDetails
Type
n/a
Propertyprotected  $verbosity= 'Project::MSG_VERBOSE'
Default valueProject::MSG_VERBOSEDetails
Type
n/a

Methods

methodpublic__construct( ) : object

Sets up this object internal stuff. i.e. the Fileutils instance

Returns
Type Description
object The CopyTask instnace
Details
Access
public  
methodprivate_scan(  $fromDir,  $toDir,  $files,  $dirs ) : void

Compares source files to destination files to see if they should be copied.

Parameters
Name Type Description
$fromDir
$toDir
$files
$dirs
Details
Access
private  
methodprivatebuildMap(  $fromDir,  $toDir,  $names,  $mapper,  $map ) : void

Builds a map of filenames (from->to) that should be copied

Parameters
Name Type Description
$fromDir
$toDir
$names
$mapper
$map
Details
Access
private  
methodpubliccreateFileList( ) : object

Nested creator, adds a set of files (nested fileset attribute).

Returns
Type Description
object The created filelist object
Details
Access
public  
methodpubliccreateFileSet( ) : object

Nested creator, creates a FileSet for this task

Returns
Type Description
object The created fileset object
Details
Access
public  
methodpubliccreateFilterChain( ) : object

Creates a filterchain

Returns
Type Description
object The created filterchain object
Details
Access
public  
methodpubliccreateMapper( ) : object

Nested creator, creates one Mapper for this task

Returns
Type Description
object The created Mapper type object
Throws
Exception Description
\BuildException
Details
Access
public  
methodprotecteddoWork( ) : void

Actually copies the files

Throws
Exception Description
\BuildException
Details
Access
private  
methodpublicgetDescription( ) : void

methodpublicgetLocation( ) : void

methodpublicgetOwningTarget( ) : void

methodpublicgetProject( ) : void

methodprotectedgetRegisterSlot( ) : void

methodpublicgetRuntimeConfigurableWrapper( ) : void

methodpublicgetTaskName( ) : void

methodpublicgetTaskType( ) : void

methodpublicinit( ) : void

methodpubliclog( ) : void

methodprotectedlogError(  $message,  $location = NULL ) : void

Parameters
Name Type Description
$message
$location
methodpublicmain( ) : true

The main entry point where everything gets in motion.

Returns
Type Description
true on success
Throws
Exception Description
\BuildException
Details
Access
public  
methodpublicmaybeConfigure( ) : void

methodpublicperform( ) : void

methodpublicsetDescription( ) : void

methodpublicsetFile( \string/object $file ) : void

Set the file. We have to manually take care of the type that is coming due to limited type support in php in and convert it manually if neccessary.

Parameters
Name Type Description
$file \string/object

The source file. Either a string or an PhingFile object

Details
Access
public  
methodpublicsetHaltonerror( boolean $haltonerror ) : void

Set the haltonerror attribute - when true, will make the build fail when errors are detected.

Parameters
Name Type Description
$haltonerror boolean

Flag if the build should be stopped on errors

Details
Access
public  
methodpublicsetIncludeEmptyDirs( boolean $bool ) : void

Set the include empty dirs flag. IntrospectionHelper takes care of booleans in set* methods so we can assume that the right value (boolean primitive) is coming in here.

Parameters
Name Type Description
$bool boolean

Flag if empty dirs should be cpoied too

Details
Access
public  
methodpublicsetLocation( ) : void

methodpublicsetMode( integer $mode ) : void

Sets the mode to create destination directories with (ignored on Windows).

Default mode is 0755.

Parameters
Name Type Description
$mode integer

Octal mode

Details
Access
public  
methodpublicsetOverwrite( boolean $bool ) : void

Set the overwrite flag. IntrospectionHelper takes care of booleans in set* methods so we can assume that the right value (boolean primitive) is coming in here.

Parameters
Name Type Description
$bool boolean

Overwrite the destination file(s) if it/they already exist

Details
Access
public  
methodpublicsetOwningTarget( ) : void

methodpublicsetPreserveLastModified( boolean $bool ) : void

Set the preserve timestamp flag. IntrospectionHelper takes care of booleans in set* methods so we can assume that the right value (boolean primitive) is coming in here.

Parameters
Name Type Description
$bool boolean

Preserve the timestamp on the destination file

Details
Access
public  
methodpublicsetProject( ) : void

methodpublicsetRuntimeConfigurableWrapper( ) : void

methodpublicsetTaskName( ) : void

methodpublicsetTaskType( ) : void

methodpublicsetTodir( \string/object $dir ) : void

Set the toDir. We have to manually take care of the type that is coming due to limited type support in php in and convert it manually if neccessary.

Parameters
Name Type Description
$dir \string/object

The directory, either a string or an PhingFile object

Details
Access
public  
methodpublicsetTofile( \string/object $file ) : void

Set the toFile. We have to manually take care of the type that is coming due to limited type support in php in and convert it manually if neccessary.

Parameters
Name Type Description
$file \string/object

The dest file. Either a string or an PhingFile object

Details
Access
public  
methodpublicsetTstamp(  $bool ) : void

Parameters
Name Type Description
$bool
Details
See
\CopyTask::setPreserveLastModified  
methodpublicsetVerbose( boolean $verbosity ) : void

Used to force listing of all names of copied files.

Parameters
Name Type Description
$verbosity boolean
methodprotectedvalidateAttributes( ) : void

Validates attributes coming in from XML

Throws
Exception Description
\BuildException
Details
Access
private  
Documentation was generated by DocBlox 0.17.1.