Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * Copyright Magento, Inc. All rights reserved. * See COPYING.txt for license ..
Decoded Output download
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Model\ResourceModel;
use Magento\Framework\App\ResourceConnection;
/**
* @deprecated 101.0.3
*/
class MaxHeapTableSizeProcessor
{
/**
* Database connection adapter
*
* @var \Magento\Framework\DB\Adapter\AdapterInterface
*/
protected $connection;
/**
* @var int
*/
protected $defaultMaxHeapTableSie;
/**
* Current max_heap_table_size value (in Bytes)
*
* @var int
*/
protected $currentMaxHeapTableSize = null;
/**
* @param ResourceConnection $resource
*/
public function __construct(ResourceConnection $resource)
{
$this->connection = $resource->getConnection();
$this->defaultMaxHeapTableSie = 1024 * 1024 * 64;
}
/**
* Set max_heap_table_size value in Bytes. By default value is 64M
*
* @param int|null $maxHeapTableSize
* @throws \InvalidArgumentException
* @throws \RuntimeException
* @return void
*/
public function set($maxHeapTableSize = null)
{
$maxHeapTableSize = (int) (null === $maxHeapTableSize ? $this->defaultMaxHeapTableSie : $maxHeapTableSize);
if (!$maxHeapTableSize) {
throw new \InvalidArgumentException('Wrong max_heap_table_size parameter');
}
$this->currentMaxHeapTableSize = (int)$this->connection->fetchOne('SELECT @@session.max_heap_table_size');
if (!$this->currentMaxHeapTableSize) {
throw new \RuntimeException('Can not extract max_heap_table_size');
}
$this->connection->query('SET SESSION max_heap_table_size = ' . $maxHeapTableSize);
}
/**
* Restore max_heap_table_size value
*
* @throws \RuntimeException
* @return void
*/
public function restore()
{
if (null === $this->currentMaxHeapTableSize) {
throw new \RuntimeException('max_heap_table_size parameter is not set');
}
$this->connection->query('SET SESSION max_heap_table_size = ' . $this->currentMaxHeapTableSize);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Model\ResourceModel;
use Magento\Framework\App\ResourceConnection;
/**
* @deprecated 101.0.3
*/
class MaxHeapTableSizeProcessor
{
/**
* Database connection adapter
*
* @var \Magento\Framework\DB\Adapter\AdapterInterface
*/
protected $connection;
/**
* @var int
*/
protected $defaultMaxHeapTableSie;
/**
* Current max_heap_table_size value (in Bytes)
*
* @var int
*/
protected $currentMaxHeapTableSize = null;
/**
* @param ResourceConnection $resource
*/
public function __construct(ResourceConnection $resource)
{
$this->connection = $resource->getConnection();
$this->defaultMaxHeapTableSie = 1024 * 1024 * 64;
}
/**
* Set max_heap_table_size value in Bytes. By default value is 64M
*
* @param int|null $maxHeapTableSize
* @throws \InvalidArgumentException
* @throws \RuntimeException
* @return void
*/
public function set($maxHeapTableSize = null)
{
$maxHeapTableSize = (int) (null === $maxHeapTableSize ? $this->defaultMaxHeapTableSie : $maxHeapTableSize);
if (!$maxHeapTableSize) {
throw new \InvalidArgumentException('Wrong max_heap_table_size parameter');
}
$this->currentMaxHeapTableSize = (int)$this->connection->fetchOne('SELECT @@session.max_heap_table_size');
if (!$this->currentMaxHeapTableSize) {
throw new \RuntimeException('Can not extract max_heap_table_size');
}
$this->connection->query('SET SESSION max_heap_table_size = ' . $maxHeapTableSize);
}
/**
* Restore max_heap_table_size value
*
* @throws \RuntimeException
* @return void
*/
public function restore()
{
if (null === $this->currentMaxHeapTableSize) {
throw new \RuntimeException('max_heap_table_size parameter is not set');
}
$this->connection->query('SET SESSION max_heap_table_size = ' . $this->currentMaxHeapTableSize);
}
}
Function Calls
| None |
Stats
| MD5 | 24f92302339e463a1a55f136e4c0d85f |
| Eval Count | 0 |
| Decode Time | 116 ms |