File: /var/www/vhost/disk-apps/magento.bikenow.co/vendor/laminas/laminas-db/src/Sql/Platform/Platform.php
<?php
/**
* @see https://github.com/laminas/laminas-db for the canonical source repository
* @copyright https://github.com/laminas/laminas-db/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-db/blob/master/LICENSE.md New BSD License
*/
namespace Laminas\Db\Sql\Platform;
use Laminas\Db\Adapter\AdapterInterface;
use Laminas\Db\Adapter\Platform\PlatformInterface;
use Laminas\Db\Adapter\StatementContainerInterface;
use Laminas\Db\Sql\Exception;
use Laminas\Db\Sql\PreparableSqlInterface;
use Laminas\Db\Sql\SqlInterface;
class Platform extends AbstractPlatform
{
/**
* @var AdapterInterface
*/
protected $adapter = null;
/**
* @var PlatformInterface|null
*/
protected $defaultPlatform;
public function __construct(AdapterInterface $adapter)
{
$this->defaultPlatform = $adapter->getPlatform();
$mySqlPlatform = new Mysql\Mysql();
$sqlServerPlatform = new SqlServer\SqlServer();
$oraclePlatform = new Oracle\Oracle();
$ibmDb2Platform = new IbmDb2\IbmDb2();
$sqlitePlatform = new Sqlite\Sqlite();
$this->decorators['mysql'] = $mySqlPlatform->getDecorators();
$this->decorators['sqlserver'] = $sqlServerPlatform->getDecorators();
$this->decorators['oracle'] = $oraclePlatform->getDecorators();
$this->decorators['ibmdb2'] = $ibmDb2Platform->getDecorators();
$this->decorators['sqlite'] = $sqlitePlatform->getDecorators();
}
/**
* @param string $type
* @param PlatformDecoratorInterface $decorator
* @param AdapterInterface|PlatformInterface $adapterOrPlatform
*/
public function setTypeDecorator($type, PlatformDecoratorInterface $decorator, $adapterOrPlatform = null)
{
$platformName = $this->resolvePlatformName($adapterOrPlatform);
$this->decorators[$platformName][$type] = $decorator;
}
/**
* @param PreparableSqlInterface|SqlInterface $subject
* @param AdapterInterface|PlatformInterface|null $adapterOrPlatform
* @return PlatformDecoratorInterface|PreparableSqlInterface|SqlInterface
*/
public function getTypeDecorator($subject, $adapterOrPlatform = null)
{
$platformName = $this->resolvePlatformName($adapterOrPlatform);
if (isset($this->decorators[$platformName])) {
foreach ($this->decorators[$platformName] as $type => $decorator) {
if ($subject instanceof $type && is_a($decorator, $type, true)) {
$decorator->setSubject($subject);
return $decorator;
}
}
}
return $subject;
}
/**
* @return array|PlatformDecoratorInterface[]
*/
public function getDecorators()
{
$platformName = $this->resolvePlatformName($this->getDefaultPlatform());
return $this->decorators[$platformName];
}
/**
* {@inheritDoc}
*
* @throws Exception\RuntimeException
*/
public function prepareStatement(AdapterInterface $adapter, StatementContainerInterface $statementContainer)
{
if (! $this->subject instanceof PreparableSqlInterface) {
throw new Exception\RuntimeException(
'The subject does not appear to implement Laminas\Db\Sql\PreparableSqlInterface, thus calling '
. 'prepareStatement() has no effect'
);
}
$this->getTypeDecorator($this->subject, $adapter)->prepareStatement($adapter, $statementContainer);
return $statementContainer;
}
/**
* {@inheritDoc}
*
* @throws Exception\RuntimeException
*/
public function getSqlString(PlatformInterface $adapterPlatform = null)
{
if (! $this->subject instanceof SqlInterface) {
throw new Exception\RuntimeException(
'The subject does not appear to implement Laminas\Db\Sql\SqlInterface, thus calling '
. 'prepareStatement() has no effect'
);
}
$adapterPlatform = $this->resolvePlatform($adapterPlatform);
return $this->getTypeDecorator($this->subject, $adapterPlatform)->getSqlString($adapterPlatform);
}
protected function resolvePlatformName($adapterOrPlatform)
{
$platformName = $this->resolvePlatform($adapterOrPlatform)->getName();
return str_replace([' ', '_'], '', strtolower($platformName));
}
/**
* @param null|PlatformInterface|AdapterInterface $adapterOrPlatform
*
* @return PlatformInterface
*
* @throws Exception\InvalidArgumentException
*/
protected function resolvePlatform($adapterOrPlatform)
{
if (! $adapterOrPlatform) {
return $this->getDefaultPlatform();
}
if ($adapterOrPlatform instanceof AdapterInterface) {
return $adapterOrPlatform->getPlatform();
}
if ($adapterOrPlatform instanceof PlatformInterface) {
return $adapterOrPlatform;
}
throw new Exception\InvalidArgumentException(sprintf(
'$adapterOrPlatform should be null, %s, or %s',
'Laminas\Db\Adapter\AdapterInterface',
'Laminas\Db\Adapter\Platform\PlatformInterface'
));
}
/**
* @return PlatformInterface
*
* @throws Exception\RuntimeException
*/
protected function getDefaultPlatform()
{
if (! $this->defaultPlatform) {
throw new Exception\RuntimeException('$this->defaultPlatform was not set');
}
return $this->defaultPlatform;
}
}