File: check-missing-docs.php

package info (click to toggle)
php-doc 20140201-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 74,084 kB
  • ctags: 4,040
  • sloc: xml: 998,137; php: 20,812; cpp: 500; sh: 177; makefile: 63; awk: 28
file content (204 lines) | stat: -rw-r--r-- 5,880 bytes parent folder | download
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
<?php
/*
$Id: check-missing-docs.php 323714 2012-03-01 15:48:13Z philip $

Hack to check if functions/methods/inis are documented.

This _WILL_ give false positives due to the following reasons:
	- The way we document OOP/Procedural together; has id issues
	- We don't document all aliases, especially old ones
	- Various inconsistencies in the documentation (which this may help find)
	- A lot of this has to do with how we document OOP, research this (e.g., inheritance)
	- It only checks what you have compiled into your current PHP
	- Beware: Some things are intentionally not documented (e.g., leak(), php_egg_logo_guid())
	- The script isn't perfect?!?! But, it's a decent start
TODO
	- Deal with the above, hopefully fix
	- Deal with aliases (store them and/or find where/how they are stored, then use this info
	- Make the output more useful
	- Use some reflection?
USAGE
	Pass in the following options:
	- d: required, is the index (sqlite3 db) created by running PhD
	- Example: php check-missing-docs.php -d ./doc/phd_output/index.sqlite
*/

$options = getopt('d:');
if (empty($options['d'])) {
	echo 'ERROR: Set -d foo where foo is the path to the PhD generated sqlite index.', PHP_EOL;
	exit;
}

$doc_db = trim($options['d']);
if (!file_exists($doc_db)) {
	echo "ERROR: Unable to find a file here (Path: $doc_db). Fail.", PHP_EOL;
	exit;
}

if (!extension_loaded('PDO')) {
	echo 'ERROR: This script requires the PDO extension.', PHP_EOL;
	exit;
} else {
	$drivers = PDO::getAvailableDrivers();
	if (!in_array('sqlite', $drivers)) {
		echo 'ERROR: This script requires the PDO::sqlite driver. You have PDO but with the following drivers:', PHP_EOL;
		print_r($drivers);
		exit;
	}
}

$documented = array('functions' => array(), 'methods' => array(), 'inis' => array(), 'classes' => array());
$missing    = $documented;

$pdo   = new PDO('sqlite:' . $doc_db);
$r     = $pdo->query('SELECT lower(sdesc) as sdec, lower(docbook_id) as docbook_id FROM ids');
$table = $r->fetchAll(PDO::FETCH_COLUMN|PDO::FETCH_UNIQUE);

// Functions
$functions = get_defined_functions();
foreach($functions['internal'] as $function) {
	$function = strtolower($function);
	
	if (skip_documentation($function)) {
		$skipped['functions'][] = $function;
		continue;
	}
	
	if(isset($table[$function])) {
		$documented['functions'][] = $function;
	} else {
		$missing['functions'][] = $function;
	}
}

// Classes and Methods$class
foreach(get_declared_classes() as $class) {
	// Classes
	$class_l = strtolower($class);

	if (skip_documentation($class_l)) {
		$skipped['classes'][] = $class;
		continue;
	}

	if(isset($table[$class_l])) {
		$documented['classes'][] = $class;
	} else {
		$missing['classes'][]   = $class;
	}
	// Methods
	foreach(get_class_methods($class) as $method) {
		$method_l  = strtolower($method);
		$method_d  = $class . '::' . $method;

		$rm = new ReflectionMethod($class, $method);
		if(strtolower($rm->getDeclaringClass()->name) === $class_l) {

			// Variations we end up with in the docs
			// Others?
			$j = strtolower($class_l . '::'    . $method_l);
			$o = strtolower($class_l . '-&gt;' . $method_l);
			$v = strtolower($class_l . '->'    . $method_l);

			if(isset($table[$j]) || isset($table[$v]) || isset($table[$o])) {
				if (skip_documentation($j)) {
					$skipped['methods'][] = $method_d;
					continue;
				}
				$documented['methods'][] = $method_d;
			} else {
				$missing['methods'][] = $method_d;
			}
		}
	}
}

// Ini settings
$r     = $pdo->query("SELECT lower(docbook_id) as docbook_id FROM ids WHERE docbook_id LIKE 'ini.%'");
$table = $r->fetchAll(PDO::FETCH_COLUMN);

$inis = ini_get_all();
echo 'Scanning ini settings', PHP_EOL;
foreach ($inis as $ini => $ini_value) {
	$ini_search = 'ini.' . strtolower(str_replace('_', '-', $ini));
	
	if (skip_documentation_pattern($ini)) {
		$skipped['inis'][] = $ini_search;
		continue;
	}
	
	if (in_array($ini_search, $table)) {
		$documented['inis'][] = $ini;
	} else {
		$missing['inis'][] = $ini;
	}
}

echo 'Statistics and information:', PHP_EOL;
$counts_missing = array(
	'methods'  => count($missing['methods']),
	'classes'  => count($missing['classes']),
	'inis'     => count($missing['inis']),
	'functions'=> count($missing['functions']),
);
$counts_documented = array(
	'methods'  => count($documented['methods']),
	'classes'  => count($documented['classes']),
	'inis'     => count($documented['inis']),
	'functions'=> count($documented['functions']),
);

echo "Missing documentation", PHP_EOL;
print_r($missing);

echo "Counts: Missing documentation", PHP_EOL;
print_r($counts_missing);

echo "Counts: Documented documentation", PHP_EOL;
print_r($counts_documented);


function skip_documentation($name) {
	$name = strtolower(trim($name));
	$skips = array(
		// Intentional
		'leak', 'crash', 'zend_test_func','php_real_logo_guid','php_egg_logo_guid',

		// Old deprecated aliases
		'mbregex_encoding', 'mbereg', 'mberegi', 'mbereg_replace', 'mberegi_replace',
		'mbsplit', 'mbereg_match', 'mbereg_search', 'mbereg_search_pos',
		'mbereg_search_regs', 'mbereg_search_init', 'mbereg_search_getregs',
		'mbereg_search_getpos', 'mbereg_search_setpos', 'mysql', 'mysql_fieldtype',
		'mysql_fieldname','mysql_fieldtable','mysql_fieldlen','mysql_fieldflags',
		'mysql_selectdb','mysql_freeresult','mysql_numfields','mysql_numrows',
		'mysql_listdbs','mysql_listtables','mysql_listfields', 'mysql_dbname', 
		'mysql_table_name', 'socket_getopt','socket_setopt','key_exists', '_', 

		// Class::Methods
		// Classes
		'__php_incomplete_class',
	);
	
	if (in_array($name, $skips)) {
		return true;
	}

	
	if (skip_documentation_pattern($name)) {
		return true;
	}

	return false;
}

function skip_documentation_pattern($name) {
	
	$skip_patterns = array('xdebug');
	
	foreach ($skip_patterns as $skip_pattern) {
		if (false !== strpos($name, $skip_pattern)) {
			return true;
		}
	}
	return false;
}