123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461 |
- {
- $Id$
- Copyright (c) 1993-98 by the FPC development team
- Support routines for creating the browser log
- 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}
- {$N+,E+}
- {$endif}
- unit browlog;
- interface
- uses
- cobjects,globtype,files,symtable;
- const
- {$ifdef TP}
- logbufsize = 1024;
- {$else}
- logbufsize = 16384;
- {$endif}
- type
- pbrowserlog=^tbrowserlog;
- tbrowserlog=object
- fname : string;
- logopen : boolean;
- stderrlog : boolean;
- f : file;
- elements_to_list : pstringqueue;
- buf : pchar;
- bufidx : longint;
- identidx : longint;
- constructor init;
- destructor done;
- procedure setfilename(const fn:string);
- procedure createlog;
- procedure flushlog;
- procedure addlog(const s:string);
- procedure addlogrefs(p:pref);
- procedure closelog;
- procedure ident;
- procedure unident;
- procedure browse_symbol(const sr : string);
- procedure list_elements;
- procedure list_debug_infos;
- end;
- var
- browserlog : tbrowserlog;
- procedure WriteBrowserLog;
- procedure InitBrowserLog;
- procedure DoneBrowserLog;
- implementation
- uses
- comphook,globals,systems,verbose;
- function get_file_line(ref:pref): string;
- var
- inputfile : pinputfile;
- begin
- get_file_line:='';
- with ref^ do
- begin
- inputfile:=get_source_file(moduleindex,posinfo.fileindex);
- if assigned(inputfile) then
- if status.use_gccoutput then
- { for use with rhide
- add warning so that it does not interpret
- this as an error !! }
- get_file_line:=lower(inputfile^.name^)
- +':'+tostr(posinfo.line)+': warning: '+tostr(posinfo.column)+':'
- else
- get_file_line:=inputfile^.name^
- +'('+tostr(posinfo.line)+','+tostr(posinfo.column)+')'
- else
- if status.use_gccoutput then
- get_file_line:='file_unknown:'
- +tostr(posinfo.line)+': warning: '+tostr(posinfo.column)+':'
- else
- get_file_line:='file_unknown('
- +tostr(posinfo.line)+','+tostr(posinfo.column)+')'
- end;
- end;
- {****************************************************************************
- TBrowser
- ****************************************************************************}
- constructor tbrowserlog.init;
- begin
- fname:=FixFileName('browser.log');
- logopen:=false;
- elements_to_list:=new(pstringqueue,init);
- end;
- destructor tbrowserlog.done;
- begin
- if logopen then
- closelog;
- dispose(elements_to_list,done);
- end;
- procedure tbrowserlog.setfilename(const fn:string);
- begin
- fname:=FixFileName(fn);
- end;
- procedure tbrowserlog.createlog;
- begin
- if logopen then
- closelog;
- assign(f,fname);
- {$I-}
- rewrite(f,1);
- {$I+}
- if ioresult<>0 then
- exit;
- logopen:=true;
- getmem(buf,logbufsize);
- bufidx:=0;
- identidx:=0;
- end;
- procedure tbrowserlog.flushlog;
- begin
- if logopen then
- if not stderrlog then
- blockwrite(f,buf^,bufidx)
- else
- begin
- buf[bufidx]:=#0;
- {$ifndef TP}
- write(stderr,buf);
- {$else TP}
- write(buf);
- {$endif TP}
- end;
- bufidx:=0;
- end;
- procedure tbrowserlog.closelog;
- begin
- if logopen then
- begin
- flushlog;
- close(f);
- freemem(buf,logbufsize);
- logopen:=false;
- end;
- end;
- procedure tbrowserlog.list_elements;
- begin
- stderrlog:=true;
- getmem(buf,logbufsize);
- logopen:=true;
- while not elements_to_list^.empty do
- browse_symbol(elements_to_list^.get);
- flushlog;
- logopen:=false;
- freemem(buf,logbufsize);
- stderrlog:=false;
- end;
- procedure tbrowserlog.list_debug_infos;
- {$ifndef debug}
- begin
- end;
- {$else debug}
- var
- hp : pmodule;
- ff : pinputfile;
- begin
- hp:=pmodule(loaded_units.first);
- while assigned(hp) do
- begin
- addlog('Unit '+hp^.modulename^+' has index '+tostr(hp^.unit_index));
- ff:=hp^.sourcefiles^.files;
- while assigned(ff) do
- begin
- addlog('File '+ff^.name^+' index '+tostr(ff^.ref_index));
- ff:=ff^.ref_next;
- end;
- hp:=pmodule(hp^.next);
- end;
- end;
- {$endif debug}
- procedure tbrowserlog.addlog(const s:string);
- begin
- if not logopen then
- exit;
- { add ident }
- if (identidx>0) and not stderrlog then
- begin
- if bufidx+identidx>logbufsize then
- flushlog;
- fillchar(buf[bufidx],identidx,' ');
- inc(bufidx,identidx);
- end;
- { add text }
- if bufidx+length(s)>logbufsize-2 then
- flushlog;
- move(s[1],buf[bufidx],length(s));
- inc(bufidx,length(s));
- { add crlf }
- buf[bufidx]:=target_os.newline[1];
- inc(bufidx);
- if length(target_os.newline)=2 then
- begin
- buf[bufidx]:=target_os.newline[2];
- inc(bufidx);
- end;
- end;
- procedure tbrowserlog.addlogrefs(p:pref);
- var
- ref : pref;
- begin
- ref:=p;
- Ident;
- while assigned(ref) do
- begin
- Browserlog.AddLog(get_file_line(ref));
- ref:=ref^.nextref;
- end;
- Unident;
- end;
- procedure tbrowserlog.browse_symbol(const sr : string);
- var
- sym,symb : psym;
- symt : psymtable;
- hp : pmodule;
- s,ss : string;
- p : byte;
- procedure next_substring;
- begin
- p:=pos('.',s);
- if p>0 then
- begin
- ss:=copy(s,1,p-1);
- s:=copy(s,p+1,255);
- end
- else
- begin
- ss:=s;
- s:='';
- end;
- addlog('substring : '+ss);
- end;
- begin
- { don't create a new reference when
- looking for the symbol !! }
- make_ref:=false;
- s:=sr;
- symt:=symtablestack;
- next_substring;
- if assigned(symt) then
- begin
- sym:=symt^.search(ss);
- if sym=nil then
- sym:=symt^.search(upper(ss));
- end
- else
- sym:=nil;
- if assigned(sym) and (sym^.typ=unitsym) and (s<>'') then
- begin
- addlog('Unitsym found !');
- symt:=punitsym(sym)^.unitsymtable;
- if assigned(symt) then
- begin
- next_substring;
- sym:=symt^.search(ss);
- end
- else
- sym:=nil;
- end;
- if not assigned(sym) then
- begin
- symt:=nil;
- { try all loaded_units }
- hp:=pmodule(loaded_units.first);
- while assigned(hp) do
- begin
- if hp^.modulename^=upper(ss) then
- begin
- symt:=hp^.globalsymtable;
- break;
- end;
- hp:=pmodule(hp^.next);
- end;
- if not assigned(symt) then
- begin
- addlog('!!!Symbol '+ss+' not found !!!');
- make_ref:=true;
- exit;
- end
- else
- begin
- next_substring;
- sym:=symt^.search(ss);
- if sym=nil then
- sym:=symt^.search(upper(ss));
- end;
- end;
- while assigned(sym) and (s<>'') do
- begin
- next_substring;
- case sym^.typ of
- typesym :
- begin
- if ptypesym(sym)^.definition^.deftype in [recorddef,objectdef] then
- begin
- if ptypesym(sym)^.definition^.deftype=recorddef then
- symt:=precorddef(ptypesym(sym)^.definition)^.symtable
- else
- symt:=pobjectdef(ptypesym(sym)^.definition)^.symtable;
- sym:=symt^.search(ss);
- if sym=nil then
- sym:=symt^.search(upper(ss));
- end;
- end;
- varsym :
- begin
- if pvarsym(sym)^.definition^.deftype in [recorddef,objectdef] then
- begin
- if pvarsym(sym)^.definition^.deftype=recorddef then
- symt:=precorddef(pvarsym(sym)^.definition)^.symtable
- else
- symt:=pobjectdef(pvarsym(sym)^.definition)^.symtable;
- sym:=symt^.search(ss);
- if sym=nil then
- sym:=symt^.search(upper(ss));
- end;
- end;
- procsym :
- begin
- symt:=pprocsym(sym)^.definition^.parast;
- symb:=symt^.search(ss);
- if symb=nil then
- symb:=symt^.search(upper(ss));
- if not assigned(symb) then
- begin
- symt:=pprocsym(sym)^.definition^.parast;
- sym:=symt^.search(ss);
- if symb=nil then
- symb:=symt^.search(upper(ss));
- end
- else
- sym:=symb;
- end;
- {else
- sym^.add_to_browserlog;}
- end;
- end;
- if assigned(sym) then
- sym^.add_to_browserlog
- else
- addlog('!!!Symbol '+ss+' not found !!!');
- make_ref:=true;
- end;
- procedure tbrowserlog.ident;
- begin
- inc(identidx,2);
- end;
- procedure tbrowserlog.unident;
- begin
- dec(identidx,2);
- end;
- {****************************************************************************
- Helpers
- ****************************************************************************}
- procedure WriteBrowserLog;
- var
- p : psymtable;
- hp : pmodule;
- begin
- browserlog.CreateLog;
- browserlog.list_debug_infos;
- hp:=pmodule(loaded_units.first);
- while assigned(hp) do
- begin
- p:=psymtable(hp^.globalsymtable);
- if assigned(p) then
- p^.writebrowserlog;
- if cs_local_browser in aktmoduleswitches then
- begin
- p:=psymtable(hp^.localsymtable);
- if assigned(p) then
- p^.writebrowserlog;
- end;
- hp:=pmodule(hp^.next);
- end;
- browserlog.CloseLog;
- end;
- procedure InitBrowserLog;
- begin
- browserlog.init;
- end;
- procedure DoneBrowserLog;
- begin
- browserlog.done;
- end;
- end.
- {
- $Log$
- Revision 1.2 1999-08-03 22:02:30 peter
- * moved bitmask constants to sets
- * some other type/const renamings
- Revision 1.1 1999/01/12 14:25:24 peter
- + BrowserLog for browser.log generation
- + BrowserCol for browser info in TCollections
- * released all other UseBrowser
- }
|