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
|
<?php
/**
* $Id: 5bcd73085da50e853a3f6dc6317fb2f5ef3c2687 $
*
* 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/tasks/ext/phpdoc/PhpDocumentorTask.php';
/**
* Task to run phpDocumentor with an external process
*
* This classes uses the commandline phpdoc script to build documentation.
* Use this task instead of the PhpDocumentorTask when you've a clash with the
* Smarty libraries.
*
* @author Michiel Rook <mrook@php.net>
* @author Markus Fischer <markus@fischer.name>
* @version $Id: 5bcd73085da50e853a3f6dc6317fb2f5ef3c2687 $
* @package phing.tasks.ext.phpdoc
*/
class PhpDocumentorExternalTask extends PhpDocumentorTask
{
/**
* The path to the executable for phpDocumentor
*/
protected $programPath = 'phpdoc';
protected $sourcepath = NULL;
/**
* @var bool ignore symlinks to other files or directories
*/
protected $ignoresymlinks = false;
/**
* Sets the path to the phpDocumentor executable
*/
public function setProgramPath($programPath)
{
$this->programPath = $programPath;
}
/**
* Returns the path to the phpDocumentor executable
*/
public function getProgramPath()
{
return $this->programPath;
}
/**
* Set the source path. A directory or a comma separate list of directories.
*/
public function setSourcepath($sourcepath)
{
$this->sourcepath = $sourcepath;
}
/**
* Ignore symlinks to other files or directories.
*
* @param bool $bSet
*/
public function setIgnoresymlinks($bSet) {
$this->ignoresymlinks = $bSet;
}
/**
* Main entrypoint of the task
*/
public function main()
{
$this->validate();
$arguments = join(' ', $this->constructArguments());
$this->log("Running phpDocumentor...");
exec($this->programPath . " " . $arguments, $output, $return);
if ($return != 0)
{
throw new BuildException("Could not execute phpDocumentor: " . implode(' ', $output));
}
foreach($output as $line)
{
if(strpos($line, 'ERROR') !== false)
{
$this->log($line, Project::MSG_ERR);
continue;
}
$this->log($line, Project::MSG_VERBOSE);
}
}
/**
* Constructs an argument string for phpDocumentor
* @return array
*/
protected function constructArguments()
{
$aArgs = array();
if ($this->title)
{
$aArgs[] = '--title "' . $this->title . '"';
}
if ($this->destdir)
{
$aArgs[] = '--target "' . $this->destdir->getAbsolutePath() . '"';
}
if ($this->sourcepath)
{
$aArgs[] = '--directory "' . $this->sourcepath . '"';
}
if ($this->output)
{
$aArgs[] = '--output ' . $this->output;
}
if ($this->linksource)
{
$aArgs[] = '--sourcecode on';
}
if ($this->parseprivate)
{
$aArgs[] = '--parseprivate on';
}
if ($this->ignore)
{
$aArgs[] = '--ignore ' . $this->ignore;
}
// append any files in filesets
$filesToParse = array();
foreach($this->filesets as $fs) {
$files = $fs->getDirectoryScanner($this->project)->getIncludedFiles();
foreach($files as $filename) {
$f = new PhingFile($fs->getDir($this->project), $filename);
$filesToParse[] = $f->getAbsolutePath();
}
}
if (count($filesToParse) > 0) {
$aArgs[] = '--filename "' . join(',', $filesToParse) . '"';
}
// append any files in filesets
$ricFiles = array();
foreach($this->projDocFilesets as $fs) {
$files = $fs->getDirectoryScanner($this->project)->getIncludedFiles();
foreach($files as $filename) {
$f = new PhingFile($fs->getDir($this->project), $filename);
$ricFiles[] = $f->getAbsolutePath();
}
}
if (count($ricFiles) > 0) {
$aArgs[] = '--readmeinstallchangelog "' .
join(',', $ricFiles) . '"';
}
if ($this->javadocDesc) {
$aArgs[] = '--javadocdesc on';
}
if ($this->quiet) {
$aArgs[] = '--quiet on';
}
if ($this->packages) {
$aArgs[] = '--packageoutput "' . $this->packages . '"';
}
if ($this->ignoreTags) {
$aArgs[] = '--ignore-tags "' . $this->ignoreTags . '"';
}
if ($this->defaultCategoryName) {
$aArgs[] = '--defaultcategoryname "' . $this->defaultCategoryName .
'"';
}
if ($this->examplesDir) {
$aArgs[] = '--examplesdir "' . $this->examplesDir->getAbsolutePath()
. '"';
}
if ($this->templateBase) {
$aArgs[] = '--templatebase "' . $this->templateBase->getAbsolutePath()
. '"';
}
if ($this->pear) {
$aArgs[] = '--pear on';
}
if ($this->undocumentedelements) {
$aArgs[] = '--undocumentedelements on';
}
if ($this->customtags) {
$aArgs[] = '--customtags "' . $this->customtags . '"';
}
if ($this->ignoresymlinks) {
$aArgs[] = '--ignoresymlinks on';
}
return $aArgs;
}
/**
* Override PhpDocumentorTask::init() because they're specific to the phpdoc
* API which we don't use.
*/
public function init() {
}
/**
* Validates that necessary minimum options have been set. Based on
* PhpDocumentorTask::validate().
*/
protected function validate() {
if (!$this->destdir) {
throw new BuildException("You must specify a destdir for phpdoc.",
$this->getLocation());
}
if (!$this->output) {
throw new BuildException("You must specify an output format for " .
"phpdoc (e.g. HTML:frames:default).", $this->getLocation());
}
if (empty($this->filesets) && !$this->sourcepath) {
throw new BuildException("You have not specified any files to " .
"include (<fileset> or sourcepath attribute) for phpdoc.",
$this->getLocation());
}
if ($this->configdir) {
$this->log('Ignoring unsupported configdir-Attribute',
Project::MSG_VERBOSE);
}
}
};
|