[93] | 1 | unit Access_OUP_ADB;
|
---|
| 2 | interface
|
---|
| 3 |
|
---|
[101] | 4 | uses DataAccess, ABSMain, TypeDefs, Classes;
|
---|
[93] | 5 |
|
---|
| 6 | type
|
---|
| 7 | TAccess_OUP_ADB = class(TDataAccess)
|
---|
| 8 | private
|
---|
[101] | 9 | FDatabase: TABSDatabase;
|
---|
| 10 | FQuery: TABSQuery;
|
---|
| 11 | Fdat_files: TFiles;
|
---|
[93] | 12 | Fdat_extensionsmap: TExtensionsMap;
|
---|
| 13 | protected
|
---|
| 14 | public
|
---|
[101] | 15 | constructor Create(DBFilename: String; ConnectionID: Integer; var Msg: TStatusMessages); override;
|
---|
[93] | 16 | procedure Close; override;
|
---|
| 17 |
|
---|
| 18 | procedure UpdateListCache;
|
---|
| 19 |
|
---|
[106] | 20 | function GetLinksToFile(FileID: Integer): TLinks;
|
---|
| 21 | function GetLinksFromFile(FileID: Integer): TLinks;
|
---|
| 22 |
|
---|
[101] | 23 | function GetFileInfo(FileID: Integer): TFileInfo; override;
|
---|
| 24 | function GetFilesList(Ext: String; Pattern: String;
|
---|
| 25 | NoEmptyFiles: Boolean; SortType: TSortType): TStrings; override;
|
---|
| 26 | function GetFileCount: Integer; override;
|
---|
| 27 | function GetExtensionsList(ExtListFormat: TExtensionFormat): TStrings; override;
|
---|
[93] | 28 |
|
---|
[101] | 29 | procedure LoadDatFile(FileID: Integer; var Target: TStream); overload; override;
|
---|
| 30 | procedure UpdateDatFile(FileID: Integer; Src: TStream); overload; override;
|
---|
| 31 | procedure LoadDatFilePart(FileID, Offset, Size: Integer; var Target: TStream); overload; override;
|
---|
| 32 | procedure UpdateDatFilePart(FileID, Offset, Size: Integer; Src: TStream); overload; override;
|
---|
| 33 |
|
---|
| 34 | function GetRawList(FileID: Integer): TRawDataList; override;
|
---|
| 35 | function GetRawInfo(FileID, DatOffset: Integer): TRawDataInfo; override;
|
---|
| 36 |
|
---|
| 37 | procedure LoadRawFile(FileID, DatOffset: Integer; var Target: TStream); overload; override;
|
---|
| 38 | procedure UpdateRawFile(FileID, DatOffset: Integer; Src: TStream); overload; override;
|
---|
| 39 | procedure LoadRawFilePart(FileID, DatOffset, Offset, Size: Integer; var Target: TStream); overload; override;
|
---|
| 40 | procedure UpdateRawFilePart(FileID, DatOffset, Offset, Size: Integer; Src: TStream); overload; override;
|
---|
[93] | 41 | published
|
---|
[101] | 42 | end;
|
---|
[93] | 43 |
|
---|
| 44 |
|
---|
| 45 | implementation
|
---|
| 46 |
|
---|
[101] | 47 | uses
|
---|
| 48 | SysUtils, Data, Functions, ABSDecUtil, DB;
|
---|
[93] | 49 |
|
---|
[101] | 50 |
|
---|
[93] | 51 | (*
|
---|
| 52 | ================================================================================
|
---|
| 53 | Implementation of TOniDataADB
|
---|
| 54 | *)
|
---|
| 55 |
|
---|
[101] | 56 |
|
---|
| 57 | constructor TAccess_OUP_ADB.Create(DBFilename: String; ConnectionID: Integer; var Msg: TStatusMessages);
|
---|
[93] | 58 | var
|
---|
[101] | 59 | i: Integer;
|
---|
[93] | 60 | begin
|
---|
[101] | 61 | Msg := SM_UnknownError;
|
---|
| 62 | if not FileExists(DBFilename) then
|
---|
[93] | 63 | begin
|
---|
[101] | 64 | Msg := SM_FileNotFound;
|
---|
[93] | 65 | Exit;
|
---|
| 66 | end;
|
---|
[101] | 67 | FFileName := DBFilename;
|
---|
| 68 |
|
---|
[93] | 69 | FDatabase := TABSDatabase.Create(nil);
|
---|
[101] | 70 | FDatabase.DatabaseName := 'OLDBcon' + IntToStr(ConnectionID);
|
---|
| 71 | FDatabase.DatabaseFileName := DBFilename;
|
---|
[93] | 72 | FDatabase.Open;
|
---|
| 73 | FQuery := TABSQuery.Create(FDatabase);
|
---|
[101] | 74 | FQuery.DatabaseName := 'OLDBcon' + IntToStr(ConnectionID);
|
---|
[93] | 75 | FQuery.SQL.Text := 'SELECT [name],[value] FROM globals ORDER BY [name] ASC';
|
---|
| 76 | FQuery.Open;
|
---|
| 77 | FQuery.First;
|
---|
| 78 | repeat
|
---|
| 79 | if FQuery.FieldByName('name').AsString = 'dbversion' then
|
---|
| 80 | begin
|
---|
| 81 | if FQuery.FieldByName('value').AsString <> DBversion then
|
---|
| 82 | begin
|
---|
[101] | 83 | Msg := SM_IncompatibleDBVersion;
|
---|
[93] | 84 | FQuery.Close;
|
---|
| 85 | Exit;
|
---|
| 86 | end;
|
---|
| 87 | end;
|
---|
| 88 | if FQuery.FieldByName('name').AsString = 'lvl' then
|
---|
[101] | 89 | FLevelNumber := StrToInt(FQuery.FieldByName('value').AsString);
|
---|
| 90 | if FQuery.FieldByName('name').AsString = 'DataOS' then
|
---|
[93] | 91 | begin
|
---|
[101] | 92 | if FQuery.FieldByName('value').AsString = 'WIN' then
|
---|
| 93 | FDataOS := DOS_WIN
|
---|
| 94 | else if FQuery.FieldByName('value').AsString = 'WINDEMO' then
|
---|
| 95 | FDataOS := DOS_WINDEMO
|
---|
| 96 | else if FQuery.FieldByName('value').AsString = 'MAC' then
|
---|
| 97 | FDataOS := DOS_MAC
|
---|
| 98 | else if FQuery.FieldByName('value').AsString = 'MACBETA' then
|
---|
| 99 | FDataOS := DOS_MACBETA;
|
---|
[93] | 100 | end;
|
---|
| 101 | FQuery.Next;
|
---|
| 102 | until FQuery.EOF;
|
---|
| 103 | FQuery.Close;
|
---|
| 104 |
|
---|
[101] | 105 | Msg := SM_OK;
|
---|
| 106 | FBackend := DB_ADB;
|
---|
| 107 |
|
---|
[105] | 108 | FConnectionID := ConnectionID;
|
---|
[101] | 109 | FChangeRights := [CR_EditDat, CR_EditRaw, CR_ResizeDat, CR_ResizeRaw];
|
---|
| 110 |
|
---|
[93] | 111 | UpdateListCache;
|
---|
| 112 | end;
|
---|
| 113 |
|
---|
| 114 |
|
---|
| 115 |
|
---|
| 116 |
|
---|
[101] | 117 | procedure TAccess_OUP_ADB.Close;
|
---|
[93] | 118 | begin
|
---|
[101] | 119 | FQuery.Free;
|
---|
[93] | 120 | FDatabase.Close;
|
---|
| 121 | FDatabase.Free;
|
---|
| 122 | Self.Free;
|
---|
| 123 | end;
|
---|
| 124 |
|
---|
| 125 |
|
---|
| 126 |
|
---|
[101] | 127 | procedure TAccess_OUP_ADB.UpdateListCache;
|
---|
[93] | 128 | var
|
---|
[101] | 129 | i: Integer;
|
---|
[93] | 130 | temps: String;
|
---|
| 131 | begin
|
---|
| 132 | FQuery.SQL.Text := 'SELECT id,name,extension,[size],contenttype FROM datfiles ORDER BY id ASC;';
|
---|
| 133 | FQuery.Open;
|
---|
[101] | 134 | SetLength(Fdat_files, FQuery.RecordCount);
|
---|
[93] | 135 | if FQuery.RecordCount > 0 then
|
---|
| 136 | begin
|
---|
| 137 | FQuery.First;
|
---|
| 138 | i := 0;
|
---|
| 139 | repeat
|
---|
| 140 | Fdat_files[i].ID := FQuery.FieldByName('id').AsInteger;
|
---|
| 141 | Fdat_files[i].Name := FQuery.FieldByName('name').AsString;
|
---|
| 142 | Fdat_files[i].Extension := FQuery.FieldByName('extension').AsString;
|
---|
| 143 | Fdat_files[i].Size := FQuery.FieldByName('size').AsInteger;
|
---|
| 144 | Fdat_files[i].FileType := HexToLong(FQuery.FieldByName('contenttype').AsString);
|
---|
| 145 | Fdat_files[i].DatAddr := 0;
|
---|
| 146 | Inc(i);
|
---|
| 147 | FQuery.Next;
|
---|
| 148 | until FQuery.EOF;
|
---|
| 149 | end;
|
---|
| 150 | FQuery.Close;
|
---|
| 151 |
|
---|
| 152 | FQuery.SQL.Text :=
|
---|
| 153 | 'SELECT extension,count(extension) AS x FROM datfiles GROUP BY extension ORDER BY extension ASC;';
|
---|
| 154 | FQuery.Open;
|
---|
[101] | 155 | SetLength(Fdat_extensionsmap, FQuery.RecordCount);
|
---|
[93] | 156 | if FQuery.RecordCount > 0 then
|
---|
| 157 | begin
|
---|
| 158 | i := 0;
|
---|
| 159 | repeat
|
---|
[101] | 160 | temps := FQuery.FieldByName('extension').AsString;
|
---|
[93] | 161 | Fdat_extensionsmap[i].Extension[3] := temps[1];
|
---|
| 162 | Fdat_extensionsmap[i].Extension[2] := temps[2];
|
---|
| 163 | Fdat_extensionsmap[i].Extension[1] := temps[3];
|
---|
| 164 | Fdat_extensionsmap[i].Extension[0] := temps[4];
|
---|
| 165 | Fdat_extensionsmap[i].ExtCount := FQuery.FieldByName('x').AsInteger;
|
---|
| 166 | Inc(i);
|
---|
| 167 | FQuery.Next;
|
---|
| 168 | until FQuery.EOF;
|
---|
| 169 | end;
|
---|
| 170 | FQuery.Close;
|
---|
| 171 | end;
|
---|
| 172 |
|
---|
| 173 |
|
---|
[106] | 174 |
|
---|
| 175 | function TAccess_OUP_ADB.GetLinksToFile(FileID: Integer): TLinks;
|
---|
| 176 | var
|
---|
| 177 | i: Integer;
|
---|
| 178 | begin
|
---|
| 179 | SetLength(Result.ByName, 0);
|
---|
| 180 | FQuery.SQL.Text := 'SELECT src_link_offset, src_id FROM linkmap WHERE target_id = ' + IntToStr(FileID) + ' ORDER BY src_id ASC;';
|
---|
| 181 | FQuery.Open;
|
---|
| 182 | SetLength(Result.ByID, FQuery.RecordCount);
|
---|
| 183 | if FQuery.RecordCount > 0 then
|
---|
| 184 | begin
|
---|
| 185 | i := 0;
|
---|
| 186 | repeat
|
---|
| 187 | Result.ByID[i].SrcOffset := FQuery.FieldByName('src_link_offset').AsInteger;
|
---|
| 188 | Result.ByID[i].Destination := FQuery.FieldByName('src_id').AsInteger;
|
---|
| 189 | Inc(i);
|
---|
| 190 | FQuery.Next;
|
---|
| 191 | until FQuery.EOF;
|
---|
| 192 | end;
|
---|
| 193 | FQuery.Close;
|
---|
| 194 | end;
|
---|
| 195 |
|
---|
| 196 | function TAccess_OUP_ADB.GetLinksFromFile(FileID: Integer): TLinks;
|
---|
| 197 | var
|
---|
| 198 | i: Integer;
|
---|
| 199 | begin
|
---|
| 200 | SetLength(Result.ByName, 0);
|
---|
| 201 | FQuery.SQL.Text := 'SELECT src_link_offset, target_id FROM linkmap WHERE src_id = ' + IntToStr(FileID) + ' ORDER BY target_id ASC;';
|
---|
| 202 | FQuery.Open;
|
---|
| 203 | SetLength(Result.ByID, FQuery.RecordCount);
|
---|
| 204 | if FQuery.RecordCount > 0 then
|
---|
| 205 | begin
|
---|
| 206 | i := 0;
|
---|
| 207 | repeat
|
---|
| 208 | Result.ByID[i].SrcOffset := FQuery.FieldByName('src_link_offset').AsInteger;
|
---|
| 209 | Result.ByID[i].Destination := FQuery.FieldByName('target_id').AsInteger;
|
---|
| 210 | Inc(i);
|
---|
| 211 | FQuery.Next;
|
---|
| 212 | until FQuery.EOF;
|
---|
| 213 | end;
|
---|
| 214 | FQuery.Close;
|
---|
| 215 | end;
|
---|
| 216 |
|
---|
| 217 |
|
---|
| 218 |
|
---|
[101] | 219 | function TAccess_OUP_ADB.GetFileInfo(fileid: Integer): TFileInfo;
|
---|
[93] | 220 | begin
|
---|
| 221 | if fileid = -1 then
|
---|
| 222 | begin
|
---|
| 223 | Result := inherited GetFileInfo(fileid);
|
---|
| 224 | Exit;
|
---|
| 225 | end;
|
---|
[101] | 226 | if fileid < Self.GetFileCount then
|
---|
| 227 | Result := Fdat_files[fileid]
|
---|
[93] | 228 | else
|
---|
| 229 | Result.ID := -1;
|
---|
| 230 | end;
|
---|
| 231 |
|
---|
| 232 |
|
---|
| 233 |
|
---|
| 234 |
|
---|
[101] | 235 | function TAccess_OUP_ADB.GetFilesList(ext: String; pattern: String;
|
---|
| 236 | NoEmptyFiles: Boolean; SortType: TSortType): TStrings;
|
---|
[93] | 237 | var
|
---|
[101] | 238 | i: Integer;
|
---|
| 239 | list: TStringList;
|
---|
[93] | 240 | id, name, extension: String;
|
---|
| 241 | fields: TStrings;
|
---|
| 242 |
|
---|
| 243 | procedure getfields;
|
---|
| 244 | begin
|
---|
[101] | 245 | fields.CommaText := StringReplace(AnsiQuotedStr(list.Strings[i], '"'), ';', '","', [rfReplaceAll]);
|
---|
| 246 | if SortType in [ST_IDAsc, ST_IDDesc] then
|
---|
[93] | 247 | begin
|
---|
| 248 | id := fields.Strings[0];
|
---|
| 249 | name := fields.Strings[1];
|
---|
| 250 | extension := fields.Strings[2];
|
---|
| 251 | end;
|
---|
[101] | 252 | if SortType in [ST_NameAsc, ST_NameDesc] then
|
---|
[93] | 253 | begin
|
---|
| 254 | id := fields.Strings[1];
|
---|
| 255 | name := fields.Strings[0];
|
---|
| 256 | extension := fields.Strings[2];
|
---|
| 257 | end;
|
---|
[101] | 258 | if SortType in [ST_ExtAsc, ST_ExtDesc] then
|
---|
[93] | 259 | begin
|
---|
| 260 | id := fields.Strings[1];
|
---|
| 261 | name := fields.Strings[2];
|
---|
| 262 | extension := fields.Strings[0];
|
---|
| 263 | end;
|
---|
| 264 | end;
|
---|
| 265 |
|
---|
| 266 | begin
|
---|
| 267 | list := TStringList.Create;
|
---|
| 268 | list.Sorted := True;
|
---|
[101] | 269 | for i := 0 to GetFileCount - 1 do
|
---|
[93] | 270 | begin
|
---|
| 271 | if ((Length(ext) = 0) or (Pos(Fdat_files[i].Extension, ext) > 0)) and
|
---|
| 272 | ((Length(pattern) = 0) or
|
---|
| 273 | (Pos(UpperCase(pattern), UpperCase(Fdat_files[i].Name)) > 0)) then
|
---|
| 274 | begin
|
---|
| 275 | if (NoEmptyFiles = False) or ((Fdat_files[i].FileType and $02) = 0) then
|
---|
| 276 | begin
|
---|
| 277 | if AppSettings.FilenumbersAsHex then
|
---|
| 278 | id := IntToHex(Fdat_files[i].ID, 4)
|
---|
| 279 | else
|
---|
| 280 | id := FormatNumber(Fdat_files[i].ID, 5, '0');
|
---|
| 281 | name := Fdat_files[i].Name;
|
---|
| 282 | extension := Fdat_files[i].Extension;
|
---|
| 283 |
|
---|
[101] | 284 | case SortType of
|
---|
| 285 | ST_IDAsc, ST_IDDesc: list.Add(id + ';' + name + ';' + extension);
|
---|
| 286 | ST_NameAsc, ST_NameDesc: list.Add(name + ';' + id + ';' + extension);
|
---|
| 287 | ST_ExtAsc, ST_ExtDesc: list.Add(extension + ';' + id + ';' + name);
|
---|
[93] | 288 | end;
|
---|
| 289 | end;
|
---|
| 290 | end;
|
---|
| 291 | end;
|
---|
[101] | 292 | Result := TStringList.Create;
|
---|
| 293 | if list.Count > 0 then
|
---|
| 294 | begin
|
---|
| 295 | fields := TStringList.Create;
|
---|
| 296 | if SortType in [ST_IDAsc, ST_NameAsc, ST_ExtAsc] then
|
---|
| 297 | for i := 0 to list.Count - 1 do
|
---|
| 298 | begin
|
---|
| 299 | getfields;
|
---|
| 300 | Result.Add(id + '-' + name + '.' + extension);
|
---|
| 301 | end
|
---|
| 302 | else
|
---|
| 303 | for i := list.Count - 1 downto 0 do
|
---|
| 304 | begin
|
---|
| 305 | getfields;
|
---|
| 306 | Result.Add(id + '-' + name + '.' + extension);
|
---|
| 307 | end;
|
---|
| 308 | fields.Free;
|
---|
| 309 | end;
|
---|
[93] | 310 | list.Free;
|
---|
| 311 | end;
|
---|
| 312 |
|
---|
| 313 |
|
---|
| 314 |
|
---|
| 315 |
|
---|
[101] | 316 | function TAccess_OUP_ADB.GetFileCount: Integer;
|
---|
[93] | 317 | begin
|
---|
| 318 | Result := Length(Fdat_files);
|
---|
| 319 | end;
|
---|
| 320 |
|
---|
| 321 |
|
---|
[101] | 322 | function TAccess_OUP_ADB.GetExtensionsList(ExtListFormat: TExtensionFormat): TStrings;
|
---|
[93] | 323 | var
|
---|
[101] | 324 | i: Integer;
|
---|
[93] | 325 | begin
|
---|
[101] | 326 | Result := TStringList.Create;
|
---|
| 327 | for i := 0 to Length(Fdat_extensionsmap) - 1 do
|
---|
[93] | 328 | begin
|
---|
| 329 | with Fdat_extensionsmap[i] do
|
---|
| 330 | begin
|
---|
[101] | 331 | case ExtListFormat of
|
---|
| 332 | EF_ExtOnly:
|
---|
| 333 | Result.Add(Extension[3] + Extension[2] + Extension[1] + Extension[0]);
|
---|
| 334 | EF_ExtCount:
|
---|
| 335 | Result.Add(Extension[3] + Extension[2] + Extension[1] + Extension[0] +
|
---|
| 336 | ' (' + IntToStr(ExtCount) + ')');
|
---|
| 337 | end;
|
---|
[93] | 338 | end;
|
---|
| 339 | end;
|
---|
| 340 | end;
|
---|
| 341 |
|
---|
| 342 |
|
---|
[101] | 343 | procedure TAccess_OUP_ADB.LoadDatFile(FileID: Integer; var Target: TStream);
|
---|
[93] | 344 | var
|
---|
[101] | 345 | mem: TStream;
|
---|
| 346 | streampos: Integer;
|
---|
[93] | 347 | begin
|
---|
[101] | 348 | if fileid < GetFileCount then
|
---|
[93] | 349 | begin
|
---|
[101] | 350 | if not Assigned(Target) then
|
---|
| 351 | Target := TMemoryStream.Create;
|
---|
[93] | 352 |
|
---|
[101] | 353 | streampos := Target.Position;
|
---|
[93] | 354 |
|
---|
| 355 | FQuery.SQL.Text := 'SELECT data FROM datfiles WHERE id=' + IntToStr(fileid) + ';';
|
---|
| 356 | FQuery.Open;
|
---|
| 357 | if FQuery.RecordCount > 0 then
|
---|
| 358 | begin
|
---|
| 359 | mem := FQuery.CreateBlobStream(FQuery.FieldByName('data'), bmRead);
|
---|
| 360 | mem.Seek(0, soFromBeginning);
|
---|
[101] | 361 | Target.CopyFrom(mem, mem.Size);
|
---|
[93] | 362 | mem.Free;
|
---|
| 363 | end;
|
---|
| 364 | FQuery.Close;
|
---|
[101] | 365 |
|
---|
| 366 | Target.Seek(streampos, soFromBeginning);
|
---|
[93] | 367 | end;
|
---|
| 368 | end;
|
---|
| 369 |
|
---|
[101] | 370 | procedure TAccess_OUP_ADB.UpdateDatFile(FileID: Integer; Src: TStream);
|
---|
[93] | 371 | var
|
---|
| 372 | MimeCoder: TStringFormat_MIME64;
|
---|
| 373 | mem: TMemoryStream;
|
---|
| 374 | begin
|
---|
[101] | 375 | if fileid < GetFileCount then
|
---|
[93] | 376 | begin
|
---|
| 377 | mimecoder := TStringFormat_MIME64.Create;
|
---|
| 378 | mem := TMemoryStream.Create;
|
---|
[101] | 379 | mem.CopyFrom(Src, Src.Size);
|
---|
[93] | 380 | FQuery.SQL.Text := 'UPDATE datfiles SET data=MimeToBin("' +
|
---|
| 381 | MimeCoder.StrTo(mem.Memory, mem.Size) + '"), size=' + IntToStr(mem.Size) +
|
---|
| 382 | ' WHERE id=' + IntToStr(fileid) + ';';
|
---|
| 383 | FQuery.ExecSQL;
|
---|
| 384 | mem.Free;
|
---|
| 385 | mimecoder.Free;
|
---|
| 386 | end;
|
---|
| 387 | end;
|
---|
| 388 |
|
---|
| 389 |
|
---|
| 390 |
|
---|
[101] | 391 | procedure TAccess_OUP_ADB.LoadDatFilePart(FileID, Offset, Size: Integer; var Target: TStream);
|
---|
[93] | 392 | var
|
---|
[101] | 393 | streampos: Integer;
|
---|
[93] | 394 | mem: TStream;
|
---|
| 395 | begin
|
---|
[101] | 396 | if fileid < GetFileCount then
|
---|
[93] | 397 | begin
|
---|
[101] | 398 | if not Assigned(Target) then
|
---|
| 399 | Target := TMemoryStream.Create;
|
---|
| 400 | streampos := Target.Position;
|
---|
| 401 |
|
---|
[93] | 402 | FQuery.SQL.Text := 'SELECT data FROM datfiles WHERE id=' + IntToStr(fileid) + ';';
|
---|
| 403 | FQuery.Open;
|
---|
| 404 | if FQuery.RecordCount > 0 then
|
---|
| 405 | begin
|
---|
| 406 | mem := FQuery.CreateBlobStream(FQuery.FieldByName('data'), bmRead);
|
---|
| 407 | mem.Seek(offset, soFromBeginning);
|
---|
[101] | 408 | Target.CopyFrom(mem, size);
|
---|
[93] | 409 | mem.Free;
|
---|
| 410 | end;
|
---|
| 411 | FQuery.Close;
|
---|
[101] | 412 | Target.Seek(streampos, soFromBeginning);
|
---|
[93] | 413 | end;
|
---|
| 414 | end;
|
---|
| 415 |
|
---|
| 416 |
|
---|
| 417 |
|
---|
[101] | 418 | procedure TAccess_OUP_ADB.UpdateDatFilePart(FileID, Offset, Size: Integer; Src: TStream);
|
---|
[93] | 419 | var
|
---|
| 420 | MimeCoder: TStringFormat_MIME64;
|
---|
| 421 | mem: TMemoryStream;
|
---|
| 422 | begin
|
---|
[101] | 423 | if fileid < GetFileCount then
|
---|
[93] | 424 | begin
|
---|
[101] | 425 | mem := nil;
|
---|
| 426 | LoadDatFile(fileid, TStream(mem));
|
---|
| 427 | mem.Seek(Offset, soFromBeginning);
|
---|
| 428 | mem.CopyFrom(Src, Size);
|
---|
| 429 | mem.Seek(0, soFromBeginning);
|
---|
[93] | 430 | mimecoder := TStringFormat_MIME64.Create;
|
---|
| 431 | FQuery.SQL.Text := 'UPDATE datfiles SET data=MimeToBin("' +
|
---|
| 432 | MimeCoder.StrTo(mem.Memory, mem.Size) + '") WHERE id=' + IntToStr(fileid) + ';';
|
---|
| 433 | FQuery.ExecSQL;
|
---|
| 434 | mem.Free;
|
---|
| 435 | mimecoder.Free;
|
---|
| 436 | end;
|
---|
| 437 | end;
|
---|
| 438 |
|
---|
| 439 |
|
---|
[101] | 440 | function TAccess_OUP_ADB.GetRawList(FileID: Integer): TRawDataList;
|
---|
[93] | 441 | var
|
---|
[101] | 442 | i: Integer;
|
---|
[93] | 443 | begin
|
---|
| 444 | SetLength(Result, 0);
|
---|
| 445 | FQuery.SQL.Text := 'SELECT [src_link_offset],[size],[sep] FROM rawmap WHERE [src_id]=' +
|
---|
| 446 | IntToStr(fileid) + ' ORDER BY src_link_offset ASC;';
|
---|
| 447 | FQuery.Open;
|
---|
| 448 | if FQuery.RecordCount > 0 then
|
---|
| 449 | begin
|
---|
| 450 | FQuery.First;
|
---|
| 451 | SetLength(Result, FQuery.RecordCount);
|
---|
| 452 | i := 0;
|
---|
| 453 | repeat
|
---|
[101] | 454 | Result[i].SrcID := fileid;
|
---|
| 455 | Result[i].SrcOffset := FQuery.FieldByName('src_link_offset').AsInteger;
|
---|
| 456 | Result[i].RawAddr := 0;
|
---|
| 457 | Result[i].RawSize := FQuery.FieldByName('size').AsInteger;
|
---|
| 458 | Result[i].LocSep := FQuery.FieldByName('sep').AsBoolean;
|
---|
[93] | 459 | Inc(i);
|
---|
| 460 | FQuery.Next;
|
---|
| 461 | until FQuery.EOF;
|
---|
| 462 | end;
|
---|
| 463 | FQuery.Close;
|
---|
| 464 | end;
|
---|
| 465 |
|
---|
| 466 |
|
---|
[101] | 467 | function TAccess_OUP_ADB.GetRawInfo(FileID, DatOffset: Integer): TRawDataInfo;
|
---|
| 468 | var
|
---|
| 469 | i: Integer;
|
---|
| 470 | rawlist: TRawDataList;
|
---|
| 471 | begin
|
---|
| 472 | rawlist := GetRawList(FileID);
|
---|
| 473 | if Length(rawlist) > 0 then
|
---|
| 474 | begin
|
---|
| 475 | for i := 0 to High(rawlist) do
|
---|
| 476 | if rawlist[i].SrcOffset = DatOffset then
|
---|
| 477 | Break;
|
---|
| 478 | if i < Length(rawlist) then
|
---|
| 479 | Result := rawlist[i]
|
---|
| 480 | else begin
|
---|
| 481 | Result.SrcID := -1;
|
---|
| 482 | Result.SrcOffset := -1;
|
---|
| 483 | Result.RawAddr := -1;
|
---|
| 484 | Result.RawSize := -1;
|
---|
| 485 | end;
|
---|
| 486 | end;
|
---|
| 487 | end;
|
---|
[93] | 488 |
|
---|
| 489 |
|
---|
[101] | 490 |
|
---|
| 491 | procedure TAccess_OUP_ADB.LoadRawFile(FileID, DatOffset: Integer; var Target: TStream);
|
---|
[93] | 492 | var
|
---|
| 493 | mem: TStream;
|
---|
[101] | 494 | streampos: Integer;
|
---|
[93] | 495 | begin
|
---|
[101] | 496 | if fileid < GetFileCount then
|
---|
[93] | 497 | begin
|
---|
[101] | 498 | if not Assigned(Target) then
|
---|
| 499 | Target := TMemoryStream.Create;
|
---|
| 500 | streampos := Target.Position;
|
---|
[93] | 501 | FQuery.SQL.Text := 'SELECT data FROM rawmap WHERE (src_id=' +
|
---|
[101] | 502 | IntToStr(FileID) + ') AND (src_link_offset=' + IntToStr(DatOffset) + ');';
|
---|
[93] | 503 | FQuery.Open;
|
---|
| 504 | if FQuery.RecordCount > 0 then
|
---|
| 505 | begin
|
---|
| 506 | mem := FQuery.CreateBlobStream(FQuery.FieldByName('data'), bmRead);
|
---|
| 507 | mem.Seek(0, soFromBeginning);
|
---|
[101] | 508 | Target.CopyFrom(mem, mem.Size);
|
---|
[93] | 509 | mem.Free;
|
---|
| 510 | end;
|
---|
| 511 | FQuery.Close;
|
---|
[101] | 512 | Target.Seek(streampos, soFromBeginning);
|
---|
[93] | 513 | end;
|
---|
| 514 | end;
|
---|
| 515 |
|
---|
| 516 |
|
---|
[101] | 517 | procedure TAccess_OUP_ADB.UpdateRawFile(FileID, DatOffset: Integer; Src: TStream);
|
---|
[93] | 518 | var
|
---|
| 519 | MimeCoder: TStringFormat_MIME64;
|
---|
| 520 | mem: TMemoryStream;
|
---|
| 521 | begin
|
---|
[101] | 522 | if fileid < GetFileCount then
|
---|
[93] | 523 | begin
|
---|
| 524 | mimecoder := TStringFormat_MIME64.Create;
|
---|
| 525 | mem := TMemoryStream.Create;
|
---|
[101] | 526 | mem.CopyFrom(Src, Src.Size);
|
---|
[93] | 527 | mem.Seek(0, soFromBeginning);
|
---|
| 528 | FQuery.SQL.Text := 'UPDATE rawmap SET data=MimeToBin("' + MimeCoder.StrTo(
|
---|
[101] | 529 | mem.Memory, mem.Size) + '") WHERE (src_id=' + IntToStr(FileID) +
|
---|
| 530 | ') AND (src_link_offset=' + IntToStr(DatOffset) + ');';
|
---|
[93] | 531 | FQuery.ExecSQL;
|
---|
| 532 | mem.Free;
|
---|
| 533 | mimecoder.Free;
|
---|
| 534 | end;
|
---|
| 535 | end;
|
---|
| 536 |
|
---|
| 537 |
|
---|
| 538 |
|
---|
| 539 |
|
---|
[101] | 540 | procedure TAccess_OUP_ADB.LoadRawFilePart(FileID, DatOffset, Offset, Size: Integer; var Target: TStream);
|
---|
[93] | 541 | var
|
---|
| 542 | mem: TMemoryStream;
|
---|
[101] | 543 | streampos: Integer;
|
---|
[93] | 544 | begin
|
---|
[101] | 545 | if fileid < GetFileCount then
|
---|
[93] | 546 | begin
|
---|
[101] | 547 | if not Assigned(Target) then
|
---|
| 548 | Target := TMemoryStream.Create;
|
---|
| 549 | streampos := Target.Position;
|
---|
| 550 | mem := nil;
|
---|
| 551 | LoadRawFile(FileID, DatOffset, TStream(mem));
|
---|
| 552 | mem.Seek(Offset, soFromBeginning);
|
---|
| 553 | Target.CopyFrom(mem, Size);
|
---|
[93] | 554 | mem.Free;
|
---|
[101] | 555 | Target.Seek(streampos, soFromBeginning);
|
---|
[93] | 556 | end;
|
---|
| 557 | end;
|
---|
| 558 |
|
---|
| 559 |
|
---|
| 560 |
|
---|
| 561 |
|
---|
[101] | 562 | procedure TAccess_OUP_ADB.UpdateRawFilePart(FileID, DatOffset, Offset, Size: Integer; Src: TStream);
|
---|
[93] | 563 | var
|
---|
| 564 | MimeCoder: TStringFormat_MIME64;
|
---|
| 565 | mem: TMemoryStream;
|
---|
| 566 | begin
|
---|
[101] | 567 | if fileid < GetFileCount then
|
---|
[93] | 568 | begin
|
---|
[101] | 569 | mem := nil;
|
---|
| 570 | LoadRawFile(fileid, offset, TStream(mem));
|
---|
[93] | 571 | mem.Seek(offset, soFromBeginning);
|
---|
[101] | 572 | mem.CopyFrom(Src, Size);
|
---|
[93] | 573 | mem.Seek(0, soFromBeginning);
|
---|
[101] | 574 | mimecoder := TStringFormat_MIME64.Create;
|
---|
[93] | 575 | FQuery.SQL.Text := 'UPDATE rawmap SET data=MimeToBin("' + MimeCoder.StrTo(
|
---|
| 576 | mem.Memory, mem.Size) + '") WHERE (src_id=' + IntToStr(fileid) +
|
---|
[101] | 577 | ') AND (src_link_offset=' + IntToStr(DatOffset) + ');';
|
---|
[93] | 578 | FQuery.ExecSQL;
|
---|
| 579 | mem.Free;
|
---|
| 580 | mimecoder.Free;
|
---|
| 581 | end;
|
---|
| 582 | end;
|
---|
| 583 |
|
---|
| 584 |
|
---|
| 585 |
|
---|
[101] | 586 |
|
---|
[93] | 587 | end.
|
---|