123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914 |
- {
- $Id$
- Copyright (c) 1998-2000 by Florian Klaempfl
- This module provides some basic objects
- This program 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 program 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.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- ****************************************************************************
- }
- {$ifdef tp}
- {$E+,N+,D+,F+}
- {$endif}
- {$I-}
- {$R-}{ necessary for crc calculation and dynamicblock acessing }
- {$ifdef fpc}
- {$define USEREALLOCMEM}
- {$endif fpc}
- {$ifdef delphi}
- {$define USEREALLOCMEM}
- {$endif delphi}
- unit cobjects;
- interface
- uses
- cutils;
- const
- { the real size will be [-hasharray..hasharray] ! }
- {$ifdef TP}
- hasharraysize = 127;
- {$else}
- hasharraysize = 2047;
- {$endif}
- type
- pfileposinfo = ^tfileposinfo;
- tfileposinfo = record
- line : longint;
- column : word;
- fileindex : word;
- end;
- pmemdebug = ^tmemdebug;
- tmemdebug = object
- constructor init(const s:string);
- destructor done;
- procedure show;
- private
- startmem : longint;
- infostr : string[40];
- end;
- plinkedlist_item = ^tlinkedlist_item;
- tlinkedlist_item = object
- next,previous : plinkedlist_item;
- { does nothing }
- constructor init;
- destructor done;virtual;
- function getcopy:plinkedlist_item;virtual;
- end;
- pstring_item = ^tstring_item;
- tstring_item = object(tlinkedlist_item)
- str : pstring;
- constructor init(const s : string);
- destructor done;virtual;
- end;
- { this implements a double linked list }
- plinkedlist = ^tlinkedlist;
- tlinkedlist = object
- first,last : plinkedlist_item;
- constructor init;
- destructor done;
- { disposes the items of the list }
- procedure clear;
- { concats a new item at the end }
- procedure concat(p : plinkedlist_item);
- { inserts a new item at the begin }
- procedure insert(p : plinkedlist_item);
- { inserts another list at the begin and make this list empty }
- procedure insertlist(p : plinkedlist);
- { concats another list at the end and make this list empty }
- procedure concatlist(p : plinkedlist);
- procedure concatlistcopy(p : plinkedlist);
- { removes p from the list (p isn't disposed) }
- { it's not tested if p is in the list ! }
- procedure remove(p : plinkedlist_item);
- { is the linkedlist empty ? }
- function empty:boolean;
- { items in the list }
- function count:longint;
- end;
- { some help data types }
- pstringqueueitem = ^tstringqueueitem;
- tstringqueueitem = object
- data : pstring;
- next : pstringqueueitem;
- end;
- { String Queue}
- PStringQueue=^TStringQueue;
- TStringQueue=object
- first,last : PStringqueueItem;
- constructor Init;
- destructor Done;
- function Empty:boolean;
- function Get:string;
- function Find(const s:string):PStringqueueItem;
- function Delete(const s:string):boolean;
- procedure Insert(const s:string);
- procedure Concat(const s:string);
- procedure Clear;
- end;
- { containeritem }
- pcontaineritem = ^tcontaineritem;
- tcontaineritem = object
- next : pcontaineritem;
- constructor init;
- destructor done;virtual;
- end;
- { container }
- pcontainer = ^tcontainer;
- tcontainer = object
- root,
- last : pcontaineritem;
- constructor init;
- destructor done;
- { true when the container is empty }
- function empty:boolean;
- { amount of strings in the container }
- function count:longint;
- { inserts a string }
- procedure insert(item:pcontaineritem);
- { gets a string }
- function get:pcontaineritem;
- { deletes all items }
- procedure clear;
- end;
- { containeritem }
- pstringcontaineritem = ^tstringcontaineritem;
- tstringcontaineritem = object(tcontaineritem)
- data : pstring;
- file_info : tfileposinfo;
- constructor init(const s:string);
- constructor Init_TokenInfo(const s:string;const pos:tfileposinfo);
- destructor done;virtual;
- end;
- { string container }
- pstringcontainer = ^tstringcontainer;
- tstringcontainer = object(tcontainer)
- doubles : boolean; { if this is set to true, doubles are allowed }
- constructor init;
- constructor init_no_double;
- procedure insert(const s : string);
- procedure insert_with_tokeninfo(const s : string;const file_info : tfileposinfo);
- { gets a string }
- function get : string;
- function get_with_tokeninfo(var file_info : tfileposinfo) : string;
- { true if string is in the container }
- function find(const s:string):boolean;
- end;
- { namedindexobject for use with dictionary and indexarray }
- Pnamedindexobject=^Tnamedindexobject;
- Tnamedindexobject=object
- { indexarray }
- indexnr : longint;
- indexnext : Pnamedindexobject;
- { dictionary }
- _name : Pstring;
- _valuename : Pstring; { uppercase name }
- left,right : Pnamedindexobject;
- speedvalue : longint;
- { singlelist }
- listnext : Pnamedindexobject;
- constructor init;
- constructor initname(const n:string);
- destructor done;virtual;
- procedure setname(const n:string);virtual;
- function name:string;virtual;
- end;
- Pdictionaryhasharray=^Tdictionaryhasharray;
- Tdictionaryhasharray=array[-hasharraysize..hasharraysize] of Pnamedindexobject;
- Tnamedindexcallback = procedure(p:Pnamedindexobject);
- Pdictionary=^Tdictionary;
- Tdictionary=object
- noclear : boolean;
- replace_existing : boolean;
- constructor init;
- destructor done;virtual;
- procedure usehash;
- procedure clear;
- function delete(const s:string):Pnamedindexobject;
- function empty:boolean;
- procedure foreach(proc2call:Tnamedindexcallback);
- function insert(obj:Pnamedindexobject):Pnamedindexobject;
- function rename(const olds,news : string):Pnamedindexobject;
- function search(const s:string):Pnamedindexobject;
- function speedsearch(const s:string;speedvalue:longint):Pnamedindexobject;
- private
- root : Pnamedindexobject;
- hasharray : Pdictionaryhasharray;
- procedure cleartree(obj:Pnamedindexobject);
- function insertnode(newnode:Pnamedindexobject;var currnode:Pnamedindexobject):Pnamedindexobject;
- procedure inserttree(currtree,currroot:Pnamedindexobject);
- end;
- psinglelist=^tsinglelist;
- tsinglelist=object
- first,
- last : Pnamedindexobject;
- constructor init;
- destructor done;
- procedure reset;
- procedure clear;
- procedure insert(p:Pnamedindexobject);
- end;
- const
- dynamicblockbasesize = 12;
- type
- pdynamicblock = ^tdynamicblock;
- tdynamicblock = record
- pos,
- used : longint;
- next : pdynamicblock;
- data : array[0..1] of byte;
- end;
- pdynamicarray = ^tdynamicarray;
- tdynamicarray = object
- blocksize : longint;
- firstblock,
- lastblock : pdynamicblock;
- constructor init(Ablocksize:longint);
- destructor done;
- function size:longint;
- procedure align(i:longint);
- procedure seek(i:longint);
- procedure write(var d;len:longint);
- function read(var d;len:longint):longint;
- procedure blockwrite(var f:file);
- private
- posn : longint;
- posnblock : pdynamicblock;
- procedure grow;
- end;
- tindexobjectarray=array[1..16000] of Pnamedindexobject;
- Pnamedindexobjectarray=^tindexobjectarray;
- pindexarray=^tindexarray;
- tindexarray=object
- noclear : boolean;
- first : Pnamedindexobject;
- count : longint;
- constructor init(Agrowsize:longint);
- destructor done;
- procedure clear;
- procedure foreach(proc2call : Tnamedindexcallback);
- procedure deleteindex(p:Pnamedindexobject);
- procedure delete(p:Pnamedindexobject);
- procedure insert(p:Pnamedindexobject);
- function search(nr:longint):Pnamedindexobject;
- private
- growsize,
- size : longint;
- data : Pnamedindexobjectarray;
- procedure grow(gsize:longint);
- end;
- {$ifdef fixLeaksOnError}
- PStackItem = ^TStackItem;
- TStackItem = record
- next: PStackItem;
- data: pointer;
- end;
- PStack = ^TStack;
- TStack = object
- constructor init;
- destructor done;
- procedure push(p: pointer);
- function pop: pointer;
- function top: pointer;
- function isEmpty: boolean;
- private
- head: PStackItem;
- end;
- {$endif fixLeaksOnError}
- implementation
- {*****************************************************************************
- Memory debug
- *****************************************************************************}
- constructor tmemdebug.init(const s:string);
- begin
- infostr:=s;
- {$ifdef Delphi}
- startmem:=0;
- {$else}
- startmem:=memavail;
- {$endif Delphi}
- end;
- procedure tmemdebug.show;
- var
- l : longint;
- begin
- {$ifndef Delphi}
- write('memory [',infostr,'] ');
- l:=memavail;
- if l>startmem then
- writeln(l-startmem,' released')
- else
- writeln(startmem-l,' allocated');
- {$endif Delphi}
- end;
- destructor tmemdebug.done;
- begin
- show;
- end;
- {*****************************************************************************
- Stack
- *****************************************************************************}
- {$ifdef fixLeaksOnError}
- constructor TStack.init;
- begin
- head := nil;
- end;
- procedure TStack.push(p: pointer);
- var s: PStackItem;
- begin
- new(s);
- s^.data := p;
- s^.next := head;
- head := s;
- end;
- function TStack.pop: pointer;
- var s: PStackItem;
- begin
- pop := top;
- if assigned(head) then
- begin
- s := head^.next;
- dispose(head);
- head := s;
- end
- end;
- function TStack.top: pointer;
- begin
- if not isEmpty then
- top := head^.data
- else top := NIL;
- end;
- function TStack.isEmpty: boolean;
- begin
- isEmpty := head = nil;
- end;
- destructor TStack.done;
- var temp: PStackItem;
- begin
- while head <> nil do
- begin
- temp := head^.next;
- dispose(head);
- head := temp;
- end;
- end;
- {$endif fixLeaksOnError}
- {****************************************************************************
- TStringQueue
- ****************************************************************************}
- constructor TStringQueue.Init;
- begin
- first:=nil;
- last:=nil;
- end;
- function TStringQueue.Empty:boolean;
- begin
- Empty:=(first=nil);
- end;
- function TStringQueue.Get:string;
- var
- newnode : pstringqueueitem;
- begin
- if first=nil then
- begin
- Get:='';
- exit;
- end;
- Get:=first^.data^;
- stringdispose(first^.data);
- newnode:=first;
- first:=first^.next;
- dispose(newnode);
- end;
- function TStringQueue.Find(const s:string):PStringqueueItem;
- var
- p : PStringqueueItem;
- begin
- p:=first;
- while assigned(p) do
- begin
- if p^.data^=s then
- break;
- p:=p^.next;
- end;
- Find:=p;
- end;
- function TStringQueue.Delete(const s:string):boolean;
- var
- prev,p : PStringqueueItem;
- begin
- Delete:=false;
- prev:=nil;
- p:=first;
- while assigned(p) do
- begin
- if p^.data^=s then
- begin
- if p=last then
- last:=prev;
- if assigned(prev) then
- prev^.next:=p^.next
- else
- first:=p^.next;
- dispose(p);
- Delete:=true;
- exit;
- end;
- prev:=p;
- p:=p^.next;
- end;
- end;
- procedure TStringQueue.Insert(const s:string);
- var
- newnode : pstringqueueitem;
- begin
- new(newnode);
- newnode^.next:=first;
- newnode^.data:=stringdup(s);
- first:=newnode;
- if last=nil then
- last:=newnode;
- end;
- procedure TStringQueue.Concat(const s:string);
- var
- newnode : pstringqueueitem;
- begin
- new(newnode);
- newnode^.next:=nil;
- newnode^.data:=stringdup(s);
- if first=nil then
- first:=newnode
- else
- last^.next:=newnode;
- last:=newnode;
- end;
- procedure TStringQueue.Clear;
- var
- newnode : pstringqueueitem;
- begin
- while (first<>nil) do
- begin
- newnode:=first;
- stringdispose(first^.data);
- first:=first^.next;
- dispose(newnode);
- end;
- last:=nil;
- end;
- destructor TStringQueue.Done;
- begin
- Clear;
- end;
- {****************************************************************************
- TContainerItem
- ****************************************************************************}
- constructor TContainerItem.Init;
- begin
- end;
- destructor TContainerItem.Done;
- begin
- end;
- {****************************************************************************
- TStringContainerItem
- ****************************************************************************}
- constructor TStringContainerItem.Init(const s:string);
- begin
- inherited Init;
- data:=stringdup(s);
- file_info.fileindex:=0;
- file_info.line:=0;
- file_info.column:=0;
- end;
- constructor TStringContainerItem.Init_TokenInfo(const s:string;const pos:tfileposinfo);
- begin
- inherited Init;
- data:=stringdup(s);
- file_info:=pos;
- end;
- destructor TStringContainerItem.Done;
- begin
- stringdispose(data);
- end;
- {****************************************************************************
- TCONTAINER
- ****************************************************************************}
- constructor tcontainer.init;
- begin
- root:=nil;
- last:=nil;
- end;
- destructor tcontainer.done;
- begin
- clear;
- end;
- function tcontainer.empty:boolean;
- begin
- empty:=(root=nil);
- end;
- function tcontainer.count:longint;
- var
- i : longint;
- p : pcontaineritem;
- begin
- i:=0;
- p:=root;
- while assigned(p) do
- begin
- p:=p^.next;
- inc(i);
- end;
- count:=i;
- end;
- procedure tcontainer.insert(item:pcontaineritem);
- begin
- item^.next:=nil;
- if root=nil then
- root:=item
- else
- last^.next:=item;
- last:=item;
- end;
- procedure tcontainer.clear;
- var
- newnode : pcontaineritem;
- begin
- newnode:=root;
- while assigned(newnode) do
- begin
- root:=newnode^.next;
- dispose(newnode,done);
- newnode:=root;
- end;
- last:=nil;
- root:=nil;
- end;
- function tcontainer.get:pcontaineritem;
- begin
- if root=nil then
- get:=nil
- else
- begin
- get:=root;
- root:=root^.next;
- end;
- end;
- {****************************************************************************
- TSTRINGCONTAINER
- ****************************************************************************}
- constructor tstringcontainer.init;
- begin
- inherited init;
- doubles:=true;
- end;
- constructor tstringcontainer.init_no_double;
- begin
- inherited init;
- doubles:=false;
- end;
- procedure tstringcontainer.insert(const s : string);
- var
- newnode : pstringcontaineritem;
- begin
- if (s='') or
- ((not doubles) and find(s)) then
- exit;
- new(newnode,init(s));
- inherited insert(newnode);
- end;
- procedure tstringcontainer.insert_with_tokeninfo(const s : string; const file_info : tfileposinfo);
- var
- newnode : pstringcontaineritem;
- begin
- if (not doubles) and find(s) then
- exit;
- new(newnode,init_tokeninfo(s,file_info));
- inherited insert(newnode);
- end;
- function tstringcontainer.get : string;
- var
- p : pstringcontaineritem;
- begin
- p:=pstringcontaineritem(inherited get);
- if p=nil then
- get:=''
- else
- begin
- get:=p^.data^;
- dispose(p,done);
- end;
- end;
- function tstringcontainer.get_with_tokeninfo(var file_info : tfileposinfo) : string;
- var
- p : pstringcontaineritem;
- begin
- p:=pstringcontaineritem(inherited get);
- if p=nil then
- begin
- get_with_tokeninfo:='';
- file_info.fileindex:=0;
- file_info.line:=0;
- file_info.column:=0;
- end
- else
- begin
- get_with_tokeninfo:=p^.data^;
- file_info:=p^.file_info;
- dispose(p,done);
- end;
- end;
- function tstringcontainer.find(const s:string):boolean;
- var
- newnode : pstringcontaineritem;
- begin
- find:=false;
- newnode:=pstringcontaineritem(root);
- while assigned(newnode) do
- begin
- if newnode^.data^=s then
- begin
- find:=true;
- exit;
- end;
- newnode:=pstringcontaineritem(newnode^.next);
- end;
- end;
- {****************************************************************************
- TLINKEDLIST_ITEM
- ****************************************************************************}
- constructor tlinkedlist_item.init;
- begin
- previous:=nil;
- next:=nil;
- end;
- destructor tlinkedlist_item.done;
- begin
- end;
- function tlinkedlist_item.getcopy:plinkedlist_item;
- var
- l : longint;
- p : plinkedlist_item;
- begin
- l:=sizeof(self);
- getmem(p,l);
- move(self,p^,l);
- getcopy:=p;
- end;
- {****************************************************************************
- TSTRING_ITEM
- ****************************************************************************}
- constructor tstring_item.init(const s : string);
- begin
- str:=stringdup(s);
- end;
- destructor tstring_item.done;
- begin
- stringdispose(str);
- inherited done;
- end;
- {****************************************************************************
- TLINKEDLIST
- ****************************************************************************}
- constructor tlinkedlist.init;
- begin
- first:=nil;
- last:=nil;
- end;
- destructor tlinkedlist.done;
- begin
- clear;
- end;
- procedure tlinkedlist.clear;
- var
- newnode : plinkedlist_item;
- begin
- newnode:=first;
- while assigned(newnode) do
- begin
- first:=newnode^.next;
- dispose(newnode,done);
- newnode:=first;
- end;
- end;
- procedure tlinkedlist.insertlist(p : plinkedlist);
- begin
- { empty list ? }
- if not(assigned(p^.first)) then
- exit;
- p^.last^.next:=first;
- { we have a double linked list }
- if assigned(first) then
- first^.previous:=p^.last;
- first:=p^.first;
- if not(assigned(last)) then
- last:=p^.last;
- { p becomes empty }
- p^.first:=nil;
- p^.last:=nil;
- end;
- procedure tlinkedlist.concat(p : plinkedlist_item);
- begin
- if not(assigned(first)) then
- begin
- first:=p;
- p^.previous:=nil;
- p^.next:=nil;
- end
- else
- begin
- last^.next:=p;
- p^.previous:=last;
- p^.next:=nil;
- end;
- last:=p;
- end;
- procedure tlinkedlist.insert(p : plinkedlist_item);
- begin
- if not(assigned(first)) then
- begin
- last:=p;
- p^.previous:=nil;
- p^.next:=nil;
- end
- else
- begin
- first^.previous:=p;
- p^.previous:=nil;
- p^.next:=first;
- end;
- first:=p;
- end;
- procedure tlinkedlist.remove(p : plinkedlist_item);
- begin
- if not(assigned(p)) then
- exit;
- if (first=p) and (last=p) then
- begin
- first:=nil;
- last:=nil;
- end
- else if first=p then
- begin
- first:=p^.next;
- if assigned(first) then
- first^.previous:=nil;
- end
- else if last=p then
- begin
- last:=last^.previous;
- if assigned(last) then
- last^.next:=nil;
- end
- else
- begin
- p^.previous^.next:=p^.next;
- p^.next^.previous:=p^.previous;
- end;
- p^.next:=nil;
- p^.previous:=nil;
- end;
- procedure tlinkedlist.concatlist(p : plinkedlist);
- begin
- if not(assigned(p^.first)) then
- exit;
- if not(assigned(first)) then
- first:=p^.first
- else
- begin
- last^.next:=p^.first;
- p^.first^.previous:=last;
- end;
- last:=p^.last;
- { make p empty }
- p^.last:=nil;
- p^.first:=nil;
- end;
- procedure tlinkedlist.concatlistcopy(p : plinkedlist);
- var
- newnode,newnode2 : plinkedlist_item;
- begin
- newnode:=p^.first;
- while assigned(newnode) do
- begin
- newnode2:=newnode^.getcopy;
- if assigned(newnode2) then
- begin
- if not(assigned(first)) then
- begin
- first:=newnode2;
- newnode2^.previous:=nil;
- newnode2^.next:=nil;
- end
- else
- begin
- last^.next:=newnode2;
- newnode2^.previous:=last;
- newnode2^.next:=nil;
- end;
- last:=newnode2;
- end;
- newnode:=newnode^.next;
- end;
- end;
- function tlinkedlist.empty:boolean;
- begin
- empty:=(first=nil);
- end;
- function tlinkedlist.count:longint;
- var
- i : longint;
- hp : plinkedlist_item;
- begin
- hp:=first;
- i:=0;
- while assigned(hp) do
- begin
- inc(i);
- hp:=hp^.next;
- end;
- count:=i;
- end;
- {****************************************************************************
- Tnamedindexobject
- ****************************************************************************}
- constructor Tnamedindexobject.init;
- begin
- { index }
- indexnr:=-1;
- indexnext:=nil;
- { dictionary }
- left:=nil;
- right:=nil;
- _name:=nil;
- speedvalue:=-1;
- { list }
- listnext:=nil;
- end;
- constructor Tnamedindexobject.initname(const n:string);
- begin
- { index }
- indexnr:=-1;
- indexnext:=nil;
- { dictionary }
- left:=nil;
- right:=nil;
- speedvalue:=-1;
- _name:=stringdup(n);
- { list }
- listnext:=nil;
- end;
- destructor Tnamedindexobject.done;
- begin
- stringdispose(_name);
- end;
- procedure Tnamedindexobject.setname(const n:string);
- begin
- if speedvalue=-1 then
- begin
- if assigned(_name) then
- stringdispose(_name);
- _name:=stringdup(n);
- end;
- end;
- function Tnamedindexobject.name:string;
- begin
- if assigned(_name) then
- name:=_name^
- else
- name:='';
- end;
- {****************************************************************************
- TDICTIONARY
- ****************************************************************************}
- constructor Tdictionary.init;
- begin
- root:=nil;
- hasharray:=nil;
- noclear:=false;
- replace_existing:=false;
- end;
- procedure Tdictionary.usehash;
- begin
- if not(assigned(root)) and
- not(assigned(hasharray)) then
- begin
- new(hasharray);
- fillchar(hasharray^,sizeof(hasharray^),0);
- end;
- end;
- destructor Tdictionary.done;
- begin
- if not noclear then
- clear;
- if assigned(hasharray) then
- dispose(hasharray);
- end;
- procedure Tdictionary.cleartree(obj:Pnamedindexobject);
- begin
- if assigned(obj^.left) then
- cleartree(obj^.left);
- if assigned(obj^.right) then
- cleartree(obj^.right);
- dispose(obj,done);
- obj:=nil;
- end;
- procedure Tdictionary.clear;
- var
- w : longint;
- begin
- if assigned(root) then
- cleartree(root);
- if assigned(hasharray) then
- for w:=-hasharraysize to hasharraysize do
- if assigned(hasharray^[w]) then
- cleartree(hasharray^[w]);
- end;
- function Tdictionary.delete(const s:string):Pnamedindexobject;
- var p,speedvalue:longint;
- n:Pnamedindexobject;
- procedure insert_right_bottom(var root,Atree:Pnamedindexobject);
- begin
- while root^.right<>nil do
- root:=root^.right;
- root^.right:=Atree;
- end;
- function delete_from_tree(root:Pnamedindexobject):Pnamedindexobject;
- type leftright=(left,right);
- var lr:leftright;
- oldroot:Pnamedindexobject;
- begin
- oldroot:=nil;
- while (root<>nil) and (root^.speedvalue<>speedvalue) do
- begin
- oldroot:=root;
- if speedvalue<root^.speedvalue then
- begin
- root:=root^.right;
- lr:=right;
- end
- else
- begin
- root:=root^.left;
- lr:=left;
- end;
- end;
- while (root<>nil) and (root^._name^<>s) do
- begin
- oldroot:=root;
- if s<root^._name^ then
- begin
- root:=root^.right;
- lr:=right;
- end
- else
- begin
- root:=root^.left;
- lr:=left;
- end;
- end;
- if root^.left<>nil then
- begin
- {Now the node pointing to root must point to the left
- subtree of root. The right subtree of root must be
- connected to the right bottom of the left subtree.}
- if lr=left then
- oldroot^.left:=root^.left
- else
- oldroot^.right:=root^.left;
- if root^.right<>nil then
- insert_right_bottom(root^.left,root^.right);
- end
- else
- {There is no left subtree. So we can just replace the node to
- delete with the right subtree.}
- if lr=left then
- oldroot^.left:=root^.right
- else
- oldroot^.right:=root^.right;
- delete_from_tree:=root;
- end;
- begin
- speedvalue:=getspeedvalue(s);
- n:=root;
- if assigned(hasharray) then
- begin
- {First, check if the node to delete directly located under
- the hasharray.}
- p:=speedvalue mod hasharraysize;
- n:=hasharray^[p];
- if (n<>nil) and (n^.speedvalue=speedvalue) and
- (n^._name^=s) then
- begin
- {The node to delete is directly located under the
- hasharray. Make the hasharray point to the left
- subtree of the node and place the right subtree on
- the right-bottom of the left subtree.}
- if n^.left<>nil then
- begin
- hasharray^[p]:=n^.left;
- if n^.right<>nil then
- insert_right_bottom(n^.left,n^.right);
- end
- else
- hasharray^[p]:=n^.right;
- delete:=n;
- exit;
- end;
- end
- else
- begin
- {First check if the node to delete is the root.}
- if (root<>nil) and (n^.speedvalue=speedvalue)
- and (n^._name^=s) then
- begin
- if n^.left<>nil then
- begin
- root:=n^.left;
- if n^.right<>nil then
- insert_right_bottom(n^.left,n^.right);
- end
- else
- root:=n^.right;
- delete:=n;
- exit;
- end;
- end;
- delete:=delete_from_tree(n);
- end;
- function Tdictionary.empty:boolean;
- var
- w : longint;
- begin
- if assigned(hasharray) then
- begin
- empty:=false;
- for w:=-hasharraysize to hasharraysize do
- if assigned(hasharray^[w]) then
- exit;
- empty:=true;
- end
- else
- empty:=(root=nil);
- end;
- procedure Tdictionary.foreach(proc2call:Tnamedindexcallback);
- procedure a(p:Pnamedindexobject);
- begin
- proc2call(p);
- if assigned(p^.left) then
- a(p^.left);
- if assigned(p^.right) then
- a(p^.right);
- end;
- var
- i : longint;
- begin
- if assigned(hasharray) then
- begin
- for i:=-hasharraysize to hasharraysize do
- if assigned(hasharray^[i]) then
- a(hasharray^[i]);
- end
- else
- if assigned(root) then
- a(root);
- end;
- function Tdictionary.insert(obj:Pnamedindexobject):Pnamedindexobject;
- begin
- obj^.speedvalue:=getspeedvalue(obj^._name^);
- if assigned(hasharray) then
- insert:=insertnode(obj,hasharray^[obj^.speedvalue mod hasharraysize])
- else
- insert:=insertnode(obj,root);
- end;
- function tdictionary.insertnode(newnode:Pnamedindexobject;var currnode:Pnamedindexobject):Pnamedindexobject;
- begin
- if currnode=nil then
- begin
- currnode:=newnode;
- insertnode:=newnode;
- end
- { first check speedvalue, to allow a fast insert }
- else
- if currnode^.speedvalue>newnode^.speedvalue then
- insertnode:=insertnode(newnode,currnode^.right)
- else
- if currnode^.speedvalue<newnode^.speedvalue then
- insertnode:=insertnode(newnode,currnode^.left)
- else
- begin
- if currnode^._name^>newnode^._name^ then
- insertnode:=insertnode(newnode,currnode^.right)
- else
- if currnode^._name^<newnode^._name^ then
- insertnode:=insertnode(newnode,currnode^.left)
- else
- begin
- if replace_existing and
- assigned(currnode) then
- begin
- newnode^.left:=currnode^.left;
- newnode^.right:=currnode^.right;
- currnode:=newnode;
- insertnode:=newnode;
- end
- else
- insertnode:=currnode;
- end;
- end;
- end;
- procedure tdictionary.inserttree(currtree,currroot:Pnamedindexobject);
- begin
- if assigned(currtree) then
- begin
- inserttree(currtree^.left,currroot);
- inserttree(currtree^.right,currroot);
- currtree^.right:=nil;
- currtree^.left:=nil;
- insertnode(currtree,currroot);
- end;
- end;
- function tdictionary.rename(const olds,news : string):Pnamedindexobject;
- var
- spdval : longint;
- lasthp,
- hp,hp2,hp3 : Pnamedindexobject;
- begin
- spdval:=getspeedvalue(olds);
- if assigned(hasharray) then
- hp:=hasharray^[spdval mod hasharraysize]
- else
- hp:=root;
- lasthp:=nil;
- while assigned(hp) do
- begin
- if spdval>hp^.speedvalue then
- begin
- lasthp:=hp;
- hp:=hp^.left
- end
- else
- if spdval<hp^.speedvalue then
- begin
- lasthp:=hp;
- hp:=hp^.right
- end
- else
- begin
- if (hp^.name=olds) then
- begin
- { get in hp2 the replacer for the root or hasharr }
- hp2:=hp^.left;
- hp3:=hp^.right;
- if not assigned(hp2) then
- begin
- hp2:=hp^.right;
- hp3:=hp^.left;
- end;
- { remove entry from the tree }
- if assigned(lasthp) then
- begin
- if lasthp^.left=hp then
- lasthp^.left:=hp2
- else
- lasthp^.right:=hp2;
- end
- else
- begin
- if assigned(hasharray) then
- hasharray^[spdval mod hasharraysize]:=hp2
- else
- root:=hp2;
- end;
- { reinsert the hp3 in the tree from hp2 }
- inserttree(hp3,hp2);
- { reset node with new values }
- stringdispose(hp^._name);
- hp^._name:=stringdup(news);
- hp^.speedvalue:=getspeedvalue(news);
- hp^.left:=nil;
- hp^.right:=nil;
- { reinsert }
- if assigned(hasharray) then
- rename:=insertnode(hp,hasharray^[hp^.speedvalue mod hasharraysize])
- else
- rename:=insertnode(hp,root);
- exit;
- end
- else
- if olds>hp^.name then
- begin
- lasthp:=hp;
- hp:=hp^.left
- end
- else
- begin
- lasthp:=hp;
- hp:=hp^.right;
- end;
- end;
- end;
- end;
- function Tdictionary.search(const s:string):Pnamedindexobject;
- begin
- search:=speedsearch(s,getspeedvalue(s));
- end;
- function Tdictionary.speedsearch(const s:string;speedvalue:longint):Pnamedindexobject;
- var
- newnode:Pnamedindexobject;
- begin
- if assigned(hasharray) then
- newnode:=hasharray^[speedvalue mod hasharraysize]
- else
- newnode:=root;
- while assigned(newnode) do
- begin
- if speedvalue>newnode^.speedvalue then
- newnode:=newnode^.left
- else
- if speedvalue<newnode^.speedvalue then
- newnode:=newnode^.right
- else
- begin
- if (newnode^._name^=s) then
- begin
- speedsearch:=newnode;
- exit;
- end
- else
- if s>newnode^._name^ then
- newnode:=newnode^.left
- else
- newnode:=newnode^.right;
- end;
- end;
- speedsearch:=nil;
- end;
- {****************************************************************************
- tsinglelist
- ****************************************************************************}
- constructor tsinglelist.init;
- begin
- first:=nil;
- last:=nil;
- end;
- destructor tsinglelist.done;
- begin
- end;
- procedure tsinglelist.reset;
- begin
- first:=nil;
- last:=nil;
- end;
- procedure tsinglelist.clear;
- var
- hp,hp2 : pnamedindexobject;
- begin
- hp:=first;
- while assigned(hp) do
- begin
- hp2:=hp;
- hp:=hp^.listnext;
- dispose(hp2,done);
- end;
- first:=nil;
- last:=nil;
- end;
- procedure tsinglelist.insert(p:Pnamedindexobject);
- begin
- if not assigned(first) then
- first:=p
- else
- last^.listnext:=p;
- last:=p;
- p^.listnext:=nil;
- end;
- {****************************************************************************
- tdynamicarray
- ****************************************************************************}
- constructor tdynamicarray.init(Ablocksize:longint);
- begin
- posn:=0;
- posnblock:=nil;
- firstblock:=nil;
- lastblock:=nil;
- blocksize:=Ablocksize;
- grow;
- end;
- function tdynamicarray.size:longint;
- begin
- if assigned(lastblock) then
- size:=lastblock^.pos+lastblock^.used
- else
- size:=0;
- end;
- procedure tdynamicarray.grow;
- var
- nblock : pdynamicblock;
- begin
- getmem(nblock,blocksize+dynamicblockbasesize);
- if not assigned(firstblock) then
- begin
- firstblock:=nblock;
- posnblock:=nblock;
- nblock^.pos:=0;
- end
- else
- begin
- lastblock^.next:=nblock;
- nblock^.pos:=lastblock^.pos+lastblock^.used;
- end;
- nblock^.used:=0;
- nblock^.next:=nil;
- fillchar(nblock^.data,blocksize,0);
- lastblock:=nblock;
- end;
- procedure tdynamicarray.align(i:longint);
- var
- j : longint;
- begin
- j:=(posn mod i);
- if j<>0 then
- begin
- j:=i-j;
- if posnblock^.used+j>blocksize then
- begin
- posnblock^.used:=blocksize;
- dec(j,blocksize-posnblock^.used);
- grow;
- posnblock:=lastblock;
- end;
- inc(posnblock^.used,j);
- inc(posn,j);
- end;
- end;
- procedure tdynamicarray.seek(i:longint);
- begin
- if (i<posnblock^.pos) or (i>posnblock^.pos+blocksize) then
- begin
- { set posnblock correct if the size is bigger then
- the current block }
- if posnblock^.pos>i then
- posnblock:=firstblock;
- while assigned(posnblock) do
- begin
- if posnblock^.pos+blocksize>i then
- break;
- posnblock:=posnblock^.next;
- end;
- { not found ? then increase blocks }
- if not assigned(posnblock) then
- begin
- { the current lastblock is now also fully used }
- lastblock^.used:=blocksize;
- repeat
- grow;
- posnblock:=lastblock;
- until posnblock^.pos+blocksize>=i;
- end;
- end;
- posn:=i;
- if posn mod blocksize>posnblock^.used then
- posnblock^.used:=posn mod blocksize;
- end;
- procedure tdynamicarray.write(var d;len:longint);
- var
- p : pchar;
- i,j : longint;
- begin
- p:=pchar(@d);
- while (len>0) do
- begin
- i:=posn mod blocksize;
- if i+len>=blocksize then
- begin
- j:=blocksize-i;
- move(p^,posnblock^.data[i],j);
- inc(p,j);
- inc(posn,j);
- dec(len,j);
- posnblock^.used:=blocksize;
- if assigned(posnblock^.next) then
- posnblock:=posnblock^.next
- else
- begin
- grow;
- posnblock:=lastblock;
- end;
- end
- else
- begin
- move(p^,posnblock^.data[i],len);
- inc(p,len);
- inc(posn,len);
- i:=posn mod blocksize;
- if i>posnblock^.used then
- posnblock^.used:=i;
- len:=0;
- end;
- end;
- end;
- function tdynamicarray.read(var d;len:longint):longint;
- var
- p : pchar;
- i,j,res : longint;
- begin
- res:=0;
- p:=pchar(@d);
- while (len>0) do
- begin
- i:=posn mod blocksize;
- if i+len>=posnblock^.used then
- begin
- j:=posnblock^.used-i;
- move(posnblock^.data[i],p^,j);
- inc(p,j);
- inc(posn,j);
- inc(res,j);
- dec(len,j);
- if assigned(posnblock^.next) then
- posnblock:=posnblock^.next
- else
- break;
- end
- else
- begin
- move(posnblock^.data[i],p^,len);
- inc(p,len);
- inc(posn,len);
- inc(res,len);
- len:=0;
- end;
- end;
- read:=res;
- end;
- procedure tdynamicarray.blockwrite(var f:file);
- var
- hp : pdynamicblock;
- begin
- hp:=firstblock;
- while assigned(hp) do
- begin
- system.blockwrite(f,hp^.data,hp^.used);
- hp:=hp^.next;
- end;
- end;
- destructor tdynamicarray.done;
- var
- hp : pdynamicblock;
- begin
- while assigned(firstblock) do
- begin
- hp:=firstblock;
- firstblock:=firstblock^.next;
- freemem(hp,blocksize+dynamicblockbasesize);
- end;
- end;
- {****************************************************************************
- tindexarray
- ****************************************************************************}
- constructor tindexarray.init(Agrowsize:longint);
- begin
- growsize:=Agrowsize;
- size:=0;
- count:=0;
- data:=nil;
- first:=nil;
- noclear:=false;
- end;
- destructor tindexarray.done;
- begin
- if assigned(data) then
- begin
- if not noclear then
- clear;
- freemem(data,size*4);
- data:=nil;
- end;
- end;
- function tindexarray.search(nr:longint):Pnamedindexobject;
- begin
- if nr<=count then
- search:=data^[nr]
- else
- search:=nil;
- end;
- procedure tindexarray.clear;
- var
- i : longint;
- begin
- for i:=1 to count do
- if assigned(data^[i]) then
- begin
- dispose(data^[i],done);
- data^[i]:=nil;
- end;
- count:=0;
- first:=nil;
- end;
- procedure tindexarray.foreach(proc2call : Tnamedindexcallback);
- var
- i : longint;
- begin
- for i:=1 to count do
- if assigned(data^[i]) then
- proc2call(data^[i]);
- end;
- procedure tindexarray.grow(gsize:longint);
- var
- osize : longint;
- {$ifndef USEREALLOCMEM}
- odata : Pnamedindexobjectarray;
- {$endif USEREALLOCMEM}
- begin
- osize:=size;
- inc(size,gsize);
- {$ifndef USEREALLOCMEM}
- odata:=data;
- getmem(data,size*4);
- if assigned(odata) then
- begin
- move(odata^,data^,osize*4);
- freemem(odata,osize*4);
- end;
- {$else USEREALLOCMEM}
- reallocmem(data,size*4);
- {$endif USEREALLOCMEM}
- fillchar(data^[osize+1],gsize*4,0);
- end;
- procedure tindexarray.deleteindex(p:Pnamedindexobject);
- var
- i : longint;
- begin
- i:=p^.indexnr;
- { update counter }
- if i=count then
- dec(count);
- { update linked list }
- while (i>0) do
- begin
- dec(i);
- if (i>0) and assigned(data^[i]) then
- begin
- data^[i]^.indexnext:=data^[p^.indexnr]^.indexnext;
- break;
- end;
- end;
- if i=0 then
- first:=p^.indexnext;
- data^[p^.indexnr]:=nil;
- { clear entry }
- p^.indexnr:=-1;
- p^.indexnext:=nil;
- end;
- procedure tindexarray.delete(p:Pnamedindexobject);
- begin
- deleteindex(p);
- dispose(p,done);
- p:=nil;
- end;
- procedure tindexarray.insert(p:Pnamedindexobject);
- var
- i : longint;
- begin
- if p^.indexnr=-1 then
- begin
- inc(count);
- p^.indexnr:=count;
- end;
- if p^.indexnr>count then
- count:=p^.indexnr;
- if count>size then
- grow(((count div growsize)+1)*growsize);
- data^[p^.indexnr]:=p;
- { update linked list backward }
- i:=p^.indexnr;
- while (i>0) do
- begin
- dec(i);
- if (i>0) and assigned(data^[i]) then
- begin
- data^[i]^.indexnext:=p;
- break;
- end;
- end;
- if i=0 then
- first:=p;
- { update linked list forward }
- i:=p^.indexnr;
- while (i<=count) do
- begin
- inc(i);
- if (i<=count) and assigned(data^[i]) then
- begin
- p^.indexnext:=data^[i];
- exit;
- end;
- end;
- if i>count then
- p^.indexnext:=nil;
- end;
- end.
- {
- $Log$
- Revision 1.12 2000-08-27 20:19:38 peter
- * store strings with case in ppu, when an internal symbol is created
- a '$' is prefixed so it's not automatic uppercased
- Revision 1.11 2000/08/27 16:11:50 peter
- * moved some util functions from globals,cobjects to cutils
- * splitted files into finput,fmodule
- Revision 1.10 2000/08/19 18:44:27 peter
- * new tdynamicarray implementation using blocks instead of
- reallocmem (merged)
- Revision 1.9 2000/08/16 18:33:53 peter
- * splitted namedobjectitem.next into indexnext and listnext so it
- can be used in both lists
- * don't allow "word = word" type definitions (merged)
- Revision 1.8 2000/08/13 08:41:57 peter
- * fixed typo in tsinglelist.clear (merged)
- Revision 1.7 2000/08/12 15:34:22 peter
- + usedasmsymbollist to check and reset only the used symbols (merged)
- Revision 1.6 2000/08/10 12:20:44 jonas
- * reallocmem is now also used under Delphi (merged from fixes branch)
- Revision 1.5 2000/08/09 12:09:45 jonas
- * tidexarray and tdynamicarray now use reallocmem() under FPC for
- growing (merged from fixes branch)
- Revision 1.4 2000/08/06 19:42:40 peter
- * removed note
- Revision 1.3 2000/08/02 19:49:58 peter
- * first things for default parameters
- Revision 1.2 2000/07/13 11:32:38 michael
- + removed logs
- }
|