summaryrefslogtreecommitdiff
path: root/buildscripts/phing/classes/phing/util/FileUtils.php
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/phing/classes/phing/util/FileUtils.php')
-rwxr-xr-x[-rw-r--r--]buildscripts/phing/classes/phing/util/FileUtils.php16
1 files changed, 10 insertions, 6 deletions
diff --git a/buildscripts/phing/classes/phing/util/FileUtils.php b/buildscripts/phing/classes/phing/util/FileUtils.php
index 0f5ff19a..c98bbdd3 100644..100755
--- a/buildscripts/phing/classes/phing/util/FileUtils.php
+++ b/buildscripts/phing/classes/phing/util/FileUtils.php
@@ -1,6 +1,6 @@
<?php
/*
- * $Id: FileUtils.php,v 1.10 2005/05/26 13:10:53 mrook Exp $
+ * $Id: fe077b4174763861e773f5e5e55bbfc5030cac4d $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
@@ -33,7 +33,7 @@ include_once 'phing/system/io/PhingFile.php';
* - filter stuff
*
* @package phing.util
- * @version $Revision: 1.10 $
+ * @version $Id$
*/
class FileUtils {
@@ -46,7 +46,7 @@ class FileUtils {
* @param Project $project
* @return Reader Assembled Reader (w/ filter chains).
*/
- function getChainedReader(Reader $in, &$filterChains, Project $project) {
+ public static function getChainedReader(Reader $in, &$filterChains, Project $project) {
if (!empty($filterChains)) {
$crh = new ChainReaderHelper();
$crh->setBufferSize(65536); // 64k buffer, but isn't being used (yet?)
@@ -69,9 +69,10 @@ class FileUtils {
* @param boolean $preserveLastModified
* @param array $filterChains
* @param Project $project
+ * @param integer $mode
* @return void
*/
- function copyFile(PhingFile $sourceFile, PhingFile $destFile, $overwrite = false, $preserveLastModified = true, &$filterChains = null, Project $project) {
+ function copyFile(PhingFile $sourceFile, PhingFile $destFile, $overwrite = false, $preserveLastModified = true, &$filterChains = null, Project $project, $mode = 0755) {
if ($overwrite || !$destFile->exists() || $destFile->lastModified() < $sourceFile->lastModified()) {
if ($destFile->exists() && $destFile->isFile()) {
@@ -81,7 +82,7 @@ class FileUtils {
// ensure that parent dir of dest file exists!
$parent = $destFile->getParentFile();
if ($parent !== null && !$parent->exists()) {
- $parent->mkdirs();
+ $parent->mkdirs($mode);
}
if ((is_array($filterChains)) && (!empty($filterChains))) {
@@ -98,6 +99,9 @@ class FileUtils {
$in->close();
if ( $out !== null )
$out->close();
+
+ $destFile->setMode($sourceFile->getMode());
+
} else {
// simple copy (no filtering)
$sourceFile->copyTo($destFile);
@@ -291,4 +295,4 @@ class FileUtils {
}
}
-?>
+