-
-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathReport.php
149 lines (133 loc) · 3.13 KB
/
Report.php
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
<?php
namespace Rubix\ML;
use Rubix\ML\Helpers\JSON;
use Rubix\ML\Exceptions\InvalidArgumentException;
use Rubix\ML\Exceptions\RuntimeException;
use IteratorAggregate;
use JsonSerializable;
use ArrayAccess;
use Traversable;
use Stringable;
use Countable;
/**
* Report
*
* @category Machine Learning
* @package Rubix/ML
* @author Andrew DalPino
*
* @implements ArrayAccess<int, array>
* @implements IteratorAggregate<int, array>
*/
class Report implements ArrayAccess, JsonSerializable, IteratorAggregate, Countable, Stringable
{
/**
* The attributes that make up the report.
*
* @var mixed[]
*/
protected array $attributes;
/**
* @param mixed[] $attributes
*/
public function __construct(array $attributes)
{
$this->attributes = $attributes;
}
/**
* Return a JSON representation of the report.
*
* @param bool $pretty
* @return Encoding
*/
public function toJSON(bool $pretty = true) : Encoding
{
$options = $pretty ? JSON_PRETTY_PRINT : 0;
return new Encoding(JSON::encode($this, $options));
}
/**
* Return an array representation of the report.
*
* @return mixed[]
*/
public function toArray() : array
{
return $this->attributes;
}
/**
* @param string|int $key
* @param mixed[] $values
* @throws RuntimeException
*/
public function offsetSet($key, $values) : void
{
throw new RuntimeException('Reports cannot be mutated directly.');
}
/**
* Does a given row exist in the dataset.
*
* @param string|int $key
* @return bool
*/
public function offsetExists($key) : bool
{
return isset($this->attributes[$key]);
}
/**
* Return an attribute from the report with the given key.
*
* @param string|int $key
* @throws InvalidArgumentException
* @return mixed
*/
#[\ReturnTypeWillChange]
public function offsetGet($key)
{
if (isset($this->attributes[$key])) {
return $this->attributes[$key];
}
throw new InvalidArgumentException("Attribute with key $key not found.");
}
/**
* @param string|int $key
* @throws RuntimeException
*/
public function offsetUnset($key) : void
{
throw new RuntimeException('Reports cannot be mutated directly.');
}
/**
* Get an iterator for the attributes in the report.
*
* @return \Generator<mixed>
*/
public function getIterator() : Traversable
{
yield from $this->attributes;
}
/**
* Return the number of level 1 attributes in the report.
*
* @return int
*/
public function count() : int
{
return count($this->attributes);
}
/**
* @return mixed[]
*/
public function jsonSerialize() : array
{
return $this->toArray();
}
/**
* Return a human-readable string representation of the report.
*
* @return string
*/
public function __toString() : string
{
return (string) $this->toJSON(true) . PHP_EOL;
}
}