19 declare(strict_types=1);
48 public function started(
string $class,
int $step): void
53 if ($last_started_step >= $step) {
54 throw new \RuntimeException(
55 "The last started step for $class was $last_started_step, which" .
56 " is higher then the step $step started now." 61 if ($last_started_step !== $last_finished_step) {
62 throw new \RuntimeException(
63 "Step $step should be started for $class, but last step $last_started_step " .
64 "has not finished by now." 71 self::FIELD_CLASS => [
"text", $class],
72 self::FIELD_STEP => [
"integer", $step],
81 public function finished(
string $class,
int $step): void
86 if ($last_started_step !== $step) {
87 throw new \RuntimeException(
88 "The step $step for $class is supposed to be finished, but" .
89 " $last_started_step was $step started last." 99 self::FIELD_CLASS => [
"text", $class],
100 self::FIELD_STEP => [
"integer", $step]
109 $res = $this->db->query(
110 "SELECT MAX(" . self::FIELD_STEP .
") AS " . self::FIELD_STEP .
111 " FROM " . self::TABLE_NAME .
112 " WHERE " . self::FIELD_CLASS .
" = " . $this->db->quote($class,
"text")
115 $row = $this->db->fetchAssoc(
$res);
116 return (
int) ($row[self::FIELD_STEP] ?? 0);
123 $res = $this->db->query(
124 "SELECT MAX(" . self::FIELD_STEP .
") AS " . self::FIELD_STEP .
125 " FROM " . self::TABLE_NAME .
126 " WHERE " . self::FIELD_CLASS .
" = " . $this->db->quote($class,
"text") .
127 " AND " . self::FIELD_FINISHED .
" IS NOT NULL" 130 $row = $this->db->fetchAssoc(
$res);
131 return (
int) ($row[self::FIELD_STEP] ?? 0);
136 if (strlen($class) > 200) {
137 throw new \InvalidArgumentException(
138 "This ilDatabaseUpdateStepExecutionLog only supports class names up to 200 chars." 147 throw new \LogicException(
148 "Expected \$get_now to return a DateTime." 151 return $now->format(
"Y-m-d H:i:s.u");
started(string $class, int $step)
__construct(protected ilDBInterface $db, callable $get_now)
finished(string $class, int $step)
This logs the execution of database update steps.
throwIfClassNameTooLong(string $class)
getLastFinishedStep(string $class)
Returns 0 as "first" step.
This logs the execution of database update steps.
getLastStartedStep(string $class)
Returns 0 as "first" step.