Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
64.71% covered (warning)
64.71%
11 / 17
71.43% covered (warning)
71.43%
5 / 7
CRAP
0.00% covered (danger)
0.00%
0 / 1
TasksLogsStats
64.71% covered (warning)
64.71%
11 / 17
71.43% covered (warning)
71.43%
5 / 7
9.15
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
1
 buildFromArray
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
2
 getNumberOfTasksCompleted
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getNumberOfTasksFailed
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getNumberOfTasksInProgress
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 jsonSerialize
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
 toArray
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2017 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 *
20 */
21
22namespace oat\tao\model\taskQueue\TaskLog;
23
24use JsonSerializable;
25
26class TasksLogsStats implements JsonSerializable
27{
28    public const COMPLETED_TASKS = 'completedtasks';
29    public const FAILED_TASKS = 'failedtasks';
30    public const IN_PROGRESS_TASKS = 'inprogresstasks';
31
32    /** @var  int */
33    private $numberOfTasksCompleted;
34
35    /** @var  int */
36    private $numberOfTasksFailed;
37
38    /** @var  int */
39    private $numberOfTasksInProgress;
40
41    /**
42     * TaskLogStatus constructor.
43     * @param int $numberOfTasksCompleted
44     * @param int $numberOfTasksFailed
45     * @param int $numberOfTasksInProgress
46     */
47    public function __construct($numberOfTasksCompleted, $numberOfTasksFailed, $numberOfTasksInProgress)
48    {
49        $this->numberOfTasksCompleted = $numberOfTasksCompleted;
50        $this->numberOfTasksFailed = $numberOfTasksFailed;
51        $this->numberOfTasksInProgress = $numberOfTasksInProgress;
52    }
53
54    /**
55     * @param array $rawData
56     * @return TasksLogsStats
57     */
58    public static function buildFromArray(array $rawData)
59    {
60        return new self(
61            $rawData[static::COMPLETED_TASKS],
62            $rawData[static::FAILED_TASKS],
63            $rawData[static::IN_PROGRESS_TASKS]
64        );
65    }
66
67    /**
68     * @return int
69     */
70    public function getNumberOfTasksCompleted()
71    {
72        return $this->numberOfTasksCompleted;
73    }
74
75    /**
76     * @return int
77     */
78    public function getNumberOfTasksFailed()
79    {
80        return $this->numberOfTasksFailed;
81    }
82
83    /**
84     * @return int
85     */
86    public function getNumberOfTasksInProgress()
87    {
88        return $this->numberOfTasksInProgress;
89    }
90
91    public function jsonSerialize(): array
92    {
93        return [
94            'numberOfTasksCompleted' => $this->numberOfTasksCompleted,
95            'numberOfTasksFailed' => $this->numberOfTasksFailed,
96            'numberOfTasksInProgress' => $this->numberOfTasksInProgress,
97        ];
98    }
99
100    /**
101     * @return array
102     */
103    public function toArray()
104    {
105        return $this->jsonSerialize();
106    }
107}