1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
|
<?php
/*
* $Id: 4b5026719e8954f98c4f18c81b69c3c8b04957cb $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information please see
* <http://phing.info>.
*/
require_once "phing/Task.php";
/**
* Generates symlinks based on a target / link combination.
* Can also symlink contents of a directory, individually
*
* Single target symlink example:
* <code>
* <symlink target="/some/shared/file" link="${project.basedir}/htdocs/my_file" />
* </code>
*
* Symlink entire contents of directory
*
* This will go through the contents of "/my/shared/library/*"
* and create a symlink for each entry into ${project.basedir}/library/
* <code>
* <symlink link="${project.basedir}/library">
* <fileset dir="/my/shared/library">
* <include name="*" />
* </fileset>
* </symlink>
* </code>
*
* @author Andrei Serdeliuc <andrei@serdeliuc.ro>
* @extends Task
* @version $ID$
* @package phing.tasks.ext
*/
class SymlinkTask extends Task
{
/**
* What we're symlinking from
*
* (default value: null)
*
* @var string
* @access private
*/
private $_target = null;
/**
* Symlink location
*
* (default value: null)
*
* @var string
* @access private
*/
private $_link = null;
/**
* Collection of filesets
* Used when linking contents of a directory
*
* (default value: array())
*
* @var array
* @access private
*/
private $_filesets = array();
/**
* Whether to override the symlink if it exists but points
* to a different location
*
* (default value: false)
*
* @var boolean
* @access private
*/
private $_overwrite = false;
/**
* setter for _target
*
* @access public
* @param string $target
* @return void
*/
public function setTarget($target)
{
$this->_target = $target;
}
/**
* setter for _link
*
* @access public
* @param string $link
* @return void
*/
public function setLink($link)
{
$this->_link = $link;
}
/**
* creator for _filesets
*
* @access public
* @return FileSet
*/
public function createFileset()
{
$num = array_push($this->_filesets, new FileSet());
return $this->_filesets[$num-1];
}
/**
* setter for _overwrite
*
* @access public
* @param boolean $overwrite
* @return void
*/
public function setOverwrite($overwrite)
{
$this->_overwrite = $overwrite;
}
/**
* getter for _target
*
* @access public
* @return string
*/
public function getTarget()
{
if($this->_target === null) {
throw new BuildException('Target not set');
}
return $this->_target;
}
/**
* getter for _link
*
* @access public
* @return string
*/
public function getLink()
{
if($this->_link === null) {
throw new BuildException('Link not set');
}
return $this->_link;
}
/**
* getter for _filesets
*
* @access public
* @return array
*/
public function getFilesets()
{
return $this->_filesets;
}
/**
* getter for _overwrite
*
* @access public
* @return boolean
*/
public function getOverwrite()
{
return $this->_overwrite;
}
/**
* Generates an array of directories / files to be linked
* If _filesets is empty, returns getTarget()
*
* @access protected
* @return array|string
*/
protected function getMap()
{
$fileSets = $this->getFilesets();
// No filesets set
// We're assuming single file / directory
if(empty($fileSets)) {
return $this->getTarget();
}
$targets = array();
foreach($fileSets as $fs) {
if(!($fs instanceof FileSet)) {
continue;
}
// We need a directory to store the links
if(!is_dir($this->getLink())) {
throw new BuildException('Link must be an existing directory when using fileset');
}
$fromDir = $fs->getDir($this->getProject())->getAbsolutePath();
if(!is_dir($fromDir)) {
$this->log('Directory doesn\'t exist: ' . $fromDir, Project::MSG_WARN);
continue;
}
$fsTargets = array();
$ds = $fs->getDirectoryScanner($this->getProject());
$fsTargets = array_merge(
$fsTargets,
$ds->getIncludedDirectories(),
$ds->getIncludedFiles()
);
// Add each target to the map
foreach($fsTargets as $target) {
if(!empty($target)) {
$targets[$target] = $fromDir . DIRECTORY_SEPARATOR . $target;
}
}
}
return $targets;
}
/**
* Main entry point for task
*
* @access public
* @return bool
*/
public function main()
{
$map = $this->getMap();
// Single file symlink
if(is_string($map)) {
return $this->symlink($map, $this->getLink());
}
// Multiple symlinks
foreach($map as $name => $targetPath) {
$this->symlink($targetPath, $this->getLink() . DIRECTORY_SEPARATOR . $name);
}
return true;
}
/**
* Create the actual link
*
* @access protected
* @param string $target
* @param string $link
* @return bool
*/
protected function symlink($target, $link)
{
$fs = FileSystem::getFileSystem();
if (is_link($link) && readlink($link) == $target) {
$this->log('Link exists: ' . $link, Project::MSG_INFO);
return true;
} elseif (file_exists($link)) {
if (!$this->getOverwrite()) {
$this->log('Not overwriting existing link ' . $link, Project::MSG_ERR);
return false;
}
if (is_link($link) || is_file($link)) {
$fs->unlink($link);
$this->log('Link removed: ' . $link, Project::MSG_INFO);
} else {
$fs->rmdir($link, true);
$this->log('Directory removed: ' . $link, Project::MSG_INFO);
}
}
$this->log('Linking: ' . $target . ' to ' . $link, Project::MSG_INFO);
return $fs->symlink($target, $link);
}
}
|