-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfQuery_.pas
489 lines (376 loc) · 12.9 KB
/
fQuery_.pas
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
unit fQuery_;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.Menus, Vcl.StdCtrls, Vcl.ExtCtrls,
System.Generics.Collections, System.StrUtils, System.JSON, System.JSON.Writers;
type
TfQuery = class(TForm)
btnLoadQuery: TButton;
btnSaveQuery: TButton;
pnlBands: TPanel;
edBands: TMemo;
Label1: TLabel;
cbBandFav: TCheckBox;
pnlAlbums: TPanel;
edAlbums: TMemo;
Label2: TLabel;
edYear: TEdit;
lblYear: TLabel;
cbAlbumFav: TCheckBox;
pnlSongs: TPanel;
edSongs: TMemo;
Label5: TLabel;
edTrackNum: TEdit;
lblTrackNum: TLabel;
cbSongFav: TCheckBox;
btnQuery: TButton;
Label6: TLabel;
edBandTags: TMemo;
Label3: TLabel;
edAlbumTags: TMemo;
Label4: TLabel;
edSongTags: TMemo;
Label7: TLabel;
rgBandMatch: TRadioGroup;
rgAlbumMatch: TRadioGroup;
rgSongMatch: TRadioGroup;
btnClear: TButton;
cbNAalbums: TCheckBox;
procedure FormCreate(Sender: TObject);
procedure btnQueryClick(Sender: TObject);
procedure btnClearClick(Sender: TObject);
procedure btnSaveQueryClick(Sender: TObject);
procedure btnLoadQueryClick(Sender: TObject);
private
{ Private declarations }
function SearchText(ed: TMemo; const Search: String): Boolean; overload;
function SearchText(ed: TMemo; Search: TStringList; matchAll: Boolean): Boolean; overload;
public
{ Public declarations }
end;
var
fQuery: TfQuery;
implementation
uses
fMain_, DataStructs, DataModule;
{$R *.dfm}
function TfQuery.SearchText(ed: TMemo; const Search: string): Boolean;
begin
Result := PosEx(Search, ed.Text, 1) > 0;
end;
function TfQuery.SearchText(ed: TMemo; Search: TStringList; matchAll: Boolean): Boolean;
var
at: String;
begin
if not matchAll then
begin
Result := PosEx(Search.Text, ed.Text, 1) > 0;
Exit;
end
else
begin
//if we need to match all, easier to just loop
for at in Search do
begin
if not SearchText(ed, at) then
begin
Result := false;
Exit;
end;
end;
end;
Result := true;
end;
procedure TfQuery.FormCreate(Sender: TObject);
begin
Top := fMain.Top + Trunc(fMain.Height / 2) - Trunc(Height / 2);
Left := fMain.Left + Trunc(fMain.Width / 2) - Trunc(Width / 2);
end;
procedure TfQuery.btnClearClick(Sender: TObject);
begin
edBands.Clear;
cbBandFav.Checked := false;
edBandTags.Clear;
edAlbums.Clear;
cbAlbumFav.Checked := false;
edAlbumTags.Clear;
edYear.Clear;
cbNAalbums.Checked := true;
edSongs.Clear;
cbSongFav.Checked := false;
edSongTags.Clear;
edTrackNum.Clear;
end;
procedure TfQuery.btnQueryClick(Sender: TObject);
var
queriedSet: TDictionary<String, TBand>;
toRemove, toRemove2, toRemove3: TStringList;
bandAt, newBand: TBand;
albumAt, newAlbum: TAlbum;
songAt, newSong: TSong;
at: String;
begin
//the plan is basically to do eliminative searching. it may end up taking the
//longest, but it's the easiest way to write this. start with ALL records.
//whittle it down to just the favorite bands, then just the bands with a
//certain name, then just the bands that contain certain tags.
//
//for the bands that are still remaining, go through the albums. again filter
//out the non-favorites (if applicable), the ones whose names aren't listed,
//whose year doesn't match, and who don't have the right tags. we should start
//with the most specific (either year or favorite) and work our way out. tags
//is most specific, so definitely do that one last. it will be time consuming
//to compare however many tags were entered with every object's list of tags.
//
//finally, songs will repeat the same process one last time until we have our
//final queried set. the one interesting aspect of this querying system is
//that queries that return more records could very well be faster if there
//are less conditions to check in terms of whittling down
Screen.Cursor := crHourglass;
queriedSet := TDictionary<String, TBand>.Create;
//start by getting everything into our queried set. essentially copying the
//dm.bands dictionary. all the subdictionaries are contained within.
for bandAt in dm.bands.Values do
begin
newBand := TBand.Create(bandAt.name, bandAt.isFavorite, bandAt.color);
for albumAt in bandAt.albums.Values do
begin
newAlbum := TAlbum.Create(albumAt.name, newBand.name, albumAt.year, albumAt.isFavorite, albumAt.color);
for songAt in albumAt.songs.Values do
begin
newSong := TSong.Create(songAt.name, newAlbum.name, newBand.name, songAt.trackNo, songAt.isFavorite, songAt.color);
newAlbum.songs.Add(newSong.name, newSong);
end;
newBand.albums.Add(newAlbum.name, newAlbum);
end;
queriedSet.Add(newBand.name, newBand);
end;
toRemove := TStringList.Create;
//okay, queriedSet now has EVERYTHING. let's start by eliminating bands that
//are not favorites, if applicable
for bandAt in queriedSet.Values do
begin
//eliminate bands that are not favorites, if applicable
if cbBandFav.Checked and not bandAt.isFavorite then
toRemove.Add(bandAt.name);
//if edBands is not empty, make sure the band name exists in it
if (edBands.Text <> '') and not SearchText(edBands, bandAt.name) then
toRemove.Add(bandAt.name);
//if edBandTags is not empty, then compare tags based on the value of rgBandMatch
if (edBandTags.Text <> '') and not SearchText(edBandTags, bandAt.tags, rgBandMatch.ItemIndex = 0) then
toRemove.Add(bandAt.name);
end;
for at in toRemove do
queriedSet.Remove(at);
toRemove.Clear;
toRemove2 := TStringList.Create;
for bandAt in queriedSet.Values do
begin
for albumAt in bandAt.albums.Values do
begin
//eliminate N/A album unless we're counting it
if (not cbNAalbums.Checked) and (albumAt.name = 'N/A') then
toRemove.Add('N/A');
//eliminate albums that are not favorites, if applicable
if cbAlbumFav.Checked and not albumAt.isFavorite then
toRemove.Add(albumAt.name);
//eliminate albums without matching year, if applicable
if (edYear.Text <> '') and (albumAt.year <> StrToInt(edYear.Text)) then
toRemove.Add(albumAt.name);
if (edAlbums.Text <> '') and not SearchText(edAlbums, albumAt.name) then
toRemove.Add(albumAt.name);
if (edAlbumTags.Text <> '') and not SearchText(edAlbumTags, albumAt.tags, rgAlbumMatch.ItemIndex = 0) then
toRemove.Add(albumAt.name);
end;
//eliminate everything in toRemove from this band's albums
for at in toRemove do
bandAt.albums.Remove(at);
//bands that no longer have any albums should be eliminated
if bandAt.albums.Count = 0 then
toRemove2.Add(bandAt.name);
toRemove.Clear;
end;
for at in toRemove2 do
queriedSet.Remove(at);
toRemove2.Clear;
toRemove3 := TStringList.Create;
//repeat the process one more time
for bandAt in queriedSet.values do
begin
for albumAt in bandAt.albums.Values do
begin
for songAt in albumAt.songs.Values do
begin
if cbSongFav.Checked and not songAt.isFavorite then
toRemove.Add(songAt.name);
if (edTrackNum.Text <> '') and (songAt.trackNo <> StrToInt(edTrackNum.Text)) then
toRemove.Add(songAt.name);
if (edSongs.Text <> '') and not SearchText(edSongs, songAt.name) then
toRemove.Add(songAt.name);
if (edSongTags.Text <> '') and not SearchText(edSongTags, songAt.tags, rgSongMatch.ItemIndex = 0) then
toRemove.Add(songAt.name);
end;
for at in toRemove do
albumAt.songs.Remove(at);
//albums that no longer have any songs should be removed
if albumAt.songs.Count = 0 then
toRemove3.Add(albumAt.name);
toRemove.Clear;
end;
for at in toRemove3 do
bandAt.albums.Remove(at);
toRemove3.clear;
//and now bands that have no albums should also be removed again
if bandAt.albums.Count = 0 then
toRemove2.Add(bandAt.name);
end;
for at in toRemove2 do
queriedSet.Remove(at);
//free the various TStringLists
toRemove.Free;
toRemove2.Free;
toRemove3.Free;
Screen.Cursor := crDefault;
fMain.RefreshGrid(queriedSet);
end;
procedure TfQuery.btnSaveQueryClick(Sender: TObject);
var
writer: TJSONObjectWriter;
at: String;
toSave: TStringList;
begin
writer := TJSONObjectWriter.Create;
writer.writeStartObject;
//write band properties, starting with the list of bands
writer.WritePropertyName('bands');
writer.WriteStartArray;
for at in edBands.Lines do
writer.WriteValue(at);
writer.WriteEndArray;
//other band properties
writer.WritePropertyName('bandFav');
writer.WriteValue(cbBandFav.Checked);
writer.WritePropertyName('matchBandTag');
writer.WriteValue(rgBandMatch.ItemIndex);
//finally, band tags
writer.WritePropertyName('bandTags');
writer.WriteStartArray;
for at in edBandTags.Lines do
writer.WriteValue(at);
writer.WriteEndArray;
//basically repeat the above process for album and song
writer.WritePropertyName('albums');
writer.WriteStartArray;
for at in edAlbums.Lines do
writer.WriteValue(at);
writer.WriteEndArray;
writer.WritePropertyName('albumFav');
writer.WriteValue(cbAlbumFav.Checked);
writer.WritePropertyName('albumYear');
writer.WriteValue(edYear.Text);
writer.WritePropertyName('matchAlbumTag');
writer.WriteValue(rgAlbumMatch.ItemIndex);
writer.WritePropertyName('albumTags');
writer.WriteStartArray;
for at in edAlbumTags.Lines do
writer.WriteValue(at);
writer.WriteEndArray;
//and now songs
writer.WritePropertyName('songs');
writer.WriteStartArray;
for at in edSongs.Lines do
writer.WriteValue(at);
writer.WriteEndArray;
writer.WritePropertyName('songFav');
writer.WriteValue(cbSongFav.checked);
writer.WritePropertyName('songTrackNo');
writer.Writevalue(edTrackNum.Text);
writer.WritePropertyName('matchSongTag');
writer.WriteValue(rgSongMatch.Itemindex);
writer.WritePropertyName('songTags');
writer.WriteStartArray;
for at in edSongTags.Lines do
writer.WriteValue(at);
//all done!
writer.WriteEndArray;
writer.WriteEndObject;
//put the text in a TStringList, which can be easily saved to a file
toSave := TStringList.Create;
toSave.Add(writer.JSON.toString);
//have user select a file to save
with fMain.saveDialog do
begin
if Execute then
toSave.SaveToFile(FileName);
FileName := '';
end;
toSave.Free;
writer.Free;
end;
procedure TfQuery.btnLoadQueryClick(Sender: TObject);
var
val: TJSONValue;
currList: TJSONArray;
at: TJSONValue;
fileName: String;
loadList: TStringList;
loadText: String;
begin
if fMain.OpenDialog.Execute then
fileName := fMain.OpenDialog.FileName
else
Exit;
fMain.OpenDialog.FileName := '';
loadList := TStringList.Create;
loadList.LoadFromFile(fileName);
loadText := loadList.Text;
//clear out the ui
edBands.Clear;
edBandTags.Clear;
edAlbums.Clear;
edAlbumTags.Clear;
edYear.Clear;
edSongs.Clear;
edSongTags.Clear;
edTrackNum.Clear;
try
//put the top-level JSON object into val
val := TJSONObject.ParseJSONValue(loadText);
currList := (val as TJSONObject).Get('bands').JSONValue as TJSONArray;
for at in currList do
edBands.Lines.Add(at.GetValue<String>);
cbBandFav.Checked := (val as TJSONObject).GetValue<Boolean>('bandFav');
rgBandMatch.ItemIndex := (val as TJSONObject).GetValue<Integer>('matchBandTag');
currList := (val as TJSONObject).Get('bandTags').JSONValue as TJSONArray;
for at in currList do
edBandTags.Lines.Add(at.GetValue<String>);
currList := (val as TJSONObject).Get('albums').JSONValue as TJSONArray;
for at in currList do
edAlbums.Lines.Add(at.GetValue<String>);
cbAlbumFav.Checked := (val as TJSONObject).GetValue<Boolean>('albumFav');
rgAlbumMatch.ItemIndex := (val as TJSONObject).GetValue<Integer>('matchAlbumTag');
edYear.Text := (val as TJSONObject).GetValue<String>('albumYear');
currList := (val as TJSONObject).Get('albumTags').JSONValue as TJSONArray;
for at in currList do
edAlbumTags.Lines.Add(at.GetValue<String>);
currList := (val as TJSONObject).Get('songs').JSONValue as TJSONArray;
for at in currList do
edSongs.Lines.Add(at.GetValue<String>);
cbSongFav.Checked := (val as TJSONObject).GetValue<Boolean>('songFav');
rgSongMatch.ItemIndex := (val as TJSONObject).GetValue<Integer>('matchSongTag');
edTrackNum.Text := (val as TJSONObject).GetValue<String>('songTrackNo');
currList := (val as TJSONObject).Get('songTags').JSONValue as TJSONArray;
for at in currList do
edSongTags.Lines.Add(at.GetValue<String>);
// at.Free;
// currList.Free;
// val.Free;
except
on E: Exception do
begin
showMessage('Error when processing file:' + #13#10 + E.ToString);
end;
end;
end;
end.