74052e4542
* Return the flight fares if there are no subfleet fares #488 * Formatting * Formatting
169 lines
3.8 KiB
PHP
169 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace Modules\Importer\Utils;
|
|
|
|
use Illuminate\Support\Facades\Log;
|
|
use PDO;
|
|
use PDOException;
|
|
|
|
/**
|
|
* Real basic to interface with an importer
|
|
*/
|
|
class ImporterDB
|
|
{
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $batchSize;
|
|
|
|
/**
|
|
* @var PDO
|
|
*/
|
|
private $conn;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $dsn;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $creds;
|
|
|
|
public function __construct($creds)
|
|
{
|
|
$this->creds = $creds;
|
|
$this->dsn = 'mysql:'.implode(';', [
|
|
'host='.$this->creds['host'],
|
|
'port='.$this->creds['port'],
|
|
'dbname='.$this->creds['name'],
|
|
]);
|
|
|
|
Log::info('Using DSN: '.$this->dsn);
|
|
|
|
$this->batchSize = config('installer.importer.batch_size', 20);
|
|
}
|
|
|
|
public function __destruct()
|
|
{
|
|
$this->close();
|
|
}
|
|
|
|
public function connect()
|
|
{
|
|
try {
|
|
$this->conn = new PDO($this->dsn, $this->creds['user'], $this->creds['pass']);
|
|
$this->conn->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_OBJ);
|
|
} catch (PDOException $e) {
|
|
Log::error($e);
|
|
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
public function close()
|
|
{
|
|
if ($this->conn) {
|
|
$this->conn = null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Return the table name with the prefix
|
|
*
|
|
* @param $table
|
|
*
|
|
* @return string
|
|
*/
|
|
public function tableName($table)
|
|
{
|
|
if ($this->creds['table_prefix'] !== false) {
|
|
return $this->creds['table_prefix'].$table;
|
|
}
|
|
|
|
return $table;
|
|
}
|
|
|
|
/**
|
|
* @param $table
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function getTotalRows($table)
|
|
{
|
|
$this->connect();
|
|
|
|
$sql = 'SELECT COUNT(*) FROM '.$this->tableName($table);
|
|
$rows = $this->conn->query($sql)->fetchColumn();
|
|
|
|
Log::info('Found '.$rows.' rows in '.$table);
|
|
|
|
return (int) $rows;
|
|
}
|
|
|
|
/**
|
|
* Read all the rows in a table, but read them in a batched manner
|
|
*
|
|
* @param string $table The name of the table
|
|
* @param int [$start_offset]
|
|
* @param string [$fields]
|
|
*
|
|
* @return \Generator
|
|
*/
|
|
public function readRows($table, $start_offset = 0, $fields = '*')
|
|
{
|
|
$this->connect();
|
|
|
|
$offset = $start_offset;
|
|
$total_rows = $this->getTotalRows($table);
|
|
|
|
while ($offset < $total_rows) {
|
|
$rows_to_read = $offset + $this->batchSize;
|
|
if ($rows_to_read > $total_rows) {
|
|
$rows_to_read = $total_rows;
|
|
}
|
|
|
|
// Log::info('Reading '.$offset.' to '.$rows_to_read.' of '.$total_rows);
|
|
yield from $this->readRowsOffset($table, $this->batchSize, $offset, $fields);
|
|
|
|
$offset += $this->batchSize;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param string $table
|
|
* @param int $limit Number of rows to read
|
|
* @param int $offset Where to start from
|
|
* @param string [$fields]
|
|
*
|
|
* @return \Generator
|
|
*/
|
|
public function readRowsOffset($table, $limit, $offset, $fields = '*')
|
|
{
|
|
if (is_array($fields)) {
|
|
$fields = implode(',', $fields);
|
|
}
|
|
|
|
$sql = 'SELECT '.$fields.' FROM '.$this->tableName($table).' LIMIT '.$limit.' OFFSET '.$offset;
|
|
|
|
try {
|
|
$result = $this->conn->query($sql);
|
|
if (!$result || $result->rowCount() === 0) {
|
|
return;
|
|
}
|
|
|
|
foreach ($result as $row) {
|
|
yield $row;
|
|
}
|
|
} catch (PDOException $e) {
|
|
// Without incrementing the offset, it should re-run the same query
|
|
Log::error('Error readRowsOffset: '.$e->getMessage());
|
|
|
|
if (strpos($e->getMessage(), 'server has gone away') !== false) {
|
|
$this->connect();
|
|
}
|
|
}
|
|
}
|
|
}
|