Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 16
0.00% covered (danger)
0.00%
0 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
TaoResultSet
0.00% covered (danger)
0.00%
0 / 16
0.00% covered (danger)
0.00%
0 / 5
56
0.00% covered (danger)
0.00%
0 / 1
 setCountQuery
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 setIsTriple
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 total
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
6
 current
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
6
 getTriple
0.00% covered (danger)
0.00%
0 / 5
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) 2016 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 */
20
21namespace oat\generis\model\kernel\persistence\smoothsql\search;
22
23use core_kernel_classes_Resource;
24use oat\search\base\ResultSetInterface;
25use oat\search\ResultSet;
26
27use function PHPUnit\Framework\returnArgument;
28
29/**
30 * Complex Search resultSet iterator
31 *
32 * @author Christophe GARCIA <christopheg@taotesting.com>
33 */
34class TaoResultSet extends ResultSet implements ResultSetInterface, \oat\search\base\ParentFluateInterface
35{
36    use \oat\search\UsableTrait\ParentFluateTrait;
37    use \oat\generis\model\OntologyAwareTrait;
38
39    /**
40     *
41     * @var \oat\search\QueryBuilder
42     */
43    protected $countQuery;
44    protected $totalCount = null;
45    private bool $isTriple = false;
46
47    public function setCountQuery($query)
48    {
49        $this->countQuery = $query;
50        return $this;
51    }
52
53    public function setIsTriple(bool $isTriple)
54    {
55        $this->isTriple = $isTriple;
56    }
57
58    /**
59    * return total number of result
60    * @return integer
61    */
62    public function total()
63    {
64
65        if (is_null($this->totalCount)) {
66            $cpt = $this->getParent()->fetchQuery($this->countQuery);
67            $this->totalCount = intval($cpt['cpt']);
68        }
69
70        return $this->totalCount;
71    }
72
73    /**
74    * return a new resource create from current subject
75    * @return core_kernel_classes_Resource|\core_kernel_classes_Triple
76    */
77    public function current()
78    {
79        $index = parent::current();
80        if ($this->isTriple) {
81            return $this->getTriple($index);
82        } else {
83            return $this->getResource($index->subject);
84        }
85    }
86
87    private function getTriple($row): \core_kernel_classes_Triple
88    {
89        $triple = new \core_kernel_classes_Triple();
90
91        $triple->id = $row->id ?? 0;
92        $triple->subject = $row->subject ?? '';
93        $triple->object = $row->object ?? $row->subject;
94
95        return $triple;
96    }
97}