CEF4Delphi/source/uCEFStringMap.pas

204 lines
4.5 KiB
ObjectPascal
Raw Permalink Normal View History

2017-01-27 16:37:51 +01:00
unit uCEFStringMap;
{$IFDEF FPC}
{$MODE OBJFPC}{$H+}
{$ENDIF}
2017-02-05 20:56:46 +01:00
{$I cef.inc}
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
{$MINENUMSIZE 4}
2017-01-27 16:37:51 +01:00
interface
uses
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
2017-01-27 16:37:51 +01:00
type
2023-07-30 18:47:35 +02:00
/// <summary>
/// CEF string maps are a set of key/value string pairs.
/// </summary>
2018-03-29 20:02:04 +02:00
TCefCustomStringMap = class(TInterfacedObject, ICefStringMap)
2017-01-27 16:37:51 +01:00
protected
2018-03-29 20:02:04 +02:00
FHandle : TCefStringMap;
function GetHandle: TCefStringMap; virtual;
2023-07-30 18:47:35 +02:00
/// <summary>
/// Return the number of elements in the string map.
/// </summary>
2018-03-29 20:02:04 +02:00
function GetSize: NativeUInt; virtual;
2023-07-30 18:47:35 +02:00
/// <summary>
/// Return the value assigned to the specified key.
/// </summary>
2018-03-29 20:02:04 +02:00
function Find(const key: ustring): ustring; virtual;
2023-07-30 18:47:35 +02:00
/// <summary>
/// Return the key at the specified zero-based string map index.
/// </summary>
2018-03-29 20:02:04 +02:00
function GetKey(index: NativeUInt): ustring; virtual;
2023-07-30 18:47:35 +02:00
/// <summary>
/// Return the value at the specified zero-based string map index.
/// </summary>
2018-03-29 20:02:04 +02:00
function GetValue(index: NativeUInt): ustring; virtual;
2023-07-30 18:47:35 +02:00
/// <summary>
/// Append a new key/value pair at the end of the string map. If the key exists,
/// overwrite the existing value with a new value w/o changing the pair order.
/// </summary>
2018-03-29 20:02:04 +02:00
function Append(const key, value: ustring) : boolean; virtual;
2023-07-30 18:47:35 +02:00
/// <summary>
/// Clear the string map.
/// </summary>
2017-01-27 16:37:51 +01:00
procedure Clear; virtual;
public
constructor Create; virtual;
2018-03-29 20:02:04 +02:00
end;
TCefStringMapOwn = class(TCefCustomStringMap)
public
2023-07-30 18:47:35 +02:00
/// <summary>
/// Allocate a new string map.
/// </summary>
2018-03-29 20:02:04 +02:00
constructor Create; override;
2023-07-30 18:47:35 +02:00
/// <summary>
/// Free the string map.
/// </summary>
2018-03-29 20:02:04 +02:00
destructor Destroy; override;
end;
TCefStringMapRef = class(TCefCustomStringMap)
public
constructor Create(aHandle : TCefStringMap); reintroduce;
2017-01-27 16:37:51 +01:00
end;
implementation
uses
uCEFMiscFunctions, uCEFLibFunctions;
2018-03-29 20:02:04 +02:00
// ****************************************
// ********* TCefCustomStringMap **********
// ****************************************
constructor TCefCustomStringMap.Create;
begin
inherited Create;
FHandle := nil;
end;
function TCefCustomStringMap.Append(const key, value: ustring) : boolean;
2017-01-27 16:37:51 +01:00
var
2018-03-29 20:02:04 +02:00
TempKey, TempValue : TCefString;
2017-01-27 16:37:51 +01:00
begin
2018-03-29 20:02:04 +02:00
if (FHandle <> nil) then
begin
TempKey := CefString(key);
TempValue := CefString(value);
Result := cef_string_map_append(FHandle, @TempKey, @TempValue) <> 0;
end
else
Result := False;
2017-01-27 16:37:51 +01:00
end;
2018-03-29 20:02:04 +02:00
procedure TCefCustomStringMap.Clear;
2017-01-27 16:37:51 +01:00
begin
2018-03-29 20:02:04 +02:00
if (FHandle <> nil) then cef_string_map_clear(FHandle);
2017-01-27 16:37:51 +01:00
end;
2018-03-29 20:02:04 +02:00
function TCefCustomStringMap.Find(const key: ustring): ustring;
var
TempKey, TempValue : TCefString;
2017-01-27 16:37:51 +01:00
begin
2018-03-29 20:02:04 +02:00
Result := '';
if (FHandle <> nil) then
begin
CefStringInitialize(@TempValue);
2018-03-29 20:02:04 +02:00
TempKey := CefString(key);
if (cef_string_map_find(FHandle, @TempKey, @TempValue) <> 0) then
Result := CefStringClearAndGet(@TempValue);
2018-03-29 20:02:04 +02:00
end;
2017-01-27 16:37:51 +01:00
end;
2018-03-29 20:02:04 +02:00
function TCefCustomStringMap.GetHandle: TCefStringMap;
2017-01-27 16:37:51 +01:00
begin
2018-03-29 20:02:04 +02:00
Result := FHandle;
2017-01-27 16:37:51 +01:00
end;
2018-03-29 20:02:04 +02:00
function TCefCustomStringMap.GetKey(index: NativeUInt): ustring;
2017-01-27 16:37:51 +01:00
var
2018-03-29 20:02:04 +02:00
TempKey : TCefString;
2017-01-27 16:37:51 +01:00
begin
2018-03-29 20:02:04 +02:00
Result := '';
if (FHandle <> nil) then
begin
CefStringInitialize(@TempKey);
2018-03-29 20:02:04 +02:00
if (cef_string_map_key(FHandle, index, @TempKey) <> 0) then
Result := CefStringClearAndGet(@TempKey);
2018-03-29 20:02:04 +02:00
end;
2017-01-27 16:37:51 +01:00
end;
2018-03-29 20:02:04 +02:00
function TCefCustomStringMap.GetSize: NativeUInt;
2017-01-27 16:37:51 +01:00
begin
2018-03-29 20:02:04 +02:00
if (FHandle <> nil) then
Result := cef_string_map_size(FHandle)
else
Result := 0;
2017-01-27 16:37:51 +01:00
end;
2018-03-29 20:02:04 +02:00
function TCefCustomStringMap.GetValue(index: NativeUInt): ustring;
2017-01-27 16:37:51 +01:00
var
2018-03-29 20:02:04 +02:00
TempValue : TCefString;
2017-01-27 16:37:51 +01:00
begin
2018-03-29 20:02:04 +02:00
Result := '';
if (FHandle <> nil) then
begin
CefStringInitialize(@TempValue);
2018-03-29 20:02:04 +02:00
if (cef_string_map_value(FHandle, index, @TempValue) <> 0) then
Result := CefStringClearAndGet(@TempValue);
2018-03-29 20:02:04 +02:00
end;
2017-01-27 16:37:51 +01:00
end;
2018-03-29 20:02:04 +02:00
// **************************************
// ********* TCefStringMapOwn ***********
// **************************************
constructor TCefStringMapOwn.Create;
2017-01-27 16:37:51 +01:00
begin
2018-03-29 20:02:04 +02:00
inherited Create;
FHandle := cef_string_map_alloc();
2017-01-27 16:37:51 +01:00
end;
2018-03-29 20:02:04 +02:00
destructor TCefStringMapOwn.Destroy;
2017-01-27 16:37:51 +01:00
begin
2018-03-29 20:02:04 +02:00
if (FHandle <> nil) then cef_string_map_free(FHandle);
inherited Destroy;
end;
// **************************************
// ********* TCefStringMapRef ***********
// **************************************
constructor TCefStringMapRef.Create(aHandle : TCefStringMap);
begin
inherited Create;
FHandle := aHandle;
2017-01-27 16:37:51 +01:00
end;
end.