mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-02 01:03:46 +02:00
495 lines
14 KiB
ObjectPascal
495 lines
14 KiB
ObjectPascal
{
|
|
***************************************************************************
|
|
* *
|
|
* This source is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* This code is distributed in the hope that it will be useful, but *
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
|
* General Public License for more details. *
|
|
* *
|
|
* A copy of the GNU General Public License is available on the World *
|
|
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
|
|
* obtain it by writing to the Free Software Foundation, *
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
* *
|
|
***************************************************************************
|
|
|
|
Author: Mattias Gaertner
|
|
|
|
Abstract:
|
|
An Atom is the smallest unit for a parser. Usually a word or a symbol.
|
|
An Atom is defined by the Start- and Endposition in the code (TAtomPosition)
|
|
|
|
An TAtomRing is a ring of TAtomPosition
|
|
|
|
}
|
|
unit CodeAtom;
|
|
|
|
{$ifdef FPC}{$mode objfpc}{$endif}{$inline on}{$H+}
|
|
|
|
interface
|
|
|
|
{$I codetools.inc}
|
|
|
|
uses
|
|
{$IFDEF MEM_CHECK}
|
|
MemCheck,
|
|
{$ENDIF}
|
|
Classes, SysUtils, FileProcs, AVL_Tree, CodeCache, KeywordFuncLists;
|
|
|
|
type
|
|
TCodePosition = record
|
|
P: integer;
|
|
Code: TCodeBuffer;
|
|
end;
|
|
PCodePosition = ^TCodePosition;
|
|
|
|
TCodeXYPosition = record
|
|
X, Y: integer;
|
|
Code: TCodeBuffer;
|
|
end;
|
|
PCodeXYPosition = ^TCodeXYPosition;
|
|
|
|
TCommonAtomFlag = (
|
|
cafNone, // = none of the below
|
|
cafSemicolon, cafEqual, cafColon, cafComma, cafPoint,
|
|
cafRoundBracketOpen, cafRoundBracketClose,
|
|
cafEdgedBracketOpen, cafEdgedBracketClose,
|
|
cafWord, cafEnd, cafRecord, cafBegin
|
|
);
|
|
|
|
const
|
|
CleanCodeXYPosition: TCodeXYPosition = (X:0; Y:0; Code:nil);
|
|
AllCommonAtomWords = [cafWord, cafEnd, cafRecord, cafBegin];
|
|
CommonAtomFlagNames: array[TCommonAtomFlag] of shortstring = (
|
|
'None',
|
|
'Semicolon', 'Equal', 'Colon', 'Comma', 'Point',
|
|
'RoundBracketOpen', 'RoundBracketClose',
|
|
'EdgedBracketOpen', 'EdgedBracketClose',
|
|
'Word', 'End', 'Record', 'Begin'
|
|
);
|
|
|
|
type
|
|
TAtomPosition = record
|
|
StartPos: integer; // first char of Atom
|
|
EndPos: integer; // char behind Atom
|
|
Flag: TCommonAtomFlag;
|
|
end;
|
|
PAtomPosition = ^TAtomPosition;
|
|
|
|
const
|
|
StartAtomPosition: TAtomPosition = (StartPos:1; EndPos:1; Flag:cafNone);
|
|
CleanAtomPosition: TAtomPosition = (StartPos:0; EndPos:0; Flag:cafNone);
|
|
|
|
type
|
|
|
|
{ TAtomRing }
|
|
|
|
TAtomRing = class
|
|
private
|
|
FSize: integer;
|
|
FItems: {$ifdef FPC}^{$else}array of {$endif}TAtomPosition;
|
|
// ring of TAtomPosition
|
|
FStart, FLast: integer;
|
|
procedure SetSize(NewSize: integer);
|
|
public
|
|
procedure Add(NewAtom: TAtomPosition); inline;
|
|
procedure UndoLastAdd; inline;
|
|
function GetValueAt(RelativePos:integer): TAtomPosition; inline;
|
|
// 0=current 1=prior current ...
|
|
// for LastAtoms: 0 is the last atom
|
|
function Count: integer; inline;
|
|
property Size: integer read FSize write SetSize;
|
|
procedure Clear;
|
|
procedure WriteDebugReport;
|
|
constructor Create;
|
|
destructor Destroy; override;
|
|
function CalcMemSize: PtrUInt;
|
|
end;
|
|
|
|
TAtomList = class
|
|
private
|
|
FCapacity: integer;
|
|
FCount: integer;
|
|
FItems: {$ifdef FPC}^{$else}array of {$endif}TAtomPosition;
|
|
function GetItems(Index: integer): TAtomPosition;
|
|
procedure SetCapacity(const AValue: integer);
|
|
procedure SetItems(Index: integer; const AValue: TAtomPosition);
|
|
procedure Grow;
|
|
public
|
|
procedure Add(NewAtom: TAtomPosition);
|
|
procedure Clear;
|
|
constructor Create;
|
|
destructor Destroy; override;
|
|
property Capacity: integer read FCapacity write SetCapacity;
|
|
property Count: integer read FCount;
|
|
property Items[Index: integer]: TAtomPosition read GetItems write SetItems; default;
|
|
end;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// useful functions
|
|
function AtomPosition(StartPos, EndPos: integer): TAtomPosition;
|
|
function CodePosition(P: integer; Code: TCodeBuffer): TCodePosition;
|
|
function CodeXYPosition(X, Y: integer; Code: TCodeBuffer): TCodeXYPosition;
|
|
function CompareCodeXYPositions(Pos1, Pos2: PCodeXYPosition): integer;
|
|
function CompareCodePositions(Pos1, Pos2: PCodePosition): integer;
|
|
|
|
procedure AddCodePosition(var ListOfPCodeXYPosition: TFPList;
|
|
const NewCodePos: TCodeXYPosition);
|
|
function IndexOfCodePosition(var ListOfPCodeXYPosition: TFPList;
|
|
const APosition: PCodeXYPosition): integer;
|
|
procedure FreeListOfPCodeXYPosition(ListOfPCodeXYPosition: TFPList);
|
|
|
|
function CreateTreeOfPCodeXYPosition: TAVLTree;
|
|
procedure AddCodePosition(var TreeOfPCodeXYPosition: TAVLTree;
|
|
const NewCodePos: TCodeXYPosition);
|
|
procedure FreeTreeOfPCodeXYPosition(TreeOfPCodeXYPosition: TAVLTree);
|
|
procedure AddListToTreeOfPCodeXYPosition(SrcList: TFPList;
|
|
DestTree: TAVLTree; ClearList, CreateCopies: boolean);
|
|
|
|
function DbgsCXY(const p: TCodeXYPosition): string;
|
|
function DbgsCP(const p: TCodePosition): string;
|
|
function dbgs(const a: TAtomPosition): string; overload;
|
|
function ListOfPCodeXYPositionToStr(const ListOfPCodeXYPosition: TFPList): string;
|
|
|
|
|
|
implementation
|
|
|
|
|
|
{ useful functions }
|
|
|
|
function AtomPosition(StartPos, EndPos: integer): TAtomPosition;
|
|
begin
|
|
Result.StartPos:=StartPos;
|
|
Result.EndPos:=EndPos;
|
|
Result.Flag:=cafNone;
|
|
end;
|
|
|
|
function CodePosition(P: integer; Code: TCodeBuffer): TCodePosition;
|
|
begin
|
|
Result.P:=P;
|
|
Result.Code:=Code;
|
|
end;
|
|
|
|
function CodeXYPosition(X, Y: integer; Code: TCodeBuffer): TCodeXYPosition;
|
|
begin
|
|
Result.X:=X;
|
|
Result.Y:=Y;
|
|
Result.Code:=Code;
|
|
end;
|
|
|
|
function CompareCodeXYPositions(Pos1, Pos2: PCodeXYPosition): integer;
|
|
begin
|
|
if Pointer(Pos1^.Code)>Pointer(Pos2^.Code) then Result:=1
|
|
else if Pointer(Pos1^.Code)<Pointer(Pos2^.Code) then Result:=-1
|
|
else if Pos1^.Y<Pos2^.Y then Result:=1
|
|
else if Pos1^.Y>Pos2^.Y then Result:=-1
|
|
else if Pos1^.X<Pos2^.X then Result:=1
|
|
else if Pos1^.Y<Pos2^.Y then Result:=-1
|
|
else Result:=0;
|
|
end;
|
|
|
|
function CompareCodePositions(Pos1, Pos2: PCodePosition): integer;
|
|
begin
|
|
if Pointer(Pos1^.Code)>Pointer(Pos2^.Code) then Result:=1
|
|
else if Pointer(Pos1^.Code)<Pointer(Pos2^.Code) then Result:=-1
|
|
else if Pos1^.P<Pos2^.P then Result:=1
|
|
else if Pos1^.P>Pos2^.P then Result:=-1
|
|
else Result:=0;
|
|
end;
|
|
|
|
procedure AddCodePosition(var ListOfPCodeXYPosition: TFPList;
|
|
const NewCodePos: TCodeXYPosition);
|
|
var
|
|
AddCodePos: PCodeXYPosition;
|
|
begin
|
|
if ListOfPCodeXYPosition=nil then ListOfPCodeXYPosition:=TFPList.Create;
|
|
New(AddCodePos);
|
|
AddCodePos^:=NewCodePos;
|
|
ListOfPCodeXYPosition.Add(AddCodePos);
|
|
end;
|
|
|
|
function IndexOfCodePosition(var ListOfPCodeXYPosition: TFPList;
|
|
const APosition: PCodeXYPosition): integer;
|
|
begin
|
|
if ListOfPCodeXYPosition=nil then
|
|
Result:=-1
|
|
else begin
|
|
Result:=ListOfPCodeXYPosition.Count-1;
|
|
while (Result>=0)
|
|
and (CompareCodeXYPositions(APosition,
|
|
PCodeXYPosition(ListOfPCodeXYPosition[Result]))<>0)
|
|
do
|
|
dec(Result);
|
|
end;
|
|
end;
|
|
|
|
procedure FreeListOfPCodeXYPosition(ListOfPCodeXYPosition: TFPList);
|
|
var
|
|
CurCodePos: PCodeXYPosition;
|
|
i: Integer;
|
|
begin
|
|
if ListOfPCodeXYPosition=nil then exit;
|
|
for i:=0 to ListOfPCodeXYPosition.Count-1 do begin
|
|
CurCodePos:=PCodeXYPosition(ListOfPCodeXYPosition[i]);
|
|
Dispose(CurCodePos);
|
|
end;
|
|
ListOfPCodeXYPosition.Free;
|
|
end;
|
|
|
|
function CreateTreeOfPCodeXYPosition: TAVLTree;
|
|
begin
|
|
Result:=TAVLTree.Create(TListSortCompare(@CompareCodeXYPositions));
|
|
end;
|
|
|
|
procedure AddCodePosition(var TreeOfPCodeXYPosition: TAVLTree;
|
|
const NewCodePos: TCodeXYPosition);
|
|
var
|
|
AddCodePos: PCodeXYPosition;
|
|
begin
|
|
if TreeOfPCodeXYPosition=nil then
|
|
TreeOfPCodeXYPosition:=TAVLTree.Create(TListSortCompare(@CompareCodeXYPositions));
|
|
New(AddCodePos);
|
|
AddCodePos^:=NewCodePos;
|
|
TreeOfPCodeXYPosition.Add(AddCodePos);
|
|
end;
|
|
|
|
procedure FreeTreeOfPCodeXYPosition(TreeOfPCodeXYPosition: TAVLTree);
|
|
var
|
|
ANode: TAVLTreeNode;
|
|
CursorPos: PCodeXYPosition;
|
|
begin
|
|
if TreeOfPCodeXYPosition=nil then exit;
|
|
ANode:=TreeOfPCodeXYPosition.FindLowest;
|
|
while ANode<>nil do begin
|
|
CursorPos:=PCodeXYPosition(ANode.Data);
|
|
if CursorPos<>nil then
|
|
Dispose(CursorPos);
|
|
ANode:=TreeOfPCodeXYPosition.FindSuccessor(ANode);
|
|
end;
|
|
TreeOfPCodeXYPosition.Free;
|
|
end;
|
|
|
|
procedure AddListToTreeOfPCodeXYPosition(SrcList: TFPList; DestTree: TAVLTree;
|
|
ClearList, CreateCopies: boolean);
|
|
var
|
|
i: Integer;
|
|
CodePos: PCodeXYPosition;
|
|
NewCodePos: PCodeXYPosition;
|
|
begin
|
|
if SrcList=nil then exit;
|
|
for i:=SrcList.Count-1 downto 0 do begin
|
|
CodePos:=PCodeXYPosition(SrcList[i]);
|
|
if DestTree.Find(CodePos)=nil then begin
|
|
// new position -> add
|
|
if CreateCopies and (not ClearList) then begin
|
|
// list items should be kept and copies should be added to the tree
|
|
New(NewCodePos);
|
|
NewCodePos^:=CodePos^;
|
|
end else
|
|
NewCodePos:=CodePos;
|
|
DestTree.Add(NewCodePos);
|
|
end else if ClearList then begin
|
|
// position already exists and items should be deleted
|
|
Dispose(CodePos);
|
|
end;
|
|
end;
|
|
if ClearList then
|
|
SrcList.Clear;
|
|
end;
|
|
|
|
function DbgsCXY(const p: TCodeXYPosition): string;
|
|
begin
|
|
if p.Code=nil then
|
|
Result:='(none)'
|
|
else
|
|
Result:=p.Code.Filename+'(y='+dbgs(p.y)+',x='+dbgs(p.x)+')';
|
|
end;
|
|
|
|
function DbgsCP(const p: TCodePosition): string;
|
|
var
|
|
CodeXYPosition: TCodeXYPosition;
|
|
begin
|
|
FillChar(CodeXYPosition,SizeOf(TCodeXYPosition),0);
|
|
CodeXYPosition.Code:=p.Code;
|
|
if CodeXYPosition.Code<>nil then begin
|
|
CodeXYPosition.Code.AbsoluteToLineCol(p.P,CodeXYPosition.Y,CodeXYPosition.X);
|
|
end;
|
|
Result:=DbgsCXY(CodeXYPosition);
|
|
end;
|
|
|
|
function dbgs(const a: TAtomPosition): string;
|
|
begin
|
|
Result:=CommonAtomFlagNames[a.Flag]+'['+dbgs(a.StartPos)+'-'+dbgs(a.EndPos)+']';
|
|
end;
|
|
|
|
function ListOfPCodeXYPositionToStr(const ListOfPCodeXYPosition: TFPList
|
|
): string;
|
|
var
|
|
p: TCodeXYPosition;
|
|
i: Integer;
|
|
begin
|
|
if ListOfPCodeXYPosition=nil then
|
|
Result:='nil'
|
|
else begin
|
|
Result:='';
|
|
for i:=0 to ListOfPCodeXYPosition.Count-1 do begin
|
|
p:=PCodeXYPosition(ListOfPCodeXYPosition[i])^;
|
|
Result:=Result+' '+DbgsCXY(p)+LineEnding;
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
{ TAtomRing }
|
|
|
|
constructor TAtomRing.Create;
|
|
begin
|
|
inherited Create;
|
|
FItems:=nil;
|
|
Size:=5;
|
|
end;
|
|
|
|
destructor TAtomRing.Destroy;
|
|
begin
|
|
if FItems<>nil then FreeMem(FItems);
|
|
inherited Destroy;
|
|
end;
|
|
|
|
function TAtomRing.CalcMemSize: PtrUInt;
|
|
begin
|
|
Result:=PtrUInt(InstanceSize)
|
|
+PtrUInt(FSize)*SizeOf(TAtomPosition);
|
|
end;
|
|
|
|
procedure TAtomRing.SetSize(NewSize: integer);
|
|
var i: integer;
|
|
begin
|
|
Clear;
|
|
if NewSize<2 then NewSize:=2;
|
|
if NewSize>$FFFFFFF then NewSize:=$FFFFFFF;
|
|
i:=0;
|
|
while (i<30) and (NewSize>=(1 shl i)) do inc(i);
|
|
NewSize:=(1 shl i)-1;
|
|
if FSize=NewSize then exit;
|
|
if FItems<>nil then FreeMem(FItems);
|
|
FSize:=NewSize;
|
|
GetMem(FItems,(FSize+1) * SizeOf(TAtomPosition));
|
|
end;
|
|
|
|
procedure TAtomRing.Add(NewAtom: TAtomPosition);
|
|
begin
|
|
FItems[FStart]:=NewAtom;
|
|
FStart:=(FStart+1) and FSize;
|
|
if (FStart=FLast) then
|
|
FLast:=(FLast+1) and FSize;
|
|
end;
|
|
|
|
procedure TAtomRing.UndoLastAdd;
|
|
begin
|
|
if FStart=FLast then exit;
|
|
FStart:=(FStart-1) and FSize;
|
|
end;
|
|
|
|
function TAtomRing.GetValueAt(RelativePos:integer):TAtomPosition;
|
|
// 0=current 1=prior current ...
|
|
begin
|
|
if RelativePos<Count then
|
|
Result:=FItems[(FStart-RelativePos-1) and FSize]
|
|
else begin
|
|
Result.StartPos:=1;
|
|
Result.EndPos:=1;
|
|
Result.Flag:=cafNone;
|
|
end;
|
|
end;
|
|
|
|
procedure TAtomRing.Clear;
|
|
begin
|
|
FStart:=0;
|
|
FLast:=0;
|
|
end;
|
|
|
|
function TAtomRing.Count: integer;
|
|
begin
|
|
Result:=FStart-FLast;
|
|
if Result<0 then inc(Result,FSize);
|
|
end;
|
|
|
|
procedure TAtomRing.WriteDebugReport;
|
|
var i: integer;
|
|
p: TAtomPosition;
|
|
begin
|
|
DebugLn('[TAtomRing.WriteDebugReport] Size=',dbgs(FSize)
|
|
,' Start=',dbgs(FStart),' Last=',dbgs(FLast),' Count=',dbgs(Count));
|
|
DbgOut('ValuesAt: ');
|
|
for i:=0 to Count-1 do begin
|
|
p:=GetValueAt(i);
|
|
DbgOut(' '+dbgs(i)+'='+dbgs(p.StartPos)+'-'+dbgs(p.EndPos));
|
|
end;
|
|
DebugLn('');
|
|
end;
|
|
|
|
{ TAtomList }
|
|
|
|
function TAtomList.GetItems(Index: integer): TAtomPosition;
|
|
begin
|
|
Result:=FItems[Index];
|
|
end;
|
|
|
|
procedure TAtomList.SetCapacity(const AValue: integer);
|
|
begin
|
|
if FCapacity=AValue then exit;
|
|
FCapacity:=AValue;
|
|
if FItems<>nil then begin
|
|
if FCapacity>0 then begin
|
|
ReallocMem(FItems,SizeOf(TAtomPosition)*FCapacity);
|
|
end else begin
|
|
FreeMem(FItems);
|
|
FItems:=nil;
|
|
end;
|
|
end else begin
|
|
if FCapacity>0 then
|
|
GetMem(FItems,SizeOf(TAtomPosition)*FCapacity);
|
|
end;
|
|
end;
|
|
|
|
procedure TAtomList.SetItems(Index: integer; const AValue: TAtomPosition);
|
|
begin
|
|
FItems[Index]:=AValue;
|
|
end;
|
|
|
|
procedure TAtomList.Grow;
|
|
begin
|
|
Capacity:=Capacity*2+10;
|
|
end;
|
|
|
|
procedure TAtomList.Add(NewAtom: TAtomPosition);
|
|
begin
|
|
if FCount=FCapacity then Grow;
|
|
inc(FCount);
|
|
Items[Count-1]:=NewAtom;
|
|
end;
|
|
|
|
procedure TAtomList.Clear;
|
|
begin
|
|
FCount:=0;
|
|
Capacity:=0;
|
|
end;
|
|
|
|
constructor TAtomList.Create;
|
|
begin
|
|
inherited Create;
|
|
end;
|
|
|
|
destructor TAtomList.Destroy;
|
|
begin
|
|
Clear;
|
|
inherited Destroy;
|
|
end;
|
|
|
|
end.
|
|
|