-
Notifications
You must be signed in to change notification settings - Fork 4
/
stats.h
125 lines (109 loc) · 2.17 KB
/
stats.h
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
/**
* Stats.h
* Statistics class for mapper, reducer, and finalizer results
* @author Aljar Meesters <[email protected]>
* @copyright Copernica BV 2015
*/
/**
* include guard
*/
#pragma once
/**
* dependencies
*/
#include "json/object.h"
#include "datastats.h"
/**
* class definition
*/
class Stats : public Php::Base
{
private:
/**
* json that holds the information
* @var JSON::Object
*/
JSON::Object _json;
public:
/**
* Constructor
* @param output
*/
Stats(const JSON::Object &json) : _json(json) {}
/**
* Virtual destructor
*/
virtual ~Stats() {}
/**
* get the first time value started
* @return Php::Value
*/
Php::Value first() const
{
return _json.decimal("first");
}
/**
* get the last time of value
* @return Php::Value
*/
Php::Value last() const
{
return _json.decimal("last");
}
/**
* get the last time of value
* @return Php::Value
*/
Php::Value finished() const
{
return _json.decimal("finished");
}
/**
* get the last time of value
* @return Php::Value
*/
Php::Value fastest() const
{
return _json.decimal("fastest");
}
/**
* get the last time of value
* @return Php::Value
*/
Php::Value slowest() const
{
return _json.decimal("slowest");
}
/**
* get the last time of value
* @return Php::Value
*/
Php::Value processes() const
{
return _json.integer("processes");
}
/**
* get the last time of value
* @return Php::Value
*/
Php::Value runtime() const
{
return _json.decimal("runtime");
}
/**
* get the last time of value
* @return Php::Value
*/
Php::Value input() const
{
return Php::Object("Yothalot\\DataStats", new DataStats(_json.object("input")));
}
/**
* get the last time of value
* @return Php::Value
*/
Php::Value output() const
{
return Php::Object("Yothalot\\DataStats", new DataStats(_json.object("output")));
}
};