| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/piwik/core/DataAccess/ |
Upload File : |
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\DataAccess;
use Piwik\ArchiveProcessor\ArchivingStatus;
use Piwik\Concurrency\Lock;
use Piwik\Config;
use Piwik\Db\AdapterInterface;
use Piwik\DbHelper;
use Psr\Log\LoggerInterface;
class ArchivingDbAdapter
{
/**
* @var AdapterInterface|\Zend_Db_Adapter_Abstract
*/
private $wrapped;
/**
* @var Lock
*/
private $archivingLock;
/**
* @var LoggerInterface
*/
private $logger;
/**
* @var int
*/
private $maxExecutionTime;
public function __construct($wrapped, Lock $archivingLock = null, LoggerInterface $logger = null)
{
$this->wrapped = $wrapped;
$this->archivingLock = $archivingLock;
$this->logger = $logger;
$this->maxExecutionTime = (float) Config::getInstance()->General['archiving_query_max_execution_time'];
}
public function __call($name, $arguments)
{
return call_user_func_array([$this->wrapped, $name], $arguments);
}
public function exec($sql)
{
$this->reexpireLock();
$sql = DbHelper::addMaxExecutionTimeHintToQuery($sql, $this->maxExecutionTime);
$this->logSql($sql);
return call_user_func_array([$this->wrapped, __FUNCTION__], func_get_args());
}
public function query($sql)
{
$this->reexpireLock();
$sql = DbHelper::addMaxExecutionTimeHintToQuery($sql, $this->maxExecutionTime);
$this->logSql($sql);
return call_user_func_array([$this->wrapped, __FUNCTION__], func_get_args());
}
public function fetchAll($sql)
{
$this->reexpireLock();
$sql = DbHelper::addMaxExecutionTimeHintToQuery($sql, $this->maxExecutionTime);
$this->logSql($sql);
return call_user_func_array([$this->wrapped, __FUNCTION__], func_get_args());
}
public function fetchRow($sql)
{
$this->reexpireLock();
$sql = DbHelper::addMaxExecutionTimeHintToQuery($sql, $this->maxExecutionTime);
$this->logSql($sql);
return call_user_func_array([$this->wrapped, __FUNCTION__], func_get_args());
}
public function fetchOne($sql)
{
$this->reexpireLock();
$sql = DbHelper::addMaxExecutionTimeHintToQuery($sql, $this->maxExecutionTime);
$this->logSql($sql);
return call_user_func_array([$this->wrapped, __FUNCTION__], func_get_args());
}
public function fetchAssoc($sql)
{
$this->reexpireLock();
$sql = DbHelper::addMaxExecutionTimeHintToQuery($sql, $this->maxExecutionTime);
$this->logSql($sql);
return call_user_func_array([$this->wrapped, __FUNCTION__], func_get_args());
}
private function logSql($sql)
{
// Log on DEBUG level all SQL archiving queries
if ($this->logger) {
$this->logger->debug($sql);
}
}
private function reexpireLock()
{
if ($this->archivingLock) {
$this->archivingLock->reexpireLock();
}
}
}