1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408 |
- {
- $Id$
- This file is part of the Free Pascal Run time library.
- Copyright (c) 1993,97 by the Free Pascal development team
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- 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.
- **********************************************************************}
- {
- Possible Defines:
- EOF_CTRLZ Is Ctrl-Z (#26) a EOF mark for textfiles
- SHORT_LINEBREAK Use short Linebreaks #10 instead of #10#13
- SHORT_LINEBREAK is defined in the Linux system unit (syslinux.pp)
- }
- {****************************************************************************
- subroutines For TextFile handling
- ****************************************************************************}
- Procedure FileCloseFunc(Var t:TextRec);
- Begin
- Do_Close(t.Handle);
- t.Handle:=UnusedHandle;
- End;
- Procedure FileReadFunc(var t:TextRec);
- Begin
- t.BufEnd:=Do_Read(t.Handle,Longint(t.Bufptr),t.BufSize);
- t.BufPos:=0;
- End;
- Procedure FileWriteFunc(var t:TextRec);
- Begin
- Do_Write(t.Handle,Longint(t.Bufptr),t.BufPos);
- t.BufPos:=0;
- End;
- Procedure FileOpenFunc(var t:TextRec);
- var
- Flags : Longint;
- Begin
- Case t.mode Of
- fmInput : Flags:=$1000;
- fmOutput : Flags:=$1101;
- fmAppend : Flags:=$1011;
- else
- begin
- InOutRes:=102;
- exit;
- end;
- End;
- Do_Open(t,PChar(@t.Name),Flags);
- t.CloseFunc:=@FileCloseFunc;
- t.FlushFunc:=nil;
- if t.Mode=fmInput then
- t.InOutFunc:=@FileReadFunc
- else
- begin
- t.InOutFunc:=@FileWriteFunc;
- { Only install flushing if its a NOT a file }
- if Do_Isdevice(t.Handle) then
- t.FlushFunc:=@FileWriteFunc;
- end;
- End;
- Procedure assign(var t:Text;const s:String);
- Begin
- FillChar(t,SizEof(TextRec),0);
- { only set things that are not zero }
- TextRec(t).Handle:=UnusedHandle;
- TextRec(t).mode:=fmClosed;
- TextRec(t).BufSize:=TextRecBufSize;
- TextRec(t).Bufptr:=@TextRec(t).Buffer;
- TextRec(t).OpenFunc:=@FileOpenFunc;
- Move(s[1],TextRec(t).Name,Length(s));
- End;
- Procedure assign(var t:Text;p:pchar);
- begin
- Assign(t,StrPas(p));
- end;
- Procedure assign(var t:Text;c:char);
- begin
- Assign(t,string(c));
- end;
- Procedure Close(var t : Text);[IOCheck];
- Begin
- if InOutRes<>0 then
- Exit;
- If (TextRec(t).mode<>fmClosed) Then
- Begin
- { Write pending buffer }
- If Textrec(t).Mode=fmoutput then
- FileFunc(TextRec(t).InOutFunc)(TextRec(t));
- TextRec(t).mode:=fmClosed;
- { Only close functions not connected to stdout.}
- If ((TextRec(t).Handle<>StdInputHandle) and
- (TextRec(t).Handle<>StdOutputHandle) and
- (TextRec(t).Handle<>StdErrorHandle)) Then
- FileFunc(TextRec(t).CloseFunc)(TextRec(t));
- { Reset buffer for safety }
- TextRec(t).BufPos:=0;
- TextRec(t).BufEnd:=0;
- End;
- End;
- Procedure OpenText(var t : Text;mode,defHdl:Longint);
- Begin
- Case TextRec(t).mode Of {This gives the fastest code}
- fmInput,fmOutput,fmInOut : Close(t);
- fmClosed : ;
- else
- Begin
- InOutRes:=102;
- exit;
- End;
- End;
- TextRec(t).mode:=mode;
- TextRec(t).bufpos:=0;
- TextRec(t).bufend:=0;
- FileFunc(TextRec(t).OpenFunc)(TextRec(t));
- { reset the mode to closed when an error has occured }
- if InOutRes<>0 then
- TextRec(t).mode:=fmClosed;
- End;
- Procedure Rewrite(var t : Text);[IOCheck];
- Begin
- If InOutRes<>0 then
- exit;
- OpenText(t,fmOutput,1);
- End;
- Procedure Reset(var t : Text);[IOCheck];
- Begin
- If InOutRes<>0 then
- exit;
- OpenText(t,fmInput,0);
- End;
- Procedure Append(var t : Text);[IOCheck];
- Begin
- If InOutRes<>0 then
- exit;
- OpenText(t,fmAppend,1);
- End;
- Procedure Flush(var t : Text);[IOCheck];
- Begin
- If InOutRes<>0 then
- exit;
- If TextRec(t).mode<>fmOutput Then
- begin
- InOutres:=105;
- exit;
- end;
- { Not the flushfunc but the inoutfunc should be used, becuase that
- writes the data, flushfunc doesn't need to be assigned }
- FileFunc(TextRec(t).InOutFunc)(TextRec(t));
- End;
- Procedure Erase(var t:Text);[IOCheck];
- Begin
- If InOutRes <> 0 then
- exit;
- If TextRec(t).mode=fmClosed Then
- Do_Erase(PChar(@TextRec(t).Name));
- End;
- Procedure Rename(var t : text;p:pchar);[IOCheck];
- Begin
- If InOutRes <> 0 then
- exit;
- If TextRec(t).mode=fmClosed Then
- Begin
- Do_Rename(PChar(@TextRec(t).Name),p);
- Move(p^,TextRec(t).Name,StrLen(p)+1);
- End;
- End;
- Procedure Rename(var t : Text;const s : string);[IOCheck];
- var
- p : array[0..255] Of Char;
- Begin
- If InOutRes <> 0 then
- exit;
- Move(s[1],p,Length(s));
- p[Length(s)]:=#0;
- Rename(t,Pchar(@p));
- End;
- Procedure Rename(var t : Text;c : char);[IOCheck];
- var
- p : array[0..1] Of Char;
- Begin
- If InOutRes <> 0 then
- exit;
- p[0]:=c;
- p[1]:=#0;
- Rename(t,Pchar(@p));
- End;
- Function Eof(Var t: Text): Boolean;[IOCheck];
- Begin
- If (InOutRes<>0) then
- exit(true);
- if (TextRec(t).mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit(true);
- end;
- If TextRec(t).BufPos>=TextRec(t).BufEnd Then
- begin
- FileFunc(TextRec(t).InOutFunc)(TextRec(t));
- If TextRec(t).BufPos>=TextRec(t).BufEnd Then
- exit(true);
- end;
- {$ifdef EOF_CTRLZ}
- Eof:=(TextRec(t).Bufptr^[TextRec(t).BufPos]=#26);
- {$else}
- Eof:=false;
- {$endif EOL_CTRLZ}
- end;
- Function Eof:Boolean;
- Begin
- Eof:=Eof(Input);
- End;
- Function SeekEof (Var t : Text) : Boolean;
- Begin
- If (InOutRes<>0) then
- exit(true);
- if (TextRec(t).mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit(true);
- end;
- repeat
- If TextRec(t).BufPos>=TextRec(t).BufEnd Then
- begin
- FileFunc(TextRec(t).InOutFunc)(TextRec(t));
- If TextRec(t).BufPos>=TextRec(t).BufEnd Then
- exit(true);
- end;
- case TextRec(t).Bufptr^[TextRec(t).BufPos] of
- #26 : exit(true);
- #10,#13,
- #9,' ' : ;
- else
- exit(false);
- end;
- inc(TextRec(t).BufPos);
- until false;
- End;
- Function SeekEof : Boolean;
- Begin
- SeekEof:=SeekEof(Input);
- End;
- Function Eoln(var t:Text) : Boolean;
- Begin
- If (InOutRes<>0) then
- exit(true);
- if (TextRec(t).mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit(true);
- end;
- If TextRec(t).BufPos>=TextRec(t).BufEnd Then
- begin
- FileFunc(TextRec(t).InOutFunc)(TextRec(t));
- If TextRec(t).BufPos>=TextRec(t).BufEnd Then
- exit(true);
- end;
- Eoln:=(TextRec(t).Bufptr^[TextRec(t).BufPos] in [#10,#13]);
- End;
- Function Eoln : Boolean;
- Begin
- Eoln:=Eoln(Input);
- End;
- Function SeekEoln (Var t : Text) : Boolean;
- Begin
- If (InOutRes<>0) then
- exit(true);
- if (TextRec(t).mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit(true);
- end;
- repeat
- If TextRec(t).BufPos>=TextRec(t).BufEnd Then
- begin
- FileFunc(TextRec(t).InOutFunc)(TextRec(t));
- If TextRec(t).BufPos>=TextRec(t).BufEnd Then
- exit(true);
- end;
- case TextRec(t).Bufptr^[TextRec(t).BufPos] of
- #26,
- #10,#13 : exit(true);
- #9,' ' : ;
- else
- exit(false);
- end;
- inc(TextRec(t).BufPos);
- until false;
- End;
- Function SeekEoln : Boolean;
- Begin
- SeekEoln:=SeekEoln(Input);
- End;
- Procedure SetTextBuf(Var F : Text; Var Buf);[INTERNPROC: In_settextbuf_file_x];
- Procedure SetTextBuf(Var F : Text; Var Buf; Size : Word);
- Begin
- TextRec(f).BufPtr:=@Buf;
- TextRec(f).BufSize:=Size;
- TextRec(f).BufPos:=0;
- TextRec(f).BufEnd:=0;
- End;
- {*****************************************************************************
- Write(Ln)
- *****************************************************************************}
- Procedure WriteBuffer(var f:TextRec;var b;len:longint);
- var
- p : pchar;
- left,
- idx : longint;
- begin
- p:=pchar(@b);
- idx:=0;
- left:=f.BufSize-f.BufPos;
- while len>left do
- begin
- move(p[idx],f.Bufptr^[f.BufPos],left);
- dec(len,left);
- inc(idx,left);
- inc(f.BufPos,left);
- FileFunc(f.InOutFunc)(f);
- left:=f.BufSize-f.BufPos;
- end;
- move(p[idx],f.Bufptr^[f.BufPos],len);
- inc(f.BufPos,len);
- end;
- Procedure WriteBlanks(var f:TextRec;len:longint);
- var
- left : longint;
- begin
- left:=f.BufSize-f.BufPos;
- while len>left do
- begin
- FillChar(f.Bufptr^[f.BufPos],left,' ');
- dec(len,left);
- inc(f.BufPos,left);
- FileFunc(f.InOutFunc)(f);
- left:=f.BufSize-f.BufPos;
- end;
- FillChar(f.Bufptr^[f.BufPos],len,' ');
- inc(f.BufPos,len);
- end;
- Procedure Write_End(var f:TextRec);[Public,Alias:'FPC_WRITE_END'];
- begin
- if f.FlushFunc<>nil then
- FileFunc(f.FlushFunc)(f);
- end;
- Procedure Writeln_End(var f:TextRec);[Public,Alias:'FPC_WRITELN_END'];
- const
- {$IFDEF SHORT_LINEBREAK}
- eollen=1;
- eol : array[0..0] of char=(#10);
- {$ELSE SHORT_LINEBREAK}
- eollen=2;
- eol : array[0..1] of char=(#13,#10);
- {$ENDIF SHORT_LINEBREAK}
- begin
- If InOutRes <> 0 then exit;
- { Write EOL }
- WriteBuffer(f,eol,eollen);
- { Flush }
- if f.FlushFunc<>nil then
- FileFunc(f.FlushFunc)(f);
- end;
- Procedure Write_Str(Len : Longint;var f : TextRec;const s : String);[Public,Alias:'FPC_WRITE_TEXT_'+{$ifdef NEWREADINT}'SHORTSTR'{$else}'STRING'{$endif}];
- Begin
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmOutput) Then
- begin
- InOutRes:=105;
- exit;
- end;
- If Len>Length(s) Then
- WriteBlanks(f,Len-Length(s));
- WriteBuffer(f,s[1],Length(s));
- End;
- {$ifndef NEWWRITEARRAY}
- type
- array00=array[0..0] of char;
- {$endif}
- Procedure Write_Array(Len : Longint;var f : TextRec;const s : {$ifdef NEWWRITEARRAY} array of char{$else}array00{$endif});[Public,Alias:'FPC_WRITE_TEXT_PCHAR_AS_ARRAY'];
- var
- ArrayLen : longint;
- p : pchar;
- Begin
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmOutput) Then
- begin
- InOutRes:=105;
- exit;
- end;
- p:=pchar(@s);
- ArrayLen:=StrLen(p);
- if ArrayLen>high(s) then
- ArrayLen:=high(s);
- If Len>ArrayLen Then
- WriteBlanks(f,Len-ArrayLen);
- WriteBuffer(f,p^,ArrayLen);
- End;
- Procedure Write_PChar(Len : Longint;var f : TextRec;p : PChar);[Public,Alias:'FPC_WRITE_TEXT_PCHAR_AS_POINTER'];
- var
- PCharLen : longint;
- Begin
- If (p=nil) or (InOutRes<>0) then
- exit;
- if (f.mode<>fmOutput) Then
- begin
- InOutRes:=105;
- exit;
- end;
- PCharLen:=StrLen(p);
- If Len>PCharLen Then
- WriteBlanks(f,Len-PCharLen);
- WriteBuffer(f,p^,PCharLen);
- End;
- Procedure Write_Text_AnsiString (Len : Longint; Var T : TextRec; S : Pointer);[Public,alias:'FPC_WRITE_TEXT_'+{$ifdef NEWREADINT}'ANSISTR'{$else}'ANSISTRING'{$endif}];
- {
- Writes a AnsiString to the Text file T
- }
- begin
- If S=Nil then
- exit;
- Write_pchar (Len,t,PChar(S));
- end;
- Procedure Write_SInt(Len : Longint;var t : TextRec;l : ValSInt);[Public,Alias:'FPC_WRITE_TEXT_'+{$ifdef NEWREADINT}'SINT'{$else}'LONGINT'{$endif}];
- var
- s : String;
- Begin
- If (InOutRes<>0) then
- exit;
- Str(l,s);
- Write_Str(Len,t,s);
- End;
- Procedure Write_UInt(Len : Longint;var t : TextRec;l : ValUInt);[Public,Alias:'FPC_WRITE_TEXT_'+{$ifdef NEWREADINT}'UINT'{$else}'CARDINAL'{$endif}];
- var
- s : String;
- Begin
- If (InOutRes<>0) then
- exit;
- Str(L,s);
- Write_Str(Len,t,s);
- End;
- {$ifdef INT64}
- procedure write_qword(len : longint;var t : textrec;q : qword);[public,alias:'FPC_WRITE_TEXT_QWORD'];
- var
- s : string;
- begin
- if (InOutRes<>0) then
- exit;
- int_str(q,s);
- write_str(len,t,s);
- end;
- {$endif INT64}
- {$ifdef INTERNDOUBLE}
- Procedure Write_Float(rt,fixkomma,Len : Longint;var t : TextRec;r : ValReal);[Public,Alias:'FPC_WRITE_TEXT_FLOAT'];
- var
- s : String;
- Begin
- If (InOutRes<>0) then
- exit;
- Str_real(Len,fixkomma,r,treal_type(rt),s);
- Write_Str(Len,t,s);
- End;
- {$else INTERNDOUBLE}
- {$ifdef SUPPORT_SINGLE}
- Procedure Write_S32Real(fixkomma,Len : Longint;var t : TextRec;r : single);[Public,Alias:'FPC_WRITE_TEXT_'+{$ifdef INTERNDOUBLE}'S32REAL'{$else}'SINGLE'{$endif}];
- var
- s : String;
- Begin
- If (InOutRes<>0) then
- exit;
- Str_real(Len,fixkomma,r,rt_s32real,s);
- Write_Str(Len,t,s);
- End;
- {$endif SUPPORT_S32REAL}
- {$ifdef SUPPORT_DOUBLE}
- Procedure Write_s64Real(fixkomma,Len : Longint;var t : TextRec;r : double);[Public,Alias:'FPC_WRITE_TEXT_'+{$ifdef INTERNDOUBLE}'S64'{$endif}+'REAL'];
- var
- s : String;
- Begin
- If (InOutRes<>0) then
- exit;
- Str_real(Len,fixkomma,r,rt_s64real,s);
- Write_Str(Len,t,s);
- End;
- {$endif SUPPORT_S64REAL}
- {$ifdef SUPPORT_EXTENDED}
- Procedure Write_S80Real(fixkomma,Len : Longint;var t : TextRec;r : extended);[Public,Alias:'FPC_WRITE_TEXT_'+{$ifdef INTERNDOUBLE}'S80REAL'{$else}'EXTENDED'{$endif}];
- var
- s : String;
- Begin
- If (InOutRes<>0) then
- exit;
- Str_real(Len,fixkomma,r,rt_s80real,s);
- Write_Str(Len,t,s);
- End;
- {$endif SUPPORT_S80REAL}
- {$ifdef SUPPORT_COMP}
- Procedure Write_C64Bit(fixkomma,Len : Longint;var t : TextRec;r : comp);[Public,Alias:'FPC_WRITE_TEXT_'+{$ifdef INTERNDOUBLE}'C64BIT'{$else}'COMP'{$endif}];
- var
- s : String;
- Begin
- If (InOutRes<>0) then
- exit;
- Str_real(Len,fixkomma,r,rt_c64bit,s);
- Write_Str(Len,t,s);
- End;
- {$endif SUPPORT_C64BIT}
- {$ifdef SUPPORT_FIXED}
- Procedure Write_Fixed(fixkomma,Len : Longint;var t : TextRec;r : fixed16);[Public,Alias:'FPC_WRITE_TEXT_'+{$ifdef INTERNDOUBLE}'F16BIT'{$else}'FIXED'{$endif}];
- var
- s : String;
- Begin
- If (InOutRes<>0) then
- exit;
- Str_real(Len,fixkomma,r,rt_f32bit,s);
- Write_Str(Len,t,s);
- End;
- {$endif SUPPORT_F16BIT}
- {$endif INTERNDOUBLE}
- Procedure Write_Boolean(Len : Longint;var t : TextRec;b : Boolean);[Public,Alias:'FPC_WRITE_TEXT_BOOLEAN'];
- Begin
- If (InOutRes<>0) then
- exit;
- { Can't use array[boolean] because b can be >0 ! }
- if b then
- Write_Str(Len,t,'TRUE')
- else
- Write_Str(Len,t,'FALSE');
- End;
- Procedure Write_Char(Len : Longint;var t : TextRec;c : Char);[Public,Alias:'FPC_WRITE_TEXT_CHAR'];
- Begin
- If (InOutRes<>0) then
- exit;
- if (TextRec(t).mode<>fmOutput) Then
- begin
- InOutRes:=105;
- exit;
- end;
- If Len>1 Then
- WriteBlanks(t,Len-1);
- If t.BufPos+1>=t.BufSize Then
- FileFunc(t.InOutFunc)(t);
- t.Bufptr^[t.BufPos]:=c;
- Inc(t.BufPos);
- End;
- {*****************************************************************************
- Read(Ln)
- *****************************************************************************}
- Function NextChar(var f:TextRec;var s:string):Boolean;
- begin
- if f.BufPos<f.BufEnd then
- begin
- s:=s+f.BufPtr^[f.BufPos];
- Inc(f.BufPos);
- If f.BufPos>=f.BufEnd Then
- FileFunc(f.InOutFunc)(f);
- NextChar:=true;
- end
- else
- NextChar:=false;
- end;
- Function IgnoreSpaces(var f:TextRec):Boolean;
- {
- Removes all leading spaces,tab,eols from the input buffer, returns true if
- the buffer is empty
- }
- var
- s : string;
- begin
- s:='';
- IgnoreSpaces:=false;
- while f.Bufptr^[f.BufPos] in [#9,#10,#13,' '] do
- if not NextChar(f,s) then
- exit;
- IgnoreSpaces:=true;
- end;
- Function ReadSign(var f:TextRec;var s:string):Boolean;
- {
- Read + and - sign, return true if buffer is empty
- }
- begin
- ReadSign:=(not (f.Bufptr^[f.BufPos] in ['-','+'])) or NextChar(f,s);
- end;
- Function ReadBase(var f:TextRec;var s:string;var Base:longint):boolean;
- {
- Read the base $ For 16 and % For 2, if buffer is empty return true
- }
- begin
- case f.BufPtr^[f.BufPos] of
- '$' : Base:=16;
- '%' : Base:=2;
- else
- Base:=10;
- end;
- ReadBase:=(Base=10) or NextChar(f,s);
- end;
- Function ReadNumeric(var f:TextRec;var s:string;base:longint):Boolean;
- {
- Read numeric input, if buffer is empty then return True
- }
- var
- c : char;
- begin
- ReadNumeric:=false;
- c:=f.BufPtr^[f.BufPos];
- while ((base>=10) and (c in ['0'..'9'])) or
- ((base=16) and (c in ['A'..'F','a'..'f'])) or
- ((base=2) and (c in ['0'..'1'])) do
- begin
- if not NextChar(f,s) then
- exit;
- c:=f.BufPtr^[f.BufPos];
- end;
- ReadNumeric:=true;
- end;
- Procedure Read_End(var f:TextRec);[Public,Alias:'FPC_READ_END'];
- begin
- if f.FlushFunc<>nil then
- FileFunc(f.FlushFunc)(f);
- end;
- Procedure ReadLn_End(var f : TextRec);[Public,Alias:'FPC_READLN_END'];
- Begin
- { Check error and if file is open and load buf if empty }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- repeat
- If f.BufPos>=f.BufEnd Then
- begin
- FileFunc(f.InOutFunc)(f);
- if f.BufPos>=f.BufEnd then
- break;
- end;
- inc(f.BufPos);
- if (f.BufPtr^[f.BufPos-1]=#10) then
- exit;
- until false;
- { Flush if set }
- if f.FlushFunc<>nil then
- FileFunc(f.FlushFunc)(f);
- End;
- Function ReadPCharLen(var f:TextRec;s:pchar;maxlen:longint):longint;
- var
- sPos,len : Longint;
- p,startp,maxp : pchar;
- Begin
- ReadPCharLen:=0;
- { Check error and if file is open }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- { Read maximal until Maxlen is reached }
- sPos:=0;
- repeat
- If f.BufPos>=f.BufEnd Then
- begin
- FileFunc(f.InOutFunc)(f);
- If f.BufPos>=f.BufEnd Then
- break;
- end;
- p:[email protected]^[f.BufPos];
- if SPos+f.BufEnd-f.BufPos>MaxLen then
- maxp:[email protected]^[f.BufPos+MaxLen-SPos]
- else
- maxp:[email protected]^[f.BufEnd];
- startp:=p;
- { search linefeed }
- while (p<maxp) and (P^<>#10) do
- inc(p);
- { calculate read bytes }
- len:=p-startp;
- inc(f.BufPos,Len);
- Move(startp^,s[sPos],Len);
- inc(sPos,Len);
- { was it a LF? then leave }
- if (p<maxp) and (p^=#10) then
- begin
- if (spos>0) and (s[spos-1]=#13) then
- dec(sPos);
- break;
- end;
- { Maxlen reached ? }
- if spos=MaxLen then
- break;
- until false;
- ReadPCharLen:=spos;
- End;
- Procedure Read_String(var f : TextRec;var s : String);[Public,Alias:'FPC_READ_TEXT_'+{$ifdef NEWREADINT}'SHORTSTR'{$else}'STRING'{$endif}];
- Begin
- s[0]:=chr(ReadPCharLen(f,pchar(@s[1]),high(s)));
- End;
- Procedure Read_PChar(var f : TextRec;var s : PChar);[Public,Alias:'FPC_READ_TEXT_PCHAR_AS_POINTER'];
- Begin
- pchar(s+ReadPCharLen(f,s,$7fffffff))^:=#0;
- End;
- Procedure Read_Array(var f : TextRec;var s : {$ifdef NEWWRITEARRAY}array of char{$else}array00{$endif});[Public,Alias:'FPC_READ_TEXT_PCHAR_AS_ARRAY'];
- Begin
- pchar(pchar(@s)+ReadPCharLen(f,pchar(@s),{$ifdef NEWWRITEARRAY}high(s){$else}$7fffffff{$endif}))^:=#0;
- End;
- Procedure Read_AnsiString(var f : TextRec;var s : AnsiString);[Public,Alias:'FPC_READ_TEXT_'+{$ifdef NEWREADINT}'ANSISTR'{$else}'ANSISTRING'{$endif}];
- var
- len : longint;
- Begin
- { Delete the string }
- AnsiStr_Decr_ref (Pointer(S));
- { We assign room for 1024 characters totally at random.... }
- Pointer(s):=Pointer(NewAnsiString(1024));
- len:=ReadPCharLen(f,pchar(s),1024);
- pchar(pchar(s)+len)^:=#0;
- PAnsiRec(Pointer(S)-FirstOff)^.Len:=len;
- End;
- {$ifdef NEWREADINT}
- Function Read_Char(var f : TextRec):char;[Public,Alias:'FPC_READ_TEXT_CHAR'];
- Begin
- Read_Char:=#0;
- { Check error and if file is open }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- { Read next char or EOF }
- If f.BufPos>=f.BufEnd Then
- begin
- FileFunc(f.InOutFunc)(f);
- If f.BufPos>=f.BufEnd Then
- exit(#26);
- end;
- Read_Char:=f.Bufptr^[f.BufPos];
- inc(f.BufPos);
- end;
- Function Read_SInt(var f : TextRec):ValSInt;[Public,Alias:'FPC_READ_TEXT_SINT'];
- var
- hs : String;
- code : Longint;
- base : longint;
- Begin
- Read_SInt:=0;
- { Leave if error or not open file, else check for empty buf }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- If f.BufPos>=f.BufEnd Then
- FileFunc(f.InOutFunc)(f);
- hs:='';
- if IgnoreSpaces(f) and ReadSign(f,hs) and ReadBase(f,hs,Base) then
- ReadNumeric(f,hs,Base);
- Val(hs,Read_SInt,code);
- If code<>0 Then
- InOutRes:=106;
- End;
- Function Read_UInt(var f : TextRec):ValUInt;[Public,Alias:'FPC_READ_TEXT_UINT'];
- var
- hs : String;
- code : longint;
- base : longint;
- Begin
- Read_UInt:=0;
- { Leave if error or not open file, else check for empty buf }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- If f.BufPos>=f.BufEnd Then
- FileFunc(f.InOutFunc)(f);
- hs:='';
- if IgnoreSpaces(f) and ReadSign(f,hs) and ReadBase(f,hs,Base) then
- ReadNumeric(f,hs,Base);
- val(hs,Read_UInt,code);
- If code<>0 Then
- InOutRes:=106;
- End;
- Function Read_Float(var f : TextRec):ValReal;[Public,Alias:'FPC_READ_TEXT_FLOAT'];
- var
- hs : string;
- code : Word;
- begin
- Read_Float:=0.0;
- { Leave if error or not open file, else check for empty buf }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- If f.BufPos>=f.BufEnd Then
- FileFunc(f.InOutFunc)(f);
- hs:='';
- if IgnoreSpaces(f) and ReadSign(f,hs) and ReadNumeric(f,hs,10) then
- begin
- { First check for a . }
- if (f.Bufptr^[f.BufPos]='.') and (f.BufPos<f.BufEnd) Then
- begin
- hs:=hs+'.';
- Inc(f.BufPos);
- If f.BufPos>=f.BufEnd Then
- FileFunc(f.InOutFunc)(f);
- ReadNumeric(f,hs,10);
- end;
- { Also when a point is found check for a E }
- if (f.Bufptr^[f.BufPos] in ['e','E']) and (f.BufPos<f.BufEnd) Then
- begin
- hs:=hs+'E';
- Inc(f.BufPos);
- If f.BufPos>=f.BufEnd Then
- FileFunc(f.InOutFunc)(f);
- if ReadSign(f,hs) then
- ReadNumeric(f,hs,10);
- end;
- end;
- val(hs,Read_Float,code);
- If code<>0 Then
- InOutRes:=106;
- end;
- {$ifdef INT64}
- procedure read_qword(len : longint;var t : textrec;q : qword);[public,alias:'FPC_READ_TEXT_QWORD'];
- begin
- {!!!!!!!!!!!!!}
- end;
- {$endif INT64}
- {$else}
- Procedure Read_Char(var f : TextRec;var c : Char);[Public,Alias:'FPC_READ_TEXT_CHAR'];
- Begin
- c:=#0;
- { Check error and if file is open }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- { Read next char or EOF }
- If f.BufPos>=f.BufEnd Then
- begin
- FileFunc(f.InOutFunc)(f);
- If f.BufPos>=f.BufEnd Then
- begin
- c:=#26;
- exit;
- end;
- end;
- c:=f.Bufptr^[f.BufPos];
- inc(f.BufPos);
- end;
- Procedure Read_Longint(var f : TextRec;var l : Longint);[Public,Alias:'FPC_READ_TEXT_LONGINT'];
- var
- hs : String;
- code : Longint;
- base : longint;
- Begin
- l:=0;
- { Leave if error or not open file, else check for empty buf }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- If f.BufPos>=f.BufEnd Then
- FileFunc(f.InOutFunc)(f);
- hs:='';
- if IgnoreSpaces(f) and ReadSign(f,hs) and ReadBase(f,hs,Base) then
- ReadNumeric(f,hs,Base);
- Val(hs,l,code);
- If code<>0 Then
- InOutRes:=106;
- End;
- Procedure Read_Integer(var f : TextRec;var l : Integer);[Public,Alias:'FPC_READ_TEXT_INTEGER'];
- var
- ll : Longint;
- Begin
- l:=0;
- If InOutRes <> 0 then
- exit;
- Read_Longint(f,ll);
- If (ll<-32768) or (ll>32767) Then
- InOutRes:=201
- else
- l:=ll;
- End;
- Procedure Read_Word(var f : TextRec;var l : Word);[Public,Alias:'FPC_READ_TEXT_WORD'];
- var
- ll : Longint;
- Begin
- l:=0;
- If InOutRes <> 0 then
- exit;
- Read_Longint(f,ll);
- If (ll<0) or (ll>$ffff) Then
- InOutRes:=201
- else
- l:=ll;
- End;
- Procedure Read_Byte(var f : TextRec;var l : byte);[Public,Alias:'FPC_READ_TEXT_BYTE'];
- var
- ll : Longint;
- Begin
- l:=0;
- If InOutRes <> 0 then
- exit;
- Read_Longint(f,ll);
- If (ll<0) or (ll>255) Then
- InOutRes:=201
- else
- l:=ll;
- End;
- Procedure Read_Shortint(var f : TextRec;var l : shortint);[Public,Alias:'FPC_READ_TEXT_SHORTINT'];
- var
- ll : Longint;
- Begin
- l:=0;
- If InOutRes <> 0 then
- exit;
- Read_Longint(f,ll);
- If (ll<-128) or (ll>127) Then
- InOutRes:=201
- else
- l:=ll;
- End;
- Procedure Read_Cardinal(var f : TextRec;var l : cardinal);[Public,Alias:'FPC_READ_TEXT_CARDINAL'];
- var
- hs : String;
- code : longint;
- base : longint;
- Begin
- l:=0;
- { Leave if error or not open file, else check for empty buf }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- If f.BufPos>=f.BufEnd Then
- FileFunc(f.InOutFunc)(f);
- hs:='';
- if IgnoreSpaces(f) and ReadSign(f,hs) and ReadBase(f,hs,Base) then
- ReadNumeric(f,hs,Base);
- val(hs,l,code);
- If code<>0 Then
- InOutRes:=106;
- End;
- {$ifdef INT64}
- procedure read_qword(len : longint;var t : textrec;q : qword);[public,alias:'FPC_READ_TEXT_QWORD'];
- begin
- {!!!!!!!!!!!!!}
- end;
- {$endif INT64}
- function ReadRealStr(var f:TextRec):string;
- var
- hs : string;
- begin
- ReadRealStr:='';
- { Leave if error or not open file, else check for empty buf }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- If f.BufPos>=f.BufEnd Then
- FileFunc(f.InOutFunc)(f);
- hs:='';
- if IgnoreSpaces(f) and ReadSign(f,hs) and ReadNumeric(f,hs,10) then
- begin
- { First check for a . }
- if (f.Bufptr^[f.BufPos]='.') and (f.BufPos<f.BufEnd) Then
- begin
- hs:=hs+'.';
- Inc(f.BufPos);
- If f.BufPos>=f.BufEnd Then
- FileFunc(f.InOutFunc)(f);
- ReadNumeric(f,hs,10);
- end;
- { Also when a point is found check for a E }
- if (f.Bufptr^[f.BufPos] in ['e','E']) and (f.BufPos<f.BufEnd) Then
- begin
- hs:=hs+'E';
- Inc(f.BufPos);
- If f.BufPos>=f.BufEnd Then
- FileFunc(f.InOutFunc)(f);
- if ReadSign(f,hs) then
- ReadNumeric(f,hs,10);
- end;
- end;
- ReadRealStr:=hs;
- end;
- Procedure Read_Real(var f : TextRec;var d : Real);[Public,Alias:'FPC_READ_TEXT_REAL'];
- var
- code : Word;
- Begin
- val(ReadRealStr(f),d,code);
- If code<>0 Then
- InOutRes:=106;
- End;
- {$ifdef SUPPORT_SINGLE}
- Procedure Read_Single(var f : TextRec;var d : single);[Public,Alias:'FPC_READ_TEXT_SINGLE'];
- var
- code : Word;
- Begin
- val(ReadRealStr(f),d,code);
- If code<>0 Then
- InOutRes:=106;
- End;
- {$endif SUPPORT_SINGLE}
- {$ifdef SUPPORT_EXTENDED}
- Procedure Read_Extended(var f : TextRec;var d : extended);[Public,Alias:'FPC_READ_TEXT_EXTENDED'];
- var
- code : Word;
- Begin
- val(ReadRealStr(f),d,code);
- If code<>0 Then
- InOutRes:=106;
- End;
- {$endif SUPPORT_EXTENDED}
- {$ifdef SUPPORT_COMP}
- Procedure Read_Comp(var f : TextRec;var d : comp);[Public,Alias:'FPC_READ_TEXT_COMP'];
- var
- code : Word;
- Begin
- val(ReadRealStr(f),d,code);
- If code<>0 Then
- InOutRes:=106;
- End;
- {$endif SUPPORT_COMP}
- {$ifdef SUPPORT_FIXED}
- Procedure Read_Fixed(var f : TextRec;var d : fixed);[Public,Alias:'FPC_READ_TEXT_FIXED'];
- var
- code : Word;
- Begin
- val(ReadRealStr(f),d,code);
- If code<>0 Then
- InOutRes:=106;
- End;
- {$endif SUPPORT_FIXED}
- {$endif}
- {*****************************************************************************
- Initializing
- *****************************************************************************}
- procedure OpenStdIO(var f:text;mode,hdl:longint);
- begin
- Assign(f,'');
- TextRec(f).Handle:=hdl;
- TextRec(f).Mode:=mode;
- TextRec(f).Closefunc:=@FileCloseFunc;
- case mode of
- fmInput : TextRec(f).InOutFunc:=@FileReadFunc;
- fmOutput : begin
- TextRec(f).InOutFunc:=@FileWriteFunc;
- TextRec(f).FlushFunc:=@FileWriteFunc;
- end;
- else
- HandleError(102);
- end;
- end;
- {
- $Log$
- Revision 1.48 1999-07-01 15:39:52 florian
- + qword/int64 type released
- Revision 1.47 1999/06/30 22:17:24 florian
- + fpuint64 to system unit interface added: if it is true, the rtl
- uses the fpu to do int64 operations, if possible
- Revision 1.46 1999/05/06 09:05:16 peter
- * generic write_float str_float
- Revision 1.45 1999/04/26 18:27:26 peter
- * fixed write array
- * read array with maxlen
- Revision 1.44 1999/04/08 15:57:57 peter
- + subrange checking for readln()
- Revision 1.43 1999/04/07 22:05:18 peter
- * fixed bug with readln where it sometime didn't read until eol
- Revision 1.42 1999/03/16 17:49:39 jonas
- * changes for internal Val code (do a "make cycle OPT=-dvalintern" to test)
- * in text.inc: changed RTE 106 when read integer values are out of bounds to RTE 201
- * in systemh.inc: disabled "support_fixed" for the i386 because it gave internal errors,
- Revision 1.41 1999/03/02 18:23:37 peter
- * changed so handlerror() -> inoutres:= to have $I- support
- Revision 1.40 1999/03/01 15:41:04 peter
- * use external names
- * removed all direct assembler modes
- Revision 1.39 1999/02/17 10:13:29 peter
- * when error when opening a file, then reset the mode to fmclosed
- Revision 1.38 1999/01/28 19:38:19 peter
- * fixed readln(ansistring)
- Revision 1.37 1998/12/15 22:43:06 peter
- * removed temp symbols
- Revision 1.36 1998/12/11 18:07:39 peter
- * fixed read(char) with empty buffer
- Revision 1.35 1998/11/27 14:50:58 peter
- + open strings, $P switch support
- Revision 1.34 1998/11/16 12:21:48 peter
- * fixes for 0.99.8
- Revision 1.33 1998/10/23 00:03:29 peter
- * write(pchar) has check for nil
- Revision 1.32 1998/10/20 14:37:45 peter
- * fixed maxlen which was not correct after my read_string update
- Revision 1.31 1998/10/10 15:28:48 peter
- + read single,fixed
- + val with code:longint
- + val for fixed
- Revision 1.30 1998/09/29 08:39:07 michael
- + Ansistring write now gets pointer.
- Revision 1.29 1998/09/28 14:27:08 michael
- + AnsiStrings update
- Revision 1.28 1998/09/24 23:32:24 peter
- * fixed small bug with a #13#10 on a line
- Revision 1.27 1998/09/18 12:23:22 peter
- * fixed a bug introduced by my previous update
- Revision 1.26 1998/09/17 16:34:18 peter
- * new eof,eoln,seekeoln,seekeof
- * speed upgrade for read_string
- * inoutres 104/105 updates for read_* and write_*
- Revision 1.25 1998/09/14 10:48:23 peter
- * FPC_ names
- * Heap manager is now system independent
- Revision 1.24 1998/09/08 10:14:06 peter
- + textrecbufsize
- Revision 1.23 1998/08/26 15:33:28 peter
- * reset bufpos,bufend in opentext like tp7
- Revision 1.22 1998/08/26 11:23:25 pierre
- * close did not reset the bufpos and bufend fields
- led to problems when using the same file several times
- Revision 1.21 1998/08/17 22:42:17 michael
- + Flush on close only for output files cd ../inc
- Revision 1.20 1998/08/11 00:05:28 peter
- * $ifdef ver0_99_5 updates
- Revision 1.19 1998/07/30 13:26:16 michael
- + Added support for ErrorProc variable. All internal functions are required
- to call HandleError instead of runerror from now on.
- This is necessary for exception support.
- Revision 1.18 1998/07/29 21:44:35 michael
- + Implemented reading/writing of ansistrings
- Revision 1.17 1998/07/19 19:55:33 michael
- + fixed rename. Changed p to p^
- Revision 1.16 1998/07/10 11:02:40 peter
- * support_fixed, becuase fixed is not 100% yet for the m68k
- Revision 1.15 1998/07/06 15:56:43 michael
- Added length checking for string reading
- Revision 1.14 1998/07/02 12:14:56 carl
- + Each IOCheck routine now check InOutRes before, just like TP
- Revision 1.13 1998/07/01 15:30:00 peter
- * better readln/writeln
- Revision 1.12 1998/07/01 14:48:10 carl
- * bugfix of WRITE_TEXT_BOOLEAN , was not TP compatible
- + added explicit typecast in OpenText
- Revision 1.11 1998/06/25 09:44:22 daniel
- + RTLLITE directive to compile minimal RTL.
- Revision 1.10 1998/06/04 23:46:03 peter
- * comp,extended are only i386 added support_comp,support_extended
- Revision 1.9 1998/06/02 16:47:56 pierre
- * bug for boolean values greater than one fixed
- Revision 1.8 1998/05/31 14:14:54 peter
- * removed warnings using comp()
- Revision 1.7 1998/05/27 00:19:21 peter
- * fixed crt input
- Revision 1.6 1998/05/21 19:31:01 peter
- * objects compiles for linux
- + assign(pchar), assign(char), rename(pchar), rename(char)
- * fixed read_text_as_array
- + read_text_as_pchar which was not yet in the rtl
- Revision 1.5 1998/05/12 10:42:45 peter
- * moved getopts to inc/, all supported OS's need argc,argv exported
- + strpas, strlen are now exported in the systemunit
- * removed logs
- * removed $ifdef ver_above
- Revision 1.4 1998/04/07 22:40:46 florian
- * final fix of comp writing
- }
|