CEF4Delphi/source/uCEFv8Accessor.pas

144 lines
4.8 KiB
ObjectPascal
Raw Normal View History

2017-01-27 16:37:51 +01:00
// ************************************************************************
// ***************************** CEF4Delphi *******************************
// ************************************************************************
//
// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based
// 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> 2018 Salvador D<>az Fau. All rights reserved.
2017-01-27 16:37:51 +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 uCEFv8Accessor;
{$IFNDEF CPUX64}
{$ALIGN ON}
{$MINENUMSIZE 4}
{$ENDIF}
2017-02-05 20:56:46 +01:00
{$I cef.inc}
2017-01-27 16:37:51 +01:00
interface
uses
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes, uCEFv8Types;
2017-01-27 16:37:51 +01:00
type
TCefV8AccessorOwn = class(TCefBaseRefCountedOwn, ICefV8Accessor)
2017-01-27 16:37:51 +01:00
protected
function Get(const name: ustring; const obj: ICefv8Value; out retval: ICefv8Value; var exception: ustring): Boolean; virtual;
function Put(const name: ustring; const obj, 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;
function Get(const name: ustring; const obj: ICefv8Value; out retval: ICefv8Value; var exception: ustring): Boolean; override;
function Put(const name: ustring; const obj, 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;
function cef_v8_accessor_get(self: PCefV8Accessor; const name: PCefString; obj: PCefv8Value; out retval: PCefv8Value; exception: PCefString): Integer; stdcall;
var
ret : ICefv8Value;
TempExcept : ustring;
2017-01-27 16:37:51 +01:00
begin
TempExcept := CefString(exception);
Result := Ord(TCefV8AccessorOwn(CefGetObject(self)).Get(CefString(name), TCefv8ValueRef.UnWrap(obj), ret, TempExcept));
retval := CefGetData(ret);
exception^ := CefString(TempExcept);
2017-01-27 16:37:51 +01:00
end;
function cef_v8_accessor_put(self: PCefV8Accessor; const name: PCefString; obj: PCefv8Value; value: PCefv8Value; exception: PCefString): Integer; stdcall;
var
TempExcept : ustring;
2017-01-27 16:37:51 +01:00
begin
TempExcept := CefString(exception);
Result := Ord(TCefV8AccessorOwn(CefGetObject(self)).Put(CefString(name), TCefv8ValueRef.UnWrap(obj), TCefv8ValueRef.UnWrap(value), TempExcept));
exception^ := CefString(TempExcept);
2017-01-27 16:37:51 +01:00
end;
// TCefV8AccessorOwn
constructor TCefV8AccessorOwn.Create;
begin
inherited CreateData(SizeOf(TCefV8Accessor));
2017-01-27 16:37:51 +01:00
PCefV8Accessor(FData)^.get := cef_v8_accessor_get;
PCefV8Accessor(FData)^.put := cef_v8_accessor_put;
end;
function TCefV8AccessorOwn.Get(const name: ustring; const obj: ICefv8Value; out retval: ICefv8Value; var exception: ustring): Boolean;
2017-01-27 16:37:51 +01:00
begin
Result := False;
end;
function TCefV8AccessorOwn.Put(const name: ustring; const obj, 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;
function TCefFastV8Accessor.Get(const name: ustring; const obj: ICefv8Value; out retval: ICefv8Value; var exception: ustring): Boolean;
2017-01-27 16:37:51 +01:00
begin
if Assigned(FGetter) then
Result := FGetter(name, obj, retval, exception)
else
2017-01-27 16:37:51 +01:00
Result := False;
end;
function TCefFastV8Accessor.Put(const name: ustring; const obj, value: ICefv8Value; var exception: ustring): Boolean;
2017-01-27 16:37:51 +01:00
begin
if Assigned(FSetter) then
Result := FSetter(name, obj, value, exception)
else
2017-01-27 16:37:51 +01:00
Result := False;
end;
end.