--- nfo/site/htdocs/inc/common/common.php.inc 2004/08/24 03:27:47 1.1 +++ nfo/site/htdocs/inc/common/common.php.inc 2004/08/30 04:19:20 1.3 @@ -4,47 +4,324 @@ --- Setup and common functions include file. -------------------------------------------------------------------------------- --- rabit, 04:31 24.08.2004 ---- $$id$$ +--- $Id: common.php.inc,v 1.3 2004/08/30 04:19:20 rabit Exp $ ------------------------------------------------------------------------------*/ +//------------------------------------------------------------------------------ +//- Benchmarking: + +// Create the benchmark steps array inside "$common": +$common['benchmark'] = array(); + +function common_benchmark_addstep($caption) { + +global $common; + + $step = array($caption, microtime()); + + array_push($common['benchmark'], $step); + +} + +// The starting entry in the benchmark steps list: +common_benchmark_addstep('COMMON: start'); + //---------------------------------------------------------- -//- Developer host setup: +//- Developer host setups: -$cfg['hostsetups'] = array( +$hostsetups = array( 'default' => array( 'urlrel' => '/nfo/', + 'devstate' => false, + 'mysql_host' => 'localhost', + 'mysql_user' => 'nfo', + 'mysql_pass' => 'b2-cV5RF', + 'mysql_db' => 'nfo' ), 'psl.no-ip.com' => array( 'urlrel' => '/work/www.netfrag.org/', + 'devstate' => true, + 'mysql_host' => 'localhost', + 'mysql_user' => 'php', + 'mysql_pass' => 'A289tpQ1', + 'mysql_db' => 'nfo' ), ); -if(isset($cfg['hostsetups'][$_SERVER['SERVER_NAME']])) { +// Set the default host setup: +$common['hostsetup'] = $hostsetups['default']; - $cfg['hostsetup'] = $cfg['hostsetups'][$_SERVER['SERVER_NAME']]; +// Set the host setup if a listed host name is given: +if(isset($hostsetups[$_SERVER['SERVER_NAME']])) $common['hostsetup'] = $hostsetups[$_SERVER['SERVER_NAME']]; -} else { +unset($hostsetups); - $cfg['hostsetup'] = $cfg['hostsetups']['default']; +//---------------------------------------------------------- +//- Site variable setups: -} +$common['site']['docroot'] = $_SERVER['DOCUMENT_ROOT'] . $common['hostsetup']['urlrel']; +$common['site']['incroot'] = $common['site']['docroot'] . 'inc/'; -$documentroot = $_SERVER['DOCUMENT_ROOT'] . $cfg['hostsetup']['urlrel']; +//---------------------------------------------------------- +//- Page variable setups: + +$common['page']['filename'] = substr($_SERVER['PHP_SELF'], strrpos($_SERVER['PHP_SELF'], '/') + 1); +$common['page']['url'] = $_SERVER['PHP_SELF']; + +common_benchmark_addstep('COMMON: setup'); //------------------------------------------------------------------------------ -//- Configuration include file: +//- Includes: + +//common_include('cfg/cfg.php.inc'); +//common_benchmark_addstep('COMMON: CFG included'); + +common_include('xmlcp/xmlcp.php.inc'); +common_benchmark_addstep('COMMON: XMLCP included'); -include($documentroot . 'inc/cfg/cfg.php.inc'); +common_include('cms/cms.php.inc'); +common_benchmark_addstep('COMMON: CMS included'); + +//------------------------------------------------------------------------------ +//- MySQL connection: + +$common['dbc']['dbconnected'] = common_dbc_connectdb(); + +common_benchmark_addstep('COMMON: connect database'); + +//------------------------------------------------------------------------------ +//- Session setup: + +// Neither proxies, nor the clients are allowed to cache session data: +session_cache_limiter('nocache'); + +// This is neccessary to make the $_SESSION global available: +session_start(); + +common_benchmark_addstep('COMMON: session init'); + +if(!isset($_SESSION['common_sessiondata'])) { + + // The session variable isn't set, create it: + + common_benchmark_addstep('COMMON: New session: start'); + + $common_sessiondata = array( + + 'birthtime' => time(), + 'firstrequest' => 1, // Mark the very first page request. + + 'additionaldata' => array() + + ); + + common_benchmark_addstep('COMMON: New session: create session'); + + // Protocol the visitors hit and store the columns insertion ID: + $common_sessiondata['hit_id'] = common_protocolhit(); + + common_benchmark_addstep('COMMON: New session: protocol hit'); + + // Store a reference to the session data array: + $_SESSION['common_sessiondata'] = &$common_sessiondata; + + common_benchmark_addstep('COMMON: New session: store session/end'); + +} else { + + // Restore the session data array reference: + $common_sessiondata = &$_SESSION['common_sessiondata']; + + // Reset the first page request flag: + $common_sessiondata['firstrequest'] = null; + + // Update the request count in the "hits" table: + + $sql = "UPDATE hits SET requestcount=requestcount+1 WHERE id='" . $common_sessiondata['hit_id'] . "';"; + + mysql_query($sql); + + common_benchmark_addstep('COMMON: session/hit data updated'); + +} //------------------------------------------------------------------------------ //- Functions: +function common_protocolhit() { + +global $common, $common_sessiondata; + + $address = $_SERVER['REMOTE_ADDR'] . ':' . $_SERVER["REMOTE_PORT"]; + $entryurl = $_SERVER['REQUEST_URI']; + $referer = (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : ''); + $sessionid = session_id(); + $unixtime = $common_sessiondata['birthtime']; + $timestamp = date('YmdHis', $common_sessiondata['birthtime']); + $useragent = $_SERVER['HTTP_USER_AGENT']; + + $sql = "INSERT INTO hits (id, timestamp, address, entryurl, referer, sessionid, useragent, requestcount) VALUES (DEFAULT, FROM_UNIXTIME('$unixtime'), '$address', '$entryurl', '$referer', '$sessionid', '$useragent', '1');"; + + $res = mysql_query($sql); + + if(!$res) return false; + + return mysql_insert_id($common['dbc']['h_myqsllink']); + +} + +//---------------------------------------------------------- + +//- Database functions: + +function common_dbc_connect() { + +global $common; + + $common['dbc']['connected'] = false; + + $h_myqsllink = mysql_pconnect( + $common['hostsetup']['mysql_host'], + $common['hostsetup']['mysql_user'], + $common['hostsetup']['mysql_pass'] + ); + + if(!$h_myqsllink) return false; + + $common['dbc']['connected'] = true; + $common['dbc']['h_myqsllink'] = $h_myqsllink; + + return true; + +} + +function common_dbc_selectdb() { + +global $common; + + $common['dbc']['dbselected'] = false; + + if( + !mysql_selectdb($common['hostsetup']['mysql_db']) + ) return false; + + $common['dbc']['dbselected'] = true; + + return true; + +} + +function common_dbc_connectdb() { + + return (common_dbc_connect() && common_dbc_selectdb()); + +} + +//---------------------------------------------------------- + +//- File functions: + +function common_include($filename) { + +global $common; + + return include($common['site']['incroot'] . $filename); + +} + +//---------------------------------------------------------- + +//- XMLCP setup: + +xmlcp_registertagcallbacks('b', 'common_cb_xmlcp_start_bold', 'common_cb_xmlcp_end_bold'); +xmlcp_registertagcallbacks('h', 'common_cb_xmlcp_start_headline', 'common_cb_xmlcp_end_headline'); +xmlcp_registertagcallbacks('p', 'common_cb_xmlcp_start_paragraph', 'common_cb_xmlcp_end_paragraph'); +xmlcp_registertagcallbacks('page', 'common_cb_xmlcp_start_page', 'common_cb_xmlcp_end_page'); + +function common_cb_xmlcp_end_bold($h_parser, $tagname) { + +global $xmlcp_cdata; + + $xmlcp_cdata .= ''; + +} + +function common_cb_xmlcp_start_bold($h_parser, $tagname, $attribs) { + +global $xmlcp_cdata; + + $xmlcp_cdata .= ''; + +} + +function common_cb_xmlcp_end_page($h_parser, $tagname) { + +} + +function common_cb_xmlcp_start_page($h_parser, $tagname, $attribs) { + +} + +function common_cb_xmlcp_end_headline($h_parser, $tagname) { + +global $xmlcp_cdata; + + common_headline(trim($xmlcp_cdata)); + + $xmlcp_cdata = ''; + +} + +function common_cb_xmlcp_start_headline($h_parser, $tagname, $attribs) { + +global $xmlcp_cdata; + + $xmlcp_cdata = ''; + +} + +function common_cb_xmlcp_end_paragraph($h_parser, $tagname) { + +global $xmlcp_cdata; + + common_paragraph(trim($xmlcp_cdata)); + + $xmlcp_cdata = ''; + +} + +function common_cb_xmlcp_start_paragraph($h_parser, $tagname, $attribs) { + +global $xmlcp_cdata; + + $xmlcp_cdata = ''; + +} + +//---------------------------------------------------------- + +//- ML functions: + +function common_codeparagraph($contents) { + + echo '

