@comunica/actor-query-process-explain-query 4.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright © 2017–now Ruben Taelman, Joachim Van Herwegen
4
+ Comunica Association and Ghent University – imec, Belgium
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # Comunica Explain Query Query Process Actor
2
+
3
+ [![npm version](https://badge.fury.io/js/%40comunica%2Factor-query-process-explain-query.svg)](https://www.npmjs.com/package/@comunica/actor-query-process-explain-query)
4
+
5
+ An [Query Process](https://github.com/comunica/comunica/tree/master/packages/bus-query-process) actor
6
+ that explains the logical query plan as a query string after parsing and optimizing.
7
+ If source selection took place, source assignment on operators will be serialized as `SERVICE` clauses.
8
+
9
+ This module is part of the [Comunica framework](https://github.com/comunica/comunica),
10
+ and should only be used by [developers that want to build their own query engine](https://comunica.dev/docs/modify/).
11
+
12
+ [Click here if you just want to query with Comunica](https://comunica.dev/docs/query/).
13
+
14
+ ## Install
15
+
16
+ ```bash
17
+ $ yarn add @comunica/actor-query-process-explain-query
18
+ ```
19
+
20
+ ## Configure
21
+
22
+ After installing, this package can be added to your engine's configuration as follows:
23
+ ```text
24
+ {
25
+ "@context": [
26
+ ...
27
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-query-process-explain-query/^1.0.0/components/context.jsonld"
28
+ ],
29
+ "actors": [
30
+ ...
31
+ {
32
+ "@id": "urn:comunica:default:query-process/actors#explain-query",
33
+ "@type": "ActorQueryProcessExplainService",
34
+ "mediatorQuerySerialize": { "@id": "urn:comunica:default:query-serialize/mediators#main" }
35
+ }
36
+ ]
37
+ }
38
+ ```
39
+
40
+ ### Config Parameters
41
+
42
+ * `mediatorQuerySerialize`: A mediator over the [Query Serialize bus](https://github.com/comunica/comunica/tree/master/packages/bus-query-serialize).
@@ -0,0 +1,229 @@
1
+ {
2
+ "@context": [
3
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-query-process-explain-query/^5.0.0/components/context.jsonld",
4
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/bus-query-process/^5.0.0/components/context.jsonld",
5
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/core/^5.0.0/components/context.jsonld"
6
+ ],
7
+ "@id": "npmd:@comunica/actor-query-process-explain-query",
8
+ "components": [
9
+ {
10
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery",
11
+ "@type": "Class",
12
+ "requireElement": "ActorQueryProcessExplainQuery",
13
+ "extends": [
14
+ "cbqp:components/ActorQueryProcess.jsonld#ActorQueryProcess"
15
+ ],
16
+ "comment": "A comunica Explain Query Query Process Actor.",
17
+ "parameters": [
18
+ {
19
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_queryProcessor",
20
+ "range": "cbqp:components/ActorQueryProcess.jsonld#IQueryProcessSequential"
21
+ },
22
+ {
23
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_mediatorQuerySerialize",
24
+ "range": "cc:components/Mediator.jsonld#Mediator",
25
+ "comment": "Mediator for serializing queries."
26
+ },
27
+ {
28
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_name",
29
+ "range": "xsd:string",
30
+ "default": {
31
+ "@id": "rdf:subject"
32
+ },
33
+ "comment": "The name for this actor."
34
+ },
35
+ {
36
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_bus",
37
+ "range": {
38
+ "@type": "ParameterRangeGenericComponent",
39
+ "component": "cc:components/Bus.jsonld#Bus",
40
+ "genericTypeInstances": [
41
+ {
42
+ "@type": "ParameterRangeGenericComponent",
43
+ "component": "cc:components/Actor.jsonld#Actor",
44
+ "genericTypeInstances": [
45
+ {
46
+ "@type": "ParameterRangeGenericTypeReference",
47
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
48
+ },
49
+ {
50
+ "@type": "ParameterRangeGenericTypeReference",
51
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
52
+ },
53
+ {
54
+ "@type": "ParameterRangeGenericTypeReference",
55
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
56
+ },
57
+ {
58
+ "@type": "ParameterRangeGenericTypeReference",
59
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_TS"
60
+ }
61
+ ]
62
+ },
63
+ {
64
+ "@type": "ParameterRangeGenericTypeReference",
65
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
66
+ },
67
+ {
68
+ "@type": "ParameterRangeGenericTypeReference",
69
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
70
+ },
71
+ {
72
+ "@type": "ParameterRangeGenericTypeReference",
73
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
74
+ },
75
+ {
76
+ "@type": "ParameterRangeGenericTypeReference",
77
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_TS"
78
+ }
79
+ ]
80
+ },
81
+ "default": {
82
+ "@id": "cbqp:components/ActorQueryProcess.jsonld#ActorQueryProcess_default_bus",
83
+ "@type": "cc:components/Bus.jsonld#Bus"
84
+ },
85
+ "comment": "The bus this actor subscribes to."
86
+ },
87
+ {
88
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_busFailMessage",
89
+ "range": {
90
+ "@type": "ParameterRangeUnion",
91
+ "parameterRangeElements": [
92
+ "xsd:string",
93
+ {
94
+ "@type": "ParameterRangeUndefined"
95
+ }
96
+ ]
97
+ },
98
+ "default": "Query processing failed: none of the configured actor were process to the query \"${action.query}\"",
99
+ "comment": "The message that will be configured in the bus for reporting failures. This message may be a template string that contains references to the executed `action`. For example, the following templated string is allowed: \"RDF dereferencing failed: no actors could handle ${action.handle.mediaType}\""
100
+ },
101
+ {
102
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_beforeActors",
103
+ "range": {
104
+ "@type": "ParameterRangeUnion",
105
+ "parameterRangeElements": [
106
+ {
107
+ "@type": "ParameterRangeArray",
108
+ "parameterRangeValue": {
109
+ "@type": "ParameterRangeGenericComponent",
110
+ "component": "cc:components/Actor.jsonld#Actor",
111
+ "genericTypeInstances": [
112
+ {
113
+ "@type": "ParameterRangeGenericTypeReference",
114
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
115
+ },
116
+ {
117
+ "@type": "ParameterRangeGenericTypeReference",
118
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
119
+ },
120
+ {
121
+ "@type": "ParameterRangeGenericTypeReference",
122
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
123
+ },
124
+ {
125
+ "@type": "ParameterRangeGenericTypeReference",
126
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_TS"
127
+ }
128
+ ]
129
+ }
130
+ },
131
+ {
132
+ "@type": "ParameterRangeUndefined"
133
+ }
134
+ ]
135
+ },
136
+ "comment": "Actor that must be registered in the bus before this actor."
137
+ }
138
+ ],
139
+ "memberFields": [
140
+ {
141
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery__member_queryProcessor",
142
+ "memberFieldName": "queryProcessor",
143
+ "range": "cbqp:components/ActorQueryProcess.jsonld#IQueryProcessSequential"
144
+ },
145
+ {
146
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery__member_mediatorQuerySerialize",
147
+ "memberFieldName": "mediatorQuerySerialize",
148
+ "range": "cc:components/Mediator.jsonld#Mediator"
149
+ },
150
+ {
151
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery__member_constructor",
152
+ "memberFieldName": "constructor"
153
+ },
154
+ {
155
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery__member_test",
156
+ "memberFieldName": "test"
157
+ },
158
+ {
159
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery__member_run",
160
+ "memberFieldName": "run"
161
+ },
162
+ {
163
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery__member_sourceAnnotationToServices",
164
+ "memberFieldName": "sourceAnnotationToServices"
165
+ }
166
+ ],
167
+ "constructorArguments": [
168
+ {
169
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args__constructorArgument",
170
+ "fields": [
171
+ {
172
+ "keyRaw": "queryProcessor",
173
+ "value": {
174
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_queryProcessor"
175
+ }
176
+ },
177
+ {
178
+ "keyRaw": "mediatorQuerySerialize",
179
+ "value": {
180
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_mediatorQuerySerialize"
181
+ }
182
+ },
183
+ {
184
+ "keyRaw": "name",
185
+ "value": {
186
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_name"
187
+ }
188
+ },
189
+ {
190
+ "keyRaw": "bus",
191
+ "value": {
192
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_bus"
193
+ }
194
+ },
195
+ {
196
+ "keyRaw": "busFailMessage",
197
+ "value": {
198
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_busFailMessage"
199
+ }
200
+ },
201
+ {
202
+ "keyRaw": "beforeActors",
203
+ "value": {
204
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_beforeActors"
205
+ }
206
+ }
207
+ ]
208
+ }
209
+ ]
210
+ },
211
+ {
212
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#IActorQueryProcessExplainServiceArgs",
213
+ "@type": "AbstractClass",
214
+ "requireElement": "IActorQueryProcessExplainServiceArgs",
215
+ "parameters": [],
216
+ "memberFields": [
217
+ {
218
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#IActorQueryProcessExplainServiceArgs__member_queryProcessor",
219
+ "memberFieldName": "queryProcessor"
220
+ },
221
+ {
222
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#IActorQueryProcessExplainServiceArgs__member_mediatorQuerySerialize",
223
+ "memberFieldName": "mediatorQuerySerialize"
224
+ }
225
+ ],
226
+ "constructorArguments": []
227
+ }
228
+ ]
229
+ }
@@ -0,0 +1,218 @@
1
+ {
2
+ "@context": [
3
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-query-process-explain-query/^5.0.0/components/context.jsonld",
4
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/bus-query-process/^5.0.0/components/context.jsonld",
5
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/core/^5.0.0/components/context.jsonld"
6
+ ],
7
+ "@id": "npmd:@comunica/actor-query-process-explain-query",
8
+ "components": [
9
+ {
10
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService",
11
+ "@type": "Class",
12
+ "requireElement": "ActorQueryProcessExplainService",
13
+ "extends": [
14
+ "cbqp:components/ActorQueryProcess.jsonld#ActorQueryProcess"
15
+ ],
16
+ "comment": "A comunica Explain Query Query Process Actor.",
17
+ "parameters": [
18
+ {
19
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService_args_queryProcessor",
20
+ "range": "cbqp:components/ActorQueryProcess.jsonld#IQueryProcessSequential"
21
+ },
22
+ {
23
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService_args_name",
24
+ "range": "xsd:string",
25
+ "default": {
26
+ "@id": "rdf:subject"
27
+ },
28
+ "comment": "The name for this actor."
29
+ },
30
+ {
31
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService_args_bus",
32
+ "range": {
33
+ "@type": "ParameterRangeGenericComponent",
34
+ "component": "cc:components/Bus.jsonld#Bus",
35
+ "genericTypeInstances": [
36
+ {
37
+ "@type": "ParameterRangeGenericComponent",
38
+ "component": "cc:components/Actor.jsonld#Actor",
39
+ "genericTypeInstances": [
40
+ {
41
+ "@type": "ParameterRangeGenericTypeReference",
42
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
43
+ },
44
+ {
45
+ "@type": "ParameterRangeGenericTypeReference",
46
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
47
+ },
48
+ {
49
+ "@type": "ParameterRangeGenericTypeReference",
50
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
51
+ },
52
+ {
53
+ "@type": "ParameterRangeGenericTypeReference",
54
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_TS"
55
+ }
56
+ ]
57
+ },
58
+ {
59
+ "@type": "ParameterRangeGenericTypeReference",
60
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
61
+ },
62
+ {
63
+ "@type": "ParameterRangeGenericTypeReference",
64
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
65
+ },
66
+ {
67
+ "@type": "ParameterRangeGenericTypeReference",
68
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
69
+ },
70
+ {
71
+ "@type": "ParameterRangeGenericTypeReference",
72
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_TS"
73
+ }
74
+ ]
75
+ },
76
+ "default": {
77
+ "@id": "cbqp:components/ActorQueryProcess.jsonld#ActorQueryProcess_default_bus",
78
+ "@type": "cc:components/Bus.jsonld#Bus"
79
+ },
80
+ "comment": "The bus this actor subscribes to."
81
+ },
82
+ {
83
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService_args_busFailMessage",
84
+ "range": {
85
+ "@type": "ParameterRangeUnion",
86
+ "parameterRangeElements": [
87
+ "xsd:string",
88
+ {
89
+ "@type": "ParameterRangeUndefined"
90
+ }
91
+ ]
92
+ },
93
+ "default": "Query processing failed: none of the configured actor were process to the query \"${action.query}\"",
94
+ "comment": "The message that will be configured in the bus for reporting failures. This message may be a template string that contains references to the executed `action`. For example, the following templated string is allowed: \"RDF dereferencing failed: no actors could handle ${action.handle.mediaType}\""
95
+ },
96
+ {
97
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService_args_beforeActors",
98
+ "range": {
99
+ "@type": "ParameterRangeUnion",
100
+ "parameterRangeElements": [
101
+ {
102
+ "@type": "ParameterRangeArray",
103
+ "parameterRangeValue": {
104
+ "@type": "ParameterRangeGenericComponent",
105
+ "component": "cc:components/Actor.jsonld#Actor",
106
+ "genericTypeInstances": [
107
+ {
108
+ "@type": "ParameterRangeGenericTypeReference",
109
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
110
+ },
111
+ {
112
+ "@type": "ParameterRangeGenericTypeReference",
113
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
114
+ },
115
+ {
116
+ "@type": "ParameterRangeGenericTypeReference",
117
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
118
+ },
119
+ {
120
+ "@type": "ParameterRangeGenericTypeReference",
121
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^5.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_TS"
122
+ }
123
+ ]
124
+ }
125
+ },
126
+ {
127
+ "@type": "ParameterRangeUndefined"
128
+ }
129
+ ]
130
+ },
131
+ "comment": "Actor that must be registered in the bus before this actor."
132
+ }
133
+ ],
134
+ "memberFields": [
135
+ {
136
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService__member_queryStringGenerator",
137
+ "memberFieldName": "queryStringGenerator",
138
+ "range": "urn:npm:@traqula/generator-sparql-1-2:Generator"
139
+ },
140
+ {
141
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService__member_queryProcessor",
142
+ "memberFieldName": "queryProcessor",
143
+ "range": "cbqp:components/ActorQueryProcess.jsonld#IQueryProcessSequential"
144
+ },
145
+ {
146
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService__member_constructor",
147
+ "memberFieldName": "constructor"
148
+ },
149
+ {
150
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService__member_test",
151
+ "memberFieldName": "test"
152
+ },
153
+ {
154
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService__member_run",
155
+ "memberFieldName": "run"
156
+ },
157
+ {
158
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService__member_sourceAnnotationToServices",
159
+ "memberFieldName": "sourceAnnotationToServices"
160
+ },
161
+ {
162
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService__member_operationToQuery",
163
+ "memberFieldName": "operationToQuery"
164
+ }
165
+ ],
166
+ "constructorArguments": [
167
+ {
168
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService_args__constructorArgument",
169
+ "fields": [
170
+ {
171
+ "keyRaw": "queryProcessor",
172
+ "value": {
173
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService_args_queryProcessor"
174
+ }
175
+ },
176
+ {
177
+ "keyRaw": "name",
178
+ "value": {
179
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService_args_name"
180
+ }
181
+ },
182
+ {
183
+ "keyRaw": "bus",
184
+ "value": {
185
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService_args_bus"
186
+ }
187
+ },
188
+ {
189
+ "keyRaw": "busFailMessage",
190
+ "value": {
191
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService_args_busFailMessage"
192
+ }
193
+ },
194
+ {
195
+ "keyRaw": "beforeActors",
196
+ "value": {
197
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#ActorQueryProcessExplainService_args_beforeActors"
198
+ }
199
+ }
200
+ ]
201
+ }
202
+ ]
203
+ },
204
+ {
205
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#IActorQueryProcessExplainServiceArgs",
206
+ "@type": "AbstractClass",
207
+ "requireElement": "IActorQueryProcessExplainServiceArgs",
208
+ "parameters": [],
209
+ "memberFields": [
210
+ {
211
+ "@id": "caqpes:components/ActorQueryProcessExplainService.jsonld#IActorQueryProcessExplainServiceArgs__member_queryProcessor",
212
+ "memberFieldName": "queryProcessor"
213
+ }
214
+ ],
215
+ "constructorArguments": []
216
+ }
217
+ ]
218
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "@context": [
3
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-query-process-explain-query/^5.0.0/components/context.jsonld"
4
+ ],
5
+ "@id": "npmd:@comunica/actor-query-process-explain-query",
6
+ "@type": "Module",
7
+ "requireName": "@comunica/actor-query-process-explain-query",
8
+ "import": [
9
+ "caqpeq:components/ActorQueryProcessExplainQuery.jsonld"
10
+ ]
11
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "@context": [
3
+ "https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^6.0.0/components/context.jsonld",
4
+ {
5
+ "npmd": "https://linkedsoftwaredependencies.org/bundles/npm/",
6
+ "caqpeq": "npmd:@comunica/actor-query-process-explain-query/^5.0.0/",
7
+ "ActorQueryProcessExplainQuery": {
8
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery",
9
+ "@prefix": true,
10
+ "@context": {
11
+ "args_queryProcessor": {
12
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_queryProcessor"
13
+ },
14
+ "args_mediatorQuerySerialize": {
15
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_mediatorQuerySerialize"
16
+ },
17
+ "args_name": {
18
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_name"
19
+ },
20
+ "args_bus": {
21
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_bus"
22
+ },
23
+ "args_busFailMessage": {
24
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_busFailMessage"
25
+ },
26
+ "args_beforeActors": {
27
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_beforeActors",
28
+ "@container": "@list"
29
+ },
30
+ "queryProcessor": {
31
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_queryProcessor"
32
+ },
33
+ "mediatorQuerySerialize": {
34
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_mediatorQuerySerialize"
35
+ },
36
+ "name": {
37
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_name"
38
+ },
39
+ "bus": {
40
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_bus"
41
+ },
42
+ "busFailMessage": {
43
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_busFailMessage"
44
+ },
45
+ "beforeActors": {
46
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#ActorQueryProcessExplainQuery_args_beforeActors",
47
+ "@container": "@list"
48
+ }
49
+ }
50
+ },
51
+ "IActorQueryProcessExplainServiceArgs": {
52
+ "@id": "caqpeq:components/ActorQueryProcessExplainQuery.jsonld#IActorQueryProcessExplainServiceArgs",
53
+ "@prefix": true,
54
+ "@context": {}
55
+ }
56
+ }
57
+ ]
58
+ }
@@ -0,0 +1,24 @@
1
+ import { ActorQueryProcess } from '@comunica/bus-query-process';
2
+ import type { IActionQueryProcess, IActorQueryProcessOutput, IActorQueryProcessArgs, IQueryProcessSequential } from '@comunica/bus-query-process';
3
+ import type { MediatorQuerySerialize } from '@comunica/bus-query-serialize';
4
+ import type { TestResult, IActorTest } from '@comunica/core';
5
+ import { Algebra, AlgebraFactory } from '@comunica/utils-algebra';
6
+ import type * as RDF from '@rdfjs/types';
7
+ /**
8
+ * A comunica Explain Query Query Process Actor.
9
+ */
10
+ export declare class ActorQueryProcessExplainQuery extends ActorQueryProcess {
11
+ readonly queryProcessor: IQueryProcessSequential;
12
+ readonly mediatorQuerySerialize: MediatorQuerySerialize;
13
+ constructor(args: IActorQueryProcessExplainServiceArgs);
14
+ test(action: IActionQueryProcess): Promise<TestResult<IActorTest>>;
15
+ run(action: IActionQueryProcess): Promise<IActorQueryProcessOutput>;
16
+ static sourceAnnotationToServices(algebraFactory: AlgebraFactory, dataFactory: RDF.DataFactory, operation: Algebra.Operation): Algebra.Operation;
17
+ }
18
+ export interface IActorQueryProcessExplainServiceArgs extends IActorQueryProcessArgs {
19
+ queryProcessor: IQueryProcessSequential;
20
+ /**
21
+ * Mediator for serializing queries.
22
+ */
23
+ mediatorQuerySerialize: MediatorQuerySerialize;
24
+ }
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ActorQueryProcessExplainQuery = void 0;
4
+ const bus_query_process_1 = require("@comunica/bus-query-process");
5
+ const context_entries_1 = require("@comunica/context-entries");
6
+ const core_1 = require("@comunica/core");
7
+ const utils_algebra_1 = require("@comunica/utils-algebra");
8
+ const utils_query_operation_1 = require("@comunica/utils-query-operation");
9
+ /**
10
+ * A comunica Explain Query Query Process Actor.
11
+ */
12
+ class ActorQueryProcessExplainQuery extends bus_query_process_1.ActorQueryProcess {
13
+ queryProcessor;
14
+ mediatorQuerySerialize;
15
+ constructor(args) {
16
+ super(args);
17
+ this.queryProcessor = args.queryProcessor;
18
+ this.mediatorQuerySerialize = args.mediatorQuerySerialize;
19
+ }
20
+ async test(action) {
21
+ if ((action.context.get(context_entries_1.KeysInitQuery.explain) ??
22
+ action.context.get(new core_1.ActionContextKey('explain'))) !== 'query') {
23
+ return (0, core_1.failTest)(`${this.name} can only explain in 'query' mode.`);
24
+ }
25
+ return (0, core_1.passTestVoid)();
26
+ }
27
+ async run(action) {
28
+ // Parse and optimize the query
29
+ let { operation, context } = await this.queryProcessor.parse(action.query, action.context);
30
+ ({ operation, context } = await this.queryProcessor.optimize(operation, context));
31
+ // Convert source annotations to SERVICE clauses
32
+ const AF = new utils_algebra_1.AlgebraFactory();
33
+ operation = ActorQueryProcessExplainQuery.sourceAnnotationToServices(AF, context.getSafe(context_entries_1.KeysInitQuery.dataFactory), operation);
34
+ // Serialize the operation to a SPARQL query
35
+ let data;
36
+ if (operation.type === utils_algebra_1.Algebra.Types.UNION) {
37
+ // This can happen if it was determined during optimization that the query has zero results.
38
+ data = 'SELECT * WHERE { FILTER(false) }';
39
+ }
40
+ else {
41
+ data = (await this.mediatorQuerySerialize.mediate({
42
+ queryFormat: { language: 'sparql', version: '1.1' },
43
+ operation,
44
+ newlines: true,
45
+ indentWidth: 2,
46
+ context,
47
+ })).query;
48
+ }
49
+ return {
50
+ result: {
51
+ explain: true,
52
+ type: 'query',
53
+ data,
54
+ },
55
+ };
56
+ }
57
+ static sourceAnnotationToServices(algebraFactory, dataFactory, operation) {
58
+ // TODO: The casts below should not be necessary.
59
+ return utils_algebra_1.transformer.transformObject(operation, (subOperationUntyped) => {
60
+ const subOperation = subOperationUntyped;
61
+ const source = (0, utils_query_operation_1.getOperationSource)(subOperation);
62
+ if (source) {
63
+ return algebraFactory.createService(subOperation, typeof source.source.referenceValue === 'string' ?
64
+ dataFactory.namedNode(source.source.referenceValue) :
65
+ dataFactory.namedNode(`comunica:${source.source.referenceValue.constructor.name}`), source.context?.get(context_entries_1.KeysInitQuery.lenient));
66
+ }
67
+ return subOperation;
68
+ });
69
+ }
70
+ }
71
+ exports.ActorQueryProcessExplainQuery = ActorQueryProcessExplainQuery;
72
+ //# sourceMappingURL=ActorQueryProcessExplainQuery.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ActorQueryProcessExplainQuery.js","sourceRoot":"","sources":["ActorQueryProcessExplainQuery.ts"],"names":[],"mappings":"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","sourcesContent":["import { ActorQueryProcess } from '@comunica/bus-query-process';\nimport type {\n IActionQueryProcess,\n IActorQueryProcessOutput,\n IActorQueryProcessArgs,\n IQueryProcessSequential,\n} from '@comunica/bus-query-process';\nimport type { MediatorQuerySerialize } from '@comunica/bus-query-serialize';\nimport { KeysInitQuery } from '@comunica/context-entries';\nimport type { TestResult, IActorTest } from '@comunica/core';\nimport { ActionContextKey, failTest, passTestVoid } from '@comunica/core';\nimport { Algebra, AlgebraFactory, transformer } from '@comunica/utils-algebra';\nimport { getOperationSource } from '@comunica/utils-query-operation';\nimport type * as RDF from '@rdfjs/types';\n\n/**\n * A comunica Explain Query Query Process Actor.\n */\nexport class ActorQueryProcessExplainQuery extends ActorQueryProcess {\n public readonly queryProcessor: IQueryProcessSequential;\n public readonly mediatorQuerySerialize: MediatorQuerySerialize;\n\n public constructor(args: IActorQueryProcessExplainServiceArgs) {\n super(args);\n this.queryProcessor = args.queryProcessor;\n this.mediatorQuerySerialize = args.mediatorQuerySerialize;\n }\n\n public async test(action: IActionQueryProcess): Promise<TestResult<IActorTest>> {\n if ((action.context.get(KeysInitQuery.explain) ??\n action.context.get(new ActionContextKey('explain'))) !== 'query') {\n return failTest(`${this.name} can only explain in 'query' mode.`);\n }\n return passTestVoid();\n }\n\n public async run(action: IActionQueryProcess): Promise<IActorQueryProcessOutput> {\n // Parse and optimize the query\n let { operation, context } = await this.queryProcessor.parse(action.query, action.context);\n ({ operation, context } = await this.queryProcessor.optimize(operation, context));\n\n // Convert source annotations to SERVICE clauses\n const AF = new AlgebraFactory();\n operation = ActorQueryProcessExplainQuery.sourceAnnotationToServices(\n AF,\n context.getSafe(KeysInitQuery.dataFactory),\n operation,\n );\n\n // Serialize the operation to a SPARQL query\n let data: string;\n if (operation.type === Algebra.Types.UNION) {\n // This can happen if it was determined during optimization that the query has zero results.\n data = 'SELECT * WHERE { FILTER(false) }';\n } else {\n data = (await this.mediatorQuerySerialize.mediate({\n queryFormat: { language: 'sparql', version: '1.1' },\n operation,\n newlines: true,\n indentWidth: 2,\n context,\n })).query;\n }\n\n return {\n result: {\n explain: true,\n type: 'query',\n data,\n },\n };\n }\n\n public static sourceAnnotationToServices(\n algebraFactory: AlgebraFactory,\n dataFactory: RDF.DataFactory,\n operation: Algebra.Operation,\n ): Algebra.Operation {\n // TODO: The casts below should not be necessary.\n return <Algebra.Operation> transformer.transformObject(operation, (subOperationUntyped: object) => {\n const subOperation = <Algebra.Operation> subOperationUntyped;\n const source = getOperationSource(subOperation);\n if (source) {\n return algebraFactory.createService(\n subOperation,\n typeof source.source.referenceValue === 'string' ?\n dataFactory.namedNode(source.source.referenceValue) :\n dataFactory.namedNode(`comunica:${source.source.referenceValue.constructor.name}`),\n source.context?.get(KeysInitQuery.lenient),\n );\n }\n return subOperation;\n });\n }\n}\n\nexport interface IActorQueryProcessExplainServiceArgs extends IActorQueryProcessArgs {\n queryProcessor: IQueryProcessSequential;\n /**\n * Mediator for serializing queries.\n */\n mediatorQuerySerialize: MediatorQuerySerialize;\n}\n"]}
package/lib/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './ActorQueryProcessExplainQuery';
package/lib/index.js ADDED
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./ActorQueryProcessExplainQuery"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kEAAgD","sourcesContent":["export * from './ActorQueryProcessExplainQuery';\n"]}
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@comunica/actor-query-process-explain-query",
3
+ "version": "4.5.0",
4
+ "description": "A explain-query query-process actor",
5
+ "lsd:module": true,
6
+ "license": "MIT",
7
+ "funding": {
8
+ "type": "opencollective",
9
+ "url": "https://opencollective.com/comunica-association"
10
+ },
11
+ "homepage": "https://comunica.dev/",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/comunica/comunica.git",
15
+ "directory": "packages/actor-query-process-explain-query"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/comunica/comunica/issues"
19
+ },
20
+ "keywords": [
21
+ "comunica",
22
+ "actor",
23
+ "query-process",
24
+ "explain-query"
25
+ ],
26
+ "sideEffects": false,
27
+ "main": "lib/index.js",
28
+ "typings": "lib/index",
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "files": [
33
+ "components",
34
+ "lib/**/*.d.ts",
35
+ "lib/**/*.js",
36
+ "lib/**/*.js.map"
37
+ ],
38
+ "scripts": {
39
+ "build": "yarn run build:ts && yarn run build:components",
40
+ "build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
41
+ "build:components": "componentsjs-generator"
42
+ },
43
+ "dependencies": {
44
+ "@comunica/bus-query-process": "^4.5.0",
45
+ "@comunica/bus-query-serialize": "^4.5.0",
46
+ "@comunica/context-entries": "^4.5.0",
47
+ "@comunica/core": "^4.5.0",
48
+ "@comunica/utils-algebra": "^4.0.2",
49
+ "@comunica/utils-query-operation": "^4.5.0",
50
+ "@rdfjs/types": "*"
51
+ },
52
+ "gitHead": "fb01ead4dc1f68c06bfa1d34ecbf48380b8ea3a3"
53
+ }