loganalyzer/classes/logstreamdisk.class.php

367 lines
9.8 KiB
PHP

<?php
/*
*********************************************************************
* Copyright by Adiscon GmbH | 2008! *
* -> www.phplogcon.org <- *
* *
* Use this script at your own risk! *
* ----------------------------------------------------------------- *
* Some constants *
* *
* LogStreamDisk provides access to the data on disk. In the most
* cases this will be plain text files. If we need access to e.g.
* zipped files, this will be handled by a separate driver.
*
* \version 1.0.1 2nd Version
* \version 1.0.0 Init Version
* *
* All directives are explained within this file *
*********************************************************************
*/
// --- Avoid directly accessing this file!
if ( !defined('IN_PHPLOGCON') )
{
die('Hacking attempt');
exit;
}
// ---
// --- Required Includes!
require_once($gl_root_path . 'include/constants_errors.php');
// ---
class LogStreamDisk extends LogStream {
private $_currentOffset = -1;
private $_currentStartPos = -1;
private $_fp = null;
private $_bEOS = false;
const _BUFFER_length = 8192;
private $_buffer = false;
private $_buffer_length = -1;
private $_p_buffer = -1;
// cache for backwards reading
private $_cache_lines = null;
private $_p_cache_lines = -1;
// Constructor
public function LogStreamDisk($streamConfigObj) {
$this->_logStreamConfigObj = $streamConfigObj;
}
/**
* Open the file with read access.
*
* @param arrProperties array in: Properties wish list.
* @return integer Error stat
*/
public function Open($arrProperties) {
if(!file_exists($this->_logStreamConfigObj->FileName)) {
return ERROR_FILE_NOT_FOUND;
}
$this->_fp = fopen($this->_logStreamConfigObj->FileName, 'r');
$this->_currentOffset = ftell($this->_fp);
$this->_currentStartPos = $this->_currentOffset;
$this->_arrProperties = $arrProperties;
return SUCCESS;
}
/**
* Close the file.
*
* @return integer Error state
*/
public function Close() {
if (!fclose($this->_fp)) {
return ERROR_FILE_CANT_CLOSE;
}
return SUCCESS;
}
private function ReadNextBlock() {
$this->_bEOS = false;
if ($this->_readDirection == EnumReadDirection::Backward) {
// in this case we have to adjust a few settings
// first of all, check if this is the first read
if ($this->_buffer == false) {
// this means that we have to read from the end
fseek($this->_fp, 0, SEEK_END);
}
$this->_p_buffer = self::_BUFFER_length - 1;
$orig_offset = ftell($this->_fp) - $this->_buffer_length;
if ($orig_offset <= 0) {
// apparently we are at BOF so nothing to read
return ERROR_EOS;
}
// jumb to the new position
$orig_offset -= self::_BUFFER_length;
if ($orig_offset <= 0) {
// ok, we have to adjust the buffer pointer
$this->_p_buffer += $orig_offset; // not orig_offset is negative
$orig_offset = 0;
}
fseek($this->_fp, $orig_offset);
} else {
$this->_p_buffer = 0;
}
$this->_buffer = fread($this->_fp, self::_BUFFER_length);
$this->_buffer_length = strlen($this->_buffer);
if ($this->_buffer == false)
return ERROR_FILE_EOF;
return SUCCESS;
}
/**
* Read the data from a specific uID which means in this
* case from a given offset of the file.
*
* @param uID integer in/out: unique id of the data row
* @param arrProperitesOut array out: array filled with properties
* @return integer Error state
* @see ReadNext()
*/
public function Read($uID, &$arrProperitesOut) {
fseek($this->_fp, $uI);
// with Read we can only read forwards.
// so we have to remember the current read
// direction
$tmp = $this->_readDirection;
$iRet = $this->ReadNext($uID, $arrProperitesOut);
$this->_readDirection = $tmp;
return $iRet;
}
/**
* Read the next line from the file depending on the current
* read direction.
*
* Hint: If the current stream becomes unavailable an error
* stated is retuned. A typical case is if a log rotation
* changed the original data source.
*
* @param uID integer out: uID is the offset of data row
* @param arrProperitesOut array out: properties
* @return integer Error state
* @see ReadNext
*/
public function ReadNext(&$uID, &$arrProperitesOut) {
if ($this->_readDirection == EnumReadDirection::Forward) {
return $this->ReadNextForwards($uID, $arrProperitesOut);
}
return $this->ReadNextBackwards($uID, $arrProperitesOut);
}
private function ReadNextForwards(&$uID, &$arrProperitesOut) {
if ($this->_bEOS) {
return ERROR_EOS;
}
if ($this->_p_buffer == -1) {
// init read
$this->ReadNextBlock();
}
if (($this->_p_buffer == $this->_buffer_length || $this->_p_buffer == -1) && ($this->ReadNextBlock() != SUCCESS)) {
return ERROR_UNDEFINED;
}
$line = '';
$arrProperitesOut[SYSLOG_DATE] = '';
$arrProperitesOut[SYSLOG_FACILITY] = '';
$arrProperitesOut[SYSLOG_FACILITY_TEXT] = '';
$arrProperitesOut[SYSLOG_SEVERITY] = '';
$arrProperitesOut[SYSLOG_SEVERITY_TEXT] = '';
$arrProperitesOut[SYSLOG_HOST] = '';
$arrProperitesOut[SYSLOG_SYSLOGTAG] = '';
$arrProperitesOut[SYSLOG_MESSAGE] = '';
$arrProperitesOut[SYSLOG_MESSAGETYPE] = '';
do {
$pos = -1;
if (($pos = strpos($this->_buffer, "\n", $this->_p_buffer)) !== false) {
$uID = $this->_currentStartPos;
$logLine = $line . substr($this->_buffer, $this->_p_buffer, $pos - $this->_p_buffer);
$arrProperitesOut[SYSLOG_MESSAGE] = $logLine;
// the buffer pointer currently points to the linefeed
// so we have to increment the pointer to eat it
$this->_currentOffset += $pos - $this->_p_buffer + 1;
$this->_p_buffer = $pos + 1;
$this->_currentStartPos = $this->_currentOffset;
return SUCCESS;
}
$line .= substr($this->_buffer, $this->_p_buffer, $this->_buffer_length - $this->_p_buffer);
$this->_currentOffset += $this->_buffer_length - $this->_p_buffer;
} while ($this->ReadNextBlock() == SUCCESS);
if ($line != '') {
$uID = $this->_currentStartPos;
$arrProperitesOut[SYSLOG_MESSAGE] = $line;
$this->_currentStartPos = $this->_currentOffset;
return SUCCESS;
}
return ERROR_UNDEFINED;
}
private function ReadNextBackwards(&$uID, &$arrProperitesOut) {
$arrProperitesOut[SYSLOG_DATE] = '';
$arrProperitesOut[SYSLOG_FACILITY] = '';
$arrProperitesOut[SYSLOG_FACILITY_TEXT] = '';
$arrProperitesOut[SYSLOG_SEVERITY] = '';
$arrProperitesOut[SYSLOG_SEVERITY_TEXT] = '';
$arrProperitesOut[SYSLOG_HOST] = '';
$arrProperitesOut[SYSLOG_SYSLOGTAG] = '';
$arrProperitesOut[SYSLOG_MESSAGE] = '';
$arrProperitesOut[SYSLOG_MESSAGETYPE] = '';
if ($this->_bEOS) {
return ERROR_EOS;
}
if (($this->_p_buffer <= 0) && ($this->ReadNextBlock() != SUCCESS)) {
return ERROR_UNDEFINED;
}
$line = '';
do {
$pos = -1;
$neg_offset = ($this->_buffer_length - $this->_p_buffer) * -1;
if (($pos = strrpos($this->_buffer, "\n", $neg_offset)) !== false) {
// not that we are at the position of linefeed, so go one char forward:
$uID = $this->_currentOffset -= $this->_p_buffer - $pos - 1;
$arrProperitesOut[SYSLOG_MESSAGE] = $line . substr($this->_buffer, $pos + 1, $this->_p_buffer - $pos);
$this->_p_buffer = $pos - 1;
return SUCCESS;
}
$line .= substr($this->_buffer, 0, $this->_p_buffer);
$this->_currentOffset -= $this->_p_buffer;
} while ($this->ReadNextBlock() == SUCCESS);
if ($line != '') {
// this case should only happend if we are on BOF
$this->_bEOS = true;
$uID = 0;
$arrProperitesOut[SYSLOG_MESSAGE] = $line;
return SUCCESS;
}
return ERROR_EOS;
}
/*
private function ReadNextBackwards(&$uID, &$arrProperitesOut) {
if ($this->_p_cache_lines < 0) {
if (($iRet = $this->InitCacheLines()) > 0) { // error or BOF?
return $iRet;
}
}
// at this stage we can read from cache
$uID = $this->_cache_lines[$this->_p_cache_lines][0];
$logLine = $this->_cache_lines[$this->_p_cache_lines][1];
$this->_p_cache_lines--;
return SUCCESS;
}
*/
private function ClearCacheLines() {
unset($this->_cache_lines);
$this->_p_cache_lines = -1;
}
private function InitCacheLines() {
$orig_offset = ftell($this->_fp);
if ($this->_readDirection == EnumReadDirection::Backward) {
// if we have already used the cache take the last positon
// as offset and then clear the cache
if (isset($this->_cache_lines[0][0])) {
$orig_offset = $this->_cache_lines[0][0];
$this->ClearCacheLines();
// check if it is the first line so we have BOF
if ($orig_offset == 0) {
return ERROR_FILE_BOF;
}
}
}
$offset = $orig_offset - 4096;
if ($offset < 0) {
$offset = 0;
}
fseek($this->_fp, $offset);
if ($offset != 0) {
// we do not know if we are on the beginning of a line
// therefore we simply skip the first line
fgets($this->_fp);
}
while (($offset = ftell($this->_fp)) < $orig_offset) {
$this->_p_cache_lines++;
$this->_cache_lines[$this->_p_cache_lines][0] = $offset;
$this->_cache_lines[$this->_p_cache_lines][1] = fgets($this->_fp);
if ($this->_cache_lines[$this->_p_cache_line][1] === false) {
// probably EOF or an error
unset($this->_cache_lines[$this->_p_cache_line]);
$this->_p_cache_lines--;
break;
}
}
return SUCCESS;
}
/**
* Set the filter for the current stream.
*
* @param filter object in: filter object
* @return integer Error state
*/
public function SetFilter($filter) {
return SUCCESS;
}
/**
* Set the direction the stream should read data.
*
*
*
* @param enumReadDirectionfilter EnumReadDirection in: The new direction.
* @return integer Error state
*/
public function SetReadDirection($enumReadDirection) {
// only if the read direction change we have do do anything
if ($this->_readDirection == $enumReadDirection)
return SUCCESS;
$this->_readDirection = $enumReadDirection;
return SUCCESS;
}
}
?>