X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fplatal.inc.php;h=a638d0d23bef612b7ceb792e54ede281719c1a69;hb=15ba1697972827b89892b9866c4f6c0859c67ce8;hp=de9fd8e56da5669900a871cf189d756e81a03c61;hpb=4314727805eedd77202a6addef0d3ad4b666f678;p=platal.git diff --git a/include/platal.inc.php b/include/platal.inc.php index de9fd8e..a638d0d 100644 --- a/include/platal.inc.php +++ b/include/platal.inc.php @@ -39,12 +39,19 @@ define('NO_HTTPS', 2); function pl_autoload($cls, array $pathes = array()) { $cls = strtolower($cls); + if (starts_with($cls, 'xdb')) { + $cls = 'xdb'; + } else if (starts_with($cls, 'pldbtable')) { + $cls = 'pldbtableentry'; + } $basepath = dirname(dirname(dirname(__FILE__))); array_unshift($pathes, 'core/classes', 'classes'); foreach ($pathes as $path) { - if (@include_once "$basepath/$path/$cls.php") { - return true; + if (file_exists("$basepath/$path/$cls.php")) { + if (include_once "$basepath/$path/$cls.php") { + return true; + } } } return false; @@ -58,6 +65,7 @@ function pl_core_include($file) function pl_error_handler($errno, $errstr, $errfile, $errline) { + static $errortype; if (!error_reporting()) return; @@ -86,23 +94,17 @@ function pl_error_handler($errno, $errstr, $errfile, $errline) return; } } - $type = isset($errortype[$errno]) ? $errortype[$errno] : $errno; - $errstr = utf8_encode(htmlentities($errstr)); - if (php_sapi_name() == 'cli') { - $GLOBALS['pl_errors'] = "$type: $errstr\n $errfile:$errfile\n"; - } else { - $GLOBALS['pl_errors'][] = - "
". - "{$type} $errstr
". - "$errfile : $errline". - "
"; - } -} + $error = strpos($type, 'Warning') !== false || strpos($type, 'Error') !==false; -function pl_clear_errors() -{ - unset($GLOBALS['pl_errors']); + pl_autoload('PlBacktrace'); + if (!isset(PlBacktrace::$bt['PHP Errors'])) { + new PlBacktrace('PHP Errors'); + } + PlBacktrace::$bt['PHP Errors']->newEvent("$type: $errstr", + 0, $error ? $errstr : null, + array(array('file' => $errfile, + 'line' => $errline))); } function pl_dump_env() @@ -115,15 +117,27 @@ function pl_dump_env() echo ""; } -function pl_print_errors() +function pl_print_errors($html = false) { - if (!empty($GLOBALS['pl_errors'])) { - print join("\n", $GLOBALS['pl_errors']); + if (!isset(PlBacktrace::$bt['PHP Errors'])) { + return; + } + foreach (PlBacktrace::$bt['PHP Errors']->traces as $trace) { + if ($html) { + echo "
";
+        }
+        print "{$trace['action']}\n";
+        print "  {$trace['data'][0]['file']}: {$trace['data'][0]['line']}\n";
+        if ($html) {
+            echo "
"; + } } } set_error_handler('pl_error_handler', E_ALL | E_STRICT); -register_shutdown_function('pl_print_errors'); +if (php_sapi_name() == 'cli') { + register_shutdown_function('pl_print_errors'); +} //register_shutdown_function('pl_dump_env'); /** Check if the string is utf8 @@ -180,6 +194,24 @@ function pl_entity_decode($text, $mode = ENT_COMPAT) return html_entity_decode($text, $mode, 'UTF-8'); } +function pl_flatten_aux(array &$dest, array $src) +{ + foreach ($src as $val) { + if (is_array($val)) { + pl_flatten_aux($dest, $val); + } else { + $dest[] = $val; + } + } +} + +function pl_flatten(array $array) +{ + $res = array(); + pl_flatten_aux($res, $array); + return $res; +} + /** * Returns the path of a static content, including, when appropriate, the * version number. This is used to avoid cross-version cache issues, by ensuiring