summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/Exporter/ConceptMapper.php
blob: 20e43ddee171f196363e55afcc30201624074079 (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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<?php

namespace SMW\Exporter;

use SMW\ApplicationFactory;
use SMW\DataValueFactory;
use SMW\DIConcept;
use SMW\DIProperty;
use SMW\Exporter\Element\ExpResource;
use SMW\Query\Language\ClassDescription;
use SMW\Query\Language\ConceptDescription;
use SMW\Query\Language\Conjunction;
use SMW\Query\Language\Description;
use SMW\Query\Language\Disjunction;
use SMW\Query\Language\SomeProperty;
use SMW\Query\Language\ThingDescription;
use SMW\Query\Language\ValueDescription;
use SMWDataItem as DataItem;
use SMWExpData as ExpData;
use SMWExporter as Exporter;

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

	/**
	 * @var Exporter
	 */
	private $exporter;

	/**
	 * @since 2.4
	 *
	 * @param Exporter|null $exporter
	 */
	public function __construct( Exporter $exporter = null ) {
		$this->exporter = $exporter;

		if ( $this->exporter === null ) {
			$this->exporter = Exporter::getInstance();
		}
	}

	/**
	 * @since 2.4
	 *
	 * @param DataItem $dataItem
	 *
	 * @return boolean
	 */
	public function isMapperFor( DataItem $dataItem ) {
		return $dataItem instanceof DIConcept;
	}

	/**
	 * @since 2.4
	 *
	 * @param DIConcept $concept
	 *
	 * @return ExpData|null
	 */
	public function getElementFor( DIConcept $concept ) {

		$dataValue = DataValueFactory::getInstance()->newDataValueByItem(
			$concept
		);

		if ( !$dataValue->isValid() ) {
			return null;
		}

		$description = ApplicationFactory::getInstance()->newQueryParser()->getQueryDescription(
			$dataValue->getWikiValue()
		);

		$exact = true;
		$owlDescription = $this->getExpDataFromDescription( $description, $exact );

		if ( $owlDescription === false ) {
			$result = new ExpData(
				$this->exporter->getSpecialNsResource( 'owl', 'Thing' )
			);

			return $result;
		}

		if ( $exact ) {
			return $owlDescription;
		}

		$result = new ExpData(
			new ExpResource( '' )
		);

		$result->addPropertyObjectValue(
			$this->exporter->getSpecialNsResource( 'rdf', 'type' ),
			new ExpData( $this->exporter->getSpecialNsResource( 'owl', 'Class' ) )
		);

		$result->addPropertyObjectValue(
			$this->exporter->getSpecialNsResource( 'rdfs', 'subClassOf' ),
			$owlDescription
		);

		return $result;
	}

	/**
	 * @since 2.4
	 *
	 * @param Description $description
	 *
	 * @param string &$exact
	 *
	 * @return Element|false
	 */
	public function getExpDataFromDescription( Description $description, &$exact ) {

		if ( ( $description instanceof Conjunction ) || ( $description instanceof Disjunction ) ) {
			$result = $this->doMapConjunctionDisjunction( $description, $exact );
		} elseif ( $description instanceof ClassDescription ) {
			$result = $this->doMapClassDescription( $description, $exact );
		} elseif ( $description instanceof ConceptDescription ) {
			$result = $this->doMapConceptDescription( $description, $exact );
		} elseif ( $description instanceof SomeProperty ) {
			$result = $this->doMapSomeProperty( $description, $exact );
		} elseif ( $description instanceof ValueDescription ) {
			$result = $this->doMapValueDescription( $description, $exact );
		} elseif ( $description instanceof ThingDescription ) {
			$result = false;
		} else {
			$result = false;
			$exact = false;
		}

		return $result;
	}

	private function doMapValueDescription( ValueDescription $description, &$exact ) {

		if ( $description->getComparator() === SMW_CMP_EQ ) {
			$result = $this->exporter->getDataItemExpElement( $description->getDataItem() );
		} else {
			// OWL cannot represent <= and >= ...
			$exact = false;
			$result = false;
		}

		return $result;
	}

	private function doMapConceptDescription( ConceptDescription $description, &$exact ) {

		$result = new ExpData(
			$this->exporter->getResourceElementForWikiPage( $description->getConcept() )
		);

		return $result;
	}

	private function doMapSomeProperty( SomeProperty $description, &$exact ) {

		$result = new ExpData(
			new ExpResource( '' )
		);

		$result->addPropertyObjectValue(
			$this->exporter->getSpecialNsResource( 'rdf', 'type' ),
			new ExpData( $this->exporter->getSpecialNsResource( 'owl', 'Restriction' ) )
		);

		$property = $description->getProperty();

		if ( $property->isInverse() ) {
			$property = new DIProperty( $property->getKey() );
		}

		$result->addPropertyObjectValue(
			$this->exporter->getSpecialNsResource( 'owl', 'onProperty' ),
			new ExpData(
				$this->exporter->getResourceElementForProperty( $property )
			)
		);

		$subdata = $this->getExpDataFromDescription(
			$description->getDescription(),
			$exact
		);

		if ( ( $description->getDescription() instanceof ValueDescription ) &&
		     ( $description->getDescription()->getComparator() === SMW_CMP_EQ ) ) {
			$result->addPropertyObjectValue(
				$this->exporter->getSpecialNsResource( 'owl', 'hasValue' ),
				$subdata
			);
		} else {
			if ( $subdata === false ) {

				$owltype = $this->exporter->getOWLPropertyType(
					$description->getProperty()->findPropertyTypeID()
				);

				if ( $owltype == 'ObjectProperty' ) {
					$subdata = new ExpData(
						$this->exporter->getSpecialNsResource( 'owl', 'Thing' )
					);
				} elseif ( $owltype == 'DatatypeProperty' ) {
					$subdata = new ExpData(
						$this->exporter->getSpecialNsResource( 'rdfs', 'Literal' )
					);
				} else { // no restrictions at all with annotation properties ...
					return new ExpData(
						$this->exporter->getSpecialNsResource( 'owl', 'Thing' )
					);
				}
			}

			$result->addPropertyObjectValue(
				$this->exporter->getSpecialNsResource( 'owl', 'someValuesFrom' ),
				$subdata
			);
		}

		return $result;
	}

	private function doMapClassDescription( ClassDescription $description, &$exact ) {

		if ( count( $description->getCategories() ) == 1 ) { // single category
			$categories = $description->getCategories();
			$result = new ExpData(
				$this->exporter->getResourceElementForWikiPage( end( $categories ) )
			);
		} else { // disjunction of categories

			$result = new ExpData(
				new ExpResource( '' )
			);

			$elements = [];

			foreach ( $description->getCategories() as $cat ) {
				$elements[] = new ExpData(
					$this->exporter->getResourceElementForWikiPage( $cat )
				);
			}

			$result->addPropertyObjectValue(
				$this->exporter->getSpecialNsResource( 'owl', 'unionOf' ),
				ExpData::makeCollection( $elements )
			);
		}

		$result->addPropertyObjectValue(
			$this->exporter->getSpecialNsResource( 'rdf', 'type' ),
			new ExpData(
				$this->exporter->getSpecialNsResource( 'owl', 'Class' )
			)
		);

		return $result;
	}

	private function doMapConjunctionDisjunction( Description $description, &$exact ) {

		$result = new ExpData(
			new ExpResource( '' )
		);

		$result->addPropertyObjectValue(
			$this->exporter->getSpecialNsResource( 'rdf', 'type' ),
			new ExpData(
				$this->exporter->getSpecialNsResource( 'owl', 'Class' )
			)
		);

		$elements = [];

		foreach ( $description->getDescriptions() as $subdesc ) {
			$element = $this->getExpDataFromDescription( $subdesc, $exact );

			if ( $element === false ) {
				$element = new ExpData(
					$this->exporter->getSpecialNsResource( 'owl', 'Thing' )
				);
			}

			$elements[] = $element;
		}

		$prop = $description instanceof Conjunction ? 'intersectionOf' : 'unionOf';

		$result->addPropertyObjectValue(
			$this->exporter->getSpecialNsResource( 'owl', $prop ),
			ExpData::makeCollection( $elements )
		);

		return $result;
	}

}