CEF4Delphi/source/uCEFResponseFilter.pas

153 lines
5.3 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 uCEFResponseFilter;
{$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;
2017-01-27 16:37:51 +01:00
type
TOnFilterEvent = procedure(Sender: TObject; data_in: Pointer; data_in_size: NativeUInt; var data_in_read: NativeUInt; data_out: Pointer; data_out_size : NativeUInt; var data_out_written: NativeUInt; var aResult : TCefResponseFilterStatus) of object;
TOnInitFilterEvent = procedure(Sender: TObject; var aResult : boolean) of object;
TCefResponseFilterOwn = class(TCefBaseRefCountedOwn, ICefResponseFilter)
protected
function InitFilter: Boolean; virtual; abstract;
function Filter(data_in: Pointer; data_in_size: NativeUInt; var data_in_read: NativeUInt; data_out: Pointer; data_out_size : NativeUInt; var data_out_written: NativeUInt): TCefResponseFilterStatus; virtual; abstract;
public
constructor Create; virtual;
end;
TCustomResponseFilter = class(TCefResponseFilterOwn)
protected
FOnFilter : TOnFilterEvent;
FOnInitFilter : TOnInitFilterEvent;
function InitFilter: Boolean; override;
function Filter(data_in: Pointer; data_in_size: NativeUInt; var data_in_read: NativeUInt; data_out: Pointer; data_out_size : NativeUInt; var data_out_written: NativeUInt): TCefResponseFilterStatus; override;
public
constructor Create; override;
property OnFilter : TOnFilterEvent read FOnFilter write FOnFilter;
property OnInitFilter : TOnInitFilterEvent read FOnInitFilter write FOnInitFilter;
2017-01-27 16:37:51 +01:00
end;
implementation
uses
uCEFMiscFunctions, uCEFLibFunctions;
// TCefResponseFilterOwn
2017-01-27 16:37:51 +01:00
function cef_response_filter_init_filter(self: PCefResponseFilter): Integer; stdcall;
begin
with TCefResponseFilterOwn(CefGetObject(self)) do Result := Ord(InitFilter());
2017-01-27 16:37:51 +01:00
end;
function cef_response_filter_filter(self: PCefResponseFilter;
data_in: Pointer;
data_in_size : NativeUInt;
var data_in_read: NativeUInt;
data_out: Pointer;
data_out_size: NativeUInt;
var data_out_written: NativeUInt): TCefResponseFilterStatus; stdcall;
2017-01-27 16:37:51 +01:00
begin
with TCefResponseFilterOwn(CefGetObject(self)) do
Result := Filter(data_in, data_in_size, data_in_read,
data_out, data_out_size, data_out_written);
2017-01-27 16:37:51 +01:00
end;
constructor TCefResponseFilterOwn.Create;
begin
2017-11-25 19:04:15 +01:00
CreateData(SizeOf(TCefResponseFilter));
2017-01-27 16:37:51 +01:00
with PCefResponseFilter(FData)^ do
begin
init_filter := cef_response_filter_init_filter;
filter := cef_response_filter_filter;
end;
2017-01-27 16:37:51 +01:00
end;
// TCustomResponseFilter
constructor TCustomResponseFilter.Create;
begin
inherited Create;
FOnFilter := nil;
FOnInitFilter := nil;
end;
function TCustomResponseFilter.InitFilter: Boolean;
begin
Result := True;
if assigned(FOnInitFilter) then FOnInitFilter(self, Result);
end;
function TCustomResponseFilter.Filter( data_in : Pointer;
data_in_size : NativeUInt;
var data_in_read : NativeUInt;
data_out : Pointer;
data_out_size : NativeUInt;
var data_out_written : NativeUInt) : TCefResponseFilterStatus;
begin
Result := RESPONSE_FILTER_DONE;
if assigned(FOnFilter) then
FOnFilter(self,
data_in, data_in_size, data_in_read,
data_out, data_out_size, data_out_written,
Result);
end;
2017-01-27 16:37:51 +01:00
end.