1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
|
unit BaseContentProvider;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
// LCL
Controls,
// LazUtils
Laz2_XMLCfg, LazLoggerBase;
type
{ TBaseContentProvider }
TBaseContentProviderClass = Class of TBaseContentProvider;
TBaseContentProvider = class(TObject)
private
FOnTitleChange: TNotifyEvent;
FOnContentComplete: TNotifyEvent;
FParent: TWinControl;
FTitle: String;
FConfig: TXMLConfig;
FUpdateCount: Integer;
protected
fImageList: TImageList;
function GetTitle: String; virtual;
procedure SetTitle(const AValue: String); virtual;
function isUpdate: Boolean;
function isUpdateLast: Boolean;
public
function CanGoBack: Boolean; virtual; abstract;
function CanGoForward: Boolean; virtual; abstract;
function GetHistory: TStrings; virtual; abstract;
function LoadURL(const AURL: String; const AContext: THelpContext=-1): Boolean; virtual; abstract;
function HasLoadedData(const {%H-}AURL: String): Boolean; virtual;
procedure GoHome; virtual; abstract;
procedure GoBack; virtual; abstract;
procedure GoForward; virtual; abstract;
procedure ActivateProvider; virtual;
procedure ActivateTOCControl; virtual; abstract;
procedure ActivateIndexControl; virtual; abstract;
procedure ActivateSearchControl; virtual; abstract;
procedure BeginUpdate; virtual;
procedure EndUpdate; virtual;
procedure LoadPreferences(ACfg: TXMLConfig); virtual;
procedure SavePreferences({%H-}ACfg: TXMLConfig); virtual;
class function GetProperContentProvider(const AURL: String): TBaseContentProviderClass; virtual; abstract;
constructor Create(AParent: TWinControl; AImageList: TImageList; AUpdateCount: Integer); virtual;
destructor Destroy; override;
property Parent: TWinControl read fParent;
property Title: String read GetTitle write SetTitle;
property OnTitleChange: TNotifyEvent read FOnTitleChange write FOnTitleChange;
property OnContentComplete: TNotifyEvent read FOnContentComplete write FOnContentComplete;
end;
function GetUriPrefix( const AUri: String ):String;
function GetUrlFilePath ( const AUri: String ) : String;
function GetURIURL( const AURI: String): String;
function GetURIFileName( const AURI: String): String;
function GetUrlFile( const AUrl:String): String;
function GetUrlWoContext( const AUrl:String): String;
// returns false if the protocol has already been registered
function RegisterContentProviderClass(const Protocol: String; ContentProvider: TBaseContentProviderClass): Boolean;
// example: RegisterContentProvider('file://', TChmContentProvider);
function GetContentProvider(const Protocol: String): TBaseContentProviderClass;
function GetContentProviderList: TStringList;
implementation
var
ContentProviders: TStringList;
function GetUriPrefix ( const AUri: String ) : String;
var
xPos: Integer;
begin
Assert(AUri = Trim(AUri), 'GetUriPrefix: AUri should be trimmed.');
Result := AUri;
xPos := Pos('://', AUri);
if xPos > 0 Then
SetLength(Result, xPos+2); // Include '://' in result.
end;
function GetUriPrefixLen ( const AUri: String ) : integer;
var
xPos: Integer;
begin
xPos := Pos('://', AUri);
if xPos > 0 Then
Result := xPos+2
else
Result := Length(AUri);
end;
function GetUrlFilePath ( const AUri: String ) : String;
var
xPos: Integer;
begin
Result := Copy(AUri, GetUriPrefixLen(AUri)+1, Length(AUri));
xPos := Pos('://', Result);
if xPos > 0 then
Result := Copy(Result, 1, xPos-1);
xPos := Pos('?', Result);
if xPos > 0 then
SetLength(Result, xPos-1); // Leave parameters out.
end;
function GetURIFileName(Const AURI: String): String;
var
FileStart,
FileEnd: Integer;
begin
FileStart := Pos(':', AURI)+1;
FileEnd := Pos('::', AURI);
Result := Copy(AURI, FileStart, FileEnd-FileStart);
end;
function GetUrlFile(const AUrl: String): String;
var
xPos: Integer;
begin
Result := Copy(AUrl, GetUriPrefixLen(AUrl), Length(AUrl));
xPos := Pos('://', Result);
if xPos > 0 then
Result := Copy(Result, xPos+3, Length(Result))
else
Result:= '';
end;
function GetUrlWoContext(const AUrl: String): String;
var
xPos: Integer;
begin
Result := AUrl;
xPos := Pos('?', Result);
if xPos > 0 then
SetLength(Result, xPos-1);
xPos := Pos('#', Result);
if xPos > 0 then
SetLength(Result, xPos-1);
end;
function GetURIURL(Const AURI: String): String;
var
URLStart: Integer;
begin
URLStart := Pos('::', AURI) + 2;
Result := Copy(AURI, URLStart, Length(AURI));
end;
function RegisterContentProviderClass(const Protocol: String;
ContentProvider: TBaseContentProviderClass): Boolean;
begin
Result := False;
if GetContentProviderList.IndexOf(Protocol) > -1 then exit;
GetContentProviderList.AddObject(Protocol, TObject(ContentProvider));
Result := true;
end;
function GetContentProvider(const Protocol: String): TBaseContentProviderClass;
var
Ind: Integer;
begin
Result := nil;
Ind := GetContentProviderList.IndexOf(Protocol);
if Ind = -1 then Exit;
Result := TBaseContentProviderClass(GetContentProviderList.Objects[Ind]);
end;
function GetContentProviderList: TStringList;
begin
if ContentProviders = nil then // Singleton
ContentProviders := TStringList.Create;
Result := ContentProviders;
end;
{ TBaseContentProvider }
function TBaseContentProvider.GetTitle: String;
begin
Result := FTitle;
end;
procedure TBaseContentProvider.SetTitle(const AValue: String);
begin
FTitle := AValue;
if Assigned(FOnTitleChange) then
FOnTitleChange(Self);
end;
function TBaseContentProvider.isUpdate: Boolean;
begin
Result := FUpdateCount <> 0;
end;
function TBaseContentProvider.isUpdateLast: Boolean;
begin
Result := FUpdateCount <= 1;
end;
function TBaseContentProvider.HasLoadedData ( const AURL: String ) : Boolean;
begin
Result:= false;
end;
procedure TBaseContentProvider.ActivateProvider;
begin
//
end;
procedure TBaseContentProvider.BeginUpdate;
begin
Inc(FUpdateCount);
{$IFDEF UPDATE_CNT}
DebugLn('BeginUpdate() Cnt: ', IntToStr(FUpdateCount));
{$ENDIF}
end;
procedure TBaseContentProvider.EndUpdate;
begin
Dec(FUpdateCount);
if FUpdateCount < 0 then
FUpdateCount:=0;
{$IFDEF UPDATE_CNT}
DebugLn('EndUpdate() Cnt: ', IntToStr(FUpdateCount));
{$ENDIF}
end;
procedure TBaseContentProvider.LoadPreferences(ACfg: TXMLConfig);
begin
FConfig := ACfg;
end;
procedure TBaseContentProvider.SavePreferences(ACfg: TXMLConfig);
begin
end;
constructor TBaseContentProvider.Create(AParent: TWinControl;
AImageList: TImageList; AUpdateCount: Integer);
begin
FParent:= AParent;
FImageList:= AImageList;
FUpdateCount:= AUpdateCount;
end;
destructor TBaseContentProvider.Destroy;
begin
SavePreferences(FConfig);
inherited Destroy;
end;
initialization
finalization
ContentProviders.Free;
end.
|