File: class_stats.php

package info (click to toggle)
mysql-connector-c%2B%2B 1.1.0~r814-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 4,388 kB
  • ctags: 3,838
  • sloc: cpp: 39,820; ansic: 2,114; perl: 936; php: 528; xml: 399; sql: 399; sh: 85; makefile: 47
file content (56 lines) | stat: -rw-r--r-- 1,687 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
<?php
/*
   Copyright 2007 - 2008 MySQL AB, 2008 - 2010 Sun Microsystems, Inc.  All rights reserved.

   The MySQL Connector/C++ is licensed under the terms of the GPL
   <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most
   MySQL Connectors. There are special exceptions to the terms and
   conditions of the GPL as it is applied to this software, see the
   FLOSS License Exception
   <http://www.mysql.com/about/legal/licensing/foss-exception.html>.
*/

$prev_method = "";
$impl=$not_impl = 0;
foreach(file("php://stdin") as $v) {
	if (!preg_match("#(.*?cpp):/\* +{{{ (.*?)::(.*?) +\-(I|U)\-#", $v, $matches)) {
		continue;
	}
	$class = $matches[2];
	$method = $matches[3];
	$implemented = ($matches[4] == "I");
	if ($prev_method != $method) {
		$method_inc = 1;
		$prev_method = $method;
	} else {
		$method_inc++;
	}
	if (!isset($stats[$class][$method])) {
		$stats[$class][$method] = $implemented;
	} else {
		$stats[$class][$method."_".$method_inc] = $implemented;
	}
}
ksort($stats);
foreach ($stats as $class => $methods) {
	printf("-----------\n");
	ksort($methods);
	$local_impl=$local_notimpl=0;
	foreach ($methods as $method => $status) {
		if (1) {
			printf(" %s::%-55s %-30s\n", $class,$method, $status? "Implemented":"Not implemented");
		}
		if ($status) {
			$impl++;
			$local_impl++;
		} else {
			$not_impl++;
			$local_notimpl++;
		}
	}
	printf("-----------\n%-30s Total=%-3d  Implemented=%-3d  Not Implemented=%-3d Impl=%-3d%%\n",
			$class,$local_impl+$local_notimpl, $local_impl, $local_notimpl, 100*$local_impl/($local_impl+$local_notimpl));
}

printf("Total=%3d  Implemented=%3d  Not implemented=%3d\n", $not_impl+$impl, $impl, $not_impl);
?>