This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Framework/WebBundle/Util/Filesystem.php

257 lines
5.8 KiB
PHP
Raw Normal View History

<?php
namespace Symfony\Framework\WebBundle\Util;
/*
* This file is part of the Symfony framework.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
/**
* Provides basic utility to manipulate the file system.
*
* @package Symfony
* @subpackage Framework_WebBundle
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class Filesystem
{
/**
* Copies a file.
*
* This method only copies the file if the origin file is newer than the target file.
*
2010-04-05 19:28:55 +01:00
* By default, if the target already exists, it is not overridden.
*
* To override existing files, pass the "override" option.
*
* @param string $originFile The original filename
* @param string $targetFile The target filename
* @param array $options An array of options
*/
public function copy($originFile, $targetFile, $options = array())
{
if (!array_key_exists('override', $options))
{
$options['override'] = false;
}
// we create target_dir if needed
if (!is_dir(dirname($targetFile)))
{
$this->mkdirs(dirname($targetFile));
}
$mostRecent = false;
if (file_exists($targetFile))
{
$statTarget = stat($targetFile);
$stat_origin = stat($originFile);
$mostRecent = ($stat_origin['mtime'] > $statTarget['mtime']) ? true : false;
}
if ($options['override'] || !file_exists($targetFile) || $mostRecent)
{
copy($originFile, $targetFile);
}
}
/**
* Creates a directory recursively.
*
* @param string $path The directory path
* @param int $mode The directory mode
*
* @return bool true if the directory has been created, false otherwise
*/
public function mkdirs($path, $mode = 0777)
{
if (is_dir($path))
{
return true;
}
return @mkdir($path, $mode, true);
}
/**
* Creates empty files.
*
* @param mixed $files The filename, or an array of filenames
*/
public function touch($files)
{
if (!is_array($files))
{
$files = array($files);
}
foreach ($files as $file)
{
touch($file);
}
}
/**
* Removes files or directories.
*
* @param mixed $files A filename or an array of files to remove
*/
public function remove($files)
{
if (!is_array($files))
{
$files = array($files);
}
$files = array_reverse($files);
foreach ($files as $file)
{
if (!file_exists($file))
{
continue;
}
if (is_dir($file) && !is_link($file))
{
$fp = opendir($file);
while (false !== $item = readdir($fp))
{
if (!in_array($item, array('.', '..')))
{
$this->remove($file.'/'.$item);
}
}
closedir($fp);
rmdir($file);
}
else
{
unlink($file);
}
}
}
/**
* Change mode for an array of files or directories.
*
* @param array $files An array of files or directories
* @param integer $mode The new mode
* @param integer $umask The mode mask (octal)
*/
public function chmod($files, $mode, $umask = 0000)
{
$currentUmask = umask();
umask($umask);
if (!is_array($files))
{
$files = array($files);
}
foreach ($files as $file)
{
chmod($file, $mode);
}
umask($currentUmask);
}
/**
* Renames a file.
*
* @param string $origin The origin filename
* @param string $target The new filename
2010-04-04 18:11:32 +01:00
*
* @throws \RuntimeException When target file already exists
*/
public function rename($origin, $target)
{
// we check that target does not exist
if (is_readable($target))
{
throw new \RuntimeException(sprintf('Cannot rename because the target "%" already exist.', $target));
}
rename($origin, $target);
}
/**
* Creates a symbolic link or copy a directory.
*
* @param string $originDir The origin directory path
* @param string $targetDir The symbolic link name
* @param bool $copyOnWindows Whether to copy files if on windows
*/
public function symlink($originDir, $targetDir, $copyOnWindows = false)
{
if (!function_exists('symlink') && $copyOnWindows)
{
$this->mirror($originDir, $targetDir);
return;
}
$ok = false;
if (is_link($targetDir))
{
if (readlink($targetDir) != $originDir)
{
unlink($targetDir);
}
else
{
$ok = true;
}
}
if (!$ok)
{
symlink($originDir, $targetDir);
}
}
/**
* Mirrors a directory to another.
*
* @param string $originDir The origin directory
* @param string $targetDir The target directory
* @param Finder $finder An Finder instance
* @param array $options An array of options (see copy())
2010-04-04 18:11:32 +01:00
*
* @throws \RuntimeException When file type is unknown
*/
public function mirror($originDir, $targetDir, $finder = null, $options = array())
{
if (null === $finder)
{
$finder = Finder::type('any');
}
foreach ($finder->relative()->in($originDir) as $file)
{
if (is_dir($originDir.DIRECTORY_SEPARATOR.$file))
{
$this->mkdirs($targetDir.DIRECTORY_SEPARATOR.$file);
}
else if (is_file($originDir.DIRECTORY_SEPARATOR.$file))
{
$this->copy($originDir.DIRECTORY_SEPARATOR.$file, $targetDir.DIRECTORY_SEPARATOR.$file, $options);
}
else if (is_link($originDir.DIRECTORY_SEPARATOR.$file))
{
$this->symlink($originDir.DIRECTORY_SEPARATOR.$file, $targetDir.DIRECTORY_SEPARATOR.$file);
}
else
{
throw new \RuntimeException(sprintf('Unable to guess "%s" file type.', $file));
}
}
}
}