GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( f731b0...b5a8f2 )
by Charlotte
02:33
created

QueryCommand   A

Complexity

Total Complexity 17

Size/Duplication

Total Lines 116
Duplicated Lines 0 %

Test Coverage

Coverage 97.44%

Importance

Changes 0
Metric Value
eloc 36
dl 0
loc 116
ccs 38
cts 39
cp 0.9744
rs 10
c 0
b 0
f 0
wmc 17

7 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
A getQuery() 0 2 1
A createResolve() 0 3 1
A handleQueryOnNextCaller() 0 15 5
A resetSequence() 0 2 1
A getEncodedMessage() 0 2 1
B onNext() 0 11 7
1
<?php
2
/**
3
 * Plasma Driver MySQL component
4
 * Copyright 2018-2019 PlasmaPHP, All Rights Reserved
5
 *
6
 * Website: https://github.com/PlasmaPHP
7
 * License: https://github.com/PlasmaPHP/driver-mysql/blob/master/LICENSE
8
*/
9
10
namespace Plasma\Drivers\MySQL\Commands;
11
12
/**
13
 * Query command.
14
 * @internal
15
 */
16
class QueryCommand extends PromiseCommand {
17
    /**
18
     * The identifier for this command.
19
     * @var int
20
     * @source
21
     */
22
    const COMMAND_ID = 0x03;
23
    
24
    /**
25
     * @var string
26
     */
27
    protected $query;
28
    
29
    /**
30
     * @var \Plasma\ColumnDefinitionInterface[]
31
     */
32
    protected $fields = array();
33
    
34
    /**
35
     * @var \Plasma\StreamQueryResult|\Plasma\QueryResult|null
36
     */
37
    protected $resolveValue;
38
    
39
    /**
40
     * @var bool
41
     */
42
    protected $deprecatedEOF;
43
    
44
    /**
45
     * Constructor.
46
     * @param \Plasma\DriverInterface  $driver
47
     * @param string                   $query
48
     */
49 57
    function __construct(\Plasma\DriverInterface $driver, string $query) {
50 57
        parent::__construct($driver);
51
        
52 57
        $this->driver = $driver;
53 57
        $this->query = $query;
54 57
        $this->deprecatedEOF = (($driver->getHandshake()->capability & \Plasma\Drivers\MySQL\CapabilityFlags::CLIENT_DEPRECATE_EOF) !== 0);
55 57
    }
56
    
57
    /**
58
     * Get the query.
59
     * @return string
60
     */
61 56
    function getQuery(): string {
62 56
        return $this->query;
63
    }
64
    
65
    /**
66
     * Get the encoded message for writing to the database connection.
67
     * @return string
68
     */
69 56
    function getEncodedMessage(): string {
70 56
        return \chr(static::COMMAND_ID).$this->query;
71
    }
72
    
73
    /**
74
     * Sends the next received value into the command.
75
     * @param mixed  $value
76
     * @return void
77
     */
78 56
    function onNext($value): void {
79 56
        if($value instanceof \Plasma\Drivers\MySQL\ProtocolOnNextCaller) {
80 45
            $this->handleQueryOnNextCaller($value);
81 56
        } elseif($value instanceof \Plasma\Drivers\MySQL\Messages\OkResponseMessage || $value instanceof \Plasma\Drivers\MySQL\Messages\EOFMessage) {
82 56
            if($this->resolveValue !== null) {
83 45
                $value->getParser()->markCommandAsFinished($this);
84 56
            } elseif($this->fieldsCount == 0 && $value instanceof \Plasma\Drivers\MySQL\Messages\OkResponseMessage) { // Matching 0 and null
85 56
                $this->resolveValue = new \Plasma\QueryResult($value->affectedRows, $value->warningsCount, $value->lastInsertedID, null, null);
86 56
                $value->getParser()->markCommandAsFinished($this);
87
            } else {
88
                $this->createResolve();
89
            }
90
        }
91 56
    }
92
    
93
    /**
94
     * Handles query commands on next caller.
95
     * @param \Plasma\Drivers\MySQL\ProtocolOnNextCaller  $value
96
     * @return void
97
     */
98 45
    function handleQueryOnNextCaller(\Plasma\Drivers\MySQL\ProtocolOnNextCaller $value): void {
99 45
        $buffer = $value->getBuffer();
100 45
        $parser = $value->getParser();
101
        
102 45
        if($this->resolveValue !== null) {
103 45
            $row = $this->parseResultsetRow($buffer);
104 45
            $this->emit('data', array($row));
105
        } else {
106 45
            $field = $this->handleQueryOnNextCallerColumns($buffer, $parser);
107 45
            if($field) {
108 45
                $this->fields[$field->getName()] = $field;
109
            }
110
            
111 45
            if($this->deprecatedEOF && $this->fieldsCount <= \count($this->fields)) {
112 45
                $this->createResolve();
113
            }
114
        }
115 45
    }
116
    
117
    /**
118
     * Creates the resolve value and resolves the promise.
119
     * @return void
120
     */
121 45
    function createResolve(): void {
122 45
        $this->resolveValue = new \Plasma\StreamQueryResult($this->driver, $this, 0, 0, null, $this->fields);
123 45
        $this->deferred->resolve($this->resolveValue);
124 45
    }
125
    
126
    /**
127
     * Whether the sequence ID should be resetted.
128
     * @return bool
129
     */
130 56
    function resetSequence(): bool {
131 56
        return true;
132
    }
133
}
134