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
|
<?php
/**
* This script can be used for generating PHP model for PDT.
* It builds PHP functions according to the loaded extensions in running PHP,
* using complementary information gathered from PHP.net documentation
*
* @author Michael Spector <michael@zend.com>
*/
/**
* Usage:
* ===========================
* Checkout phpdoc from here:
* svn checkout https://svn.php.net/repository/phpdoc/modules/doc-en phpdoc/
* cd phpdoc
* php doc-gen.php /path/to/phpdoc/
*/
if(version_compare(phpversion(), "5.0.0")< 0){
die("This script requires PHP 5.0.0 or higher!\n");
}
$splitFiles = true;
$phpdocDir = null;
$phpDir = "php5";
if(strstr(phpversion(), "5.3")){
$phpDir = "php5.3";
}
// Parse arguments:
$argv = $_SERVER["argv"];
$argv0 = array_shift($argv);
for($i = 0;
$i < count ($argv );
++ $i ){
switch($argv[$i]){
case "-nosplit" : $splitFiles = false;
break;
case "-help" : show_help();
break;
default : $phpdocDir = $argv[$i];
}
}
if(!$phpdocDir){
show_help();
}
$functionsDoc = parse_phpdoc_functions($phpdocDir);
$classesDoc = parse_phpdoc_classes($phpdocDir);
$constantsDoc = parse_phpdoc_constants($phpdocDir);
$processedFunctions = array();
$processedClasses = array();
$processedConstants = array();
@ mkdir($phpDir);
if(!$splitFiles){
begin_file_output();
}
$extensions = get_loaded_extensions();
foreach($extensions as $extName){
if($splitFiles){
begin_file_output();
}
print_extension(new ReflectionExtension($extName));
if($splitFiles){
finish_file_output("{$phpDir}/{$extName}.php");
}
}
if($splitFiles){
begin_file_output();
}
$intFunctions = get_defined_functions();
foreach($intFunctions["internal"] as $intFunction){
if(!@ $processedFunctions[strtolower($intFunction)]){
print_function(new ReflectionFunction($intFunction), false);
}
}
$intClasses = array_merge(get_declared_classes(), get_declared_interfaces());
foreach($intClasses as $intClass){
if(!@ $processedClasses[strtolower($intClass)]){
print_class(new ReflectionClass($intClass));
}
}
print "\n";
$constants = get_defined_constants(true);
$intConstants = $constants["internal"];
// add magic constants:
$intConstants['__FILE__'] = null;
$intConstants['__LINE__'] = null;
$intConstants['__CLASS__'] = null;
$intConstants['__FUNCTION__'] = null;
$intConstants['__METHOD__'] = null;
if(version_compare(phpversion(), "5.3.0")>= 0){
$intConstants['__DIR__'] = null;
$intConstants['__NAMESPACE__'] = null;
}
foreach($intConstants as $name => $value){
if(!@ $processedConstants[$name]){
print_constant($name, $value);
}
}
finish_file_output("{$phpDir}/basic.php");
// Create .list file
$fp = fopen("{$phpDir}/.list", "w");
foreach(glob("{$phpDir}/*.php")as $f){
fwrite($fp, basename($f));
fwrite($fp, "\n");
}
fclose($fp);
echo 'Finished...';
// === Functions ===
/**
* Makes generic key from given function name
* @param name string Function name
* @return string generic key
*/
function make_funckey_from_str($name){
$name = str_replace("->", "::", $name);
$name = str_replace("()", "", $name);
$name = strtolower($name);
return $name;
}
/**
* Replaces all invalid charaters with '_' in PHP identifier
* @param name PHP identifier
* @return string PHP identifier with stripped invalid characters
*/
function clean_php_identifier($name){
$name = preg_replace('/[^\$\w\_]+/', '_', $name);
return $name;
}
/**
* Makes generic key from given function reference
* @param name ReflectionMethod function reference
* @return string generic key
*/
function make_funckey_from_ref($ref){
if($ref instanceof ReflectionMethod){
$funckey = strtolower($ref->getDeclaringClass()->getName()). "::" . strtolower($ref->getName());
} else {
$funckey = strtolower($ref->getName());
}
return $funckey;
}
/**
* Parses PHP documentation
* @param phpdocDir string PHP.net documentation directory
* @return array Function information gathered from the PHP.net documentation by parsing XML files
*/
function parse_phpdoc_functions($phpdocDir){
$xml_files = array_merge(glob("{$phpdocDir}/en/reference/*/*/*.xml"));
foreach($xml_files as $xml_file){
$xml = file_get_contents($xml_file);
if(preg_match('@<refentry.*?xml:id=["\'](.*?)["\'].*?>.*?<refname>(.*?)</refname>.*?<refpurpose>(.*?)</refpurpose>@s', $xml, $match)){
$refname = make_funckey_from_str($match[2]);
$functionsDoc[$refname]['id'] = $match[1];
$functionsDoc[$refname]['quickref'] = trim($match[3]);
if(preg_match('@<refsect1\s+role=["\']description["\']>(.*?)</refsect1>@s', $xml, $match)){
$description = $match[1];
$function_alias = null;
$parameters = null;
$has_object_style = false;
if(preg_match('@^(.*?)<classsynopsis>.*?<classname>(.*)</classname>.*?<methodsynopsis>.*?<type>(.*?)</type>.*?<methodname>(.*?)</methodname>(.*?)</methodsynopsis>.*?</classsynopsis>(.*)$@s', $description, $match)){
$functionsDoc[$refname]['classname'] = trim($match[2]);
$functionsDoc[$refname]['returntype'] = trim($match[3]);
$functionsDoc[$refname]['methodname'] = trim($match[4]);
$parameters = $match[5];
$description = $match[1] . $match[6];
$has_object_style = true;
}
if(preg_match('@^(.*?)<classsynopsis>.*?<classname>(.*)</classname>.*?<constructorsynopsis>.*?<methodname>(.*?)</methodname>(.*?)</constructorsynopsis>.*?</classsynopsis>(.*)$@s', $description, $match)){
$functionsDoc[$refname]['classname'] = trim($match[2]);
$functionsDoc[$refname]['methodname'] = trim($match[3]);
$parameters = $match[4];
$description = $match[1] . $match[5];
$has_object_style = true;
}
if(preg_match('@<methodsynopsis>.*?<type>(.*?)</type>.*?<methodname>(.*?)</methodname>(.*?)</methodsynopsis>@s', $description, $match)){
if($has_object_style){
$function_alias = trim($match[2]);
} else {
//For return type of simplexml_load_string and simplexml_load_file.
if(preg_match('@<refsect1\s+role=["\']returnvalues["\']>(.*?)</refsect1>@s', $xml, $match1)){
$returnvalues = $match1[1];
if(preg_match('@<type>object</type> of class <type>(.*?)</type>@s', $returnvalues, $match1)){
$functionsDoc[$refname]['returntype'] = trim($match1[1]);
} else {
$functionsDoc[$refname]['returntype'] = trim($match[1]);
}
} else {
$functionsDoc[$refname]['returntype'] = trim($match[1]);
}
$functionsDoc[$refname]['methodname'] = trim($match[2]);
$parameters = $match[3];
}
}
if($parameters){
if(preg_match_all('@<methodparam\s*(.*?)>.*?<type>(.*?)</type>.*?<parameter\s*(.*?)>(.*?)</parameter>.*?</methodparam>@s', $parameters, $match)){
for($i = 0;
$i < count ($match[0] );
++ $i ){
$parameter = array('type' => trim($match[2][$i]), 'name' => clean_php_identifier(trim($match[4][$i])),);
if(preg_match('@choice=[\'"]opt[\'"]@', $match[1][$i])){
$parameter['isoptional'] = true;
}
if(preg_match('@role=[\'"]reference[\'"]@', $match[3][$i])){
$parameter['isreference'] = true;
}
$functionsDoc[$refname]['parameters'][] = $parameter;
}
}
}
}
if(preg_match('@<refsect1\s+role=["\']parameters["\']>(.*?)</refsect1>@s', $xml, $match)){
$parameters = $match[1];
if(preg_match_all('@<varlistentry\s*.*?>.*?<parameter>(.*?)</parameter>.*?<listitem\s*.*?>(.*?)</listitem>.*?</varlistentry>@s', $parameters, $match)){
for($i = 0;
$i < count ($match[0] );
$i ++ ){
for($j = 0;
$j < count (@ $functionsDoc[$refname]['parameters'] );
$j ++ ){
if($match[1][$i] == $functionsDoc[$refname]['parameters'][$j]['name']){
$functionsDoc[$refname]['parameters'][$j]['paramdoc'] = xml_to_phpdoc($match[2][$i]);
break;
}
}
}
}
}
if(preg_match('@<refsect1\s+role=["\']returnvalues["\']>(.*?)</refsect1>@s', $xml, $match)){
$returnvalues = $match[1];
if(preg_match('@<para>\s*(Returns)?(.*)</para>?@s', $returnvalues, $match)){
$functionsDoc[$refname]['returndoc'] = xml_to_phpdoc($match[2]);
}
}
// Create information for function alias
if($function_alias){
$functionsDoc[$function_alias] = $functionsDoc[$refname];
}
}
}
return $functionsDoc;
}
/**
* Parses PHP documentation
* @param phpdocDir string PHP.net documentation directory
* @return array Class information gathered from the PHP.net documentation by parsing XML files
*/
function parse_phpdoc_classes($phpdocDir){
$xml_files = array_merge(glob("{$phpdocDir}/en/reference/*/reference.xml"), glob("{$phpdocDir}/reference/*/classes.xml"), glob("{$phpdocDir}/language/*/*.xml"), glob("{$phpdocDir}/language/*.xml"));
global $fields_doc;
foreach($xml_files as $xml_file){
$xml = file_get_contents($xml_file);
if(preg_match('@xml:id=["\'](.*?)["\']@', $xml, $match)){
$id = $match[1];
if(preg_match_all('@<title><classname>(.*?)</classname></title>@', $xml, $match)){
for($i = 0;
$i < count ($match[0] );
++ $i ){
$class = $match[1][$i];
$refname = strtolower($class);
$classesDoc[$refname]['id'] = $id;
$classesDoc[$refname]['name'] = $class;
if(preg_match("@<title><classname>{$class}</classname></title>\s*<para>(.*?)</para>@s", $xml, $match2)){
$classesDoc[$refname]['doc'] = xml_to_phpdoc($match2[1]);
}
//pass over class fields here
$fields_xml_file = array_merge(glob("{$phpdocDir}/reference/*/" . $refname . ".xml"));
if($fields_xml_file[0] != null){
$xml_field_data = file_get_contents($fields_xml_file[0]);
if($xml_field_data != null){
if(preg_match_all('@<fieldsynopsis>((\w|\W|\s)*?)</fieldsynopsis>@', $xml_field_data, $fieldsynopsis_list)){
foreach($fieldsynopsis_list[1] as $fieldsynopsis){
if(preg_match_all("@<varname\s*linkend=\"{$refname}.props.(.*?)\">(.*?)</varname>@", $fieldsynopsis, $varname)){
$field_name = $varname[2][0];
$fields_doc[$refname][$field_name]['name'] = $field_name;
}
// <varlistentry xml:id="domdocument.props.formatoutput">
// <term><varname>formatOutput</varname></term>
// <listitem>
// <para>Nicely formats output with indentation and extra space.</para>
// </listitem>
// </varlistentry>
if(preg_match("@<varlistentry.*?<term><varname>{$field_name}</varname></term>.*?<para>(.*?)</para>@s", $xml_field_data, $doc)){
if(preg_match("@<emphasis>Deprecated</emphasis>@s", $doc[1], $deprecated)){
$fields_doc[$refname][$field_name]['deprecated'] = true;
} else {
$fields_doc[$refname][$field_name]['deprecated'] = false;
}
$fields_doc[$refname][$field_name]['doc'] = xml_to_phpdoc($doc[1]);
}
if(preg_match_all("@<modifier>(.*?)</modifier>@", $fieldsynopsis, $modifier_list)){
foreach($modifier_list[1] as $current_modifier){
if($current_modifier == "readonly"){
continue;
} else {
$modifier = $current_modifier;
break;
}
}
//go to the next field if not public ???
if($modifier == "private"){
continue;
}
$fields_doc[$refname][$field_name]['modifier'] = $modifier;
}
if(preg_match_all("@<type>(.*?)</type>@", $fieldsynopsis, $type)){
$field_type = $type[1][0];
$fields_doc[$refname][$field_name]['type'] = $field_type;
}
}
}
}
}
}
}
}
}
return $classesDoc;
}
/**
* Parses PHP documentation
* @param phpdocDir string PHP.net documentation directory
* @return array Constant information gathered from the PHP.net documentation by parsing XML files
*/
function parse_phpdoc_constants($phpdocDir){
exec("find " . addslashes($phpdocDir). " -name \"*constants.xml\"", $xml_files);
foreach($xml_files as $xml_file){
$xml = file_get_contents($xml_file);
if(preg_match('@xml:id=["\'](.*?)["\']@', $xml, $match)){
$id = $match[1];
if(preg_match_all('@<term>\s*<constant>([a-zA-Z_][a-zA-Z0-9_]*)</constant>.*?</term>.*?<listitem>(.*?)</listitem>@s', $xml, $match)){
for($i = 0;
$i < count ($match[0] );
++ $i ){
$constant = $match[1][$i];
$constantsDoc[$constant]['id'] = $id;
$constantsDoc[$constant]['doc'] = xml_to_phpdoc($match[2][$i]);
}
}
if(preg_match_all('@<entry>\s*<constant>([a-zA-Z_][a-zA-Z0-9_]*)</constant>.*?</entry>\s*<entry>\d+</entry>\s*<entry>(.*?)</entry>@s', $xml, $match)|| preg_match_all('@<entry>\s*<constant>([a-zA-Z_][a-zA-Z0-9_]*)</constant>.*?</entry>\s*<entry>(.*?)</entry>@s', $xml, $match)){
for($i = 0;
$i < count ($match[0] );
++ $i ){
$constant = $match[1][$i];
$constantsDoc[$constant]['id'] = $id;
$constantsDoc[$constant]['doc'] = xml_to_phpdoc($match[2][$i]);
}
}
}
}
return $constantsDoc;
}
/**
* Prints ReflectionExtension in format of PHP code
* @param extRef ReflectionExtension object
*/
function print_extension($extRef){
print "\n// Start of {$extRef->getName()} v.{$extRef->getVersion()}\n";
// process classes:
$classesRef = $extRef->getClasses();
if(count($classesRef)> 0){
foreach($classesRef as $classRef){
print_class($classRef);
}
}
// process functions
$funcsRef = $extRef->getFunctions();
if(count($funcsRef)> 0){
foreach($funcsRef as $funcRef){
print_function($funcRef, false);
}
print "\n";
}
// process constants
$constsRef = $extRef->getConstants();
if(count($constsRef)> 0){
print_constants($constsRef);
print "\n";
}
print "// End of {$extRef->getName()} v.{$extRef->getVersion()}\n";
}
/**
* Prints ReflectionClass in format of PHP code
* @param classRef ReflectionClass object
* @param tabs integer[optional] number of tabs for indentation
*/
function print_class($classRef, $tabs = 0){
global $processedClasses;
$processedClasses[strtolower($classRef->getName())] = true;
print "\n";
print_doccomment($classRef, $tabs);
print_tabs($tabs);
if($classRef->isFinal())print "final ";
print $classRef->isInterface()? "interface " : "class ";
print clean_php_identifier($classRef->getName()). " ";
// print out parent class
$parentClassRef = $classRef->getParentClass();
if($parentClassRef){
print "extends {$parentClassRef->getName()} ";
}
// print out interfaces
$interfacesRef = $classRef->getInterfaces();
if(count($interfacesRef)> 0){
print $classRef->isInterface()? "extends " : "implements ";
$i = 0;
foreach($interfacesRef as $interfaceRef){
if($i ++ > 0){
print ", ";
}
print "{$interfaceRef->getName()}";
}
}
print " {\n";
// process constants
$constsRef = $classRef->getConstants();
if(count($constsRef)> 0){
print_class_constants($constsRef, $tabs + 1);
print "\n";
}
global $classesDoc;
// process properties
$propertiesRef = $classRef->getProperties();
if(count($propertiesRef)> 0){
foreach($propertiesRef as $propertyRef){
print_property($propertyRef, $tabs + 1);
$printedFields[$propertyRef->getName()] = true;
}
print "\n";
}
$className = strtolower($classRef->getName());
if($className == "DomDocument"){
echo "DomDocument";
}
global $fields_doc;
if(@ $fields_doc[$className]){
$fields = @ $fields_doc[$className];
foreach($fields as $field){
if(!$printedFields[$field['name']]){
//print doc here
print("\n");
$doc = $field['doc'];
if($doc){
print_tabs($tabs + 1);
print "/**\n";
print_tabs($tabs + 1);
print " * " . newline_to_phpdoc($doc, $tabs + 1). "\n";
print_tabs($tabs + 1);
print " * @var " . $field['type'] . "\n";
if($field['deprecated'] == true){
print_tabs($tabs + 1);
print " * @deprecated " . "\n";
}
print_Tabs($tabs + 1);
// http://www.php.net/manual/en/class.domdocument.php#domdocument.props.actualencoding
$refname = strtolower($classRef->getName());
$class_url = make_url("class." . $refname);
$field_name = strtolower($field['name']);
$field_url = $class_url . '#' . $className . ".props." . $field_name;
print " * @link {$field_url}\n";
print_tabs($tabs + 1);
print " */\n";
}
print_tabs($tabs + 1);
print implode(' ', array($field['modifier']));
print " ";
print "\${$field['name']};\n";
}
}
}
// process methods
$methodsRef = $classRef->getMethods();
if(count($methodsRef)> 0){
foreach($methodsRef as $methodRef){
print_function($methodRef, $classRef->isInterface(), $tabs + 1);
}
print "\n";
}
print_tabs($tabs);
print "}\n";
}
/**
* Prints ReflectionProperty in format of PHP code
* @param propertyRef ReflectionProperty object
* @param tabs integer[optional] number of tabs for indentation
*/
function print_property($propertyRef, $tabs = 0){
print_doccomment($propertyRef, $tabs);
print_tabs($tabs);
print_modifiers($propertyRef);
print "\${$propertyRef->getName()};\n";
}
function print_function($functionRef, $childOfInterface, $tabs = 0){
global $functionsDoc;
global $processedFunctions;
$funckey = make_funckey_from_ref($functionRef);
$processedFunctions[$funckey] = true;
print "\n";
print_doccomment($functionRef, $tabs);
print_tabs($tabs);
if(!($functionRef instanceof ReflectionFunction)){
print_modifiers($functionRef);
}
print "function ";
if($functionRef->returnsReference()){
print "&";
}
print "{$functionRef->getName()} (";
$parameters = @ $functionsDoc[$funckey]['parameters'];
if($parameters){
print_parameters($parameters);
} else {
print_parameters_ref($functionRef->getParameters());
}
print ") ";
if($childOfInterface) {
print ";\n";
} else {
print "{}\n";
}
}
/**
* Prints ReflectionParameter in format of PHP code
* @param parameters array information from PHP.net documentation
*/
function print_parameters($parameters){
$i = 0;
foreach($parameters as $parameter){
if($parameter['name'] != "..."){
if($i ++ > 0){
print ", ";
}
$type = $parameter['type'];
if($type &&(class_exists($type)|| $type == "array")){
print "{$type} ";
}
if(@ $parameter['isreference']){
print "&";
}
print "\${$parameter['name']}";
if(@ $parameter['isoptional']){
if(@ $parameter['defaultvalue']){
$value = $parameter['defaultvalue'];
if(!is_numeric($value)){
$value = "'{$value}'";
}
print " = {$value}";
} else {
print " = null";
}
}
}
}
}
/**
* Prints ReflectionParameter in format of PHP code
* @param paramsRef ReflectionParameter[] array of objects
*/
function print_parameters_ref($paramsRef){
$i = 0;
foreach($paramsRef as $paramRef){
if($paramRef->isArray()){
print "array ";
} else {
if($className = get_parameter_classname($paramRef)){
print "{$className} ";
}
}
$name = $paramRef->getName()? $paramRef->getName(): "var" .($i + 1);
if($name != "..."){
if($i ++ > 0){
print ", ";
}
if($paramRef->isPassedByReference()){
print "&";
}
print "\${$name}";
if($paramRef->allowsNull()){
print " = null";
} else if($paramRef->isDefaultValueAvailable()){
$value = $paramRef->getDefaultValue();
if(!is_numeric($value)){
$value = "'{$value}'";
}
print " = {$value}";
}
}
}
}
/**
* Prints constants in format of PHP code
* @param constants array containing constants, where key is a name of constant
* @param tabs integer[optional] number of tabs for indentation
*/
function print_constants($constants, $tabs = 0){
foreach($constants as $name => $value){
print_constant($name, $value, $tabs);
}
}
function print_constant($name, $value = null, $tabs = 0){
global $constantsDoc;
global $processedConstants;
$processedConstants[$name] = true;
if($value === null){
$value = @ constant($name);
}
$value = escape_const_value($value);
$doc = @ $constantsDoc[$name]['doc'];
if($doc){
print "\n";
print_tabs($tabs);
print "/**\n";
print_tabs($tabs);
print " * " . newline_to_phpdoc($doc, $tabs). "\n";
print_tabs($tabs);
print " * @link " . make_url($constantsDoc[$name]['id']). "\n";
print_tabs($tabs);
print " */\n";
}
print_tabs($tabs);
print "define ('{$name}', {$value});\n";
}
function escape_const_value($value){
if(is_resource($value)){
$value = "\"${value}\"";
} else if(!is_numeric($value)&& !is_bool($value)&& $value !== null){
if($value === '\\'){
$value = '"' . addcslashes($value, "\\\"\r\n\t"). '"';
} else {
$value = '"' . addcslashes($value, "\"\r\n\t"). '"';
}
} else if($value === null){
$value = "null";
} else if($value === false){
$value = "false";
} else if($value === true){
$value = "true";
}
return $value;
}
/**
* Prints class constants in format of PHP code
* @param constants array containing constants, where key is a name of constant
* @param tabs integer[optional] number of tabs for indentation
*/
function print_class_constants($constants, $tabs = 0){
foreach($constants as $name => $value){
$value = escape_const_value($value);
print_tabs($tabs);
print "const {$name} = {$value};\n";
}
}
/**
* Prints modifiers of reflection object in format of PHP code
* @param ref Reflection some reflection object
*/
function print_modifiers($ref){
$modifiers = Reflection::getModifierNames($ref->getModifiers());
if(count($modifiers)> 0){
print implode(' ', $modifiers);
print " ";
}
}
/**
* Makes PHP Manual URL from the given ID
* @param id PHP Element ID
* @return URL
*/
function make_url($id){
return "http://www.php.net/manual/en/{$id}.php";
}
/**
* Prints PHPDOC comment before specified reflection object
* @param ref Reflection some reflection object
* @param tabs integer[optional] number of tabs for indentation
*/
function print_doccomment($ref, $tabs = 0){
global $functionsDoc;
global $classesDoc;
$docComment = $ref->getDocComment();
if($docComment){
print_tabs($tabs);
print "{$docComment}\n";
} else if($ref instanceof ReflectionClass){
$refname = strtolower($ref->getName());
if(@ $classesDoc[$refname]){
print_tabs($tabs);
print "/**\n";
$doc = @ $classesDoc[$refname]['doc'];
if($doc){
$doc = newline_to_phpdoc($doc, $tabs);
print_tabs($tabs);
print " * {$doc}\n";
}
if(@ $classesDoc[$refname]['id']){
print_Tabs($tabs);
$url = make_url("class." . $refname);
print " * @link {$url}\n";
}
print_tabs($tabs);
print " */\n";
}
} else if($ref instanceof ReflectionFunctionAbstract){
$funckey = make_funckey_from_ref($ref);
$returntype = @ $functionsDoc[$funckey]['returntype'];
$desc = @ $functionsDoc[$funckey]['quickref'];
$returndoc = newline_to_phpdoc(@ $functionsDoc[$funckey]['returndoc'], $tabs);
$paramsRef = $ref->getParameters();
$parameters = @ $functionsDoc[$funckey]['parameters'];
if($desc || count($paramsRef)> 0 || $parameters || $returntype){
print_tabs($tabs);
print "/**\n";
if($desc){
print_tabs($tabs);
print " * {$desc}\n";
}
if(@ $functionsDoc[$funckey]['id']){
print_tabs($tabs);
$url = make_url($functionsDoc[$funckey]['id']);
print " * @link {$url}\n";
}
if($parameters){
foreach($parameters as $parameter){
print_tabs($tabs);
print " * @param {$parameter['name']} {$parameter['type']}";
if(@ $parameter['isoptional']){
print "[optional]";
}
$paramdoc = newline_to_phpdoc(@ $parameter['paramdoc'], $tabs);
print " {$paramdoc}";
print "\n";
}
} else {
$i = 0;
foreach($paramsRef as $paramRef){
print_tabs($tabs);
$name = $paramRef->getName()? $paramRef->getName(): "var" . ++ $i;
print " * @param {$name}";
if($className = get_parameter_classname($paramRef)){
print " {$className}";
if($paramRef->isArray()){
print "[]";
}
}
if($paramRef->isOptional()){
print "[optional]";
}
print "\n";
}
}
if($returntype){
print_tabs($tabs);
print " * @return {$returntype} {$returndoc}\n";
}
print_tabs($tabs);
print " */\n";
}
} else if($ref instanceof ReflectionProperty){
//TODO complete phpdoc for fields detected by reflection
}
}
/**
* Converts XML entities to human readable string for PHPDOC
* @param str string
* @return string
*/
function xml_to_phpdoc($str){
$str = str_replace("&return.success;", "Returns true on success, false on failure.", $str);
$str = str_replace("&return.void;", "", $str);
$str = str_replace("&true;", "true", $str);
$str = str_replace("&false;", "false", $str);
$str = str_replace("<", "<", $str);
$str = str_replace(">", ">", $str);
$str = str_replace("&", "&", $str);
$str = strip_tags_special($str);
//$str = preg_replace ("/ */", " ", $str);
$str = preg_replace("/[\r\n][\t ]/", "\n", $str);
$str = trim($str);
return $str;
}
/**
* Converts newlines to PHPDOC prefixes in the given string
* @param str string
* @param tabs integer[optional] number of tabs for indentation
* @return string PHPDOC string
*/
function newline_to_phpdoc($str, $tabs = 0){
$str = preg_replace("@[\r\n]+@", "\n" . str_repeat("\t", $tabs). " * ", $str);
return $str;
}
/**
* Prints specified number of tabs
* @param tabs integer number of tabs to print
*/
function print_tabs($tabs){
print str_repeat("\t", $tabs);
}
/**
* Returns class name from given parameter reference, this method is a workaround
* for the case when exception is thrown from getClass() when such classname does not exist.
*/
function get_parameter_classname(ReflectionParameter $paramRef){
try {
if($classRef = $paramRef->getClass()){
return $classRef->getName();
}
}
catch(Exception $e){
if(preg_match('/Class (\w+) does not exist/', $e->getMessage(), $matches)){
return $matches[1];
}
}
return null;
}
/**
* Starts outputing to the new file
*/
function begin_file_output(){
ob_start();
print "<?php\n";
}
/**
* Ends outputing, and dumps the output to the specified file
* @param filename File to dump the output
*/
function finish_file_output($filename){
//if (file_exists ($filename)) {
// rename ($filename, "{$filename}.bak");
//}
print "?>\n";
file_put_contents($filename, ob_get_contents());
ob_end_clean();
}
/**
* Strips xml tags from the string like the standard strip_tags() function
* would do, but also translates some of the docbook tags (such as tables
* an paragraphs) to proper html tags
* @param str string
* @return string
*/
function strip_tags_special($str){
// first mask and translate the tags to preseve
$str = preg_replace("/<(\/?)table>/", "###($1table)###", $str);
$str = str_replace("<row>", "###(tr valign=\"top\")###", $str);
$str = str_replace("</row>", "###(/tr)###", $str);
$str = preg_replace("/<(\/?)entry>/", "###($1td)###", $str);
$str = preg_replace("/<(\/?)para>/", "###($1p)###", $str);
// now strip the remaining tags
$str = strip_tags($str);
// and restore the translated ones
$str = str_replace("###(", "<", $str);
$str = str_replace(")###", ">", $str);
return $str;
}
/**
* Prints usage help to the screen, and exits from program
*/
function show_help(){
global $argv0;
die(<<<EOF
USAGE: {
$argv0
} [options] <PHP.net documentation directory>
Where options are:
-help Show this help.
-split Split output to different files (one file per PHP extension).
EOF
);
}
?>
|