<?php

	/**
	 * List extra information on a table
	 *
	 * $Id: info.php,v 1.14 2007/05/28 17:30:32 ioguix Exp $
	 */

	// Include application functions
	include_once('./libraries/lib.inc.php');

	$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';

	/**
	 * List all the information on the table
	 */
	function doDefault($msg = '') {
		global $data, $misc;
		global $lang;

		$misc->printTrail('table');
		$misc->printTabs('table','info');
		$misc->printMsg($msg);

		// common params for printVal
		$shownull = array('null' => true);

		// Fetch info
		$referrers = $data->getReferrers($_REQUEST['table']);
		$parents = $data->getTableParents($_REQUEST['table']);
		$children = $data->getTableChildren($_REQUEST['table']);
		$tablestatstups = $data->getStatsTableTuples($_REQUEST['table']);
		$tablestatsio = $data->getStatsTableIO($_REQUEST['table']);
		$indexstatstups = $data->getStatsIndexTuples($_REQUEST['table']);
		$indexstatsio = $data->getStatsIndexIO($_REQUEST['table']);
        
		// Check that there is some info
		if (($referrers === -99 || ($referrers !== -99 && $referrers->recordCount() == 0)) 
				&& $parents->recordCount() == 0 && $children->recordCount() == 0
				&& ($tablestatstups->recordCount() == 0 && $tablestatsio->recordCount() == 0
				&& $indexstatstups->recordCount() == 0 && $indexstatsio->recordCount() == 0)) {
			$misc->printMsg($lang['strnoinfo']);
		}
		else {
			// Referring foreign tables
			if ($referrers !== -99 && $referrers->recordCount() > 0) {
				echo "<h3>{$lang['strreferringtables']}</h3>\n";
				echo "<table>\n";
				echo "\t<tr>\n\t\t";
				echo "<th class=\"data\">{$lang['strschema']}</th>";
				echo "<th class=\"data\">{$lang['strtable']}</th>";
				echo "<th class=\"data\">{$lang['strname']}</th><th class=\"data\">{$lang['strdefinition']}</th>";
				echo "<th class=\"data\">{$lang['stractions']}</th>\n";
				echo "\t</tr>\n";
				$i = 0;
				
				while (!$referrers->EOF) {
					$id = ( ($i % 2 ) == 0 ? '1' : '2' );
					echo "\t<tr class=\"data{$id}\">\n\t\t";
					echo "<td>", $misc->printVal($referrers->fields['nspname']), "</td>";
					echo "<td>", $misc->printVal($referrers->fields['relname']), "</td>";
					echo "<td>", $misc->printVal($referrers->fields['conname']), "</td>";
					echo "<td>", $misc->printVal($referrers->fields['consrc']), "</td>";
					echo "<td class=\"opbutton{$id}\"><a href=\"constraints.php?{$misc->href}", 
						"&amp;schema=", urlencode($referrers->fields['nspname']),
						"&amp;table=", urlencode($referrers->fields['relname']), "\">{$lang['strproperties']}</a></td>\n";
					echo "\t</tr>\n";
					$referrers->movenext();
					$i++;
				}
	
				echo "</table>\n";
			}
			
			// Parent tables
			if ($parents->recordCount() > 0) {
				echo "<h3>{$lang['strparenttables']}</h3>\n";
				echo "<table>\n";
				echo "\t<tr>\n\t\t";
				echo "<th class=\"data\">{$lang['strschema']}</th>";
				echo "\t\t<th class=\"data\">{$lang['strtable']}</th>";			
				echo "<th class=\"data\">{$lang['stractions']}</th>\n";
				echo "\t</tr>\n";
				$i = 0;
				
				while (!$parents->EOF) {
					$id = ( ($i % 2 ) == 0 ? '1' : '2' );
					echo "\t<tr class=\"data{$id}\">\n";
					echo "\t\t<td>", $misc->printVal($parents->fields['nspname']), "</td>";
					echo "<td>", $misc->printVal($parents->fields['relname']), "</td>";
					echo "<td class=\"opbutton{$id}\"><a href=\"tblproperties.php?{$misc->href}",
						"&amp;schema=", urlencode($parents->fields['nspname']),
						"&amp;table=", urlencode($parents->fields['relname']), "\">{$lang['strproperties']}</a></td>\n";
					echo "\t</tr>\n";
					$parents->movenext();
					$i++;
				}
	
				echo "</table>\n";
			}
	
			// Child tables
			if ($children->recordCount() > 0) {
				echo "<h3>{$lang['strchildtables']}</h3>\n";
				echo "<table>\n";
				echo "\t<tr>\n";
				echo "<th class=\"data\">{$lang['strschema']}</th>";
				echo "\t\t<th class=\"data\">{$lang['strtable']}</th>";			
				echo "<th class=\"data\">{$lang['stractions']}</th>\n";
				echo "\t</tr>\n";
				$i = 0;
				
				while (!$children->EOF) {
					$id = ( ($i % 2 ) == 0 ? '1' : '2' );
					echo "\t<tr class=\"data{$id}\">\n";
					echo "\t\t<td>", $misc->printVal($children->fields['nspname']), "</td>";
					echo "<td>", $misc->printVal($children->fields['relname']), "</td>";
					echo "<td class=\"opbutton{$id}\"><a href=\"tblproperties.php?{$misc->href}",
						"&amp;schema=", urlencode($children->fields['nspname']),
						"&amp;table=", urlencode($children->fields['relname']), "\">{$lang['strproperties']}</a></td>\n";
					echo "\t</tr>\n";
					$children->movenext();
					$i++;
				}
	
				echo "</table>\n";
			}

			// Row performance
			if ($tablestatstups->recordCount() > 0) {
				echo "<h3>{$lang['strrowperf']}</h3>\n";

				echo "<table>\n";
				echo "\t<tr>\n";
				echo "\t\t<th class=\"data\" colspan=\"2\">{$lang['strsequential']}</th>\n";
				echo "\t\t<th class=\"data\" colspan=\"2\">{$lang['strindex']}</th>\n";
				echo "\t\t<th class=\"data\" colspan=\"3\">{$lang['strrows2']}</th>\n";
				echo "\t</tr>\n";
				echo "\t<tr>\n";
				echo "\t\t<th class=\"data\">{$lang['strscan']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strread']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strscan']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strfetch']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strinsert']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strupdate']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strdelete']}</th>\n";
				echo "\t</tr>\n";
				$i = 0;
				
				while (!$tablestatstups->EOF) {
					$id = ( ($i % 2 ) == 0 ? '1' : '2' );
					echo "\t<tr class=\"data{$id}\">\n";
					echo "\t\t<td>", $misc->printVal($tablestatstups->fields['seq_scan'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($tablestatstups->fields['seq_tup_read'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($tablestatstups->fields['idx_scan'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($tablestatstups->fields['idx_tup_fetch'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($tablestatstups->fields['n_tup_ins'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($tablestatstups->fields['n_tup_upd'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($tablestatstups->fields['n_tup_del'], 'int4', $shownull), "</td>\n";
					echo "\t</tr>\n";
					$tablestatstups->movenext();
					$i++;
				}
	
				echo "</table>\n";
			}

			// I/O performance
			if ($tablestatsio->recordCount() > 0) {
				echo "<h3>{$lang['strioperf']}</h3>\n";

				echo "<table>\n";
				echo "\t<tr>\n";
				echo "\t\t<th class=\"data\" colspan=\"3\">{$lang['strheap']}</th>\n";
				echo "\t\t<th class=\"data\" colspan=\"3\">{$lang['strindex']}</th>\n";
				echo "\t\t<th class=\"data\" colspan=\"3\">{$lang['strtoast']}</th>\n";
				echo "\t\t<th class=\"data\" colspan=\"3\">{$lang['strtoastindex']}</th>\n";
				echo "\t</tr>\n";
				echo "\t<tr>\n";
				echo "\t\t<th class=\"data\">{$lang['strdisk']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strcache']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strpercent']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strdisk']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strcache']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strpercent']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strdisk']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strcache']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strpercent']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strdisk']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strcache']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strpercent']}</th>\n";
				echo "\t</tr>\n";
				$i = 0;
				
				while (!$tablestatsio->EOF) {
					$id = ( ($i % 2 ) == 0 ? '1' : '2' );
					echo "\t<tr class=\"data{$id}\">\n";

					$total = $tablestatsio->fields['heap_blks_hit'] + $tablestatsio->fields['heap_blks_read'];
					if ($total > 0)	$percentage = round(($tablestatsio->fields['heap_blks_hit'] / $total) * 100);
					else $percentage = 0;
					echo "\t\t<td>", $misc->printVal($tablestatsio->fields['heap_blks_read'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($tablestatsio->fields['heap_blks_hit'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>({$percentage}{$lang['strpercent']})</td>\n";

					$total = $tablestatsio->fields['idx_blks_hit'] + $tablestatsio->fields['idx_blks_read'];
					if ($total > 0)	$percentage = round(($tablestatsio->fields['idx_blks_hit'] / $total) * 100);
					else $percentage = 0;
					echo "\t\t<td>", $misc->printVal($tablestatsio->fields['idx_blks_read'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($tablestatsio->fields['idx_blks_hit'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>({$percentage}{$lang['strpercent']})</td>\n";

					$total = $tablestatsio->fields['toast_blks_hit'] + $tablestatsio->fields['toast_blks_read'];
					if ($total > 0)	$percentage = round(($tablestatsio->fields['toast_blks_hit'] / $total) * 100);
					else $percentage = 0;
					echo "\t\t<td>", $misc->printVal($tablestatsio->fields['toast_blks_read'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($tablestatsio->fields['toast_blks_hit'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>({$percentage}{$lang['strpercent']})</td>\n";

					$total = $tablestatsio->fields['tidx_blks_hit'] + $tablestatsio->fields['tidx_blks_read'];
					if ($total > 0)	$percentage = round(($tablestatsio->fields['tidx_blks_hit'] / $total) * 100);
					else $percentage = 0;
					echo "\t\t<td>", $misc->printVal($tablestatsio->fields['tidx_blks_read'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($tablestatsio->fields['tidx_blks_hit'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>({$percentage}{$lang['strpercent']})</td>\n";
					echo "\t</tr>\n";
					$tablestatsio->movenext();
					$i++;
				}
	
				echo "</table>\n";
			}

			// Index row performance
			if ($indexstatstups->recordCount() > 0) {
				echo "<h3>{$lang['stridxrowperf']}</h3>\n";

				echo "<table>\n";
				echo "\t<tr>\n";
				echo "\t\t<th class=\"data\">{$lang['strindex']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strscan']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strread']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strfetch']}</th>\n";
				echo "\t</tr>\n";
				$i = 0;
				
				while (!$indexstatstups->EOF) {
					$id = ( ($i % 2 ) == 0 ? '1' : '2' );
					echo "\t<tr class=\"data{$id}\">\n";
					echo "\t\t<td>", $misc->printVal($indexstatstups->fields['indexrelname']), "</td>\n";
					echo "\t\t<td>", $misc->printVal($indexstatstups->fields['idx_scan'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($indexstatstups->fields['idx_tup_read'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($indexstatstups->fields['idx_tup_fetch'], 'int4', $shownull), "</td>\n";
					echo "\t</tr>\n";
					$indexstatstups->movenext();
					$i++;
				}
	
				echo "</table>\n";
			}

			// Index I/0 performance
			if ($indexstatsio->recordCount() > 0) {
				echo "<h3>{$lang['stridxioperf']}</h3>\n";

				echo "<table>\n";
				echo "\t<tr>\n";
				echo "\t\t<th class=\"data\">{$lang['strindex']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strdisk']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strcache']}</th>\n";
				echo "\t\t<th class=\"data\">{$lang['strpercent']}</th>\n";
				echo "\t</tr>\n";
				$i = 0;
				
				while (!$indexstatsio->EOF) {
					$id = ( ($i % 2 ) == 0 ? '1' : '2' );
					echo "\t<tr class=\"data{$id}\">\n";
					$total = $indexstatsio->fields['idx_blks_hit'] + $indexstatsio->fields['idx_blks_read'];
					if ($total > 0)	$percentage = round(($indexstatsio->fields['idx_blks_hit'] / $total) * 100);
					else $percentage = 0;
					echo "\t\t<td>", $misc->printVal($indexstatsio->fields['indexrelname']), "</td>\n";
					echo "\t\t<td>", $misc->printVal($indexstatsio->fields['idx_blks_read'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>", $misc->printVal($indexstatsio->fields['idx_blks_hit'], 'int4', $shownull), "</td>\n";
					echo "\t\t<td>({$percentage}{$lang['strpercent']})</td>\n";
					echo "\t</tr>\n";
					$indexstatsio->movenext();
					$i++;
				}
	
				echo "</table>\n";
			}
		}
	}

	$misc->printHeader($lang['strtables'] . ' - ' . $_REQUEST['table'] . ' - ' . $lang['strinfo']);
	$misc->printBody();
	
	switch ($action) {
		default:
			doDefault();
			break;
	}
	
	$misc->printFooter();

?>