summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/DispatchingDescriptionInterpreter.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/DispatchingDescriptionInterpreter.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/DispatchingDescriptionInterpreter.php80
1 files changed, 80 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/DispatchingDescriptionInterpreter.php b/www/wiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/DispatchingDescriptionInterpreter.php
new file mode 100644
index 00000000..7c105477
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/DispatchingDescriptionInterpreter.php
@@ -0,0 +1,80 @@
+<?php
+
+namespace SMW\SPARQLStore\QueryEngine\DescriptionInterpreters;
+
+use SMW\Query\Language\Description;
+use SMW\SPARQLStore\QueryEngine\DescriptionInterpreter;
+
+/**
+ * @private
+ *
+ * @license GNU GPL v2+
+ * @since 2.2
+ *
+ * @author Jeroen De Dauw < jeroendedauw@gmail.com >
+ */
+class DispatchingDescriptionInterpreter implements DescriptionInterpreter {
+
+ /**
+ * @var DescriptionInterpreter[]
+ */
+ private $interpreters = [];
+
+ /**
+ * @var DescriptionInterpreter
+ */
+ private $defaultInterpreter = null;
+
+ /**
+ * @param Description $description
+ *
+ * @return boolean
+ */
+ public function canInterpretDescription( Description $description ) {
+
+ foreach ( $this->interpreters as $interpreter ) {
+ if ( $interpreter->canInterpretDescription( $description ) ) {
+ return true;
+ }
+ }
+
+ return false;
+ }
+
+ /**
+ * @param Description $description
+ *
+ * @return Condition
+ */
+ public function interpretDescription( Description $description ) {
+
+ foreach ( $this->interpreters as $interpreter ) {
+ if ( $interpreter->canInterpretDescription( $description ) ) {
+ return $interpreter->interpretDescription( $description );
+ }
+ }
+
+ // Instead of throwing an exception we return a ThingDescriptionInterpreter
+ // for all unregistered/unknown descriptions
+ return $this->defaultInterpreter->interpretDescription( $description );
+ }
+
+ /**
+ * @since 2.2
+ *
+ * @param DescriptionInterpreter $interpreter
+ */
+ public function addInterpreter( DescriptionInterpreter $interpreter ) {
+ $this->interpreters[] = $interpreter;
+ }
+
+ /**
+ * @since 2.2
+ *
+ * @param DescriptionInterpreter $defaultInterpreter
+ */
+ public function addDefaultInterpreter( DescriptionInterpreter $defaultInterpreter ) {
+ $this->defaultInterpreter = $defaultInterpreter;
+ }
+
+}