+ +' . $contents . ' + +

+ +'; + +} + +//---------------------------------------------------------- + function common_headline($caption) { - echo '
' . $caption . '
+ echo '

' . $caption . '

'; @@ -52,8 +329,95 @@ //---------------------------------------------------------- +function common_page($keyname, $language_id = 0) { + +global $common; + + common_benchmark_addstep('COMMON: PAGE: start'); + + $list = cms_getlist('xmlpage', $keyname); + + common_benchmark_addstep('COMMON: PAGE: CMS get list'); + + $contentdata = cms_getcontent('xmlpage', $keyname, $language_id); + + common_benchmark_addstep('COMMON: PAGE: CMS get content'); + + $xml = $contentdata['content']; + + common_pageheader(); + + common_benchmark_addstep('COMMON: PAGE: header'); + + if($xml) { + + $titledata = ''; + + for($i = 0; $i < count($list); $i++) { + + $titledata .= ($i ? ' · ' : '') . '' . $list[$i][4] . ''; + + } + + common_pagetitle($contentdata['description'], $titledata); + + xmlcp_xmlpage2html($xml); + + common_benchmark_addstep('COMMON: PAGE: xmlpage2html'); + +/* + common_headline('$list array, readable:'); + common_codeparagraph('$list = ' . nl2br(htmlentities(print_r($list, true)))); + + common_headline('$contentdata array, readable:'); + common_codeparagraph('$contentdata = ' . nl2br(htmlentities(print_r($contentdata, true)))); + + common_headline('$common array, readable:'); + common_codeparagraph('$common = ' . nl2br(htmlentities(print_r($common, true)))); + + common_headline('$common_sessiondata array, readable:'); + common_codeparagraph('$common_sessiondata = ' . nl2br(htmlentities(print_r($common_sessiondata, true)))); + + common_headline('Content XML:'); + common_codeparagraph(nl2br(htmlentities($xml))); + +*/ + + // Only show the informations when "devstate" is set: + if($common['hostsetup']['devstate']) { + + common_paragraph(' +Content informations:
+
+Description: "' . $contentdata['description'] . '" (Type: "xmlpage")
+Creator: "' . $contentdata['creator_name'] . '"
+Date, Time: "' . date('d.m.Y, H:i:s', $contentdata['unixtime']) . '"
+Language: "' . $contentdata['language_name'] . '"
+XML content size: ' . strlen($xml) . ' bytes +
', 'box2'); + + } + + } else { + + common_pagetitle('Bad content request'); + + common_paragraph('Sorry, but the requested content is unknown.'); + + } + + common_benchmark_addstep('COMMON: PAGE: content'); + + common_pagefooter(); + +} + +//---------------------------------------------------------- + function common_pageheader() { +global $common; + echo ' @@ -61,9 +425,14 @@ www.netfrag.org @@ -71,8 +440,6 @@

