Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 11
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
NewSqlSchema
0.00% covered (danger)
0.00%
0 / 11
0.00% covered (danger)
0.00%
0 / 3
12
0.00% covered (danger)
0.00%
0 / 1
 getSchema
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
 setQueueName
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 createTable
0.00% covered (danger)
0.00%
0 / 6
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2020 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 *
20 */
21
22declare(strict_types=1);
23
24namespace oat\taoTaskQueue\model\QueueBroker\storage;
25
26use Doctrine\DBAL\Schema\Schema;
27use Doctrine\DBAL\Schema\Table;
28use oat\oatbox\service\ConfigurableService;
29
30class NewSqlSchema extends ConfigurableService
31{
32    private const ID = 'id';
33    private const MESSAGE = 'message';
34    private const VISIBLE = 'visible';
35    private const CREATED_AT = 'created_at';
36
37    /** @var string */
38    private $queueName;
39
40    public function getSchema(Schema $schema, string $tableName): Schema
41    {
42        /** @var Table */
43        $revisionTable = $schema->createtable($tableName);
44        $this->createTable($revisionTable);
45
46        return $schema;
47    }
48
49    public function setQueueName(string $queueName): self
50    {
51        $this->queueName = $queueName;
52
53        return $this;
54    }
55
56    private function createTable(Table $table): void
57    {
58        $table->addColumn(self::ID, 'string', ['length' => 36]);
59        $table->addColumn(self::MESSAGE, 'text', ['notnull' => true]);
60        $table->addColumn(self::VISIBLE, 'boolean', []);
61        $table->addColumn(self::CREATED_AT, 'datetime', ['notnull' => true]);
62        $table->setPrimaryKey([self::ID]);
63        $table->addIndex([self::CREATED_AT, self::VISIBLE], 'IDX_created_at_visible_' . $this->queueName);
64    }
65}