Files
HeidiSQL/components/synedit/Source/SynEditSearch.pas
Ansgar Becker e7874bc4b7 Update UniSynEdit to latest version from October 3, 2008 (no repository available unfortunately)
* Merge with heidi related changes (basically only SingleLineMode)
* Readd missing file changelog.htm to keep that file list consistent with the downloaded one
* Merge our own compiler detection again
* Disable including a further compiler includefile jedi.inc
2008-10-18 13:09:16 +00:00

316 lines
8.5 KiB
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{-------------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
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.
The Original Code is: SynEditSearch.pas, released 2000-04-07.
The Original Code is based on the mwEditSearch.pas file from the mwEdit
component suite by Martin Waldenburg and other developers.
Portions created by Martin Waldenburg are Copyright 1999 Martin Waldenburg.
Unicode translation by Maël Hörz.
All Rights Reserved.
Contributors to the SynEdit project are listed in the Contributors.txt file.
Alternatively, the contents of this file may be used under the terms of the
GNU General Public License Version 2 or later (the "GPL"), in which case
the provisions of the GPL are applicable instead of those above.
If you wish to allow use of your version of this file only under the terms
of the GPL and not to allow others to use your version of this file
under the MPL, indicate your decision by deleting the provisions above and
replace them with the notice and other provisions required by the GPL.
If you do not delete the provisions above, a recipient may use your version
of this file under either the MPL or the GPL.
$Id: SynEditSearch.pas,v 1.12.2.4 2008/09/14 16:24:59 maelh Exp $
You may retrieve the latest version of this file at the SynEdit home page,
located at http://SynEdit.SourceForge.net
Known Issues:
-------------------------------------------------------------------------------}
{$IFNDEF QSYNEDITSEARCH}
unit SynEditSearch;
{$ENDIF}
{$I SynEdit.inc}
interface
uses
{$IFDEF SYN_CLX}
QSynEditTypes,
QSynEditMiscClasses,
QSynUnicode,
{$ELSE}
SynEditTypes,
SynEditMiscClasses,
SynUnicode,
{$ENDIF}
Classes;
type
TSynEditSearch = class(TSynEditSearchCustom)
private
Run: PWideChar;
Origin: PWideChar;
TheEnd: PWideChar;
Pat, CasedPat: UnicodeString;
fCount: Integer;
fTextLen: Integer;
Look_At: Integer;
PatLen, PatLenSucc: Integer;
Shift: array[WideChar] of Integer;
fCaseSensitive: Boolean;
fWhole: Boolean;
fResults: TList;
fShiftInitialized: Boolean;
function GetFinished: Boolean;
procedure InitShiftTable;
procedure SetCaseSensitive(const Value: Boolean);
protected
function TestWholeWord: Boolean;
procedure SetPattern(const Value: UnicodeString); override;
function GetPattern: UnicodeString; override;
function GetLength(Index: Integer): Integer; override;
function GetResult(Index: Integer): Integer; override;
function GetResultCount: Integer; override;
procedure SetOptions(const Value: TSynSearchOptions); override;
public
constructor Create(aOwner: TComponent); override;
destructor Destroy; override;
function FindAll(const NewText: UnicodeString): Integer; override;
function Replace(const aOccurrence, aReplacement: UnicodeString): UnicodeString; override;
function FindFirst(const NewText: UnicodeString): Integer;
procedure FixResults(First, Delta: Integer);
function Next: Integer;
property Count: Integer read fCount write fCount;
property Finished: Boolean read GetFinished;
property Pattern read CasedPat;
property CaseSensitive: Boolean read fCaseSensitive write SetCaseSensitive;
property Whole: Boolean read fWhole write fWhole;
end;
implementation
uses
{$IFDEF SYN_CLX}
Types,
{$ELSE}
Windows,
{$ENDIF}
SysUtils;
constructor TSynEditSearch.Create(aOwner: TComponent);
begin
inherited;
fResults := TList.Create;
end;
function TSynEditSearch.GetFinished: Boolean;
begin
Result := (Run >= TheEnd) or (PatLen >= fTextLen);
end;
function TSynEditSearch.GetResult(Index: Integer): Integer;
begin
Result := 0;
if (Index >= 0) and (Index < fResults.Count) then
Result := Integer(fResults[Index]);
end;
function TSynEditSearch.GetResultCount: Integer;
begin
Result := fResults.Count;
end;
procedure TSynEditSearch.FixResults(First, Delta: Integer);
var
i: Integer;
begin
if (Delta <> 0) and (fResults.Count > 0) then begin
i := Pred(fResults.Count);
while i >= 0 do begin
if Integer(fResults[i]) <= First then break;
fResults[i] := pointer(Integer(fResults[i]) - Delta);
Dec(i);
end;
end;
end;
procedure TSynEditSearch.InitShiftTable;
var
C: WideChar;
I: Integer;
begin
PatLen := Length(Pat);
if Patlen = 0 then raise Exception.Create('Pattern is empty');
PatLenSucc := PatLen + 1;
Look_At := 1;
for C := Low(WideChar) to High(WideChar) do Shift[C] := PatLenSucc;
for I := 1 to PatLen do Shift[Pat[I]] := PatLenSucc - I;
while Look_at < PatLen do
begin
if Pat[PatLen] = Pat[PatLen - Look_at] then exit;
inc(Look_at);
end;
fShiftInitialized := True;
end;
// TODO: would be more intelligent to use IsWordBreakChar for SynEdit
function IsWordBreakChar(C: WideChar): Boolean;
begin
case C of
#0..#32, '.', ',', ';', ':', '"', '''', '´', '`', '°', '^', '!', '?', '&',
'$', '@', '§', '%', '#', '~', '[', ']', '(', ')', '{', '}', '<', '>',
'-', '=', '+', '*', '/', '\', '|':
Result := True;
else
Result := False;
end;
end;
function TSynEditSearch.TestWholeWord: Boolean;
var
Test: PWideChar;
begin
Test := Run - PatLen;
Result := ((Test < Origin) or IsWordBreakChar(Test[0])) and
((Run >= TheEnd) or IsWordBreakChar(Run[1]));
end;
function TSynEditSearch.Next: Integer;
var
I: Integer;
J: PWideChar;
begin
Result := 0;
inc(Run, PatLen);
while Run < TheEnd do
begin
if Pat[Patlen] <> Run^ then
inc(Run, Shift[(Run + 1)^])
else
begin
J := Run - PatLen + 1;
I := 1;
while Pat[I] = J^ do
begin
if I = PatLen then
begin
case fWhole of
True: if not TestWholeWord then break;
end;
inc(fCount);
Result := Run - Origin - Patlen + 2;
exit;
end;
inc(I);
inc(J);
end;
Inc(Run, Look_At);
if Run >= TheEnd then
break;
Inc(Run, Shift[Run^] - 1);
end;
end;
end;
destructor TSynEditSearch.Destroy;
begin
fResults.Free;
inherited Destroy;
end;
procedure TSynEditSearch.SetPattern(const Value: UnicodeString);
begin
if Pat <> Value then
begin
CasedPat := Value;
if CaseSensitive then
Pat := CasedPat
else
Pat := SynWideLowerCase(CasedPat);
fShiftInitialized := False;
end;
fCount := 0;
end;
procedure TSynEditSearch.SetCaseSensitive(const Value: Boolean);
begin
if fCaseSensitive <> Value then
begin
fCaseSensitive := Value;
if fCaseSensitive then
Pat := CasedPat
else
Pat := SynWideLowerCase(CasedPat);
fShiftInitialized := True;
end;
end;
function TSynEditSearch.FindAll(const NewText: UnicodeString): Integer;
var
Found: Integer;
begin
// never shrink Capacity
fResults.Count := 0;
Found := FindFirst(NewText);
while Found > 0 do
begin
fResults.Add(Pointer(Found));
Found := Next;
end;
Result := fResults.Count;
end;
function TSynEditSearch.Replace(const aOccurrence, aReplacement: UnicodeString): UnicodeString;
begin
Result := aReplacement;
end;
function TSynEditSearch.FindFirst(const NewText: UnicodeString): Integer;
begin
if not fShiftInitialized then
InitShiftTable;
Result := 0;
fTextLen := Length(NewText);
if fTextLen >= PatLen then
begin
if CaseSensitive then
Origin := PWideChar(NewText)
else
Origin := PWideChar(SynWideLowerCase(NewText));
TheEnd := Origin + fTextLen;
Run := (Origin - 1);
Result := Next;
end;
end;
function TSynEditSearch.GetLength(Index: Integer): Integer;
begin
Result := PatLen;
end;
function TSynEditSearch.GetPattern: UnicodeString;
begin
Result := CasedPat;
end;
procedure TSynEditSearch.SetOptions(const Value: TSynSearchOptions);
begin
CaseSensitive := ssoMatchCase in Value;
Whole := ssoWholeWord in Value;
end;
end.