false. */ private $log4jNamespace = false; /** * @var LoggerXmlLayout * @access private */ private $xmlLayout = null; /** @var indiciates if this appender should run in dry mode */ private $dry = false; public function __destruct() { $this->close(); } /** * Create a socket connection using defined parameters */ public function activateOptions() { if(!$this->dry) { $this->sp = @fsockopen($this->getRemoteHost(), $this->getPort(), $errno, $errstr, $this->getTimeout()); if ($this->sp === false) { throw new LoggerException("Could not open socket to ".$this->getRemoteHost().":".$this->getPort().": $errstr ($errno)"); } } if($this->getUseXml()) { $this->xmlLayout = LoggerReflectionUtils::createObject('LoggerLayoutXml'); if($this->xmlLayout === null) { $this->setUseXml(false); } else { $this->xmlLayout->setLocationInfo($this->getLocationInfo()); $this->xmlLayout->setLog4jNamespace($this->getLog4jNamespace()); $this->xmlLayout->activateOptions(); } } $this->closed = false; } public function close() { if($this->closed != true) { if(!$this->dry and $this->sp !== false) { fclose($this->sp); } $this->closed = true; } } public function setDry($dry) { $this->dry = $dry; } /** * @return string */ public function getHostname() { return $this->getRemoteHost(); } /** * @return boolean */ public function getLocationInfo() { return $this->locationInfo; } /** * @return boolean */ public function getLog4jNamespace() { return $this->log4jNamespace; } /** * @return integer */ public function getPort() { return $this->port; } public function getRemoteHost() { return $this->remoteHost; } /** * @return integer */ public function getTimeout() { return $this->timeout; } /** * @var boolean */ public function getUseXml() { return $this->useXml; } public function reset() { $this->close(); parent::reset(); } /** * @param mixed */ public function setLocationInfo($flag) { $this->locationInfo = LoggerOptionConverter::toBoolean($flag, $this->getLocationInfo()); } /** * @param mixed */ public function setLog4jNamespace($flag) { $this->log4jNamespace = LoggerOptionConverter::toBoolean($flag, $this->getLog4jNamespace()); } /** * @param integer */ public function setPort($port) { $port = LoggerOptionConverter::toInt($port, 0); if($port > 0 and $port < 65535) { $this->port = $port; } } /** * @param string */ public function setRemoteHost($hostname) { $this->remoteHost = $hostname; } /** * @param integer */ public function setTimeout($timeout) { $this->timeout = LoggerOptionConverter::toInt($timeout, $this->getTimeout()); } /** * @param mixed */ public function setUseXml($flag) { $this->useXml = LoggerOptionConverter::toBoolean($flag, $this->getUseXml()); } public function append(LoggerLoggingEvent $event) { if($this->sp || $this->dry) { if($this->getLocationInfo()) { $event->getLocationInformation(); } if(!$this->getUseXml()) { $sEvent = serialize($event); if(!$this->dry) { fwrite($this->sp, $sEvent, strlen($sEvent)); } else { echo "DRY MODE OF SOCKET APPENDER: ".$sEvent; } } else { if(!$this->dry) { fwrite($this->sp, $this->xmlLayout->format($event)); } else { echo "DRY MODE OF SOCKET APPENDER: ".$this->xmlLayout->format($event); } } // not sure about it... if(!$this->dry) { fflush($this->sp); } } } }