2017-01-27 17:37:51 +02:00
|
|
|
unit uCEFv8StackTrace;
|
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
{$IFDEF FPC}
|
|
|
|
{$MODE OBJFPC}{$H+}
|
|
|
|
{$ENDIF}
|
|
|
|
|
2017-02-05 21:56:46 +02:00
|
|
|
{$I cef.inc}
|
|
|
|
|
2022-02-19 19:56:41 +02:00
|
|
|
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
|
|
|
|
{$MINENUMSIZE 4}
|
|
|
|
|
2017-01-27 17:37:51 +02:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2017-03-16 20:09:42 +02:00
|
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
|
2017-01-27 17:37:51 +02:00
|
|
|
|
|
|
|
type
|
2017-03-16 20:09:42 +02:00
|
|
|
TCefV8StackTraceRef = class(TCefBaseRefCountedRef, ICefV8StackTrace)
|
2017-01-27 17:37:51 +02:00
|
|
|
protected
|
|
|
|
function IsValid: Boolean;
|
|
|
|
function GetFrameCount: Integer;
|
|
|
|
function GetFrame(index: Integer): ICefV8StackFrame;
|
|
|
|
public
|
|
|
|
class function UnWrap(data: Pointer): ICefV8StackTrace;
|
|
|
|
class function Current(frameLimit: Integer): ICefV8StackTrace;
|
|
|
|
end;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
|
|
|
uCEFMiscFunctions, uCEFLibFunctions, uCEFv8StackFrame;
|
|
|
|
|
|
|
|
class function TCefV8StackTraceRef.Current(frameLimit: Integer): ICefV8StackTrace;
|
|
|
|
begin
|
|
|
|
Result := UnWrap(cef_v8stack_trace_get_current(frameLimit));
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCefV8StackTraceRef.GetFrame(index: Integer): ICefV8StackFrame;
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
Result := TCefV8StackFrameRef.UnWrap(PCefV8StackTrace(FData)^.get_frame(PCefV8StackTrace(FData), index));
|
2017-01-27 17:37:51 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
function TCefV8StackTraceRef.GetFrameCount: Integer;
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
Result := PCefV8StackTrace(FData)^.get_frame_count(PCefV8StackTrace(FData));
|
2017-01-27 17:37:51 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
function TCefV8StackTraceRef.IsValid: Boolean;
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
Result := PCefV8StackTrace(FData)^.is_valid(PCefV8StackTrace(FData)) <> 0;
|
2017-01-27 17:37:51 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
class function TCefV8StackTraceRef.UnWrap(data: Pointer): ICefV8StackTrace;
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
if (data <> nil) then
|
|
|
|
Result := Create(data) as ICefV8StackTrace
|
|
|
|
else
|
2017-01-27 17:37:51 +02:00
|
|
|
Result := nil;
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|