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 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
|
<?php
/*
* $Id: Phing.php 639 2009-12-03 18:58:51Z mrook $
*
* 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/Project.php';
require_once 'phing/ProjectComponent.php';
require_once 'phing/Target.php';
require_once 'phing/Task.php';
include_once 'phing/BuildException.php';
include_once 'phing/ConfigurationException.php';
include_once 'phing/BuildEvent.php';
include_once 'phing/parser/Location.php';
include_once 'phing/parser/ExpatParser.php';
include_once 'phing/parser/AbstractHandler.php';
include_once 'phing/parser/ProjectConfigurator.php';
include_once 'phing/parser/RootHandler.php';
include_once 'phing/parser/ProjectHandler.php';
include_once 'phing/parser/TaskHandler.php';
include_once 'phing/parser/TargetHandler.php';
include_once 'phing/parser/DataTypeHandler.php';
include_once 'phing/parser/NestedElementHandler.php';
include_once 'phing/system/util/Properties.php';
include_once 'phing/util/StringHelper.php';
include_once 'phing/system/io/PhingFile.php';
include_once 'phing/system/io/OutputStream.php';
include_once 'phing/system/io/FileOutputStream.php';
include_once 'phing/system/io/FileReader.php';
include_once 'phing/system/util/Register.php';
/**
* Entry point into Phing. This class handles the full lifecycle of a build -- from
* parsing & handling commandline arguments to assembling the project to shutting down
* and cleaning up in the end.
*
* If you are invoking Phing from an external application, this is still
* the class to use. Your applicaiton can invoke the start() method, passing
* any commandline arguments or additional properties.
*
* @author Andreas Aderhold <andi@binarycloud.com>
* @author Hans Lellelid <hans@xmpl.org>
* @version $Revision: 639 $
* @package phing
*/
class Phing {
/** The default build file name */
const DEFAULT_BUILD_FILENAME = "build.xml";
/** Our current message output status. Follows Project::MSG_XXX */
private static $msgOutputLevel = Project::MSG_INFO;
/** PhingFile that we are using for configuration */
private $buildFile = null;
/** The build targets */
private $targets = array();
/**
* Set of properties that are passed in from commandline or invoking code.
* @var Properties
*/
private static $definedProps;
/** Names of classes to add as listeners to project */
private $listeners = array();
private $loggerClassname = null;
/** The class to handle input (can be only one). */
private $inputHandlerClassname;
/** Indicates if this phing should be run */
private $readyToRun = false;
/** Indicates we should only parse and display the project help information */
private $projectHelp = false;
/** Used by utility function getResourcePath() */
private static $importPaths;
/** System-wide static properties (moved from System) */
private static $properties = array();
/** Static system timer. */
private static $timer;
/** The current Project */
private static $currentProject;
/** Whether to capture PHP errors to buffer. */
private static $phpErrorCapture = false;
/** Array of captured PHP errors */
private static $capturedPhpErrors = array();
/**
* @var OUtputStream Stream for standard output.
*/
private static $out;
/**
* @var OutputStream Stream for error output.
*/
private static $err;
/**
* @var boolean Whether we are using a logfile.
*/
private static $isLogFileUsed = false;
/**
* Array to hold original ini settings that Phing changes (and needs
* to restore in restoreIni() method).
*
* @var array Struct of array(setting-name => setting-value)
* @see restoreIni()
*/
private static $origIniSettings = array();
/**
* Entry point allowing for more options from other front ends.
*
* This method encapsulates the complete build lifecycle.
*
* @param array $args The commandline args passed to phing shell script.
* @param array $additionalUserProperties Any additional properties to be passed to Phing (alternative front-end might implement this).
* These additional properties will be available using the getDefinedProperty() method and will
* be added to the project's "user" properties
* @see execute()
* @see runBuild()
* @throws Exception - if there is an error during build
*/
public static function start($args, array $additionalUserProperties = null) {
try {
$m = new Phing();
$m->execute($args);
} catch (Exception $exc) {
self::handleLogfile();
throw $exc;
}
if ($additionalUserProperties !== null) {
foreach($additionalUserProperties as $key => $value) {
$m->setDefinedProperty($key, $value);
}
}
try {
$m->runBuild();
} catch(Exception $exc) {
self::handleLogfile();
throw $exc;
}
// everything fine, shutdown
self::handleLogfile();
}
/**
* Prints the message of the Exception if it's not null.
* @param Exception $t
*/
public static function printMessage(Exception $t) {
if (self::$err === null) { // Make sure our error output is initialized
self::initializeOutputStreams();
}
if (self::getMsgOutputLevel() >= Project::MSG_VERBOSE) {
self::$err->write($t->__toString() . PHP_EOL);
} else {
self::$err->write($t->getMessage() . PHP_EOL);
}
}
/**
* Sets the stdout and stderr streams if they are not already set.
*/
private static function initializeOutputStreams() {
if (self::$out === null) {
self::$out = new OutputStream(fopen("php://stdout", "w"));
}
if (self::$err === null) {
self::$err = new OutputStream(fopen("php://stderr", "w"));
}
}
/**
* Sets the stream to use for standard (non-error) output.
* @param OutputStream $stream The stream to use for standard output.
*/
public static function setOutputStream(OutputStream $stream) {
self::$out = $stream;
}
/**
* Gets the stream to use for standard (non-error) output.
* @return OutputStream
*/
public static function getOutputStream() {
return self::$out;
}
/**
* Sets the stream to use for error output.
* @param OutputStream $stream The stream to use for error output.
*/
public static function setErrorStream(OutputStream $stream) {
self::$err = $stream;
}
/**
* Gets the stream to use for error output.
* @return OutputStream
*/
public static function getErrorStream() {
return self::$err;
}
/**
* Close logfiles, if we have been writing to them.
*
* @since Phing 2.3.0
*/
private static function handleLogfile() {
if (self::$isLogFileUsed) {
self::$err->close();
self::$out->close();
}
}
/**
* Making output level a static property so that this property
* can be accessed by other parts of the system, enabling
* us to display more information -- e.g. backtraces -- for "debug" level.
* @return int
*/
public static function getMsgOutputLevel() {
return self::$msgOutputLevel;
}
/**
* Command line entry point. This method kicks off the building
* of a project object and executes a build using either a given
* target or the default target.
*
* @param array $args Command line args.
* @return void
*/
public static function fire($args) {
self::start($args, null);
}
/**
* Setup/initialize Phing environment from commandline args.
* @param array $args commandline args passed to phing shell.
* @return void
*/
public function execute($args) {
self::$definedProps = new Properties();
$this->searchForThis = null;
// 1) First handle any options which should always
// Note: The order in which these are executed is important (if multiple of these options are specified)
if (in_array('-help', $args) || in_array('-h', $args)) {
$this->printUsage();
return;
}
if (in_array('-version', $args) || in_array('-v', $args)) {
$this->printVersion();
return;
}
// 2) Next pull out stand-alone args.
// Note: The order in which these are executed is important (if multiple of these options are specified)
if (false !== ($key = array_search('-quiet', $args, true))) {
self::$msgOutputLevel = Project::MSG_WARN;
unset($args[$key]);
}
if (false !== ($key = array_search('-verbose', $args, true))) {
self::$msgOutputLevel = Project::MSG_VERBOSE;
unset($args[$key]);
}
if (false !== ($key = array_search('-debug', $args, true))) {
self::$msgOutputLevel = Project::MSG_DEBUG;
unset($args[$key]);
}
// 3) Finally, cycle through to parse remaining args
//
$keys = array_keys($args); // Use keys and iterate to max(keys) since there may be some gaps
$max = $keys ? max($keys) : -1;
for($i=0; $i <= $max; $i++) {
if (!array_key_exists($i, $args)) {
// skip this argument, since it must have been removed above.
continue;
}
$arg = $args[$i];
if ($arg == "-logfile") {
try {
// see: http://phing.info/trac/ticket/65
if (!isset($args[$i+1])) {
$msg = "You must specify a log file when using the -logfile argument\n";
throw new ConfigurationException($msg);
} else {
$logFile = new PhingFile($args[++$i]);
$out = new FileOutputStream($logFile); // overwrite
self::setOutputStream($out);
self::setErrorStream($out);
self::$isLogFileUsed = true;
}
} catch (IOException $ioe) {
$msg = "Cannot write on the specified log file. Make sure the path exists and you have write permissions.";
throw new ConfigurationException($msg, $ioe);
}
} elseif ($arg == "-buildfile" || $arg == "-file" || $arg == "-f") {
if (!isset($args[$i+1])) {
$msg = "You must specify a buildfile when using the -buildfile argument.";
throw new ConfigurationException($msg);
} else {
$this->buildFile = new PhingFile($args[++$i]);
}
} elseif ($arg == "-listener") {
if (!isset($args[$i+1])) {
$msg = "You must specify a listener class when using the -listener argument";
throw new ConfigurationException($msg);
} else {
$this->listeners[] = $args[++$i];
}
} elseif (StringHelper::startsWith("-D", $arg)) {
$name = substr($arg, 2);
$value = null;
$posEq = strpos($name, "=");
if ($posEq !== false) {
$value = substr($name, $posEq+1);
$name = substr($name, 0, $posEq);
} elseif ($i < count($args)-1) {
$value = $args[++$i];
}
self::$definedProps->setProperty($name, $value);
} elseif ($arg == "-logger") {
if (!isset($args[$i+1])) {
$msg = "You must specify a classname when using the -logger argument";
throw new ConfigurationException($msg);
} else {
$this->loggerClassname = $args[++$i];
}
} elseif ($arg == "-inputhandler") {
if ($this->inputHandlerClassname !== null) {
throw new ConfigurationException("Only one input handler class may be specified.");
}
if (!isset($args[$i+1])) {
$msg = "You must specify a classname when using the -inputhandler argument";
throw new ConfigurationException($msg);
} else {
$this->inputHandlerClassname = $args[++$i];
}
} elseif ($arg == "-longtargets") {
self::$definedProps->setProperty('phing.showlongtargets', 1);
} elseif ($arg == "-projecthelp" || $arg == "-targets" || $arg == "-list" || $arg == "-l" || $arg == "-p") {
// set the flag to display the targets and quit
$this->projectHelp = true;
} elseif ($arg == "-find") {
// eat up next arg if present, default to build.xml
if ($i < count($args)-1) {
$this->searchForThis = $args[++$i];
} else {
$this->searchForThis = self::DEFAULT_BUILD_FILENAME;
}
} elseif (substr($arg,0,1) == "-") {
// we don't have any more args
self::$err->write("Unknown argument: $arg" . PHP_EOL);
self::printUsage();
return;
} else {
// if it's no other arg, it may be the target
array_push($this->targets, $arg);
}
}
// if buildFile was not specified on the command line,
if ($this->buildFile === null) {
// but -find then search for it
if ($this->searchForThis !== null) {
$this->buildFile = $this->_findBuildFile(self::getProperty("user.dir"), $this->searchForThis);
} else {
$this->buildFile = new PhingFile(self::DEFAULT_BUILD_FILENAME);
}
}
// make sure buildfile exists
if (!$this->buildFile->exists()) {
throw new ConfigurationException("Buildfile: " . $this->buildFile->__toString() . " does not exist!");
}
// make sure it's not a directory
if ($this->buildFile->isDirectory()) {
throw new ConfigurationException("Buildfile: " . $this->buildFile->__toString() . " is a dir!");
}
$this->readyToRun = true;
}
/**
* Helper to get the parent file for a given file.
*
* @param PhingFile $file
* @return PhingFile Parent file or null if none
*/
private function _getParentFile(PhingFile $file) {
$filename = $file->getAbsolutePath();
$file = new PhingFile($filename);
$filename = $file->getParent();
return ($filename === null) ? null : new PhingFile($filename);
}
/**
* Search parent directories for the build file.
*
* Takes the given target as a suffix to append to each
* parent directory in search of a build file. Once the
* root of the file-system has been reached an exception
* is thrown.
*
* @param string $start Start file path.
* @param string $suffix Suffix filename to look for in parents.
* @return PhingFile A handle to the build file
*
* @throws BuildException Failed to locate a build file
*/
private function _findBuildFile($start, $suffix) {
$startf = new PhingFile($start);
$parent = new PhingFile($startf->getAbsolutePath());
$file = new PhingFile($parent, $suffix);
// check if the target file exists in the current directory
while (!$file->exists()) {
// change to parent directory
$parent = $this->_getParentFile($parent);
// if parent is null, then we are at the root of the fs,
// complain that we can't find the build file.
if ($parent === null) {
throw new ConfigurationException("Could not locate a build file!");
}
// refresh our file handle
$file = new PhingFile($parent, $suffix);
}
return $file;
}
/**
* Executes the build.
* @return void
*/
function runBuild() {
if (!$this->readyToRun) {
return;
}
$project = new Project();
self::setCurrentProject($project);
set_error_handler(array('Phing', 'handlePhpError'));
$error = null;
$this->addBuildListeners($project);
$this->addInputHandler($project);
// set this right away, so that it can be used in logging.
$project->setUserProperty("phing.file", $this->buildFile->getAbsolutePath());
try {
$project->fireBuildStarted();
$project->init();
} catch (Exception $exc) {
$project->fireBuildFinished($exc);
throw $exc;
}
$project->setUserProperty("phing.version", $this->getPhingVersion());
$e = self::$definedProps->keys();
while (count($e)) {
$arg = (string) array_shift($e);
$value = (string) self::$definedProps->getProperty($arg);
$project->setUserProperty($arg, $value);
}
unset($e);
$project->setUserProperty("phing.file", $this->buildFile->getAbsolutePath());
// first use the Configurator to create the project object
// from the given build file.
try {
ProjectConfigurator::configureProject($project, $this->buildFile);
} catch (Exception $exc) {
$project->fireBuildFinished($exc);
restore_error_handler();
self::unsetCurrentProject();
throw $exc;
}
// make sure that we have a target to execute
if (count($this->targets) === 0) {
$this->targets[] = $project->getDefaultTarget();
}
// execute targets if help param was not given
if (!$this->projectHelp) {
try {
$project->executeTargets($this->targets);
} catch (Exception $exc) {
$project->fireBuildFinished($exc);
restore_error_handler();
self::unsetCurrentProject();
throw $exc;
}
}
// if help is requested print it
if ($this->projectHelp) {
try {
$this->printDescription($project);
$this->printTargets($project);
} catch (Exception $exc) {
$project->fireBuildFinished($exc);
restore_error_handler();
self::unsetCurrentProject();
throw $exc;
}
}
// finally {
if (!$this->projectHelp) {
$project->fireBuildFinished(null);
}
restore_error_handler();
self::unsetCurrentProject();
}
/**
* Bind any registered build listeners to this project.
*
* This means adding the logger and any build listeners that were specified
* with -listener arg.
*
* @param Project $project
* @return void
*/
private function addBuildListeners(Project $project) {
// Add the default listener
$project->addBuildListener($this->createLogger());
foreach($this->listeners as $listenerClassname) {
try {
$clz = Phing::import($listenerClassname);
} catch (Exception $x) {
$msg = "Unable to instantiate specified listener "
. "class " . $listenerClassname . " : "
. $e->getMessage();
throw new ConfigurationException($msg);
}
$listener = new $clz();
if ($listener instanceof StreamRequiredBuildLogger) {
throw new ConfigurationException("Unable to add " . $listenerClassname . " as a listener, since it requires explicit error/output streams. (You can specify it as a -logger.)");
}
$project->addBuildListener($listener);
}
}
/**
* Creates the InputHandler and adds it to the project.
*
* @param Project $project the project instance.
*
* @throws BuildException if a specified InputHandler
* class could not be loaded.
*/
private function addInputHandler(Project $project) {
if ($this->inputHandlerClassname === null) {
$handler = new DefaultInputHandler();
} else {
try {
$clz = Phing::import($this->inputHandlerClassname);
$handler = new $clz();
if ($project !== null && method_exists($handler, 'setProject')) {
$handler->setProject($project);
}
} catch (Exception $e) {
$msg = "Unable to instantiate specified input handler "
. "class " . $this->inputHandlerClassname . " : "
. $e->getMessage();
throw new ConfigurationException($msg);
}
}
$project->setInputHandler($handler);
}
/**
* Creates the default build logger for sending build events to the log.
* @return BuildLogger The created Logger
*/
private function createLogger() {
if ($this->loggerClassname !== null) {
self::import($this->loggerClassname);
// get class name part
$classname = self::import($this->loggerClassname);
$logger = new $classname;
if (!($logger instanceof BuildLogger)) {
throw new BuildException($classname . ' does not implement the BuildLogger interface.');
}
} else {
require_once 'phing/listener/DefaultLogger.php';
$logger = new DefaultLogger();
}
$logger->setMessageOutputLevel(self::$msgOutputLevel);
$logger->setOutputStream(self::$out);
$logger->setErrorStream(self::$err);
return $logger;
}
/**
* Sets the current Project
* @param Project $p
*/
public static function setCurrentProject($p) {
self::$currentProject = $p;
}
/**
* Unsets the current Project
*/
public static function unsetCurrentProject() {
self::$currentProject = null;
}
/**
* Gets the current Project.
* @return Project Current Project or NULL if none is set yet/still.
*/
public static function getCurrentProject() {
return self::$currentProject;
}
/**
* A static convenience method to send a log to the current (last-setup) Project.
* If there is no currently-configured Project, then this will do nothing.
* @param string $message
* @param int $priority Project::MSG_INFO, etc.
*/
public static function log($message, $priority = Project::MSG_INFO) {
$p = self::getCurrentProject();
if ($p) {
$p->log($message, $priority);
}
}
/**
* Error handler for PHP errors encountered during the build.
* This uses the logging for the currently configured project.
*/
public static function handlePhpError($level, $message, $file, $line) {
// don't want to print supressed errors
if (error_reporting() > 0) {
if (self::$phpErrorCapture) {
self::$capturedPhpErrors[] = array('message' => $message, 'level' => $level, 'line' => $line, 'file' => $file);
} else {
$message = '[PHP Error] ' . $message;
$message .= ' [line ' . $line . ' of ' . $file . ']';
switch ($level) {
case 16384: // E_USER_DEPRECATED
case 8192: // E_DEPRECATED
case E_STRICT:
case E_NOTICE:
case E_USER_NOTICE:
self::log($message, Project::MSG_VERBOSE);
break;
case E_WARNING:
case E_USER_WARNING:
self::log($message, Project::MSG_WARN);
break;
case E_ERROR:
case E_USER_ERROR:
default:
self::log($message, Project::MSG_ERR);
} // switch
} // if phpErrorCapture
} // if not @
}
/**
* Begins capturing PHP errors to a buffer.
* While errors are being captured, they are not logged.
*/
public static function startPhpErrorCapture() {
self::$phpErrorCapture = true;
self::$capturedPhpErrors = array();
}
/**
* Stops capturing PHP errors to a buffer.
* The errors will once again be logged after calling this method.
*/
public static function stopPhpErrorCapture() {
self::$phpErrorCapture = false;
}
/**
* Clears the captured errors without affecting the starting/stopping of the capture.
*/
public static function clearCapturedPhpErrors() {
self::$capturedPhpErrors = array();
}
/**
* Gets any PHP errors that were captured to buffer.
* @return array array('message' => message, 'line' => line number, 'file' => file name, 'level' => error level)
*/
public static function getCapturedPhpErrors() {
return self::$capturedPhpErrors;
}
/** Prints the usage of how to use this class */
public static function printUsage() {
$msg = "";
$msg .= "phing [options] [target [target2 [target3] ...]]" . PHP_EOL;
$msg .= "Options: " . PHP_EOL;
$msg .= " -h -help print this message" . PHP_EOL;
$msg .= " -l -list list available targets in this project" . PHP_EOL;
$msg .= " -v -version print the version information and exit" . PHP_EOL;
$msg .= " -q -quiet be extra quiet" . PHP_EOL;
$msg .= " -verbose be extra verbose" . PHP_EOL;
$msg .= " -debug print debugging information" . PHP_EOL;
$msg .= " -longtargets show target descriptions during build" . PHP_EOL;
$msg .= " -logfile <file> use given file for log" . PHP_EOL;
$msg .= " -logger <classname> the class which is to perform logging" . PHP_EOL;
$msg .= " -f -buildfile <file> use given buildfile" . PHP_EOL;
$msg .= " -D<property>=<value> use value for given property" . PHP_EOL;
$msg .= " -find <file> search for buildfile towards the root of the" . PHP_EOL;
$msg .= " filesystem and use it" . PHP_EOL;
$msg .= " -inputhandler <file> the class to use to handle user input" . PHP_EOL;
//$msg .= " -recursive <file> search for buildfile downwards and use it" . PHP_EOL;
$msg .= PHP_EOL;
$msg .= "Report bugs to <dev@phing.tigris.org>".PHP_EOL;
self::$err->write($msg);
}
/**
* Prints the current Phing version.
*/
public static function printVersion() {
self::$out->write(self::getPhingVersion().PHP_EOL);
}
/**
* Gets the current Phing version based on VERSION.TXT file.
* @return string
* @throws BuildException - if unable to find version file.
*/
public static function getPhingVersion() {
$versionPath = self::getResourcePath("phing/etc/VERSION.TXT");
if ($versionPath === null) {
$versionPath = self::getResourcePath("etc/VERSION.TXT");
}
if ($versionPath === null) {
throw new ConfigurationException("No VERSION.TXT file found; try setting phing.home environment variable.");
}
try { // try to read file
$buffer = null;
$file = new PhingFile($versionPath);
$reader = new FileReader($file);
$reader->readInto($buffer);
$buffer = trim($buffer);
//$buffer = "PHING version 1.0, Released 2002-??-??";
$phingVersion = $buffer;
} catch (IOException $iox) {
throw new ConfigurationException("Can't read version information file");
}
return $phingVersion;
}
/**
* Print the project description, if any
*/
public static function printDescription(Project $project) {
if ($project->getDescription() !== null) {
self::$out->write($project->getDescription() . PHP_EOL);
}
}
/** Print out a list of all targets in the current buildfile */
function printTargets($project) {
// find the target with the longest name
$maxLength = 0;
$targets = $project->getTargets();
$targetNames = array_keys($targets);
$targetName = null;
$targetDescription = null;
$currentTarget = null;
// split the targets in top-level and sub-targets depending
// on the presence of a description
$subNames = array();
$topNameDescMap = array();
foreach($targets as $currentTarget) {
$targetName = $currentTarget->getName();
$targetDescription = $currentTarget->getDescription();
// subtargets are targets w/o descriptions
if ($targetDescription === null) {
$subNames[] = $targetName;
} else {
// topNames and topDescriptions are handled later
// here we store in hash map (for sorting purposes)
$topNameDescMap[$targetName] = $targetDescription;
if (strlen($targetName) > $maxLength) {
$maxLength = strlen($targetName);
}
}
}
// Sort the arrays
sort($subNames); // sort array values, resetting keys (which are numeric)
ksort($topNameDescMap); // sort the keys (targetName) keeping key=>val associations
$topNames = array_keys($topNameDescMap);
$topDescriptions = array_values($topNameDescMap);
$defaultTarget = $project->getDefaultTarget();
if ($defaultTarget !== null && $defaultTarget !== "") {
$defaultName = array();
$defaultDesc = array();
$defaultName[] = $defaultTarget;
$indexOfDefDesc = array_search($defaultTarget, $topNames, true);
if ($indexOfDefDesc !== false && $indexOfDefDesc >= 0) {
$defaultDesc = array();
$defaultDesc[] = $topDescriptions[$indexOfDefDesc];
}
$this->_printTargets($defaultName, $defaultDesc, "Default target:", $maxLength);
}
$this->_printTargets($topNames, $topDescriptions, "Main targets:", $maxLength);
$this->_printTargets($subNames, null, "Subtargets:", 0);
}
/**
* Writes a formatted list of target names with an optional description.
*
* @param array $names The names to be printed.
* Must not be <code>null</code>.
* @param array $descriptions The associated target descriptions.
* May be <code>null</code>, in which case
* no descriptions are displayed.
* If non-<code>null</code>, this should have
* as many elements as <code>names</code>.
* @param string $heading The heading to display.
* Should not be <code>null</code>.
* @param int $maxlen The maximum length of the names of the targets.
* If descriptions are given, they are padded to this
* position so they line up (so long as the names really
* <i>are</i> shorter than this).
*/
private function _printTargets($names, $descriptions, $heading, $maxlen) {
$spaces = ' ';
while (strlen($spaces) < $maxlen) {
$spaces .= $spaces;
}
$msg = "";
$msg .= $heading . PHP_EOL;
$msg .= str_repeat("-",79) . PHP_EOL;
$total = count($names);
for($i=0; $i < $total; $i++) {
$msg .= " ";
$msg .= $names[$i];
if (!empty($descriptions)) {
$msg .= substr($spaces, 0, $maxlen - strlen($names[$i]) + 2);
$msg .= $descriptions[$i];
}
$msg .= PHP_EOL;
}
if ($total > 0) {
self::$out->write($msg . PHP_EOL);
}
}
/**
* Import a dot-path notation class path.
* @param string $dotPath
* @param mixed $classpath String or object supporting __toString()
* @return string The unqualified classname (which can be instantiated).
* @throws BuildException - if cannot find the specified file
*/
public static function import($dotPath, $classpath = null) {
/// check if this is a PEAR-style path (@see http://pear.php.net/manual/en/standards.naming.php)
if (strpos($dotPath, '.') === false && strpos($dotPath, '_') !== false) {
$classname = $dotPath;
$dotPath = str_replace('_', '.', $dotPath);
} else {
$classname = StringHelper::unqualify($dotPath);
}
// first check to see that the class specified hasn't already been included.
// (this also handles case where this method is called w/ a classname rather than dotpath)
if (class_exists($classname, false)) {
return $classname;
}
$dotClassname = basename($dotPath);
$dotClassnamePos = strlen($dotPath) - strlen($dotClassname);
// 1- temporarily replace escaped '.' with another illegal char (#)
$tmp = str_replace('\.', '##', $dotClassname);
// 2- swap out the remaining '.' with DIR_SEP
$tmp = strtr($tmp, '.', DIRECTORY_SEPARATOR);
// 3- swap back the escaped '.'
$tmp = str_replace('##', '.', $tmp);
$classFile = $tmp . ".php";
$path = substr_replace($dotPath, $classFile, $dotClassnamePos);
Phing::__import($path, $classpath);
return $classname;
}
/**
* Import a PHP file
* @param string $path Path to the PHP file
* @param mixed $classpath String or object supporting __toString()
* @throws BuildException - if cannot find the specified file
*/
public static function __import($path, $classpath = null) {
if ($classpath) {
// Apparently casting to (string) no longer invokes __toString() automatically.
if (is_object($classpath)) {
$classpath = $classpath->__toString();
}
// classpaths are currently additive, but we also don't want to just
// indiscriminantly prepand/append stuff to the include_path. This means
// we need to parse current incldue_path, and prepend any
// specified classpath locations that are not already in the include_path.
//
// NOTE: the reason why we do it this way instead of just changing include_path
// and then changing it back, is that in many cases applications (e.g. Propel) will
// include/require class files from within method calls. This means that not all
// necessary files will be included in this import() call, and hence we can't
// change the include_path back without breaking those apps. While this method could
// be more expensive than switching & switching back (not sure, but maybe), it makes it
// possible to write far less expensive run-time applications (e.g. using Propel), which is
// really where speed matters more.
$curr_parts = explode(PATH_SEPARATOR, get_include_path());
$add_parts = explode(PATH_SEPARATOR, $classpath);
$new_parts = array_diff($add_parts, $curr_parts);
if ($new_parts) {
set_include_path(implode(PATH_SEPARATOR, array_merge($new_parts, $curr_parts)));
}
}
$ret = include_once($path);
if ($ret === false) {
$msg = "Error importing $path";
if (self::getMsgOutputLevel() >= Project::MSG_DEBUG) {
$x = new Exception("for-path-trace-only");
$msg .= $x->getTraceAsString();
}
throw new ConfigurationException($msg);
}
}
/**
* Looks on include path for specified file.
* @return string File found (null if no file found).
*/
public static function getResourcePath($path) {
if (self::$importPaths === null) {
$paths = get_include_path();
self::$importPaths = explode(PATH_SEPARATOR, ini_get("include_path"));
}
$path = str_replace('\\', DIRECTORY_SEPARATOR, $path);
$path = str_replace('/', DIRECTORY_SEPARATOR, $path);
foreach (self::$importPaths as $prefix) {
$testPath = $prefix . DIRECTORY_SEPARATOR . $path;
if (file_exists($testPath)) {
return $testPath;
}
}
// Check for the property phing.home
$homeDir = self::getProperty('phing.home');
if ($homeDir) {
$testPath = $homeDir . DIRECTORY_SEPARATOR . $path;
if (file_exists($testPath)) {
return $testPath;
}
}
// If we are using this via PEAR then check for the file in the data dir
// This is a bit of a hack, but works better than previous solution of assuming
// data_dir is on the include_path.
$dataDir = '@DATA-DIR@';
if ($dataDir{0} != '@') { // if we're using PEAR then the @ DATA-DIR @ token will have been substituted.
$testPath = $dataDir . DIRECTORY_SEPARATOR . $path;
if (file_exists($testPath)) {
return $testPath;
}
} else {
// We're not using PEAR, so do one additional check based on path of
// current file (Phing.php)
$maybeHomeDir = realpath(dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..');
$testPath = $maybeHomeDir . DIRECTORY_SEPARATOR . $path;
if (file_exists($testPath)) {
return $testPath;
}
}
return null;
}
// -------------------------------------------------------------------------------------------
// System-wide methods (moved from System class, which had namespace conflicts w/ PEAR System)
// -------------------------------------------------------------------------------------------
/**
* Set System constants which can be retrieved by calling Phing::getProperty($propName).
* @return void
*/
private static function setSystemConstants() {
/*
* PHP_OS returns on
* WindowsNT4.0sp6 => WINNT
* Windows2000 => WINNT
* Windows ME => WIN32
* Windows 98SE => WIN32
* FreeBSD 4.5p7 => FreeBSD
* Redhat Linux => Linux
* Mac OS X => Darwin
*/
self::setProperty('host.os', PHP_OS);
// this is used by some tasks too
self::setProperty('os.name', PHP_OS);
// it's still possible this won't be defined,
// e.g. if Phing is being included in another app w/o
// using the phing.php script.
if (!defined('PHP_CLASSPATH')) {
define('PHP_CLASSPATH', get_include_path());
}
self::setProperty('php.classpath', PHP_CLASSPATH);
// try to determine the host filesystem and set system property
// used by Fileself::getFileSystem to instantiate the correct
// abstraction layer
switch (strtoupper(PHP_OS)) {
case 'WINNT':
self::setProperty('host.fstype', 'WINNT');
self::setProperty('php.interpreter', getenv('PHP_COMMAND'));
break;
case 'WIN32':
self::setProperty('host.fstype', 'WIN32');
break;
default:
self::setProperty('host.fstype', 'UNIX');
break;
}
self::setProperty('line.separator', PHP_EOL);
self::setProperty('php.version', PHP_VERSION);
self::setProperty('user.home', getenv('HOME'));
self::setProperty('application.startdir', getcwd());
self::setProperty('phing.startTime', gmdate('D, d M Y H:i:s', time()) . ' GMT');
// try to detect machine dependent information
$sysInfo = array();
if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN' && function_exists("posix_uname")) {
$sysInfo = posix_uname();
} else {
$sysInfo['nodename'] = php_uname('n');
$sysInfo['machine']= php_uname('m') ;
//this is a not so ideal substition, but maybe better than nothing
$sysInfo['domain'] = isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : "unknown";
$sysInfo['release'] = php_uname('r');
$sysInfo['version'] = php_uname('v');
}
self::setProperty("host.name", isset($sysInfo['nodename']) ? $sysInfo['nodename'] : "unknown");
self::setProperty("host.arch", isset($sysInfo['machine']) ? $sysInfo['machine'] : "unknown");
self::setProperty("host.domain",isset($sysInfo['domain']) ? $sysInfo['domain'] : "unknown");
self::setProperty("host.os.release", isset($sysInfo['release']) ? $sysInfo['release'] : "unknown");
self::setProperty("host.os.version", isset($sysInfo['version']) ? $sysInfo['version'] : "unknown");
unset($sysInfo);
}
/**
* This gets a property that was set via command line or otherwise passed into Phing.
* "Defined" in this case means "externally defined". The reason this method exists is to
* provide a public means of accessing commandline properties for (e.g.) logger or listener
* scripts. E.g. to specify which logfile to use, PearLogger needs to be able to access
* the pear.log.name property.
*
* @param string $name
* @return string value of found property (or null, if none found).
*/
public static function getDefinedProperty($name) {
return self::$definedProps->getProperty($name);
}
/**
* This sets a property that was set via command line or otherwise passed into Phing.
*
* @param string $name
* @return string value of found property (or null, if none found).
*/
public static function setDefinedProperty($name, $value) {
return self::$definedProps->setProperty($name, $value);
}
/**
* Returns property value for a System property.
* System properties are "global" properties like application.startdir,
* and user.dir. Many of these correspond to similar properties in Java
* or Ant.
*
* @param string $paramName
* @return string Value of found property (or null, if none found).
*/
public static function getProperty($propName) {
// some properties are detemined on each access
// some are cached, see below
// default is the cached value:
$val = isset(self::$properties[$propName]) ? self::$properties[$propName] : null;
// special exceptions
switch($propName) {
case 'user.dir':
$val = getcwd();
break;
}
return $val;
}
/** Retuns reference to all properties*/
public static function &getProperties() {
return self::$properties;
}
public static function setProperty($propName, $propValue) {
$propName = (string) $propName;
$oldValue = self::getProperty($propName);
self::$properties[$propName] = $propValue;
return $oldValue;
}
public static function currentTimeMillis() {
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec);
}
/**
* Sets the include path to PHP_CLASSPATH constant (if this has been defined).
* @return void
* @throws ConfigurationException - if the include_path could not be set (for some bizarre reason)
*/
private static function setIncludePaths() {
if (defined('PHP_CLASSPATH')) {
$result = set_include_path(PHP_CLASSPATH);
if ($result === false) {
throw new ConfigurationException("Could not set PHP include_path.");
}
self::$origIniSettings['include_path'] = $result; // save original value for setting back later
}
}
/**
* Sets PHP INI values that Phing needs.
* @return void
*/
private static function setIni() {
self::$origIniSettings['error_reporting'] = error_reporting(E_ALL);
// We won't bother storing original max_execution_time, since 1) the value in
// php.ini may be wrong (and there's no way to get the current value) and
// 2) it would mean something very strange to set it to a value less than time script
// has already been running, which would be the likely change.
set_time_limit(0);
self::$origIniSettings['magic_quotes_gpc'] = ini_set('magic_quotes_gpc', 'off');
self::$origIniSettings['short_open_tag'] = ini_set('short_open_tag', 'off');
self::$origIniSettings['default_charset'] = ini_set('default_charset', 'iso-8859-1');
self::$origIniSettings['register_globals'] = ini_set('register_globals', 'off');
self::$origIniSettings['allow_call_time_pass_reference'] = ini_set('allow_call_time_pass_reference', 'on');
self::$origIniSettings['track_errors'] = ini_set('track_errors', 1);
// should return memory limit in MB
$mem_limit = (int) ini_get('memory_limit');
if ($mem_limit < 32) {
// We do *not* need to save the original value here, since we don't plan to restore
// this after shutdown (we don't trust the effectiveness of PHP's garbage collection).
ini_set('memory_limit', '32M'); // nore: this may need to be higher for many projects
}
}
/**
* Restores [most] PHP INI values to their pre-Phing state.
*
* Currently the following settings are not restored:
* - max_execution_time (because getting current time limit is not possible)
* - memory_limit (which may have been increased by Phing)
*
* @return void
*/
private static function restoreIni()
{
foreach(self::$origIniSettings as $settingName => $settingValue) {
switch($settingName) {
case 'error_reporting':
error_reporting($settingValue);
break;
default:
ini_set($settingName, $settingValue);
}
}
}
/**
* Returns reference to Timer object.
* @return Timer
*/
public static function getTimer() {
if (self::$timer === null) {
include_once 'phing/system/util/Timer.php';
self::$timer= new Timer();
}
return self::$timer;
}
/**
* Start up Phing.
* Sets up the Phing environment but does not initiate the build process.
* @return void
* @throws Exception - If the Phing environment cannot be initialized.
*/
public static function startup() {
// setup STDOUT and STDERR defaults
self::initializeOutputStreams();
// some init stuff
self::getTimer()->start();
self::setSystemConstants();
self::setIncludePaths();
self::setIni();
}
/**
* Halts the system.
* @deprecated This method is deprecated and is no longer called by Phing internally. Any
* normal shutdown routines are handled by the shutdown() method.
* @see shutdown()
*/
public static function halt() {
self::shutdown();
}
/**
* Performs any shutdown routines, such as stopping timers.
* @return void
*/
public static function shutdown() {
self::restoreIni();
self::getTimer()->stop();
}
}
|