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