1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
<?php
/**
* Extension independent database result
*/
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Stubs;
use Generator;
use PhpMyAdmin\Dbal\ResultInterface;
use PhpMyAdmin\FieldMetadata;
use function array_column;
use function is_string;
/**
* Extension independent database result
*/
class DummyResult implements ResultInterface
{
/**
* The result identifier produced by the DBiExtension
*
* @var int|false $result
*/
private $result;
/**
* Link to DbiDummy instance
*
* @var DbiDummy
*/
private $link;
/**
* @param int|false $result
*/
public function __construct(DbiDummy $link, $result)
{
$this->link = $link;
$this->result = $result;
}
/**
* Returns a generator that traverses through the whole result set
* and returns each row as an associative array
*
* @psalm-return Generator<int, array<string, string|null>, mixed, void>
*/
public function getIterator(): Generator
{
if ($this->result === false) {
return;
}
$this->seek(0);
while ($row = $this->fetchAssoc()) {
yield $row;
}
}
/**
* Returns the next row of the result with associative keys
*
* @return array<string,string|null>
*/
public function fetchAssoc(): array
{
if ($this->result === false) {
return [];
}
return $this->link->fetchAssoc($this->result) ?? [];
}
/**
* Returns the next row of the result with numeric keys
*
* @return array<int,string|null>
*/
public function fetchRow(): array
{
if ($this->result === false) {
return [];
}
return $this->link->fetchRow($this->result) ?? [];
}
/**
* Returns a single value from the given result; false on error
*
* @param int|string $field
*
* @return string|false|null
*/
public function fetchValue($field = 0)
{
if (is_string($field)) {
$row = $this->fetchAssoc();
} else {
$row = $this->fetchRow();
}
return $row[$field] ?? false;
}
/**
* Returns all rows of the result
*
* @return array<int, array<string,string|null>>
*/
public function fetchAllAssoc(): array
{
if ($this->result === false) {
return [];
}
// This function should return all rows, not only the remaining rows
$this->seek(0);
$rows = [];
while ($row = $this->fetchAssoc()) {
$rows[] = $row;
}
return $rows;
}
/**
* Returns values from the first column of each row
*
* @return array<int, string|null>
*/
public function fetchAllColumn(): array
{
if ($this->result === false) {
return [];
}
// This function should return all rows, not only the remaining rows
$this->seek(0);
$rows = [];
while ($row = $this->fetchRow()) {
$rows[] = $row[0];
}
return $rows;
}
/**
* Returns values as single dimensional array where the key is the first column
* and the value is the second column, e.g.
* SELECT id, name FROM users
* produces: ['123' => 'John', '124' => 'Jane']
*
* @return array<string, string|null>
*/
public function fetchAllKeyPair(): array
{
if ($this->result === false) {
return [];
}
// This function should return all rows, not only the remaining rows
$this->seek(0);
$rows = [];
while ($row = $this->fetchRow()) {
$rows[$row[0] ?? ''] = $row[1];
}
return $rows;
}
/**
* Returns the number of fields in the result
*/
public function numFields(): int
{
if ($this->result === false) {
return 0;
}
return $this->link->numFields($this->result);
}
/**
* Returns the number of rows in the result
*
* @return string|int
* @psalm-return int|numeric-string
*/
public function numRows()
{
return $this->link->numRows($this->result);
}
/**
* Adjusts the result pointer to an arbitrary row in the result
*
* @param int $offset offset to seek
*
* @return bool True if the offset exists, false otherwise
*/
public function seek(int $offset): bool
{
if ($this->result === false) {
return false;
}
return $this->link->dataSeek($this->result, $offset);
}
/**
* returns meta info for fields in $result
*
* @return array<int, FieldMetadata> meta info for fields in $result
*/
public function getFieldsMeta(): array
{
if ($this->result === false) {
return [];
}
return $this->link->getFieldsMeta($this->result);
}
/**
* Returns the names of the fields in the result
*
* @return array<int, string> Fields names
*/
public function getFieldNames(): array
{
if ($this->result === false) {
return [];
}
return array_column($this->link->getFieldsMeta($this->result), 'name');
}
}
|