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