summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/QueryResultFactory.php
blob: 1c6c944de491abfcb5f29ca144c29fb15b9225e1 (plain)
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
<?php

namespace SMW\SPARQLStore\QueryEngine;

use SMW\Exporter\Element\ExpElement;
use SMW\Store;
use SMWExporter as Exporter;
use SMWQuery as Query;
use SMWQueryResult as QueryResult;

/**
 * @license GNU GPL v2+
 * @since 2.0
 *
 * @author Markus Krötzsch
 * @author mwjames
 */
class QueryResultFactory {

	/**
	 * @var Store
	 */
	private $store;

	/**
	 * @since 2.0
	 *
	 * @param Store $store
	 */
	public function __construct( Store $store ) {
		$this->store = $store;
	}

	/**
	 * @since  2.0
	 *
	 * @param Query $query QueryResults hold a reference to original query
	 * @param boolean $hasFurtherResults
	 *
	 * @return QueryResult
	 */
	public function newEmptyQueryResult( Query $query, $hasFurtherResults = false ) {
		return new QueryResult(
			$query->getDescription()->getPrintrequests(),
			$query,
			[],
			$this->store,
			$hasFurtherResults
		);
	}

	/**
	 * This function is used to generate instance query results, and the given
	 * result wrapper must have an according format (one result column that
	 * contains URIs of wiki pages).
	 *
	 * @param RepositoryResult|null $repositoryResult
	 * @param Query $query QueryResults hold a reference to original query
	 *
	 * @return QueryResult
	 */
	public function newQueryResult( RepositoryResult $repositoryResult = null , Query $query ) {

		if ( $repositoryResult === null ) {
			return $this->newEmptyQueryResult( $query );
		}

		if ( $query->querymode === Query::MODE_COUNT ) {
			return $this->makeQueryResultForCount( $repositoryResult, $query );
		}

		return $this->makeQueryResultForInstance( $repositoryResult, $query );
	}

	private function makeQueryResultForCount( RepositoryResult $repositoryResult, Query $query ) {

		$queryResult = new QueryResult(
			$query->getDescription()->getPrintrequests(),
			$query,
			[],
			$this->store,
			false
		);

		if ( $repositoryResult->getErrorCode() === RepositoryResult::ERROR_NOERROR ) {
			$queryResult->setCountValue( $repositoryResult->getNumericValue() );
		} else {
			$queryResult->addErrors( [ wfMessage( 'smw_db_sparqlqueryproblem' )->inContentLanguage()->text() ] );
		}

		return $queryResult;
	}

	private function makeQueryResultForInstance( RepositoryResult $repositoryResult, Query $query ) {

		$resultDataItems = [];

		foreach ( $repositoryResult as $resultRow ) {

			if ( count( $resultRow ) > 0 && $resultRow[0] instanceof ExpElement ) {
				$dataItem = Exporter::getInstance()->findDataItemForExpElement( $resultRow[0] );

				if ( !is_null( $dataItem ) ) {
					$resultDataItems[] = $dataItem;
				}
			}
		}

		if ( $repositoryResult->numRows() > $query->getLimit() ) {
			if ( count( $resultDataItems) > 1 ) {
				array_pop( $resultDataItems );
			}
			$hasFurtherResults = true;
		} else {
			$hasFurtherResults = false;
		}

		$result = new QueryResult(
			$query->getDescription()->getPrintrequests(),
			$query,
			$resultDataItems,
			$this->store,
			$hasFurtherResults
		);

		switch ( $repositoryResult->getErrorCode() ) {
			case RepositoryResult::ERROR_NOERROR:
			break;
			case RepositoryResult::ERROR_INCOMPLETE:
				$result->addErrors( [ wfMessage( 'smw_db_sparqlqueryincomplete' )->inContentLanguage()->text() ] );
			break;
			default:
				$result->addErrors( [ wfMessage( 'smw_db_sparqlqueryproblem' )->inContentLanguage()->text() ] );
			break;
		}

		return $result;
	}

}