www.netfrag.org

-

• Home

- '; } @@ -81,9 +448,60 @@ function common_pagefooter() { - echo '

-(foot notes) -

+global $common; + + // Only show the benchmark list when "devstate" is set: + if($common['hostsetup']['devstate']) { + + $contents = ''; + + for($i = 0; $i < count($common['benchmark']); $i++) { + + $mtimesegs = explode(' ', $common['benchmark'][$i][1]); + $contents .= '"' . $common['benchmark'][$i][0] . '": '; + + if($i) { + + $timediff = (float)($mtimesegs[1] - $lastmtimesegs[1]); + $timediff += $mtimesegs[0] - $lastmtimesegs[0]; + + $contents .= '+' . round($timediff * 1000000) / 1000 . ' ms
+'; + + } else { + + $contents .= 'Start time: ' . date('H:i:s', $mtimesegs[1]) . substr($mtimesegs[0], 1, 4) . '
+'; + + } + + $lastmtimesegs = $mtimesegs; + + } + + common_paragraph(' +Partial execution times:
+
+' . $contents . '
', 'box2'); + + } + + common_benchmark_addstep('COMMON: page footer'); + + $endmtimesegs = explode(' ', microtime()); + $startmtimesegs = explode(' ', $common['benchmark'][0][1]); + $timediff = (float)($endmtimesegs[1] - $startmtimesegs[1]); + $timediff += $endmtimesegs[0] - $startmtimesegs[0]; + + echo ' + + + + +
+Page execution time: ' . round($timediff * 100000) / 100 . ' ms. +This page is valid XHTML 1.0 +Valid CSS!
@@ -94,6 +512,19 @@ //---------------------------------------------------------- +function common_pagetitle($title, $additionalcontents = '') { + + echo '

+• ' . $title . '
+' . ($additionalcontents ? $additionalcontents . ' +' : '') . '

+ +'; + +} + +//---------------------------------------------------------- + function common_paragraph($contents, $class = '') { echo '

@@ -106,4 +537,8 @@ //------------------------------------------------------------------------------ -?> \ No newline at end of file +common_benchmark_addstep('COMMON: end'); + +//------------------------------------------------------------------------------ + +?>