| Current Path : /var/www/element/data/www/greenpr.ru/bitrix3/modules/main/interface/ |
| Current File : /var/www/element/data/www/greenpr.ru/bitrix3/modules/main/interface/debug_info.php |
<?
if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true) die();
IncludeModuleLangFile(__FILE__);
// ************************************************************************
// $main_exec_time, $bShowTime, $bShowStat MUST be defined before include
// ************************************************************************
global $APPLICATION;
if($bShowTime || $bShowStat)
echo '<div class="bx-component-debug bx-debug-summary">';
$bShowExtTime = $bShowTime && !defined("ADMIN_SECTION") && $bShowStat;
if($bShowExtTime)
{
$START_EXEC_CURRENT_TIME = microtime();
list($usec, $sec) = explode(" ", START_EXEC_PROLOG_AFTER_2);
$PROLOG_AFTER_2 = $sec + $usec;
list($usec, $sec) = explode(" ", START_EXEC_PROLOG_AFTER_1);
$PROLOG_AFTER_1 = $sec + $usec;
$PROLOG_AFTER = $PROLOG_AFTER_2 - $PROLOG_AFTER_1;
list($usec, $sec) = explode(" ", START_EXEC_AGENTS_2);
$AGENTS_2 = $sec + $usec;
list($usec, $sec) = explode(" ", START_EXEC_AGENTS_1);
$AGENTS_1 = $sec + $usec;
$AGENTS = $AGENTS_2 - $AGENTS_1;
list($usec, $sec) = explode(" ", START_EXEC_PROLOG_BEFORE_1);
$PROLOG_BEFORE_1 = $sec + $usec;
$PROLOG_BEFORE = $PROLOG_AFTER_1 - $PROLOG_BEFORE_1 - $AGENTS;
$PROLOG = $PROLOG_AFTER_2 - $PROLOG_BEFORE_1;
list($usec, $sec) = explode(" ", START_EXEC_EPILOG_BEFORE_1);
$EPILOG_BEFORE_1 = $sec + $usec;
$WORK_AREA = $EPILOG_BEFORE_1 - $PROLOG_AFTER_2;
list($usec, $sec) = explode(" ", START_EXEC_EPILOG_AFTER_1);
$EPILOG_AFTER_1 = $sec + $usec;
$EPILOG_BEFORE = $EPILOG_AFTER_1 - $EPILOG_BEFORE_1;
list($usec, $sec) = explode(" ", $START_EXEC_CURRENT_TIME);
$CURRENT_TIME = $sec + $usec;
$EPILOG_AFTER = $CURRENT_TIME - $EPILOG_AFTER_1;
$EPILOG = $CURRENT_TIME - $EPILOG_BEFORE_1;
$PAGE = $CURRENT_TIME - $PROLOG_BEFORE_1;
$arAreas = array(
"PAGE" => array("FLT" => array("PB", "AG", "PA", "WA", "EB", "EV", "EA"), "TIME" => $PAGE),
"PROLOG" => array("FLT" => array("PB", "AG", "PA" ), "TIME" => $PROLOG),
"PROLOG_BEFORE" => array("FLT" => array("PB" ), "TIME" => $PROLOG_BEFORE),
"AGENTS" => array("FLT" => array( "AG" ), "TIME" => $AGENTS),
"PROLOG_AFTER" => array("FLT" => array( "PA" ), "TIME" => $PROLOG_AFTER),
"WORK_AREA" => array("FLT" => array( "WA" ), "TIME" => $WORK_AREA),
"EPILOG" => array("FLT" => array( "EB", "EV", "EA"), "TIME" => $EPILOG),
"EPILOG_BEFORE" => array("FLT" => array( "EB" ), "TIME" => $EPILOG_BEFORE),
"EPILOG_AFTER" => array("FLT" => array( "EV", "EA"), "TIME" => $EPILOG_AFTER),
);
$j = 1;
foreach($arAreas as $i => $arArea)
{
$arAreas[$i]["NUM"] = $j;
$j++;
$arAreas[$i]["TRACE"] = array(
"PATH" => $APPLICATION->GetCurPage(),
"QUERY_COUNT" => 0,
"QUERY_TIME" => 0.0,
"QUERIES" => array(),
"TIME" => $arArea["TIME"],
"COMPONENT_COUNT" => 0,
"COMPONENT_TIME" => 0.0,
"COMP_QUERY_COUNT" => 0,
"COMP_QUERY_TIME" => 0.0,
);
}
foreach($GLOBALS["DB"]->arQueryDebug as $arQueryDebug)
{
foreach($arAreas as $i => $arArea)
{
if(in_array($arQueryDebug["BX_STATE"], $arArea["FLT"]))
{
$arAreas[$i]["TRACE"]["QUERY_COUNT"]++;
$arAreas[$i]["TRACE"]["QUERY_TIME"]+=$arQueryDebug["TIME"];
$arAreas[$i]["TRACE"]["QUERIES"][] = $arQueryDebug;
}
}
}
foreach($APPLICATION->arIncludeDebug as $i => $arIncludeDebug)
{
foreach($arAreas as $i => $arArea)
{
if(in_array($arIncludeDebug["BX_STATE"], $arArea["FLT"]))
{
$arAreas[$i]["TRACE"]["TIME"] -= $arIncludeDebug["TIME"];
$arAreas[$i]["TRACE"]["COMPONENT_COUNT"]++;
$arAreas[$i]["TRACE"]["COMPONENT_TIME"] += $arIncludeDebug["TIME"];
$arAreas[$i]["TRACE"]["COMP_QUERY_COUNT"] += $arIncludeDebug["QUERY_COUNT"];
$arAreas[$i]["TRACE"]["COMP_QUERY_TIME"] += $arIncludeDebug["QUERY_TIME"];
}
}
}
$bShowComps = count($APPLICATION->arIncludeDebug) > 0;
foreach($arAreas as $i => $arArea)
{
$arAreas[$i]["IND"] = count($APPLICATION->arIncludeDebug);
$APPLICATION->arIncludeDebug[]=$arArea["TRACE"];
}
echo '<a href="javascript:jsDebugTimeWindow.Show(\'BX_DEBUG_TIME_1\')">'.GetMessage("debug_info_cr_time").'</a> '.round($PAGE, 4).' '.GetMessage("debug_info_sec").'<br>';
}
elseif($bShowTime)
{
echo GetMessage("debug_info_cr_time").' '.round($main_exec_time, 4).' '.GetMessage("debug_info_sec").'<br>';
}
if($bShowStat):
$totalQueryCount = $GLOBALS["DB"]->cntQuery;
$totalQueryTime = $GLOBALS["DB"]->timeQuery;
foreach($APPLICATION->arIncludeDebug as $i=>$arIncludeDebug)
{
if(isset($arIncludeDebug["REL_PATH"]))
{
$totalQueryCount += $arIncludeDebug["QUERY_COUNT"];
$totalQueryTime += $arIncludeDebug["QUERY_TIME"];
}
}
echo GetMessage("debug_info_total_queries")." ".intval($totalQueryCount)."<br>";
echo GetMessage("debug_info_total_time")." ".round($totalQueryTime, 4)." ".GetMessage("debug_info_sec")."<br>";
echo '<a title="'.GetMessage("debug_info_query_title").'" href="javascript:jsDebugWindow.Show(\'BX_DEBUG_INFO_'.count($APPLICATION->arIncludeDebug).'\')">'.GetMessage("debug_info_query_stat").'</a><br>';
$APPLICATION->arIncludeDebug[]=array(
"PATH"=>$APPLICATION->GetCurPage(),
"QUERY_COUNT"=>intval($GLOBALS["DB"]->cntQuery),
"QUERY_TIME"=>round($GLOBALS["DB"]->timeQuery, 4),
"QUERIES"=>$GLOBALS["DB"]->arQueryDebug,
"TIME"=>$main_exec_time,
);
?>
<div id="BX_DEBUG_WINDOW" class="bx-debug-window">
<div class="bx-debug-title">
<table cellspacing="0" style="width:100% !important;">
<tr>
<td class="bx-debug-title-text" onmousedown="jsFloatDiv.StartDrag(arguments[0], document.getElementById('BX_DEBUG_WINDOW'));"><?echo GetMessage("debug_info_title")?></td>
<td width="0%"><a class="bx-debug-close" href="javascript:jsDebugWindow.Close();" title="<?echo GetMessage("debug_info_close")?>"></a></td>
</tr>
</table>
</div>
<?
foreach($APPLICATION->arIncludeDebug as $i=>$arIncludeDebug):
?>
<div id="BX_DEBUG_INFO_<?=$i?>" style="display:none">
<div class="bx-debug-description"><div class="bx-debug-info"></div>
<p><?echo GetMessage("debug_info_path")?> <?=$arIncludeDebug["PATH"]?></p>
<p><?echo GetMessage("debug_info_time")?> <?=$arIncludeDebug["TIME"]?> <?echo GetMessage("debug_info_sec")?></p>
<p><?echo GetMessage("debug_info_queries")?> <?=$arIncludeDebug["QUERY_COUNT"]?>, <?echo GetMessage("debug_info_time1")?> <?=$arIncludeDebug["QUERY_TIME"]?> <?echo GetMessage("debug_info_sec")?><?if($arIncludeDebug["TIME"] > 0):?> (<?=round($arIncludeDebug["QUERY_TIME"]/$arIncludeDebug["TIME"]*100, 2)?>%)<?endif?></p>
</div>
<?if(count($arIncludeDebug["QUERIES"])>0):?>
<div class="bx-debug-content bx-debug-content-table">
<?
$arQueries = array();
foreach($arIncludeDebug["QUERIES"] as $j=>$arQueryDebug)
{
$strSql = $arQueryDebug["QUERY"];
$arQueries[$strSql]["COUNT"]++;
$arQueries[$strSql]["CALLS"][] = array(
"TIME"=>$arQueryDebug["TIME"],
"TRACE"=>$arQueryDebug["TRACE"]
);
}
?>
<table cellpadding="0" cellspacing="0" border="0" style="width:100% !important;">
<?$j=1;foreach($arQueries as $strSql=>$query):?>
<tr>
<td align="right" valign="top"><?echo $j?></td>
<td><a href="javascript:jsDebugWindow.ShowDetails('BX_DEBUG_INFO_<?=$i."_".$j?>')"><?echo htmlspecialchars(substr($strSql, 0, 100))."..."?></a> (<?echo $query["COUNT"]?>) </td>
<td align="right" valign="top"><?
$t = 0.0;
foreach($query["CALLS"] as $call)
$t += $call["TIME"];
echo number_format($t/$query["COUNT"], 5);
?></td>
</tr>
<?$j++;endforeach;?>
</table>
</div>
<div class="bx-debug-content bx-debug-content-details">
<?$j=1;foreach($arQueries as $strSql=>$query):?>
<div id="BX_DEBUG_INFO_<?=$i."_".$j?>" style="display:none">
<b><?echo GetMessage("debug_info_query")?> <?echo $j?>:</b>
<br><br>
<?
$strSql = preg_replace("/[\\n\\r\\t\\s ]+/", " ", $strSql);
$strSql = preg_replace("/^ +/", "", $strSql);
$strSql = preg_replace("/ (INNER JOIN|OUTER JOIN|LEFT JOIN|SET|LIMIT) /i", "\n\\1 ", $strSql);
$strSql = preg_replace("/(INSERT INTO [A-Z_0-1]+?)\\s/i", "\\1\n", $strSql);
$strSql = preg_replace("/(INSERT INTO [A-Z_0-1]+?)([(])/i", "\\1\n\\2", $strSql);
$strSql = preg_replace("/([\\s)])(VALUES)([\\s(])/i", "\\1\n\\2\n\\3", $strSql);
$strSql = preg_replace("/ (FROM|WHERE|ORDER BY|GROUP BY|HAVING) /i", "\n\\1\n", $strSql);
echo str_replace(
array("\n"),
array("<br>"),
htmlspecialchars($strSql)
);
?>
<br><br>
<b><?echo GetMessage("debug_info_query_from")?></b>
<?
$k=1;
foreach($query["CALLS"] as $call):
$back_trace = $call["TRACE"];
?>
<?if(is_array($back_trace)):
foreach($back_trace as $n=>$tr):
?>
<br><br>
<b>(<?echo $k.".".($n+1)?>)</b>
<?
echo $tr["file"].":".$tr["line"]."<br><nobr>".htmlspecialchars($tr["class"].$tr["type"].$tr["function"]);
if($n == 0)
echo "(...)</nobr>";
else
echo "</nobr>(".htmlspecialchars(print_r($tr["args"], true)).")";
if($n>1)
break;
endforeach;
?>
<?
else: //is_array($back_trace)
?>
<br><br>
<b>(<?echo $k?>)</b> <?echo GetMessage("debug_info_query_from_unknown")?>
<?
endif
?>
<br><br>
<?echo GetMessage("debug_info_query_time")?> <?echo round($call["TIME"], 5)?> <?echo GetMessage("debug_info_sec")?>
<?
$k++;
endforeach;
?>
</div>
<?$j++;endforeach;?>
</div>
<?
endif; //if(count($arIncludeDebug["QUERIES"])>0)
?>
</div>
<?endforeach;?>
<div class="bx-debug-buttons">
<input type="button" value="<?echo GetMessage("debug_info_close1")?>" onclick="jsDebugWindow.Close()" title="<?echo GetMessage("debug_info_close")?>">
</div>
</div>
<?
endif; //$bShowStat
if($bShowExtTime)
{
?>
<script>
var jsDebugTimeWindow = new JCDebugWindow();
jsDebugTimeWindow.div_id = 'BX_DEBUG_TIME';
</script>
<div id="BX_DEBUG_TIME" class="bx-debug-window" style="z-index:99; width:660px !important;">
<div class="bx-debug-title">
<table cellspacing="0" style="width:100% !important;">
<tr>
<td class="bx-debug-title-text" onmousedown="jsFloatDiv.StartDrag(arguments[0], document.getElementById('BX_DEBUG_TIME'));"><?echo GetMessage("debug_info_cr_time")?></td>
<td width="0%"><a class="bx-debug-close" href="javascript:jsDebugTimeWindow.Close();" title="<?echo GetMessage("debug_info_close")?>"></a></td>
</tr>
</table>
</div>
<div class="bx-debug-description"><div class="bx-debug-info"></div>
<p><?echo GetMessage("debug_info_page")?> <?=$APPLICATION->GetCurPage()?></p>
<p><?echo GetMessage("debug_info_comps_cache")?> <?if(COption::GetOptionString("main", "component_cache_on", "Y")=="Y") echo GetMessage("debug_info_comps_cache_on"); else echo "<a href=\"/bitrix/admin/cache.php\"><font class=\"errortext\">".GetMessage("debug_info_comps_cache_off")."</font></a>";?>.</p>
<p> </p>
</div>
<div id="BX_DEBUG_TIME_1" style="display:none">
<div class="bx-debug-content bx-debug-content-table" style="height:auto !important;padding:0px !important;">
<table cellpadding="0" cellspacing="0" border="0" style="width:100% !important;">
<tr valign="bottom" class="heading">
<td> </td>
<td rowspan="2">
<?if($bShowComps):?>
<a style="font-weight:bold !important" href="javascript:jsDebugTimeWindow.ShowDetails('BX_DEBUG_TIME_1_1')"><?echo GetMessage("debug_info_whole_page")?></a>
<?else:?>
<b><?echo GetMessage("debug_info_whole_page")?></b>
<?endif?>
</td>
<td class="number" nowrap>
<span><?echo GetMessage("debug_info_page_exec")?></span>
</td>
<td class="number" nowrap>
<span><?echo GetMessage("debug_info_sec")?></span>
</td>
<?if($bShowComps):?>
<td class="number" nowrap>
<span><?echo GetMessage("debug_info_comps_exec")?></span>
</td>
<td class="number" nowrap>
<span><?echo GetMessage("debug_info_sec")?></span>
</td>
<?endif;?>
<?if($bShowStat):?>
<td class="number" nowrap>
<span><?echo GetMessage("debug_info_queries_exec")?></span>
</td>
<td class="number" nowrap>
<span><?echo GetMessage("debug_info_sec")?></span>
</td>
<?endif;?>
<td class="heading"> </td>
</tr>
<tr valign="top" class="heading heading-bottom">
<td> </td>
<td class="number" nowrap>
<b><?echo number_format($PAGE/$PAGE*100, 2),"%"?></b>
</td>
<td class="number" nowrap>
<b><?echo number_format($PAGE, 4)?></b>
</td>
<?if($bShowComps):?>
<td class="number" nowrap>
<b><?echo intval($arAreas["PAGE"]["TRACE"]["COMPONENT_COUNT"])?></b>
</td>
<td class="number" nowrap>
<b><?echo number_format($arAreas["PAGE"]["TRACE"]["COMPONENT_TIME"], 4)?></b>
</td>
<?endif;?>
<?if($bShowStat):?>
<td class="number" nowrap>
<b><?echo $arAreas["PAGE"]["TRACE"]["QUERY_COUNT"]+$arAreas["PAGE"]["TRACE"]["COMP_QUERY_COUNT"]?></b>
</td>
<td class="number" nowrap>
<b><?echo number_format($arAreas["PAGE"]["TRACE"]["QUERY_TIME"]+$arAreas["PAGE"]["TRACE"]["COMP_QUERY_TIME"], 4)?></b>
</td>
<?endif;?>
<td class="heading"> </td>
</tr>
<tr valign="top">
<td> </td>
<td>
<?if($bShowComps):?>
<p><a style="font-weight:bold !important" href="javascript:jsDebugTimeWindow.ShowDetails('BX_DEBUG_TIME_1_2')"><?echo GetMessage("debug_info_prolog")?></a></p>
<p>
<a href="javascript:jsDebugTimeWindow.ShowDetails('BX_DEBUG_TIME_1_3')"><?echo GetMessage("debug_info_prolog_before")?></a><br>
<a href="javascript:jsDebugTimeWindow.ShowDetails('BX_DEBUG_TIME_1_4')"><?echo GetMessage("debug_info_agents")?></a><br>
<a href="javascript:jsDebugTimeWindow.ShowDetails('BX_DEBUG_TIME_1_5')"><?echo GetMessage("debug_info_prolog_after")?></a><br>
</p>
<?else:?>
<p><b><?echo GetMessage("debug_info_prolog")?></b></p>
<p>
<?echo GetMessage("debug_info_prolog_before")?><br>
<?echo GetMessage("debug_info_agents")?><br>
<?echo GetMessage("debug_info_prolog_after")?><br>
</p>
<?endif?>
</td>
<td class="number" nowrap>
<p><b><?echo number_format($PROLOG/$PAGE*100, 2),"%"?></b></p>
<p>
<?echo number_format($PROLOG_BEFORE/$PAGE*100, 2),"%"?><br>
<?echo number_format($AGENTS/$PAGE*100, 2),"%"?><br>
<?echo number_format($PROLOG_AFTER/$PAGE*100, 2),"%"?><br>
</p>
</td>
<td class="number" nowrap>
<p><b><?echo number_format($PROLOG, 4)?></b></p>
<p>
<?echo number_format($PROLOG_BEFORE, 4)?><br>
<?echo number_format($AGENTS, 4)?><br>
<?echo number_format($PROLOG_AFTER, 4)?><br>
</p>
</td>
<?if($bShowComps):?>
<td class="number" nowrap>
<p><b><?echo intval($arAreas["PROLOG"]["TRACE"]["COMPONENT_COUNT"])?></b></p>
<p>
<?echo intval($arAreas["PROLOG_BEFORE"]["TRACE"]["COMPONENT_COUNT"])?><br>
<?echo intval($arAreas["AGENTS"]["TRACE"]["COMPONENT_COUNT"])?><br>
<?echo intval($arAreas["PROLOG_AFTER"]["TRACE"]["COMPONENT_COUNT"])?><br>
</p>
</td>
<td class="number" nowrap>
<p><b><?echo number_format($arAreas["PROLOG"]["TRACE"]["COMPONENT_TIME"], 4)?></b></p>
<p>
<?echo number_format($arAreas["PROLOG_BEFORE"]["TRACE"]["COMPONENT_TIME"], 4)?><br>
<?echo number_format($arAreas["AGENTS"]["TRACE"]["COMPONENT_TIME"], 4)?><br>
<?echo number_format($arAreas["PROLOG_AFTER"]["TRACE"]["COMPONENT_TIME"], 4)?><br>
</p>
</td>
<?endif;?>
<?if($bShowStat):?>
<td class="number" nowrap>
<p><b><?echo $arAreas["PROLOG"]["TRACE"]["QUERY_COUNT"]+$arAreas["PROLOG"]["TRACE"]["COMP_QUERY_COUNT"]?></b></p>
<p>
<?echo $arAreas["PROLOG_BEFORE"]["TRACE"]["QUERY_COUNT"]+$arAreas["PROLOG_BEFORE"]["TRACE"]["COMP_QUERY_COUNT"]?><br>
<?echo $arAreas["AGENTS"]["TRACE"]["QUERY_COUNT"]+$arAreas["AGENTS"]["TRACE"]["COMP_QUERY_COUNT"]?><br>
<?echo $arAreas["PROLOG_AFTER"]["TRACE"]["QUERY_COUNT"]+$arAreas["PROLOG_AFTER"]["TRACE"]["COMP_QUERY_COUNT"]?><br>
</p>
</td>
<td class="number" nowrap>
<p><b><?echo number_format($arAreas["PROLOG"]["TRACE"]["QUERY_TIME"]+$arAreas["PROLOG"]["TRACE"]["COMP_QUERY_TIME"], 4)?></b></p>
<p>
<?echo number_format($arAreas["PROLOG_BEFORE"]["TRACE"]["QUERY_TIME"]+$arAreas["PROLOG_BEFORE"]["TRACE"]["COMP_QUERY_TIME"], 4)?><br>
<?echo number_format($arAreas["AGENTS"]["TRACE"]["QUERY_TIME"]+$arAreas["AGENTS"]["TRACE"]["COMP_QUERY_TIME"], 4)?><br>
<?echo number_format($arAreas["PROLOG_AFTER"]["TRACE"]["QUERY_TIME"]+$arAreas["PROLOG_AFTER"]["TRACE"]["COMP_QUERY_TIME"], 4)?><br>
</p>
</td>
<?endif;?>
<td> </td>
</tr>
<tr valign="top">
<td> </td>
<td>
<?if($bShowComps):?>
<p><a style="font-weight:bold !important" href="javascript:jsDebugTimeWindow.ShowDetails('BX_DEBUG_TIME_1_6')"><?echo GetMessage("debug_info_work_area")?></a></p>
<?else:?>
<p><b><?echo GetMessage("debug_info_work_area")?></b></p>
<?endif?>
</td>
<td class="number" nowrap>
<p><b><?echo number_format($WORK_AREA/$PAGE*100, 2),"%"?></b></p>
</td>
<td class="number" nowrap>
<p><b><?echo number_format($WORK_AREA, 4)?></b></p>
</td>
<?if($bShowComps):?>
<td class="number" nowrap>
<b><?echo intval($arAreas["WORK_AREA"]["TRACE"]["COMPONENT_COUNT"])?></a>
</td>
<td class="number" nowrap>
<b><?echo number_format($arAreas["WORK_AREA"]["TRACE"]["COMPONENT_TIME"], 4)?></b>
</td>
<?endif;?>
<?if($bShowStat):?>
<td class="number" nowrap>
<p><b><?echo $arAreas["WORK_AREA"]["TRACE"]["QUERY_COUNT"]+$arAreas["WORK_AREA"]["TRACE"]["COMP_QUERY_COUNT"]?></b></p>
</td>
<td class="number" nowrap>
<p><b><?echo number_format($arAreas["WORK_AREA"]["TRACE"]["QUERY_TIME"]+$arAreas["WORK_AREA"]["TRACE"]["COMP_QUERY_TIME"], 4)?></b></p>
</td>
<?endif;?>
<td> </td>
</tr>
<tr valign="top">
<td> </td>
<td>
<?if($bShowComps):?>
<p><a style="font-weight:bold !important" href="javascript:jsDebugTimeWindow.ShowDetails('BX_DEBUG_TIME_1_7')"><?echo GetMessage("debug_info_epilog")?></a></p>
<p>
<a href="javascript:jsDebugTimeWindow.ShowDetails('BX_DEBUG_TIME_1_8')"><?echo GetMessage("debug_info_epilog_before")?></a><br>
<a href="javascript:jsDebugTimeWindow.ShowDetails('BX_DEBUG_TIME_1_9')"><?echo GetMessage("debug_info_epilog_after")?></a><br>
</p>
<?else:?>
<p><b><?echo GetMessage("debug_info_epilog")?></b></p>
<p>
<?echo GetMessage("debug_info_epilog_before")?><br>
<?echo GetMessage("debug_info_epilog_after")?><br>
</p>
<?endif?>
</td>
<td class="number" nowrap>
<p><b><?echo number_format($EPILOG/$PAGE*100, 2),"%"?></b></p>
<p>
<?echo number_format($EPILOG_BEFORE/$PAGE*100, 2),"%"?><br>
<?echo number_format($EPILOG_AFTER/$PAGE*100, 2),"%"?><br>
</p>
</td>
<td class="number" nowrap>
<p><b><?echo number_format($EPILOG, 4)?></b></p>
<p>
<?echo number_format($EPILOG_BEFORE, 4)?><br>
<?echo number_format($EPILOG_AFTER, 4)?><br>
</p>
</td>
<?if($bShowComps):?>
<td class="number" nowrap>
<p><b><?echo intval($arAreas["EPILOG"]["TRACE"]["COMPONENT_COUNT"])?></b></p>
<p>
<?echo intval($arAreas["EPILOG_BEFORE"]["TRACE"]["COMPONENT_COUNT"])?><br>
<?echo intval($arAreas["EPILOG_AFTER"]["TRACE"]["COMPONENT_COUNT"])?><br>
</p>
</td>
<td class="number" nowrap>
<p><b><?echo number_format($arAreas["EPILOG"]["TRACE"]["COMPONENT_TIME"], 4)?></b></p>
<p>
<?echo number_format($arAreas["EPILOG_BEFORE"]["TRACE"]["COMPONENT_TIME"], 4)?><br>
<?echo number_format($arAreas["EPILOG_AFTER"]["TRACE"]["COMPONENT_TIME"], 4)?><br>
</p>
</td>
<?endif;?>
<?if($bShowStat):?>
<td class="number" nowrap>
<p><b><?echo $arAreas["EPILOG"]["TRACE"]["QUERY_COUNT"]+$arAreas["EPILOG"]["TRACE"]["COMP_QUERY_COUNT"]?></b></p>
<p>
<?echo $arAreas["EPILOG_BEFORE"]["TRACE"]["QUERY_COUNT"]+$arAreas["EPILOG_BEFORE"]["TRACE"]["COMP_QUERY_COUNT"]?><br>
<?echo $arAreas["EPILOG_AFTER"]["TRACE"]["QUERY_COUNT"]+$arAreas["EPILOG_AFTER"]["TRACE"]["COMP_QUERY_COUNT"]?><br>
</p>
</td>
<td class="number" nowrap>
<p><b><?echo number_format($arAreas["EPILOG"]["TRACE"]["QUERY_TIME"]+$arAreas["EPILOG"]["TRACE"]["COMP_QUERY_TIME"], 4)?></b></p>
<p>
<?echo number_format($arAreas["EPILOG_BEFORE"]["TRACE"]["QUERY_TIME"]+$arAreas["EPILOG_BEFORE"]["TRACE"]["COMP_QUERY_TIME"], 4)?><br>
<?echo number_format($arAreas["EPILOG_AFTER"]["TRACE"]["QUERY_TIME"]+$arAreas["EPILOG_AFTER"]["TRACE"]["COMP_QUERY_TIME"], 4)?><br>
</p>
</td>
<?endif;?>
<td> </td>
</tr>
</table>
</div>
</div>
<?if($bShowComps):
?>
<div class="bx-debug-content bx-debug-content-table">
<?foreach($arAreas as $id => $arArea):?>
<div id="BX_DEBUG_TIME_1_<?echo $arArea["NUM"]?>" style="display:none">
<table cellpadding="0" cellspacing="0" border="0" style="width:100% !important;">
<?
$tim = 0;
foreach($APPLICATION->arIncludeDebug as $i=>$arIncludeDebug)
{
if(isset($arIncludeDebug["REL_PATH"]) && in_array($arIncludeDebug["BX_STATE"], $arArea["FLT"]))
{
$tim += $arIncludeDebug["TIME"];
}
}
if($tim > $arArea["TIME"]) $tim = $arArea["TIME"];
?>
<tr>
<td align="right" valign="top">0</td>
<td>
<?if($bShowStat):?>
<a title="<?echo GetMessage("debug_info_query_title")?>" href="javascript:jsDebugWindow.Show('BX_DEBUG_INFO_<?echo $arArea["IND"]?>')"><?echo GetMessage("debug_info_raw_code")?></a>
<?else:?>
<?echo GetMessage("debug_info_raw_code")?>
<?endif?>
</td>
<td> </td>
<td class="number" nowrap><?echo number_format((1-$tim/$arArea["TIME"])*100, 2)?>%</td>
<td class="number" nowrap><?echo number_format($arArea["TIME"] - $tim, 4)?> <?echo GetMessage("debug_info_sec")?></td>
<td class="number" nowrap><?echo intval($arArea["TRACE"]["QUERY_COUNT"])?> <?echo GetMessage("debug_info_query_short")?></td>
<td class="number" nowrap><?echo number_format($arArea["TRACE"]["QUERY_TIME"], 4)?> <?echo GetMessage("debug_info_sec")?></td>
</tr>
<?$j=1;$k=1;foreach($APPLICATION->arIncludeDebug as $i=>$arIncludeDebug):?>
<?if(isset($arIncludeDebug["REL_PATH"]) && in_array($arIncludeDebug["BX_STATE"], $arArea["FLT"])):?>
<tr>
<td align="right" valign="top"><?echo $k?></td>
<td>
<?if($bShowStat):?>
<a title="<?echo GetMessage("debug_info_query_title")?>" href="javascript:jsDebugWindow.Show('BX_DEBUG_INFO_<?echo $i?>')"><?echo htmlspecialchars($arIncludeDebug["REL_PATH"])?></a>
<?else:?>
<?echo htmlspecialchars($arIncludeDebug["REL_PATH"])?>
<?endif?>
</td>
<td> <?
switch($arIncludeDebug["CACHE_TYPE"])
{
case "N": echo GetMessage("debug_info_cache_off"); break;
case "Y": echo GetMessage("debug_info_cache_on"); break;
default: echo GetMessage("debug_info_cache_auto"); break;
}
?></td>
<td class="number" nowrap><?echo number_format($arIncludeDebug["TIME"]/$arArea["TIME"]*100, 2)?>%</td>
<td class="number" nowrap><?echo number_format($arIncludeDebug["TIME"], 4)?> <?echo GetMessage("debug_info_sec")?></td>
<td class="number" nowrap><?echo intval($arIncludeDebug["QUERY_COUNT"])?> <?echo GetMessage("debug_info_query_short")?></td>
<td class="number" nowrap><?echo number_format($arIncludeDebug["QUERY_TIME"], 4)?> <?echo GetMessage("debug_info_sec")?></td>
</tr>
<?$k++;endif;?>
<?$j++;endforeach;?>
</table>
</div>
<?endforeach;?>
</div>
<?endif;?>
<div class="bx-debug-buttons">
<input type="button" value="<?echo GetMessage("debug_info_close1")?>" onclick="jsDebugTimeWindow.Close()" title="<?echo GetMessage("debug_info_close")?>">
</div>
</div>
<?
}
if($bShowTime || $bShowStat)
echo '</div><div class="empty"></div>';
?>