-
Notifications
You must be signed in to change notification settings - Fork 4
/
QueryController.cs
472 lines (384 loc) · 13.9 KB
/
QueryController.cs
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Org.Vitrivr.CineastApi.Model;
using UnityEngine;
using UnityEngine.Events;
using Vitrivr.UnityInterface.CineastApi;
using Vitrivr.UnityInterface.CineastApi.Model.Config;
using Vitrivr.UnityInterface.CineastApi.Model.Data;
using Vitrivr.UnityInterface.CineastApi.Utils;
using VitrivrVR.Config;
using VitrivrVR.Logging;
using VitrivrVR.Notification;
using VitrivrVR.Query.Display;
using VitrivrVR.Query.Term;
using static VitrivrVR.Logging.Interaction;
using File = UnityEngine.Windows.File;
namespace VitrivrVR.Query
{
/// <summary>
/// Object for the execution of similarity queries and the creation of query result displays.
/// </summary>
public class QueryController : MonoBehaviour
{
[Serializable]
public class QueryEvent : UnityEvent<int>
{
}
[Serializable]
public class QueryChangeEvent : UnityEvent<int, int>
{
}
public static QueryController Instance { get; private set; }
public QueryTermManager defaultQueryTermManager;
public GameObject timer;
public QueryDisplay queryDisplay;
public TemporalQueryDisplay temporalQueryDisplay;
public PointCloudDisplay pointCloudDisplay;
public readonly List<QueryDisplay> queries = new();
private readonly Dictionary<QueryDisplay, PointCloudDisplay> _pointCloudDisplays = new();
public int CurrentQuery { get; private set; } = -1;
public List<string> AvailableCineastClients =>
_cineastClients.Select(client => client.CineastConfig.name).ToList();
/// <summary>
/// Event is triggered when a new query is added to the query list. Argument is query index.
/// </summary>
public QueryEvent queryAddedEvent;
/// <summary>
/// Event is triggered when an existing query is removed from the query list. Argument is query index.
/// </summary>
public QueryEvent queryRemovedEvent;
/// <summary>
/// Event is triggered when the active query changes. Argument is old query index, new query index, -1 means no
/// focus.
/// </summary>
public QueryChangeEvent queryFocusEvent;
/// <summary>
/// Keeps track of the latest query to determine if results of a returning query are still relevant.
/// </summary>
private Guid _localQueryGuid;
private List<CineastClient> _cineastClients;
private int _currentCineastClient;
private CineastClient CurrentClient => _cineastClients[_currentCineastClient];
private void Awake()
{
if (Instance != null)
{
throw new Exception("Multiple QueryControllers registered!");
}
if (ConfigManager.Config.cineastConfigs.Count == 0)
{
throw new Exception("No Cineast config path configured!");
}
_cineastClients = ConfigManager.Config.cineastConfigs
.Select(configPath =>
{
// Check if file exists
#if UNITY_EDITOR
var folder = Application.dataPath;
#else
var folder = Application.persistentDataPath;
#endif
var filePath = Path.Combine(folder, configPath);
if (!File.Exists(filePath))
{
NotificationController.NotifyError($"Could not read Cineast config at {filePath}!");
}
return new CineastClient(CineastConfigManager.LoadConfigOrDefault(configPath));
}).ToList();
Instance = this;
}
public void RunQuery()
{
RunQuery(defaultQueryTermManager);
}
public void RunQuery(QueryTermManager queryTermManager)
{
var queryTerms = queryTermManager.GetTerms();
switch (queryTerms.Count)
{
case 0:
NotificationController.Notify("Cannot run query: No terms specified.");
return;
// No temporal context specified
case 1:
{
var stages = queryTerms.First();
// No stages specified
if (stages.Count == 1)
{
RunQuery(stages.First());
return;
}
// With stages
RunQuery(stages);
return;
}
// With temporal context (more than 1 temporal container)
default:
RunQuery(queryTerms);
break;
}
}
public async void RunQuery(List<QueryTerm> queryTerms)
{
var localGuid = Guid.NewGuid();
_localQueryGuid = localGuid;
if (queryTerms.Count == 0)
{
NotificationController.Notify("Cannot run query: No terms specified.");
return;
}
var config = ConfigManager.Config;
var maxResults = config.maxResults;
var query = QueryBuilder.BuildSimilarityQuery(queryTerms.ToArray());
// TODO: Move to QueryBuilder
query.Config = new QueryConfig(resultsPerModule: maxResults);
if (!timer.activeSelf)
{
timer.SetActive(true);
}
var queryClient = CurrentClient;
Debug.Log(query.ToJson());
Debug.Log(queryClient.SegmentsApi.Configuration.ApiClient.RestClient.BaseUrl);
var queryData = await queryClient.ExecuteQuery(query, maxResults);
if (_localQueryGuid != localGuid)
{
// A new query has been started while this one was still busy, discard results
return;
}
InstantiateQueryDisplay(queryData, queryClient);
// Query display already created and initialized, but if this is no longer the newest query, do not disable query
// indicator
if (_localQueryGuid != localGuid) return;
timer.transform.localRotation = Quaternion.identity;
timer.SetActive(false);
}
public async void RunQuery(List<List<QueryTerm>> stages)
{
var localGuid = Guid.NewGuid();
_localQueryGuid = localGuid;
var config = ConfigManager.Config;
var maxResults = config.maxResults;
var query = QueryBuilder.BuildStagedQuery(stages);
// TODO: Move to QueryBuilder
query.Config = new QueryConfig(resultsPerModule: maxResults);
if (!timer.activeSelf)
{
timer.SetActive(true);
}
var queryClient = CurrentClient;
var queryData = await queryClient.ExecuteQuery(query, maxResults);
if (_localQueryGuid != localGuid)
{
// A new query has been started while this one was still busy, discard results
return;
}
InstantiateQueryDisplay(queryData, queryClient);
// Query display already created and initialized, but if this is no longer the newest query, do not disable query
// indicator
if (_localQueryGuid != localGuid) return;
timer.transform.localRotation = Quaternion.identity;
timer.SetActive(false);
}
public async void RunQuery(List<List<List<QueryTerm>>> temporalTerms)
{
var localGuid = Guid.NewGuid();
_localQueryGuid = localGuid;
var config = ConfigManager.Config;
var maxResults = config.maxResults;
var query = QueryBuilder.BuildTemporalQuery(temporalTerms);
// TODO: Move to QueryBuilder
query.Config = new TemporalQueryConfig(maxResults: maxResults);
if (!timer.activeSelf)
{
timer.SetActive(true);
}
var queryData = await CurrentClient.ExecuteQuery(query, maxResults);
if (_localQueryGuid != localGuid)
{
// A new query has been started while this one was still busy, discard results
return;
}
InstantiateQueryDisplay(queryData);
// Query display already created and initialized, but if this is no longer the newest query, do not disable query
// indicator
if (_localQueryGuid != localGuid) return;
timer.transform.localRotation = Quaternion.identity;
timer.SetActive(false);
}
public void SelectQuery(QueryDisplay display)
{
var index = queries.IndexOf(display);
SelectQuery(index);
}
public void SelectQuery(int index)
{
if (0 > index || index >= queries.Count)
{
throw new ArgumentException($"Query selection index out of range: {index} (queries: {queries.Count})");
}
if (CurrentQuery != -1)
{
SetQueryActive(CurrentQuery, false);
}
SetQueryActive(index, true);
queryFocusEvent.Invoke(CurrentQuery, index);
CurrentQuery = index;
LoggingController.LogInteraction("queryManagement", $"select {index}", QueryManagement);
}
public void SelectCineastClient(int index)
{
if (index < 0 || index >= _cineastClients.Count)
{
throw new ArgumentException(
$"Cineast client selection index out of range: {index} (available clients: {_cineastClients.Count})");
}
_currentCineastClient = index;
}
/// <summary>
/// Removes the specified query display from the query list and destroys the associated QueryDisplay (notifies event
/// subscribers before removal and destruction).
/// </summary>
public void RemoveQuery(QueryDisplay display)
{
var index = queries.IndexOf(display);
RemoveQuery(index);
}
/// <summary>
/// Removes the query at the specified index of the query list and destroys the associated QueryDisplay (notifies
/// event subscribers before removal and destruction).
/// </summary>
public void RemoveQuery(int index)
{
if (0 > index || index >= queries.Count)
{
throw new ArgumentException($"Query selection index out of range: {index} (queries: {queries.Count})");
}
if (index == CurrentQuery)
{
ClearQuery();
}
if (index < CurrentQuery)
{
CurrentQuery--;
}
queryRemovedEvent.Invoke(index);
// Destroy associated point cloud display
if (_pointCloudDisplays.ContainsKey(queries[index]))
Destroy(_pointCloudDisplays[queries[index]].gameObject);
// Destroy query display
Destroy(queries[index].gameObject);
queries.RemoveAt(index);
LoggingController.LogInteraction("queryManagement", $"delete {index}", QueryManagement);
}
public void RemoveAllQueries()
{
for (var queryIndex = queries.Count - 1; queryIndex >= 0; queryIndex--)
{
RemoveQuery(queryIndex);
}
}
public void ClearQuery()
{
if (CurrentQuery == -1) return;
SetQueryActive(CurrentQuery, false);
queryFocusEvent.Invoke(CurrentQuery, -1);
CurrentQuery = -1;
LoggingController.LogInteraction("queryManagement", "clear", QueryManagement);
}
/// <summary>
/// Creates a new query display from the current active query results.
/// </summary>
public void NewDisplayFromActive()
{
if (CurrentQuery == -1)
{
NotificationController.Notify("No query selected!");
return;
}
var display = queries[CurrentQuery];
if (display.GetType() == queryDisplay.GetType())
{
NotificationController.Notify($"Current query display already of type {display.GetType().Name}!");
return;
}
InstantiateQueryDisplay(display.QueryData, display.QueryClient);
}
private void SetQueryActive(int index, bool active)
{
queries[index].gameObject.SetActive(active);
if (_pointCloudDisplays.TryGetValue(queries[index], out var pointCloud))
pointCloud.gameObject.SetActive(active);
}
private async void InstantiateQueryDisplay(QueryResponse queryData, CineastClient queryClient)
{
if (CurrentQuery != -1)
{
ClearQuery();
}
var display = Instantiate(queryDisplay);
display.Initialize(queryData, queryClient);
queries.Add(display);
var queryIndex = queries.Count - 1;
queryAddedEvent.Invoke(queryIndex);
queryFocusEvent.Invoke(CurrentQuery, queryIndex);
CurrentQuery = queryIndex;
if (!ConfigManager.Config.createPointCloud)
return;
// Create point cloud
var meanFusionResults = ScoreFusionUtil.FuseScores(queryData);
await CreatePointCloudDisplay(queryClient, meanFusionResults, display);
}
private void InstantiateQueryDisplay(TemporalQueryResponse queryData)
{
if (CurrentQuery != -1)
{
ClearQuery();
}
var display = Instantiate(temporalQueryDisplay);
display.Initialize(queryData);
queries.Add(display);
var queryIndex = queries.Count - 1;
queryAddedEvent.Invoke(queryIndex);
queryFocusEvent.Invoke(CurrentQuery, queryIndex);
CurrentQuery = queryIndex;
}
private async Task CreatePointCloudDisplay(CineastClient queryClient, IEnumerable<ScoredSegment> results,
QueryDisplay display)
{
var pointLimit = ConfigManager.Config.pointCloudPointLimit;
var orderedSegments = results.OrderByDescending(segment => segment.score).Take(pointLimit).ToList();
var reduceFeatures =
await queryClient.DimensionalityReduceFeature(orderedSegments.Select(ss => ss.segment.Id).ToList(),
ConfigManager.Config.pointCloudFeature);
var scoreDict = orderedSegments.ToDictionary(ss => ss.segment, ss => (float) ss.score);
var pointCloud = Instantiate(pointCloudDisplay, Vector3.up * 0.5f, Quaternion.identity);
_pointCloudDisplays[display] = pointCloud;
pointCloud.Initialize(reduceFeatures.Select(res => (res.segment, res.position, scoreDict[res.segment])).ToList());
}
public SegmentData GetSegment(string segmentId)
{
return CurrentClient.MultimediaRegistry.GetSegment(segmentId);
}
public CineastConfig GetCineastConfig()
{
return CurrentClient.CineastConfig;
}
public async Task<List<string>> GetDistinctTableValues(string table, string column)
{
return await CurrentClient.GetDistinctTableValues(table, column);
}
public async Task<List<List<string>>> GetDistinctTableValues(string table, List<string> columns)
{
return await CurrentClient.GetDistinctTableValues(table, columns);
}
public async Task<List<Tag>> GetMatchingTags(string tagName)
{
return await CurrentClient.GetMatchingTags(tagName);
}
}
}