Completed
Pull Request — master (#28)
by Matt
10:53 queued 08:33
created

functions.php ➔ compare()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 2
dl 0
loc 4
ccs 1
cts 1
cp 1
crap 1
rs 10
1
<?php
2
3
namespace League\JsonGuard;
4
5
/**
6
 * @param string $json
7
 * @param bool   $assoc
8
 * @param int    $depth
9
 * @param int    $options
10
 * @return mixed
11
 * @throws \InvalidArgumentException
12
 */
13
function json_decode($json, $assoc = false, $depth = 512, $options = 0)
14
{
15 34
    $data = \json_decode($json, $assoc, $depth, $options);
16
17 34
    if (json_last_error() !== JSON_ERROR_NONE) {
18
        throw new \InvalidArgumentException(sprintf('Invalid JSON: %s', json_last_error_msg()));
19
    }
20
21 34
    return $data;
22
}
23
24
/**
25
 * @param $string
26
 * @return int
27
 */
28
function strlen($string)
29
{
30 20
    if (extension_loaded('intl')) {
31 20
        return grapheme_strlen($string);
32
    }
33
34
    if (extension_loaded('mbstring')) {
35
        return mb_strlen($string, mb_detect_encoding($string));
36
    }
37
38
    return strlen($string);
39
}
40
41
/**
42
 * Returns the string representation of a value.
43
 *
44
 * @param mixed $value
45
 * @return string
46
 */
47
function as_string($value)
48
{
49 114
    if (is_string($value)) {
50 58
        return $value;
51
    }
52
53 94
    if (is_int($value)) {
54 78
        return (string)$value;
55
    }
56
57 52
    if (is_bool($value)) {
58 16
        return $value ? '<TRUE>' : '<FALSE>';
59
    }
60
61 44
    if (is_object($value)) {
62 12
        return get_class($value);
63
    }
64
65 44
    if (is_array($value)) {
66 16
        return '<ARRAY>';
67
    }
68
69 36
    if (is_resource($value)) {
70
        return '<RESOURCE>';
71
    }
72
73 36
    if (is_null($value)) {
74 12
        return '<NULL>';
75
    }
76
77 28
    return '<UNKNOWN>';
78
}
79
80
/**
81
 * Get the properties matching $pattern from the $data.
82
 *
83
 * @param string       $pattern
84
 * @param array|object $data
85
 * @return array
86
 */
87
function properties_matching_pattern($pattern, $data)
88
{
89
    // If an object is supplied, extract an array of the property names.
90 12
    if (is_object($data)) {
91 12
        $data = array_keys(get_object_vars($data));
92 12
    }
93
94 12
    return preg_grep(delimit_pattern($pattern), $data);
95
}
96
97
/**
98
 * Delimit a regular expression pattern.
99
 *
100
 * The regular expression syntax used for JSON schema is ECMA 262, from Javascript,
101
 * and does not use delimiters.  Since the PCRE functions do, this function will
102
 * delimit a pattern and escape the delimiter if found in the pattern.
103
 *
104
 * @see http://json-schema.org/latest/json-schema-validation.html#anchor6
105
 * @see http://php.net/manual/en/regexp.reference.delimiters.php
106
 *
107
 * @param string $pattern
108
 *
109
 * @return string
110
 */
111
function delimit_pattern($pattern)
112
{
113 16
    return '/' . str_replace('/', '\\/', $pattern) . '/';
114
}
115
116
/**
117
 * Escape a JSON Pointer.
118
 *
119
 * @param  string $pointer
120
 * @return string
121
 */
122
function escape_pointer($pointer)
123
{
124 98
    $pointer = str_replace('~', '~0', $pointer);
125 98
    return str_replace('/', '~1', $pointer);
126
}
127
128
/**
129
 * Determines if the value is an integer or an integer that was cast to a string
130
 * because it is larger than PHP_INT_MAX.
131
 *
132
 * @param  mixed  $value
133
 * @return boolean
134
 */
135
function is_json_integer($value)
136
{
137 70
    if (is_string($value) && $value[0] === '-') {
138 6
        $value = substr($value, 1);
139 6
    }
140
141 70
    return is_int($value) || (is_string($value) && ctype_digit($value) && compare($value, PHP_INT_MAX) === 1);
142
}
143
144
/**
145
 * @param string|double|int $leftOperand
146
 * @param string|double|int $rightOperand
147
 *
148
 * @return int Returns 0 if the two operands are equal, 1 if the left_operand is larger than the right_operand,
149
 * -1 otherwise.
150
 */
151
function compare($leftOperand, $rightOperand)
152
{
153 40
    return Comparator::compare($leftOperand, $rightOperand);
154
}
155