2017-01-27 16:37:51 +01:00
|
|
|
unit uCEFv8Context;
|
|
|
|
|
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
|
2017-03-16 19:09:42 +01:00
|
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
type
|
2017-03-16 19:09:42 +01:00
|
|
|
TCefv8ContextRef = class(TCefBaseRefCountedRef, ICefv8Context)
|
2017-01-27 16:37:51 +01:00
|
|
|
protected
|
|
|
|
function GetTaskRunner: ICefTaskRunner;
|
|
|
|
function IsValid: Boolean;
|
|
|
|
function GetBrowser: ICefBrowser;
|
|
|
|
function GetFrame: ICefFrame;
|
|
|
|
function GetGlobal: ICefv8Value;
|
|
|
|
function Enter: Boolean;
|
|
|
|
function Exit: Boolean;
|
|
|
|
function IsSame(const that: ICefv8Context): Boolean;
|
|
|
|
function Eval(const code: ustring; const script_url: ustring; start_line: integer; var retval: ICefv8Value; var exception: ICefV8Exception): Boolean;
|
|
|
|
|
|
|
|
public
|
|
|
|
class function UnWrap(data: Pointer): ICefv8Context;
|
|
|
|
class function Current: ICefv8Context;
|
|
|
|
class function Entered: ICefv8Context;
|
|
|
|
end;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
|
|
|
uCEFMiscFunctions, uCEFLibFunctions, uCEFBrowser, uCEFFrame, uCEFv8Value, uCEFTaskRunner, uCEFv8Exception;
|
|
|
|
|
|
|
|
class function TCefv8ContextRef.Current: ICefv8Context;
|
|
|
|
begin
|
2018-07-24 18:18:54 +02:00
|
|
|
Result := UnWrap(cef_v8context_get_current_context());
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
function TCefv8ContextRef.Enter: Boolean;
|
|
|
|
begin
|
|
|
|
Result := PCefv8Context(FData)^.enter(PCefv8Context(FData)) <> 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
class function TCefv8ContextRef.Entered: ICefv8Context;
|
|
|
|
begin
|
2018-07-24 18:18:54 +02:00
|
|
|
Result := UnWrap(cef_v8context_get_entered_context());
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
function TCefv8ContextRef.Exit: Boolean;
|
|
|
|
begin
|
|
|
|
Result := PCefv8Context(FData)^.exit(PCefv8Context(FData)) <> 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCefv8ContextRef.GetBrowser: ICefBrowser;
|
|
|
|
begin
|
|
|
|
Result := TCefBrowserRef.UnWrap(PCefv8Context(FData)^.get_browser(PCefv8Context(FData)));
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCefv8ContextRef.GetFrame: ICefFrame;
|
|
|
|
begin
|
|
|
|
Result := TCefFrameRef.UnWrap(PCefv8Context(FData)^.get_frame(PCefv8Context(FData)))
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCefv8ContextRef.GetGlobal: ICefv8Value;
|
|
|
|
begin
|
|
|
|
Result := TCefv8ValueRef.UnWrap(PCefv8Context(FData)^.get_global(PCefv8Context(FData)));
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCefv8ContextRef.GetTaskRunner: ICefTaskRunner;
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
Result := TCefTaskRunnerRef.UnWrap(PCefv8Context(FData)^.get_task_runner(PCefv8Context(FData)));
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
function TCefv8ContextRef.IsSame(const that: ICefv8Context): Boolean;
|
|
|
|
begin
|
|
|
|
Result := PCefv8Context(FData)^.is_same(PCefv8Context(FData), CefGetData(that)) <> 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCefv8ContextRef.IsValid: Boolean;
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
Result := PCefv8Context(FData)^.is_valid(PCefv8Context(FData)) <> 0;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
function TCefv8ContextRef.Eval(const code : ustring;
|
|
|
|
const script_url : ustring;
|
|
|
|
start_line : integer;
|
|
|
|
var retval : ICefv8Value;
|
|
|
|
var exception : ICefV8Exception): Boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
var
|
|
|
|
TempCode, TempScriptURL : TCefString;
|
|
|
|
TempValue : PCefv8Value;
|
|
|
|
TempException : PCefV8Exception;
|
|
|
|
begin
|
|
|
|
TempCode := CefString(code);
|
|
|
|
TempScriptURL := CefString(script_url);
|
|
|
|
TempValue := nil;
|
|
|
|
TempException := nil;
|
|
|
|
|
|
|
|
Result := (PCefv8Context(FData)^.eval(PCefv8Context(FData), @TempCode, @TempScriptURL, start_line, TempValue, TempException) <> 0);
|
|
|
|
|
|
|
|
retval := TCefv8ValueRef.UnWrap(TempValue);
|
|
|
|
exception := TCefV8ExceptionRef.UnWrap(TempException);
|
|
|
|
end;
|
|
|
|
|
|
|
|
class function TCefv8ContextRef.UnWrap(data: Pointer): ICefv8Context;
|
|
|
|
begin
|
|
|
|
if (data <> nil) then
|
|
|
|
Result := Create(data) as ICefv8Context
|
|
|
|
else
|
|
|
|
Result := nil;
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|