CEF4Delphi/source/uCEFCustomStreamReader.pas

193 lines
5.5 KiB
ObjectPascal
Raw Normal View History

2017-01-27 17:29:37 +01:00
// ************************************************************************
// ***************************** CEF4Delphi *******************************
// ************************************************************************
//
// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based
2017-01-27 17:29:37 +01:00
// browser in Delphi applications.
//
// The original license of DCEF3 still applies to CEF4Delphi.
//
// For more information about CEF4Delphi visit :
// https://www.briskbard.com/index.php?lang=en&pageid=cef
//
// Copyright <20> 2019 Salvador Diaz Fau. All rights reserved.
2017-01-27 17:29:37 +01:00
//
// ************************************************************************
// ************ vvvv Original license and comments below vvvv *************
// ************************************************************************
(*
* Delphi Chromium Embedded 3
*
* Usage allowed under the restrictions of the Lesser GNU General Public License
* or alternatively the restrictions of the Mozilla Public License 1.1
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
*
* Unit owner : Henri Gourvest <hgourvest@gmail.com>
* Web site : http://www.progdigy.com
* Repository : http://code.google.com/p/delphichromiumembedded/
* Group : http://groups.google.com/group/delphichromiumembedded
*
* Embarcadero Technologies, Inc is not permitted to use or redistribute
* this source code without explicit permission.
*
*)
unit uCEFCustomStreamReader;
{$IFDEF FPC}
{$MODE OBJFPC}{$H+}
{$ENDIF}
{$IFNDEF CPUX64}{$ALIGN ON}{$ENDIF}
{$MINENUMSIZE 4}
2017-01-27 17:29:37 +01:00
2017-02-05 20:56:46 +01:00
{$I cef.inc}
2017-01-27 17:29:37 +01:00
interface
uses
2017-02-05 20:56:46 +01:00
{$IFDEF DELPHI16_UP}
2017-01-27 17:29:37 +01:00
System.Classes, System.SysUtils,
2017-02-05 20:56:46 +01:00
{$ELSE}
Classes, SysUtils,
{$ENDIF}
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
2017-01-27 17:29:37 +01:00
type
TCefCustomStreamReader = class(TCefBaseRefCountedOwn, ICefCustomStreamReader)
2017-01-27 17:29:37 +01:00
protected
2018-03-29 20:02:04 +02:00
FStream : TStream;
FOwned : Boolean;
2017-01-27 17:29:37 +01:00
function Read(ptr: Pointer; size, n: NativeUInt): NativeUInt; virtual;
function Seek(offset: Int64; whence: Integer): Integer; virtual;
function Tell: Int64; virtual;
function Eof: Boolean; virtual;
function MayBlock: Boolean; virtual;
public
constructor Create(Stream: TStream; Owned: Boolean); overload; virtual;
constructor Create(const filename: string); overload; virtual;
2018-03-29 20:02:04 +02:00
destructor Destroy; override;
2017-01-27 17:29:37 +01:00
end;
implementation
uses
uCEFMiscFunctions, uCEFLibFunctions;
function cef_stream_reader_read(self: PCefReadHandler; ptr: Pointer; size, n: NativeUInt): NativeUInt; stdcall;
2018-03-29 20:02:04 +02:00
var
TempObject : TObject;
2017-01-27 17:29:37 +01:00
begin
2018-03-29 20:02:04 +02:00
Result := 0;
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefCustomStreamReader) then
Result := TCefCustomStreamReader(TempObject).Read(ptr, size, n);
2017-01-27 17:29:37 +01:00
end;
function cef_stream_reader_seek(self: PCefReadHandler; offset: Int64; whence: Integer): Integer; stdcall;
2018-03-29 20:02:04 +02:00
var
TempObject : TObject;
2017-01-27 17:29:37 +01:00
begin
2018-03-29 20:02:04 +02:00
Result := 0;
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefCustomStreamReader) then
Result := TCefCustomStreamReader(TempObject).Seek(offset, whence);
2017-01-27 17:29:37 +01:00
end;
function cef_stream_reader_tell(self: PCefReadHandler): Int64; stdcall;
2018-03-29 20:02:04 +02:00
var
TempObject : TObject;
2017-01-27 17:29:37 +01:00
begin
2018-03-29 20:02:04 +02:00
Result := 0;
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefCustomStreamReader) then
Result := TCefCustomStreamReader(TempObject).Tell;
2017-01-27 17:29:37 +01:00
end;
function cef_stream_reader_eof(self: PCefReadHandler): Integer; stdcall;
2018-03-29 20:02:04 +02:00
var
TempObject : TObject;
2017-01-27 17:29:37 +01:00
begin
2018-03-29 20:02:04 +02:00
Result := Ord(True);
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefCustomStreamReader) then
Result := Ord(TCefCustomStreamReader(TempObject).Eof);
2017-01-27 17:29:37 +01:00
end;
function cef_stream_reader_may_block(self: PCefReadHandler): Integer; stdcall;
2018-03-29 20:02:04 +02:00
var
TempObject : TObject;
2017-01-27 17:29:37 +01:00
begin
2018-03-29 20:02:04 +02:00
Result := Ord(False);
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefCustomStreamReader) then
Result := Ord(TCefCustomStreamReader(TempObject).MayBlock);
2017-01-27 17:29:37 +01:00
end;
constructor TCefCustomStreamReader.Create(Stream: TStream; Owned: Boolean);
begin
inherited CreateData(SizeOf(TCefReadHandler));
2018-03-29 20:02:04 +02:00
2017-01-27 17:29:37 +01:00
FStream := stream;
2018-03-29 20:02:04 +02:00
FOwned := Owned;
2017-01-27 17:29:37 +01:00
with PCefReadHandler(FData)^ do
2018-03-29 20:02:04 +02:00
begin
read := {$IFDEF FPC}@{$ENDIF}cef_stream_reader_read;
seek := {$IFDEF FPC}@{$ENDIF}cef_stream_reader_seek;
tell := {$IFDEF FPC}@{$ENDIF}cef_stream_reader_tell;
eof := {$IFDEF FPC}@{$ENDIF}cef_stream_reader_eof;
may_block := {$IFDEF FPC}@{$ENDIF}cef_stream_reader_may_block;
2018-03-29 20:02:04 +02:00
end;
2017-01-27 17:29:37 +01:00
end;
constructor TCefCustomStreamReader.Create(const filename: string);
begin
Create(TFileStream.Create(filename, fmOpenRead or fmShareDenyWrite), True);
end;
destructor TCefCustomStreamReader.Destroy;
begin
if FOwned then FStream.Free;
inherited Destroy;
2017-01-27 17:29:37 +01:00
end;
function TCefCustomStreamReader.Eof: Boolean;
begin
Result := FStream.Position = FStream.size;
end;
function TCefCustomStreamReader.MayBlock: Boolean;
begin
Result := False;
end;
function TCefCustomStreamReader.Read(ptr: Pointer; size, n: NativeUInt): NativeUInt;
begin
2018-03-29 20:02:04 +02:00
Result := NativeUInt(FStream.Read(ptr^, n * size)) div size;
2017-01-27 17:29:37 +01:00
end;
function TCefCustomStreamReader.Seek(offset: Int64; whence: Integer): Integer;
begin
Result := FStream.Seek(offset, TSeekOrigin(whence));
end;
function TCefCustomStreamReader.Tell: Int64;
begin
Result := FStream.Position;
end;
end.