2017-01-27 17:29:37 +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> 2017 Salvador D<>az Fau. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
// ************ 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.
|
|
|
|
|
*
|
|
|
|
|
*)
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
unit uCEFBaseRefCounted;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
|
|
|
|
|
{$IFNDEF CPUX64}
|
|
|
|
|
{$ALIGN ON}
|
|
|
|
|
{$MINENUMSIZE 4}
|
|
|
|
|
{$ENDIF}
|
|
|
|
|
|
2017-02-05 20:56:46 +01:00
|
|
|
|
{$I cef.inc}
|
|
|
|
|
|
2017-01-27 17:29:37 +01:00
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
uCEFInterfaces;
|
|
|
|
|
|
|
|
|
|
type
|
2017-03-16 19:09:42 +01:00
|
|
|
|
TCefBaseRefCountedOwn = class(TInterfacedObject, ICefBaseRefCounted)
|
2017-01-27 17:29:37 +01:00
|
|
|
|
protected
|
|
|
|
|
FData: Pointer;
|
|
|
|
|
|
|
|
|
|
public
|
|
|
|
|
constructor CreateData(size: Cardinal; owned: Boolean = False); virtual;
|
|
|
|
|
destructor Destroy; override;
|
|
|
|
|
function Wrap: Pointer;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
TCefBaseRefCountedRef = class(TInterfacedObject, ICefBaseRefCounted)
|
2017-01-27 17:29:37 +01:00
|
|
|
|
protected
|
|
|
|
|
FData: Pointer;
|
|
|
|
|
|
|
|
|
|
public
|
|
|
|
|
constructor Create(data: Pointer); virtual;
|
|
|
|
|
destructor Destroy; override;
|
|
|
|
|
function Wrap: Pointer;
|
2017-03-16 19:09:42 +01:00
|
|
|
|
class function UnWrap(data: Pointer): ICefBaseRefCounted;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
|
|
|
|
|
|
2017-01-27 17:29:37 +01:00
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
uCEFTypes, uCEFMiscFunctions;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
procedure cef_base_add_ref(self: PCefBaseRefCounted); stdcall;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
2017-03-16 19:09:42 +01:00
|
|
|
|
TCefBaseRefCountedOwn(CefGetObject(self))._AddRef;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
function cef_base_release(self: PCefBaseRefCounted): Integer; stdcall;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
2017-03-16 19:09:42 +01:00
|
|
|
|
Result := TCefBaseRefCountedOwn(CefGetObject(self))._Release;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
function cef_base_has_one_ref(self: PCefBaseRefCounted): Integer; stdcall;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
2017-03-16 19:09:42 +01:00
|
|
|
|
Result := Ord(TCefBaseRefCountedOwn(CefGetObject(self)).FRefCount = 1);
|
2017-01-27 17:29:37 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
procedure cef_base_add_ref_owned(self: PCefBaseRefCounted); stdcall;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
|
|
|
|
//
|
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
function cef_base_release_owned(self: PCefBaseRefCounted): Integer; stdcall;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
|
|
|
|
Result := 1;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
function cef_base_has_one_ref_owned(self: PCefBaseRefCounted): Integer; stdcall;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
|
|
|
|
Result := 1;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
constructor TCefBaseRefCountedOwn.CreateData(size: Cardinal; owned: Boolean);
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
|
|
|
|
GetMem(FData, size + SizeOf(Pointer));
|
|
|
|
|
PPointer(FData)^ := Self;
|
|
|
|
|
Inc(PByte(FData), SizeOf(Pointer));
|
|
|
|
|
FillChar(FData^, size, 0);
|
2017-03-16 19:09:42 +01:00
|
|
|
|
PCefBaseRefCounted(FData)^.size := size;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
|
|
|
|
|
if owned then
|
|
|
|
|
begin
|
2017-09-08 17:44:32 +02:00
|
|
|
|
PCefBaseRefCounted(FData)^.add_ref := cef_base_add_ref_owned;
|
|
|
|
|
PCefBaseRefCounted(FData)^.release := cef_base_release_owned;
|
2017-03-16 19:09:42 +01:00
|
|
|
|
PCefBaseRefCounted(FData)^.has_one_ref := cef_base_has_one_ref_owned;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
begin
|
2017-09-08 17:44:32 +02:00
|
|
|
|
PCefBaseRefCounted(FData)^.add_ref := cef_base_add_ref;
|
|
|
|
|
PCefBaseRefCounted(FData)^.release := cef_base_release;
|
2017-03-16 19:09:42 +01:00
|
|
|
|
PCefBaseRefCounted(FData)^.has_one_ref := cef_base_has_one_ref;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
destructor TCefBaseRefCountedOwn.Destroy;
|
2017-09-08 17:44:32 +02:00
|
|
|
|
var
|
|
|
|
|
TempPointer : pointer;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
2017-09-08 17:44:32 +02:00
|
|
|
|
TempPointer := FData;
|
|
|
|
|
FData := nil;
|
|
|
|
|
|
|
|
|
|
Dec(PByte(TempPointer), SizeOf(Pointer));
|
|
|
|
|
FreeMem(TempPointer);
|
2017-03-16 19:09:42 +01:00
|
|
|
|
|
|
|
|
|
inherited Destroy;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
function TCefBaseRefCountedOwn.Wrap: Pointer;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
|
|
|
|
Result := FData;
|
2017-03-16 19:09:42 +01:00
|
|
|
|
|
|
|
|
|
if (FData <> nil) and Assigned(PCefBaseRefCounted(FData)^.add_ref) then
|
|
|
|
|
PCefBaseRefCounted(FData)^.add_ref(PCefBaseRefCounted(FData));
|
2017-01-27 17:29:37 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
// TCefBaseRefCountedRef
|
2017-01-27 17:29:37 +01:00
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
constructor TCefBaseRefCountedRef.Create(data: Pointer);
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
|
|
|
|
Assert(data <> nil);
|
|
|
|
|
FData := data;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
destructor TCefBaseRefCountedRef.Destroy;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
2017-10-02 11:36:22 +02:00
|
|
|
|
if (FData <> nil) then
|
|
|
|
|
begin
|
|
|
|
|
if assigned(PCefBaseRefCounted(FData)^.release) then
|
|
|
|
|
PCefBaseRefCounted(FData)^.release(PCefBaseRefCounted(FData));
|
|
|
|
|
|
|
|
|
|
FData := nil;
|
|
|
|
|
end;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
class function TCefBaseRefCountedRef.UnWrap(data: Pointer): ICefBaseRefCounted;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
2017-03-16 19:09:42 +01:00
|
|
|
|
if (data <> nil) then
|
|
|
|
|
Result := Create(data) as ICefBaseRefCounted
|
|
|
|
|
else
|
2017-01-27 17:29:37 +01:00
|
|
|
|
Result := nil;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
function TCefBaseRefCountedRef.Wrap: Pointer;
|
2017-01-27 17:29:37 +01:00
|
|
|
|
begin
|
|
|
|
|
Result := FData;
|
2017-03-16 19:09:42 +01:00
|
|
|
|
|
|
|
|
|
if (FData <> nil) and Assigned(PCefBaseRefCounted(FData)^.add_ref) then
|
|
|
|
|
PCefBaseRefCounted(FData)^.add_ref(PCefBaseRefCounted(FData));
|
2017-01-27 17:29:37 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
end.
|