<?php<liu21st@gmail.com>declare (strict_types = 1);
namespace think\db\concern;
use think\db\BaseQuery;
trait Transaction
{
public function transactionXa($callback, array $dbs = [])
{
$xid = uniqid('xa');
if (empty($dbs)) {
$dbs[] = $this->getConnection();
}
foreach ($dbs as $key => $db) {
if ($db instanceof BaseQuery) {
$db = $db->getConnection();
$dbs[$key] = $db;
}
$db->startTransXa($xid);
}
try {
$result = null;
if (is_callable($callback)) {
$result = call_user_func_array($callback, [$this]);
}
foreach ($dbs as $db) {
$db->prepareXa($xid);
}
foreach ($dbs as $db) {
$db->commitXa($xid);
}
return $result;
} catch (\Exception | \Throwable $e) {
foreach ($dbs as $db) {
$db->rollbackXa($xid);
}
throw $e;
}
}
public function transaction(callable $callback)
{
return $this->connection->transaction($callback);
}
public function startTrans(): void
{
$this->connection->startTrans();
}
public function commit(): void
{
$this->connection->commit();
}
public function rollback(): void
{
$this->connection->rollback();
}
}