2017-01-27 16:37:51 +01:00
|
|
|
unit uCEFv8Interceptor;
|
|
|
|
|
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
|
|
|
TCefV8InterceptorOwn = class(TCefBaseRefCountedOwn, ICefV8Interceptor)
|
2017-01-27 16:37:51 +01:00
|
|
|
protected
|
2019-11-24 18:19:49 +01:00
|
|
|
function GetByName(const name: ustring; const object_: ICefv8Value; var retval: ICefv8Value; var exception: ustring): boolean; virtual;
|
|
|
|
function GetByIndex(index: integer; const object_: ICefv8Value; var retval: ICefv8Value; var exception: ustring): boolean; virtual;
|
|
|
|
function SetByName(const name: ustring; const object_, value: ICefv8Value; var exception: ustring): boolean; virtual;
|
|
|
|
function SetByIndex(index: integer; const object_, value: ICefv8Value; var exception: ustring): boolean; virtual;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create; virtual;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TCefFastV8Interceptor = class(TCefV8InterceptorOwn)
|
|
|
|
protected
|
|
|
|
FGetterByName : TCefV8InterceptorGetterByNameProc;
|
|
|
|
FSetterByName : TCefV8InterceptorSetterByNameProc;
|
|
|
|
FGetterByIndex : TCefV8InterceptorGetterByIndexProc;
|
|
|
|
FSetterByIndex : TCefV8InterceptorSetterByIndexProc;
|
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
function GetByName(const name: ustring; const object_: ICefv8Value; var retval: ICefv8Value; var exception: ustring): boolean; override;
|
|
|
|
function GetByIndex(index: integer; const object_: ICefv8Value; var retval: ICefv8Value; var exception: ustring): boolean; override;
|
|
|
|
function SetByName(const name: ustring; const object_, value: ICefv8Value; var exception: ustring): boolean; override;
|
|
|
|
function SetByIndex(index: integer; const object_, value: ICefv8Value; var exception: ustring): boolean; override;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const getterbyname : TCefV8InterceptorGetterByNameProc;
|
|
|
|
const setterbyname : TCefV8InterceptorSetterByNameProc;
|
|
|
|
const getterbyindex : TCefV8InterceptorGetterByIndexProc;
|
|
|
|
const setterbyindex : TCefV8InterceptorSetterByIndexProc); reintroduce;
|
|
|
|
end;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
|
|
|
uCEFMiscFunctions, uCEFLibFunctions, uCEFv8Value;
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
function cef_v8_interceptor_get_byname( self : PCefV8Interceptor;
|
|
|
|
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);
|
|
|
|
retval := nil;
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefV8InterceptorOwn) then
|
2019-11-24 18:19:49 +01:00
|
|
|
try
|
|
|
|
TempRecObject := TCefv8ValueRef.UnWrap(object_);
|
|
|
|
TempException := '';
|
|
|
|
TempReturnValue := nil;
|
2018-03-29 20:02:04 +02:00
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
Result := Ord(TCefV8InterceptorOwn(TempObject).GetByName(CefString(name),
|
|
|
|
TempRecObject,
|
|
|
|
TempReturnValue,
|
|
|
|
TempException));
|
|
|
|
|
|
|
|
retval := CefGetData(TempReturnValue);
|
|
|
|
|
|
|
|
if (exception <> nil) then
|
|
|
|
begin
|
|
|
|
CefStringFree(exception);
|
|
|
|
exception^ := CefStringAlloc(TempException);
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
TempRecObject := nil;
|
|
|
|
TempReturnValue := nil;
|
2018-03-29 20:02:04 +02:00
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
function cef_v8_interceptor_get_byindex( self : PCefV8Interceptor;
|
|
|
|
index : integer;
|
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);
|
|
|
|
retval := nil;
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefV8InterceptorOwn) then
|
2019-11-24 18:19:49 +01:00
|
|
|
try
|
|
|
|
TempRecObject := TCefv8ValueRef.UnWrap(object_);
|
|
|
|
TempException := '';
|
|
|
|
TempReturnValue := nil;
|
2018-03-29 20:02:04 +02:00
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
Result := Ord(TCefV8InterceptorOwn(TempObject).GetByIndex(index,
|
|
|
|
TempRecObject,
|
|
|
|
TempReturnValue,
|
|
|
|
TempException));
|
|
|
|
|
|
|
|
retval := CefGetData(TempReturnValue);
|
|
|
|
|
|
|
|
if (exception <> nil) then
|
|
|
|
begin
|
|
|
|
CefStringFree(exception);
|
|
|
|
exception^ := CefStringAlloc(TempException);
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
TempRecObject := nil;
|
|
|
|
TempReturnValue := nil;
|
2018-03-29 20:02:04 +02:00
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
function cef_v8_interceptor_set_byname( self : PCefV8Interceptor;
|
|
|
|
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;
|
|
|
|
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 TCefV8InterceptorOwn) then
|
2019-11-24 18:19:49 +01:00
|
|
|
try
|
|
|
|
TempRecObject := TCefv8ValueRef.UnWrap(object_);
|
|
|
|
TempValue := TCefv8ValueRef.UnWrap(value);
|
|
|
|
TempException := '';
|
|
|
|
|
|
|
|
Result := Ord(TCefV8InterceptorOwn(TempObject).SetByName(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;
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
function cef_v8_interceptor_set_byindex(self : PCefV8Interceptor;
|
|
|
|
index : integer;
|
2019-11-24 18:19:49 +01:00
|
|
|
object_ : PCefV8Value;
|
2018-03-29 20:02:04 +02:00
|
|
|
value : PCefv8Value;
|
|
|
|
exception : PCefString): integer; stdcall;
|
|
|
|
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 TCefV8InterceptorOwn) then
|
2019-11-24 18:19:49 +01:00
|
|
|
try
|
|
|
|
TempRecObject := TCefv8ValueRef.UnWrap(object_);
|
|
|
|
TempValue := TCefv8ValueRef.UnWrap(value);
|
|
|
|
TempException := '';
|
|
|
|
|
|
|
|
Result := Ord(TCefV8InterceptorOwn(TempObject).SetByIndex(index,
|
|
|
|
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;
|
|
|
|
|
|
|
|
// TCefV8InterceptorOwn
|
|
|
|
|
|
|
|
constructor TCefV8InterceptorOwn.Create;
|
|
|
|
begin
|
|
|
|
inherited CreateData(SizeOf(TCefV8InterceptorOwn));
|
|
|
|
|
|
|
|
with PCefV8Interceptor(FData)^ do
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
get_byname := {$IFDEF FPC}@{$ENDIF}cef_v8_interceptor_get_byname;
|
|
|
|
get_byindex := {$IFDEF FPC}@{$ENDIF}cef_v8_interceptor_get_byindex;
|
|
|
|
set_byname := {$IFDEF FPC}@{$ENDIF}cef_v8_interceptor_set_byname;
|
|
|
|
set_byindex := {$IFDEF FPC}@{$ENDIF}cef_v8_interceptor_set_byindex;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
function TCefV8InterceptorOwn.GetByName(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 TCefV8InterceptorOwn.GetByIndex(index: integer; 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 TCefV8InterceptorOwn.SetByName(const name: ustring; const object_, value: 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 TCefV8InterceptorOwn.SetByIndex(index: integer; const object_, value: ICefv8Value; var exception: ustring): boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
|
|
|
Result := False;
|
|
|
|
end;
|
|
|
|
|
|
|
|
// TCefFastV8Interceptor
|
|
|
|
|
|
|
|
constructor TCefFastV8Interceptor.Create(const getterbyname : TCefV8InterceptorGetterByNameProc;
|
|
|
|
const setterbyname : TCefV8InterceptorSetterByNameProc;
|
|
|
|
const getterbyindex : TCefV8InterceptorGetterByIndexProc;
|
|
|
|
const setterbyindex : TCefV8InterceptorSetterByIndexProc);
|
|
|
|
begin
|
|
|
|
FGetterByName := getterbyname;
|
|
|
|
FSetterByName := setterbyname;
|
|
|
|
FGetterByIndex := getterbyindex;
|
|
|
|
FSetterByIndex := setterbyindex;
|
|
|
|
end;
|
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
function TCefFastV8Interceptor.GetByName(const name: ustring; const object_: ICefv8Value; var retval: ICefv8Value; var exception: ustring): boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
|
|
|
if assigned(FGetterByName) then
|
2019-11-24 18:19:49 +01:00
|
|
|
Result := FGetterByName(name, object_, retval, exception)
|
2017-01-27 16:37:51 +01:00
|
|
|
else
|
|
|
|
Result := False;
|
|
|
|
end;
|
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
function TCefFastV8Interceptor.GetByIndex(index: integer; const object_: ICefv8Value; var retval: ICefv8Value; var exception: ustring): boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
|
|
|
if assigned(FGetterByIndex) then
|
2019-11-24 18:19:49 +01:00
|
|
|
Result := FGetterByIndex(index, object_, retval, exception)
|
2017-01-27 16:37:51 +01:00
|
|
|
else
|
|
|
|
Result := False;
|
|
|
|
end;
|
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
function TCefFastV8Interceptor.SetByName(const name: ustring; const object_, value: ICefv8Value; var exception: ustring): boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
|
|
|
if assigned(FSetterByName) then
|
2019-11-24 18:19:49 +01:00
|
|
|
Result := FSetterByName(name, object_, value, exception)
|
2017-01-27 16:37:51 +01:00
|
|
|
else
|
|
|
|
Result := False;
|
|
|
|
end;
|
|
|
|
|
2019-11-24 18:19:49 +01:00
|
|
|
function TCefFastV8Interceptor.SetByIndex(index: integer; const object_, value: ICefv8Value; var exception: ustring): boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
|
|
|
if assigned(FSetterByIndex) then
|
2019-11-24 18:19:49 +01:00
|
|
|
Result := FSetterByIndex(index, object_, value, exception)
|
2017-01-27 16:37:51 +01:00
|
|
|
else
|
|
|
|
Result := False;
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|