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
|
{* UltraStar Deluxe - Karaoke Game
*
* UltraStar Deluxe is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
* $URL$
* $Id$
*}
unit UCovers;
{
TODO:
- adjust database to new song-loading (e.g. use SongIDs)
- support for deletion of outdated covers
- support for update of changed covers
- use paths relative to the song for removable disks support
(a drive might have a different drive-name the next time it is connected,
so "H:/songs/..." will not match "I:/songs/...")
}
interface
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
{$I switches.inc}
uses
SDL,
SQLite3,
SQLiteTable3,
SysUtils,
Classes,
UImage,
UTexture;
type
ECoverDBException = class(Exception)
end;
TCover = class
private
ID: int64;
Filename: WideString;
public
constructor Create(ID: int64; Filename: WideString);
function GetPreviewTexture(): TTexture;
function GetTexture(): TTexture;
end;
TThumbnailInfo = record
CoverWidth: integer; // Original width of cover
CoverHeight: integer; // Original height of cover
PixelFormat: TImagePixelFmt; // Pixel-format of thumbnail
end;
TCoverDatabase = class
private
DB: TSQLiteDatabase;
procedure InitCoverDatabase();
function CreateThumbnail(const Filename: WideString; var Info: TThumbnailInfo): PSDL_Surface;
function LoadCover(CoverID: int64): TTexture;
procedure DeleteCover(CoverID: int64);
function FindCoverIntern(const Filename: WideString): int64;
procedure Open();
function GetVersion(): integer;
procedure SetVersion(Version: integer);
public
constructor Create();
destructor Destroy; override;
function AddCover(const Filename: WideString): TCover;
function FindCover(const Filename: WideString): TCover;
function CoverExists(const Filename: WideString): boolean;
function GetMaxCoverSize(): integer;
procedure SetMaxCoverSize(Size: integer);
end;
TBlobWrapper = class(TCustomMemoryStream)
function Write(const Buffer; Count: Integer): Integer; override;
end;
var
Covers: TCoverDatabase;
implementation
uses
UMain,
ULog,
UPlatform,
UIni,
Math,
DateUtils;
const
COVERDB_FILENAME = 'cover.db';
COVERDB_VERSION = 01; // 0.1
COVER_TBL = 'Cover';
COVER_THUMBNAIL_TBL = 'CoverThumbnail';
COVER_IDX = 'Cover_Filename_IDX';
// Note: DateUtils.DateTimeToUnix() will throw an exception in FPC
function DateTimeToUnixTime(time: TDateTime): int64;
begin
Result := Round((time - UnixDateDelta) * SecsPerDay);
end;
// Note: DateUtils.UnixToDateTime() will throw an exception in FPC
function UnixTimeToDateTime(timestamp: int64): TDateTime;
begin
Result := timestamp / SecsPerDay + UnixDateDelta;
end;
{ TBlobWrapper }
function TBlobWrapper.Write(const Buffer; Count: Integer): Integer;
begin
SetPointer(Pointer(Buffer), Count);
Result := Count;
end;
{ TCover }
constructor TCover.Create(ID: int64; Filename: WideString);
begin
Self.ID := ID;
Self.Filename := Filename;
end;
function TCover.GetPreviewTexture(): TTexture;
begin
Result := Covers.LoadCover(ID);
end;
function TCover.GetTexture(): TTexture;
begin
Result := Texture.LoadTexture(Filename);
end;
{ TCoverDatabase }
constructor TCoverDatabase.Create();
begin
inherited;
Open();
InitCoverDatabase();
end;
destructor TCoverDatabase.Destroy;
begin
DB.Free;
inherited;
end;
function TCoverDatabase.GetVersion(): integer;
begin
Result := DB.GetTableValue('PRAGMA user_version');
end;
procedure TCoverDatabase.SetVersion(Version: integer);
begin
DB.ExecSQL(Format('PRAGMA user_version = %d', [Version]));
end;
function TCoverDatabase.GetMaxCoverSize(): integer;
begin
Result := ITextureSizeVals[Ini.TextureSize];
end;
procedure TCoverDatabase.SetMaxCoverSize(Size: integer);
var
I: integer;
begin
// search for first valid cover-size > Size
for I := 0 to Length(ITextureSizeVals)-1 do
begin
if (Size <= ITextureSizeVals[I]) then
begin
Ini.TextureSize := I;
Exit;
end;
end;
// fall-back to highest size
Ini.TextureSize := High(ITextureSizeVals);
end;
procedure TCoverDatabase.Open();
var
Version: integer;
Filename: string;
begin
Filename := UTF8Encode(Platform.GetGameUserPath() + COVERDB_FILENAME);
DB := TSQLiteDatabase.Create(Filename);
Version := GetVersion();
// check version, if version is too old/new, delete database file
if ((Version <> 0) and (Version <> COVERDB_VERSION)) then
begin
Log.LogInfo('Outdated cover-database file found', 'TCoverDatabase.Open');
// close and delete outdated file
DB.Free;
if (not DeleteFile(Filename)) then
raise ECoverDBException.Create('Could not delete ' + Filename);
// reopen
DB := TSQLiteDatabase.Create(Filename);
Version := 0;
end;
// set version number after creation
if (Version = 0) then
SetVersion(COVERDB_VERSION);
// speed-up disk-writing. The default FULL-synchronous mode is too slow.
// With this option disk-writing is approx. 4 times faster but the database
// might be corrupted if the OS crashes, although this is very unlikely.
DB.ExecSQL('PRAGMA synchronous = OFF;');
// the next line rather gives a slow-down instead of a speed-up, so we do not use it
//DB.ExecSQL('PRAGMA temp_store = MEMORY;');
end;
procedure TCoverDatabase.InitCoverDatabase();
begin
DB.ExecSQL('CREATE TABLE IF NOT EXISTS ['+COVER_TBL+'] (' +
'[ID] INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, ' +
'[Filename] TEXT UNIQUE NOT NULL, ' +
'[Date] INTEGER NOT NULL, ' +
'[Width] INTEGER NOT NULL, ' +
'[Height] INTEGER NOT NULL ' +
')');
DB.ExecSQL('CREATE INDEX IF NOT EXISTS ['+COVER_IDX+'] ON ['+COVER_TBL+'](' +
'[Filename] ASC' +
')');
DB.ExecSQL('CREATE TABLE IF NOT EXISTS ['+COVER_THUMBNAIL_TBL+'] (' +
'[ID] INTEGER NOT NULL PRIMARY KEY, ' +
'[Format] INTEGER NOT NULL, ' +
'[Width] INTEGER NOT NULL, ' +
'[Height] INTEGER NOT NULL, ' +
'[Data] BLOB NULL' +
')');
end;
function TCoverDatabase.FindCoverIntern(const Filename: WideString): int64;
begin
Result := DB.GetTableValue('SELECT [ID] FROM ['+COVER_TBL+'] ' +
'WHERE [Filename] = ?',
[UTF8Encode(Filename)]);
end;
function TCoverDatabase.FindCover(const Filename: WideString): TCover;
var
CoverID: int64;
begin
Result := nil;
try
CoverID := FindCoverIntern(Filename);
if (CoverID > 0) then
Result := TCover.Create(CoverID, Filename);
except on E: Exception do
Log.LogError(E.Message, 'TCoverDatabase.FindCover');
end;
end;
function TCoverDatabase.CoverExists(const Filename: WideString): boolean;
begin
Result := false;
try
Result := (FindCoverIntern(Filename) > 0);
except on E: Exception do
Log.LogError(E.Message, 'TCoverDatabase.CoverExists');
end;
end;
function TCoverDatabase.AddCover(const Filename: WideString): TCover;
var
CoverID: int64;
Thumbnail: PSDL_Surface;
CoverData: TBlobWrapper;
FileDate: TDateTime;
Info: TThumbnailInfo;
begin
Result := nil;
//if (not FileExists(Filename)) then
// Exit;
// TODO: replace '\' with '/' in filename
FileDate := Now(); //FileDateToDateTime(FileAge(Filename));
Thumbnail := CreateThumbnail(Filename, Info);
if (Thumbnail = nil) then
Exit;
CoverData := TBlobWrapper.Create;
CoverData.Write(Thumbnail^.pixels, Thumbnail^.h * Thumbnail^.pitch);
try
// Note: use a transaction to speed-up file-writing.
// Without data written by the first INSERT might be moved at the second INSERT.
DB.BeginTransaction();
// add general cover info
DB.ExecSQL('INSERT INTO ['+COVER_TBL+'] ' +
'([Filename], [Date], [Width], [Height]) VALUES' +
'(?, ?, ?, ?)',
[UTF8Encode(Filename), DateTimeToUnixTime(FileDate),
Info.CoverWidth, Info.CoverHeight]);
// get auto-generated cover ID
CoverID := DB.GetLastInsertRowID();
// add thumbnail info
DB.ExecSQL('INSERT INTO ['+COVER_THUMBNAIL_TBL+'] ' +
'([ID], [Format], [Width], [Height], [Data]) VALUES' +
'(?, ?, ?, ?, ?)',
[CoverID, Ord(Info.PixelFormat),
Thumbnail^.w, Thumbnail^.h, CoverData]);
Result := TCover.Create(CoverID, Filename);
except on E: Exception do
Log.LogError(E.Message, 'TCoverDatabase.AddCover');
end;
DB.Commit();
CoverData.Free;
SDL_FreeSurface(Thumbnail);
end;
function TCoverDatabase.LoadCover(CoverID: int64): TTexture;
var
Width, Height: integer;
PixelFmt: TImagePixelFmt;
Data: PChar;
DataSize: integer;
Filename: WideString;
Table: TSQLiteUniTable;
begin
Table := nil;
try
Table := DB.GetUniTable(Format(
'SELECT C.[Filename], T.[Format], T.[Width], T.[Height], T.[Data] ' +
'FROM ['+COVER_TBL+'] C ' +
'INNER JOIN ['+COVER_THUMBNAIL_TBL+'] T ' +
'USING(ID) ' +
'WHERE [ID] = %d', [CoverID]));
Filename := UTF8Decode(Table.FieldAsString(0));
PixelFmt := TImagePixelFmt(Table.FieldAsInteger(1));
Width := Table.FieldAsInteger(2);
Height := Table.FieldAsInteger(3);
Data := Table.FieldAsBlobPtr(4, DataSize);
if (Data <> nil) and
(PixelFmt = ipfRGB) then
begin
Result := Texture.CreateTexture(Data, Filename, Width, Height, 24)
end
else
begin
FillChar(Result, SizeOf(TTexture), 0);
end;
except on E: Exception do
Log.LogError(E.Message, 'TCoverDatabase.LoadCover');
end;
Table.Free;
end;
procedure TCoverDatabase.DeleteCover(CoverID: int64);
begin
DB.ExecSQL(Format('DELETE FROM ['+COVER_TBL+'] WHERE [ID] = %d', [CoverID]));
DB.ExecSQL(Format('DELETE FROM ['+COVER_THUMBNAIL_TBL+'] WHERE [ID] = %d', [CoverID]));
end;
(**
* Returns a pointer to an array of bytes containing the texture data in the
* requested size
*)
function TCoverDatabase.CreateThumbnail(const Filename: WideString; var Info: TThumbnailInfo): PSDL_Surface;
var
//TargetAspect, SourceAspect: double;
//TargetWidth, TargetHeight: integer;
Thumbnail: PSDL_Surface;
MaxSize: integer;
begin
Result := nil;
MaxSize := GetMaxCoverSize();
Thumbnail := LoadImage(Filename);
if (not assigned(Thumbnail)) then
begin
Log.LogError('Could not load cover: "'+ Filename +'"', 'TCoverDatabase.AddCover');
Exit;
end;
// Convert pixel format as needed
AdjustPixelFormat(Thumbnail, TEXTURE_TYPE_PLAIN);
Info.CoverWidth := Thumbnail^.w;
Info.CoverHeight := Thumbnail^.h;
Info.PixelFormat := ipfRGB;
(* TODO: keep aspect ratio
TargetAspect := Width / Height;
SourceAspect := TexSurface.w / TexSurface.h;
// Scale texture to covers dimensions (keep aspect)
if (SourceAspect >= TargetAspect) then
begin
TargetWidth := Width;
TargetHeight := Trunc(Width / SourceAspect);
end
else
begin
TargetHeight := Height;
TargetWidth := Trunc(Height * SourceAspect);
end;
*)
// TODO: do not scale if image is smaller
ScaleImage(Thumbnail, MaxSize, MaxSize);
Result := Thumbnail;
end;
end.
|