123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602 |
- {
- $Id$
- Copyright (c) 1998-2000 by Peter Vreman
- This unit handles the verbose management
- 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.
- ****************************************************************************
- }
- unit verbose;
- interface
- uses
- messages,cobjects;
- {$ifdef TP}
- {$define EXTERN_MSG}
- {$endif}
- {$ifndef EXTERN_MSG}
- {$i msgtxt.inc}
- {$endif}
- {$i msgidx.inc}
- Const
- { <$10000 will show file and line }
- V_None = $0;
- V_Fatal = $1;
- V_Error = $2;
- V_Normal = $4; { doesn't show a text like Error: }
- V_Warning = $8;
- V_Note = $10;
- V_Hint = $20;
- V_Macro = $100;
- V_Procedure = $200;
- V_Conditional = $400;
- V_Assem = $800;
- V_Declarations = $1000;
- V_Info = $10000;
- V_Status = $20000;
- V_Used = $40000;
- V_Tried = $80000;
- V_Debug = $100000;
- V_Executable = $200000;
- V_ShowFile = $ffff;
- V_All = $ffffffff;
- V_Default = V_Fatal + V_Error + V_Normal;
- var
- msg : pmessage;
- procedure SetRedirectFile(const fn:string);
- function SetVerbosity(const s:string):boolean;
- procedure LoadMsgFile(const fn:string);
- procedure Stop;
- procedure ShowStatus;
- function ErrorCount:longint;
- procedure SetErrorFlags(const s:string);
- procedure GenerateError;
- procedure Internalerror(i:longint);
- procedure Comment(l:longint;s:string);
- function MessagePchar(w:longint):pchar;
- procedure Message(w:longint);
- procedure Message1(w:longint;const s1:string);
- procedure Message2(w:longint;const s1,s2:string);
- procedure Message3(w:longint;const s1,s2,s3:string);
- procedure MessagePos(const pos:tfileposinfo;w:longint);
- procedure MessagePos1(const pos:tfileposinfo;w:longint;const s1:string);
- procedure MessagePos2(const pos:tfileposinfo;w:longint;const s1,s2:string);
- procedure MessagePos3(const pos:tfileposinfo;w:longint;const s1,s2,s3:string);
- procedure InitVerbose;
- procedure DoneVerbose;
- implementation
- uses
- files,comphook,
- version,globals;
- var
- redirexitsave : pointer;
- {****************************************************************************
- Extra Handlers for default compiler
- ****************************************************************************}
- procedure DoneRedirectFile;{$ifndef FPC}far;{$ENDIF}
- begin
- exitproc:=redirexitsave;
- if status.use_redir then
- close(status.redirfile);
- end;
- procedure SetRedirectFile(const fn:string);
- begin
- assign(status.redirfile,fn);
- {$I-}
- append(status.redirfile);
- if ioresult <> 0 then
- rewrite(status.redirfile);
- {$I+}
- status.use_redir:=(ioresult=0);
- if status.use_redir then
- begin
- redirexitsave:=exitproc;
- exitproc:=@DoneRedirectFile;
- end;
- end;
- function SetVerbosity(const s:string):boolean;
- var
- m : Longint;
- i : Integer;
- inverse : boolean;
- c : char;
- begin
- Setverbosity:=false;
- val(s,m,i);
- if (i=0) and (s<>'') then
- status.verbosity:=m
- else
- begin
- i:=1;
- while i<=length(s) do
- begin
- c:=upcase(s[i]);
- inverse:=false;
- { on/off ? }
- if (i<length(s)) then
- case s[i+1] of
- '-' : begin
- inc(i);
- inverse:=true;
- end;
- '+' : inc(i);
- end;
- { handle switch }
- case c of
- { Special cases }
- 'A' : status.verbosity:=V_All;
- '0' : status.verbosity:=V_Default;
- 'R' : begin
- if inverse then
- begin
- status.use_gccoutput:=false;
- status.use_stderr:=false;
- end
- else
- begin
- status.use_gccoutput:=true;
- status.use_stderr:=true;
- end;
- end;
- { Normal cases - do an or }
- 'E' : if inverse then
- status.verbosity:=status.verbosity and (not V_Error)
- else
- status.verbosity:=status.verbosity or V_Error;
- 'I' : if inverse then
- status.verbosity:=status.verbosity and (not V_Info)
- else
- status.verbosity:=status.verbosity or V_Info;
- 'W' : if inverse then
- status.verbosity:=status.verbosity and (not V_Warning)
- else
- status.verbosity:=status.verbosity or V_Warning;
- 'N' : if inverse then
- status.verbosity:=status.verbosity and (not V_Note)
- else
- status.verbosity:=status.verbosity or V_Note;
- 'H' : if inverse then
- status.verbosity:=status.verbosity and (not V_Hint)
- else
- status.verbosity:=status.verbosity or V_Hint;
- 'L' : if inverse then
- status.verbosity:=status.verbosity and (not V_Status)
- else
- status.verbosity:=status.verbosity or V_Status;
- 'U' : if inverse then
- status.verbosity:=status.verbosity and (not V_Used)
- else
- status.verbosity:=status.verbosity or V_Used;
- 'T' : if inverse then
- status.verbosity:=status.verbosity and (not V_Tried)
- else
- status.verbosity:=status.verbosity or V_Tried;
- 'M' : if inverse then
- status.verbosity:=status.verbosity and (not V_Macro)
- else
- status.verbosity:=status.verbosity or V_Macro;
- 'P' : if inverse then
- status.verbosity:=status.verbosity and (not V_Procedure)
- else
- status.verbosity:=status.verbosity or V_Procedure;
- 'C' : if inverse then
- status.verbosity:=status.verbosity and (not V_Conditional)
- else
- status.verbosity:=status.verbosity or V_Conditional;
- 'D' : if inverse then
- status.verbosity:=status.verbosity and (not V_Debug)
- else
- status.verbosity:=status.verbosity or V_Debug;
- 'B' : if inverse then
- status.verbosity:=status.verbosity and (not V_Declarations)
- else
- status.verbosity:=status.verbosity or V_Declarations;
- 'X' : if inverse then
- status.verbosity:=status.verbosity and (not V_Executable)
- else
- status.verbosity:=status.verbosity or V_Executable;
- 'Z' : if inverse then
- status.verbosity:=status.verbosity and (not V_Assem)
- else
- status.verbosity:=status.verbosity or V_Assem;
- end;
- inc(i);
- end;
- end;
- if status.verbosity=0 then
- status.verbosity:=V_Default;
- setverbosity:=true;
- end;
- procedure LoadMsgFile(const fn:string);
- begin
- if not msg^.LoadExtern(fn) then
- begin
- {$IFDEF TP}
- writeln('Fatal: Cannot find error message file.');
- halt(3);
- {$ELSE}
- msg^.LoadIntern(@msgtxt,msgtxtsize);
- {$ENDIF TP}
- end;
- end;
- var
- lastfileidx,
- lastmoduleidx : longint;
- Procedure UpdateStatus;
- begin
- { fix status }
- status.currentline:=aktfilepos.line;
- status.currentcolumn:=aktfilepos.column;
- if assigned(current_module) and assigned(current_module^.sourcefiles) and
- ((current_module^.unit_index<>lastmoduleidx) or
- (aktfilepos.fileindex<>lastfileidx)) then
- begin
- { update status record }
- status.currentmodule:=current_module^.modulename^;
- status.currentsource:=current_module^.sourcefiles^.get_file_name(aktfilepos.fileindex);
- status.currentsourcepath:=current_module^.sourcefiles^.get_file_path(aktfilepos.fileindex);
- { update lastfileidx only if name known PM }
- if status.currentsource<>'' then
- lastfileidx:=aktfilepos.fileindex
- else
- lastfileidx:=0;
- lastmoduleidx:=current_module^.unit_index;
- end;
- end;
- procedure stop;
- begin
- {$ifndef TP}
- do_stop();
- {$else}
- do_stop;
- {$endif}
- end;
- procedure ShowStatus;
- begin
- UpdateStatus;
- {$ifndef TP}
- if do_status() then
- stop;
- {$else}
- if do_status then
- stop;
- {$endif}
- end;
- function ErrorCount:longint;
- begin
- ErrorCount:=status.errorcount;
- end;
- procedure SetErrorFlags(const s:string);
- var
- code : integer;
- i,j,l : longint;
- begin
- { empty string means error count = 1 for backward compatibility (PFV) }
- if s='' then
- begin
- status.maxerrorcount:=1;
- exit;
- end;
- i:=0;
- while (i<length(s)) do
- begin
- inc(i);
- case s[i] of
- '0'..'9' :
- begin
- j:=i;
- while (j<=length(s)) and (s[j] in ['0'..'9']) do
- inc(j);
- val(copy(s,i,j-i),l,code);
- if code<>0 then
- l:=1;
- status.maxerrorcount:=l;
- i:=j;
- end;
- 'w','W' :
- status.errorwarning:=true;
- 'n','N' :
- status.errornote:=true;
- 'h','H' :
- status.errorhint:=true;
- end;
- end;
- end;
- procedure GenerateError;
- begin
- inc(status.errorcount);
- end;
- procedure internalerror(i : longint);
- begin
- UpdateStatus;
- do_internalerror(i);
- inc(status.errorcount);
- stop;
- end;
- procedure Comment(l:longint;s:string);
- var
- dostop : boolean;
- begin
- dostop:=((l and V_Fatal)<>0);
- if ((l and V_Error)<>0) or
- (status.errorwarning and ((l and V_Warning)<>0)) or
- (status.errornote and ((l and V_Note)<>0)) or
- (status.errorhint and ((l and V_Hint)<>0)) then
- inc(status.errorcount);
- { Create status info }
- UpdateStatus;
- { Fix replacements }
- DefaultReplacements(s);
- { show comment }
- if do_comment(l,s) or dostop then
- stop;
- if (status.errorcount>=status.maxerrorcount) and not status.skip_error then
- begin
- Message1(unit_f_errors_in_unit,tostr(status.errorcount));
- status.skip_error:=true;
- stop;
- end;
- end;
- Procedure Msg2Comment(s:string);
- var
- idx,i,v : longint;
- dostop : boolean;
- begin
- {Reset}
- dostop:=false;
- v:=0;
- {Parse options}
- idx:=pos('_',s);
- if idx=0 then
- v:=V_Normal
- else
- if (idx >= 1) And (idx <= 5) then
- begin
- for i:=1 to idx do
- begin
- case upcase(s[i]) of
- 'F' :
- begin
- v:=v or V_Fatal;
- inc(status.errorcount);
- dostop:=true;
- end;
- 'E' :
- begin
- v:=v or V_Error;
- inc(status.errorcount);
- end;
- 'O' :
- v:=v or V_Normal;
- 'W':
- begin
- v:=v or V_Warning;
- if status.errorwarning then
- inc(status.errorcount);
- end;
- 'N' :
- begin
- v:=v or V_Note;
- if status.errornote then
- inc(status.errorcount);
- end;
- 'H' :
- begin
- v:=v or V_Hint;
- if status.errorhint then
- inc(status.errorcount);
- end;
- 'I' :
- v:=v or V_Info;
- 'L' :
- v:=v or V_Status;
- 'U' :
- v:=v or V_Used;
- 'T' :
- v:=v or V_Tried;
- 'M' :
- v:=v or V_Macro;
- 'P' :
- v:=v or V_Procedure;
- 'C' :
- v:=v or V_Conditional;
- 'D' :
- v:=v or V_Debug;
- 'B' :
- v:=v or V_Declarations;
- 'X' :
- v:=v or V_Executable;
- 'Z' :
- v:=v or V_Assem;
- 'S' :
- dostop:=true;
- '_' : ;
- end;
- end;
- end;
- Delete(s,1,idx);
- { fix status }
- UpdateStatus;
- { Fix replacements }
- DefaultReplacements(s);
- { show comment }
- if do_comment(v,s) or dostop then
- stop;
- if (status.errorcount>=status.maxerrorcount) and not status.skip_error then
- begin
- Message1(unit_f_errors_in_unit,tostr(status.errorcount));
- status.skip_error:=true;
- stop;
- end;
- end;
- function MessagePchar(w:longint):pchar;
- begin
- MessagePchar:=msg^.GetPchar(w)
- end;
- procedure Message(w:longint);
- begin
- Msg2Comment(msg^.Get(w));
- end;
- procedure Message1(w:longint;const s1:string);
- begin
- Msg2Comment(msg^.Get1(w,s1));
- end;
- procedure Message2(w:longint;const s1,s2:string);
- begin
- Msg2Comment(msg^.Get2(w,s1,s2));
- end;
- procedure Message3(w:longint;const s1,s2,s3:string);
- begin
- Msg2Comment(msg^.Get3(w,s1,s2,s3));
- end;
- procedure MessagePos(const pos:tfileposinfo;w:longint);
- var
- oldpos : tfileposinfo;
- begin
- oldpos:=aktfilepos;
- aktfilepos:=pos;
- Msg2Comment(msg^.Get(w));
- aktfilepos:=oldpos;
- end;
- procedure MessagePos1(const pos:tfileposinfo;w:longint;const s1:string);
- var
- oldpos : tfileposinfo;
- begin
- oldpos:=aktfilepos;
- aktfilepos:=pos;
- Msg2Comment(msg^.Get1(w,s1));
- aktfilepos:=oldpos;
- end;
- procedure MessagePos2(const pos:tfileposinfo;w:longint;const s1,s2:string);
- var
- oldpos : tfileposinfo;
- begin
- oldpos:=aktfilepos;
- aktfilepos:=pos;
- Msg2Comment(msg^.Get2(w,s1,s2));
- aktfilepos:=oldpos;
- end;
- procedure MessagePos3(const pos:tfileposinfo;w:longint;const s1,s2,s3:string);
- var
- oldpos : tfileposinfo;
- begin
- oldpos:=aktfilepos;
- aktfilepos:=pos;
- Msg2Comment(msg^.Get3(w,s1,s2,s3));
- aktfilepos:=oldpos;
- end;
- procedure InitVerbose;
- begin
- { Init }
- msg:=new(pmessage,Init(20,msgidxmax));
- if msg=nil then
- begin
- writeln('Fatal: MsgIdx Wrong');
- halt(3);
- end;
- {$ifndef EXTERN_MSG}
- msg^.LoadIntern(@msgtxt,msgtxtsize);
- {$else}
- LoadMsgFile(exepath+'errore.msg');
- {$endif}
- FillChar(Status,sizeof(TCompilerStatus),0);
- status.verbosity:=V_Default;
- Status.MaxErrorCount:=50;
- end;
- procedure DoneVerbose;
- begin
- if assigned(msg) then
- begin
- dispose(msg,Done);
- msg:=nil;
- end;
- end;
- end.
- {
- $Log$
- Revision 1.3 2000-08-13 12:54:55 peter
- * class member decl wrong then no other error after it
- * -vb has now also line numbering
- * -vb is also used for interface/implementation different decls and
- doesn't list the current function (merged)
- Revision 1.2 2000/07/13 11:32:54 michael
- + removed logs
- }
|