Completed
Push — master ( d86637...9369e3 )
by thomas
64:21 queued 60:31
created

Number::parseBuffer()   B

Complexity

Conditions 4
Paths 5

Size

Total Lines 23
Code Lines 14

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 16
CRAP Score 4

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 4
eloc 14
c 2
b 0
f 0
nc 5
nop 1
dl 0
loc 23
ccs 16
cts 16
cp 1
crap 4
rs 8.7972
1
<?php
2
3
namespace BitWasp\Bitcoin\Script\Interpreter;
4
5
use BitWasp\Bitcoin\Bitcoin;
6
use BitWasp\Bitcoin\Math\Math;
7
use BitWasp\Bitcoin\Serializable;
8
use BitWasp\Buffertools\Buffer;
9
use BitWasp\Buffertools\BufferInterface;
10
11
class Number extends Serializable
12
{
13
    const MAX_NUM_SIZE = 4;
14
    const MAX = 2**31-1;
15
    const MIN = -2**31+1;
16
17
    /**
18
     * @var Math
19
     */
20
    private $math;
21
22
    /**
23
     * @var int
24
     */
25
    private $number;
26
27
    /**
28
     * Number constructor.
29
     * @param int $number
30
     * @param Math $math
31
     */
32 225
    public function __construct($number, Math $math)
33
    {
34 225
        $this->number = $number;
35 225
        $this->math = $math;
36 225
    }
37
38
    /**
39
     * @param int $number
40
     * @param Math|null $math
41
     * @return self
42
     */
43 183
    public static function int($number, Math $math = null)
44
    {
45 183
        return new self(
46 122
            $number,
47 183
            $math ?: Bitcoin::getMath()
48 122
        );
49
    }
50
51
    /**
52
     * @param \GMP $number
53
     * @param Math|null $math
54
     * @return self
55
     */
56
    public static function gmp(\GMP $number, Math $math = null)
57
    {
58
        return new self(
59
            gmp_strval($number, 10),
60
            $math ?: Bitcoin::getMath()
61
        );
62
    }
63
64
    /**
65
     * @param BufferInterface $vch
66
     * @param bool $fRequireMinimal
67
     * @param int $maxNumSize
68
     * @param Math|null $math
69
     * @return self
70
     */
71 144
    public static function buffer(BufferInterface $vch, $fRequireMinimal, $maxNumSize = self::MAX_NUM_SIZE, Math $math = null)
72
    {
73 144
        $size = $vch->getSize();
74 144
        if ($size > $maxNumSize) {
75
            throw new \RuntimeException('Script number overflow');
76
        }
77
78 144
        if ($fRequireMinimal && $size > 0) {
79
            $binary = $vch->getBinary();
80
            $chars = array_values(unpack("C*", $binary));
81
            if ($chars[$size - 1] & 0x7f === 0) {
82
                if ($size <= 1 || $chars[$size - 2] & 0x80 === 0) {
83
                    throw new \RuntimeException('Non-minimally encoded script number');
84
                }
85
            }
86
        }
87
88 144
        $math = $math ?: Bitcoin::getMath();
89 144
        $number = new self(0, $math);
90 144
        $number->number = $number->parseBuffer($vch);
0 ignored issues
show
Documentation Bug introduced by
The property $number was declared of type integer, but $number->parseBuffer($vch) is of type string. Maybe add a type cast?

This check looks for assignments to scalar types that may be of the wrong type.

To ensure the code behaves as expected, it may be a good idea to add an explicit type cast.

$answer = 42;

$correct = false;

$correct = (bool) $answer;
Loading history...
91 144
        return $number;
92
    }
93
94
    /**
95
     * @param BufferInterface $buffer
96
     * @return int
97
     */
98 144
    private function parseBuffer(BufferInterface $buffer)
99
    {
100 144
        $size = $buffer->getSize();
101 144
        if ($size === 0) {
102 33
            return '0';
103
        }
104
105 132
        $chars = array_values(unpack("C*", $buffer->getBinary()));
106
107 132
        $result = gmp_init(0);
108 132
        for ($i = 0; $i < $size; $i++) {
109 132
            $mul = $i * 8;
110 132
            $byte = $this->math->leftShift(gmp_init($chars[$i], 10), $mul);
111 132
            $result = $this->math->bitwiseOr($result, $byte);
112 88
        }
113
114 132
        if ($chars[count($chars)-1] & 0x80) {
115 15
            $mask = gmp_com($this->math->leftShift(gmp_init(0x80), (8 * ($size - 1))));
116 15
            $result = $this->math->sub(gmp_init(0), $this->math->bitwiseAnd($result, $mask));
117 10
        }
118
119 132
        return gmp_strval($result, 10);
120
    }
121
122
    /**
123
     * @return BufferInterface
124
     */
125 183
    private function serialize()
126
    {
127 183
        if ($this->number == 0) {
128 51
            return new Buffer('', 0);
129
        }
130
131 153
        $zero = gmp_init(0);
132
        // Using array of integers instead of bytes
133 153
        $result = [];
134 153
        $negative = $this->math->cmp(gmp_init($this->number), $zero) < 0;
135 153
        $abs = $negative ? $this->math->sub($zero, gmp_init($this->number, 10)) : gmp_init($this->number, 10);
136 153
        $mask = gmp_init(0xff);
137 153
        while ($this->math->cmp($abs, $zero) > 0) {
0 ignored issues
show
Bug introduced by
It seems like $abs defined by $negative ? $this->math-...init($this->number, 10) on line 135 can also be of type resource; however, Mdanter\Ecc\Math\GmpMath::cmp() does only seem to accept object<GMP>, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
138 153
            $result[] = (int) gmp_strval($this->math->bitwiseAnd($abs, $mask), 10);
0 ignored issues
show
Bug introduced by
It seems like $abs defined by $negative ? $this->math-...init($this->number, 10) on line 135 can also be of type resource; however, Mdanter\Ecc\Math\GmpMath::bitwiseAnd() does only seem to accept object<GMP>, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
139 153
            $abs = $this->math->rightShift($abs, 8);
0 ignored issues
show
Bug introduced by
It seems like $abs can also be of type resource; however, Mdanter\Ecc\Math\GmpMath::rightShift() does only seem to accept object<GMP>, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
140 102
        }
141
142 153
        if ($result[count($result) - 1] & 0x80) {
143 6
            $result[] = $negative ? 0x80 : 0;
144 151
        } else if ($negative) {
145 12
            $result[count($result) - 1] |= 0x80;
146 8
        }
147
148 153
        $s = '';
149 153
        foreach ($result as $i) {
150 153
            $s .= chr($i);
151 102
        }
152
153 153
        return new Buffer($s, null, $this->math);
154
155
    }
156
157
    /**
158
     * @return BufferInterface
159
     */
160 183
    public function getBuffer()
161
    {
162 183
        return $this->serialize();
163
    }
164
165
    /**
166
     * @return int
167
     */
168 48
    public function getInt()
169
    {
170 48
        if ($this->math->cmp(gmp_init($this->number, 10), gmp_init(self::MAX)) > 0) {
171
            return self::MAX;
172 48
        } else if ($this->math->cmp(gmp_init($this->number, 10), gmp_init(self::MIN)) < 0) {
173
            return self::MIN;
174
        }
175
176 48
        return $this->number;
177
    }
178
179
    /**
180
     * @return \GMP
181
     */
182 96
    public function getGmp()
183
    {
184 96
        return gmp_init($this->number, 10);
185
    }
186
}
187