2017-01-27 16:37:51 +01:00
|
|
|
unit uCEFv8Accessor;
|
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
{$IFDEF FPC}
|
|
|
|
{$MODE OBJFPC}{$H+}
|
|
|
|
{$ENDIF}
|
|
|
|
|
2017-02-05 20:56:46 +01:00
|
|
|
{$I cef.inc}
|
|
|
|
|
2022-02-19 18:56:41 +01:00
|
|
|
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
|
|
|
|
{$MINENUMSIZE 4}
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2018-05-12 14:50:54 +02:00
|
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
type
|
2017-03-16 19:09:42 +01:00
|
|
|
TCefV8AccessorOwn = class(TCefBaseRefCountedOwn, ICefV8Accessor)
|
2017-01-27 16:37:51 +01:00
|
|
|
protected
|
2019-11-24 18:19:49 +01:00
|
|
|
function Get(const name: ustring; const object_: ICefv8Value; var retval: ICefv8Value; var exception: ustring): Boolean; virtual;
|
|
|
|
function Set_(const name: ustring; const object_, value: ICefv8Value; var exception: ustring): Boolean; virtual;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create; virtual;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TCefFastV8Accessor = class(TCefV8AccessorOwn)
|
|
|
|
protected
|
|
|
|
FGetter: TCefV8AccessorGetterProc;
|
|
|
|
FSetter: TCefV8AccessorSetterProc;
|
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
function Get(const name: ustring; const object_: ICefv8Value; var retval: ICefv8Value; var exception: ustring): Boolean; override;
|
|
|
|
function Set_(const name: ustring; const object_, value: ICefv8Value; var exception: ustring): Boolean; override;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const getter: TCefV8AccessorGetterProc; const setter: TCefV8AccessorSetterProc); reintroduce;
|
|
|
|
end;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
|
|
|
uCEFMiscFunctions, uCEFLibFunctions, uCEFv8Value;
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
function cef_v8_accessor_get( self : PCefV8Accessor;
|
|
|
|
const name : PCefString;
|
2019-11-24 18:19:49 +01:00
|
|
|
object_ : PCefv8Value;
|
2018-03-29 20:02:04 +02:00
|
|
|
out retval : PCefv8Value;
|
|
|
|
exception : PCefString): Integer; stdcall;
|
2017-01-27 16:37:51 +01:00
|
|
|
var
|
2019-11-24 18:19:49 +01:00
|
|
|
TempObject : TObject;
|
|
|
|
TempException : ustring;
|
|
|
|
TempReturnValue : ICefv8Value;
|
|
|
|
TempRecObject : ICefv8Value;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
Result := Ord(False);
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefV8AccessorOwn) then
|
2019-11-24 18:19:49 +01:00
|
|
|
try
|
|
|
|
TempRecObject := TCefv8ValueRef.UnWrap(object_);
|
|
|
|
TempException := '';
|
|
|
|
TempReturnValue := nil;
|
|
|
|
|
|
|
|
Result := Ord(TCefV8AccessorOwn(TempObject).Get(CefString(name),
|
|
|
|
TempRecObject,
|
|
|
|
TempReturnValue,
|
|
|
|
TempException));
|
|
|
|
|
|
|
|
retval := CefGetData(TempReturnValue);
|
|
|
|
|
|
|
|
if (exception <> nil) then
|
|
|
|
begin
|
|
|
|
CefStringFree(exception);
|
|
|
|
exception^ := CefStringAlloc(TempException);
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
TempRecObject := nil;
|
|
|
|
TempReturnValue := nil;
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
function cef_v8_accessor_set( self : PCefV8Accessor;
|
2018-03-29 20:02:04 +02:00
|
|
|
const name : PCefString;
|
2019-11-24 18:19:49 +01:00
|
|
|
object_ : PCefv8Value;
|
2018-03-29 20:02:04 +02:00
|
|
|
value : PCefv8Value;
|
|
|
|
exception : PCefString): Integer; stdcall;
|
2017-11-22 17:43:48 +01:00
|
|
|
var
|
2019-11-24 18:19:49 +01:00
|
|
|
TempObject : TObject;
|
|
|
|
TempException : ustring;
|
|
|
|
TempValue : ICefv8Value;
|
|
|
|
TempRecObject : ICefv8Value;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
Result := Ord(False);
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefV8AccessorOwn) then
|
2019-11-24 18:19:49 +01:00
|
|
|
try
|
|
|
|
TempRecObject := TCefv8ValueRef.UnWrap(object_);
|
|
|
|
TempValue := TCefv8ValueRef.UnWrap(value);
|
|
|
|
TempException := '';
|
|
|
|
|
|
|
|
Result := Ord(TCefV8AccessorOwn(TempObject).Set_(CefString(name),
|
|
|
|
TempRecObject,
|
|
|
|
TempValue,
|
|
|
|
TempException));
|
|
|
|
|
|
|
|
if (exception <> nil) then
|
|
|
|
begin
|
|
|
|
CefStringFree(exception);
|
|
|
|
exception^ := CefStringAlloc(TempException);
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
TempRecObject := nil;
|
|
|
|
TempValue := nil;
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
// TCefV8AccessorOwn
|
|
|
|
|
|
|
|
constructor TCefV8AccessorOwn.Create;
|
|
|
|
begin
|
|
|
|
inherited CreateData(SizeOf(TCefV8Accessor));
|
2017-11-22 17:43:48 +01:00
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
with PCefV8Accessor(FData)^ do
|
|
|
|
begin
|
2019-11-24 18:19:49 +01:00
|
|
|
get := {$IFDEF FPC}@{$ENDIF}cef_v8_accessor_get;
|
|
|
|
set_ := {$IFDEF FPC}@{$ENDIF}cef_v8_accessor_set;
|
2018-05-12 14:50:54 +02:00
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
function TCefV8AccessorOwn.Get(const name: ustring; const object_: ICefv8Value; var retval: ICefv8Value; var exception: ustring): Boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
|
|
|
Result := False;
|
|
|
|
end;
|
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
function TCefV8AccessorOwn.Set_(const name: ustring; const object_, value: ICefv8Value; var exception: ustring): Boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
|
|
|
Result := False;
|
|
|
|
end;
|
|
|
|
|
|
|
|
// TCefFastV8Accessor
|
|
|
|
|
|
|
|
constructor TCefFastV8Accessor.Create(const getter: TCefV8AccessorGetterProc; const setter: TCefV8AccessorSetterProc);
|
|
|
|
begin
|
|
|
|
FGetter := getter;
|
|
|
|
FSetter := setter;
|
|
|
|
end;
|
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
function TCefFastV8Accessor.Get(const name: ustring; const object_: ICefv8Value; var retval: ICefv8Value; var exception: ustring): Boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2017-11-22 17:43:48 +01:00
|
|
|
if Assigned(FGetter) then
|
2019-11-24 18:19:49 +01:00
|
|
|
Result := FGetter(name, object_, retval, exception)
|
2017-11-22 17:43:48 +01:00
|
|
|
else
|
2017-01-27 16:37:51 +01:00
|
|
|
Result := False;
|
|
|
|
end;
|
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
function TCefFastV8Accessor.Set_(const name: ustring; const object_, value: ICefv8Value; var exception: ustring): Boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2017-11-22 17:43:48 +01:00
|
|
|
if Assigned(FSetter) then
|
2019-11-24 18:19:49 +01:00
|
|
|
Result := FSetter(name, object_, value, exception)
|
2017-11-22 17:43:48 +01:00
|
|
|
else
|
2017-01-27 16:37:51 +01:00
|
|
|
Result := False;
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|