diff --git a/config.php b/config.php index 6c2267f9b..b636b0338 100644 --- a/config.php +++ b/config.php @@ -28,6 +28,7 @@ define('G5_HTTPS_DOMAIN', ''); // 그누보드 디버그바 설정입니다, 실제 서버운영시 false 로 설정해 주세요. define('G5_DEBUG', false); +define('G5_COLLECT_QUERY', false); // Set Database table default engine is Database default_storage_engine, If you want to use MyISAM or InnoDB, change to MyISAM or InnoDB. // DB에 테이블 생성 시 테이블의 기본 스토리지 엔진을 설정할 수 있습니다. diff --git a/lib/common.lib.php b/lib/common.lib.php index 50414e74b..c1acd17e5 100644 --- a/lib/common.lib.php +++ b/lib/common.lib.php @@ -1625,7 +1625,7 @@ function sql_query($sql, $error=G5_DISPLAY_SQL_ERROR, $link=null) $is_debug = get_permission_debug_show(); - $start_time = $is_debug ? get_microtime() : 0; + $start_time = ($is_debug || G5_COLLECT_QUERY) ? get_microtime() : 0; if(function_exists('mysqli_query') && G5_MYSQLI_USE) { if ($error) { @@ -1645,18 +1645,68 @@ function sql_query($sql, $error=G5_DISPLAY_SQL_ERROR, $link=null) } } - $end_time = $is_debug ? get_microtime() : 0; + $end_time = ($is_debug || G5_COLLECT_QUERY) ? get_microtime() : 0; + + $error = null; + if ($is_debug || G5_COLLECT_QUERY) { + if(function_exists('mysqli_error') && G5_MYSQLI_USE) { + $error = array( + 'error_code' => mysqli_errno($g5['connect_db']), + 'error_message' => mysqli_error($g5['connect_db']), + ); + } else { + $error = array( + 'error_code' => mysql_errno($g5['connect_db']), + 'error_message' => mysql_error($g5['connect_db']), + ); + } + + $stack = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); + $source = array(); + $found = false; + + foreach ($stack as $index => $trace) { + if ($trace['function'] === 'sql_query') { + $found = true; + } + if (isset($stack[$index + 1]) && $stack[$index + 1]['function'] === 'sql_fetch') { + continue; + } + + if ($found) { + $trace['file'] = str_replace($_SERVER['DOCUMENT_ROOT'], '', $trace['file']); + $source['file'] = $trace['file']; + $source['line'] = $trace['line']; + + $parent = (isset($stack[$index + 1])) ? $stack[$index + 1] : array(); + if (isset($parent['function'])) { + if (in_array($trace['function'], array('sql_query', 'sql_fetch')) && (isset($parent['function']) && !in_array($parent['function'], array('sql_fetch', 'include', 'include_once', 'require', 'require_once')))) { + if (isset($parent['class']) && $parent['class']) { + $source['class'] = $parent['class']; + $source['function'] = $parent['function']; + $source['type'] = $parent['type']; + } else { + $source['function'] = $parent['function']; + } + } + } + break; + } + } - if($result && $is_debug) { - // 여기에 실행한 sql문을 화면에 표시하는 로직 넣기 $g5_debug['sql'][] = array( 'sql' => $sql, + 'result' => $result, + 'success' => !!$result, + 'source' => $source, + 'error_code' => $error['error_code'], + 'error_message' => $error['error_message'], 'start_time' => $start_time, 'end_time' => $end_time, - ); + ); } - run_event('sql_query_after', $result, $sql, $start_time, $end_time); + run_event('sql_query_after', $result, $sql, $start_time, $end_time, $error); return $result; } diff --git a/plugin/debugbar/debugbar.php b/plugin/debugbar/debugbar.php index fce0c8aad..25c918ca3 100644 --- a/plugin/debugbar/debugbar.php +++ b/plugin/debugbar/debugbar.php @@ -54,7 +54,27 @@ add_stylesheet(' -
+
+ {$function}
"; } ?>
+