123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332 |
- {
- $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
- HandleError(102);
- 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))
- 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:{$ifdef FPCNAMES}'FPC_'+{$endif}'WRITE_END'];
- begin
- if f.FlushFunc<>nil then
- FileFunc(f.FlushFunc)(f);
- end;
- Procedure Writeln_End(var f:TextRec);[Public,Alias:{$ifdef FPCNAMES}'FPC_'+{$endif}'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: {$ifdef FPCNAMES}'FPC_'+{$endif}'WRITE_TEXT_STRING'];
- 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;
- Type
- array00 = array[0..0] Of Char;
- Procedure Write_Array(Len : Longint;var f : TextRec;const p : array00);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'WRITE_TEXT_PCHAR_AS_ARRAY'];
- var
- ArrayLen : longint;
- Begin
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmOutput) Then
- begin
- InOutRes:=105;
- exit;
- end;
- ArrayLen:=StrLen(p);
- 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: {$ifdef FPCNAMES}'FPC_'+{$endif}'WRITE_TEXT_PCHAR_AS_POINTER'];
- var
- PCharLen : longint;
- Begin
- If (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;
- {$ifdef UseAnsiStrings}
- Procedure Write_Text_AnsiString (Len : Longint; Var T : TextRec; Var S : AnsiString);[Public, alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'WRITE_TEXT_ANSISTRING'];
- {
- Writes a AnsiString to the Text file T
- }
- Var
- Temp : Pointer;
- begin
- Temp:=Pointer(S);
- If Temp=Nil then
- exit;
- Write_pchar (Len,t,PChar(Temp));
- end;
- {$endif}
- Procedure Write_LongInt(Len : Longint;var t : TextRec;l : Longint);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'WRITE_TEXT_LONGINT'];
- var
- s : String;
- Begin
- If (InOutRes<>0) then
- exit;
- Str(l,s);
- Write_Str(Len,t,s);
- End;
- Procedure Write_Real(fixkomma,Len : Longint;var t : TextRec;r : real);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'WRITE_TEXT_REAL'];
- var
- s : String;
- Begin
- If (InOutRes<>0) then
- exit;
- {$ifdef i386}
- Str_real(Len,fixkomma,r,rt_s64real,s);
- {$else}
- Str_real(Len,fixkomma,r,rt_s32real,s);
- {$endif}
- Write_Str(Len,t,s);
- End;
- Procedure Write_Cardinal(Len : Longint;var t : TextRec;l : cardinal);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'WRITE_TEXT_CARDINAL'];
- var
- s : String;
- Begin
- If (InOutRes<>0) then
- exit;
- Str(L,s);
- Write_Str(Len,t,s);
- End;
- {$ifdef SUPPORT_SINGLE}
- Procedure Write_Single(fixkomma,Len : Longint;var t : TextRec;r : single);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'WRITE_TEXT_SINGLE'];
- 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_SINGLE}
- {$ifdef SUPPORT_EXTENDED}
- Procedure Write_Extended(fixkomma,Len : Longint;var t : TextRec;r : extended);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'WRITE_TEXT_EXTENDED'];
- 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_EXTENDED}
- {$ifdef SUPPORT_COMP}
- Procedure Write_Comp(fixkomma,Len : Longint;var t : TextRec;r : comp);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'WRITE_TEXT_COMP'];
- var
- s : String;
- Begin
- If (InOutRes<>0) then
- exit;
- Str_real(Len,fixkomma,r,rt_s64bit,s);
- Write_Str(Len,t,s);
- End;
- {$endif SUPPORT_COMP}
- {$ifdef SUPPORT_FIXED}
- Procedure Write_Fixed(fixkomma,Len : Longint;var t : TextRec;r : fixed);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'WRITE_TEXT_FIXED'];
- 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_FIXED}
- Procedure Write_Boolean(Len : Longint;var t : TextRec;b : Boolean);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'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: {$ifdef FPCNAMES}'FPC_'+{$endif}'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:{$ifdef FPCNAMES}'FPC_'+{$endif}'READ_END'];
- begin
- if f.FlushFunc<>nil then
- FileFunc(f.FlushFunc)(f);
- end;
- Procedure ReadLn_End(var f : TextRec);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'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;
- Procedure Read_String(Maxlen : Longint;var f : TextRec;var s : String);[Public,Alias:{$ifdef FPCNAMES}'FPC_'+{$endif}'READ_TEXT_STRING'];
- var
- sPos,len : Longint;
- p,startp,maxp : pchar;
- Begin
- { Delete the string }
- s:='';
- { 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];
- 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);
- { update output string, take MaxLen into count }
- if SPos+Len>MaxLen then
- Len:=MaxLen-Spos;
- Move(startp^,s[sPos+1],Len);
- inc(sPos,Len);
- { was it a LF? then leave }
- if p^=#10 then
- begin
- if (spos>0) and (s[spos]=#13) then
- dec(sPos);
- break;
- end;
- { Maxlen reached ? }
- if spos=MaxLen then
- break;
- until false;
- { Set final length }
- s[0]:=chr(sPos);
- End;
- Procedure Read_Char(var f : TextRec;var c : Char);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'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
- c:=#26;
- end
- else
- begin
- c:=f.Bufptr^[f.BufPos];
- Inc(f.BufPos);
- end;
- End;
- Procedure Read_PChar(var f : TextRec;var s : PChar);[Public,Alias:{$ifdef FPCNAMES}'FPC_'+{$endif}'READ_TEXT_PCHAR_AS_POINTER'];
- var
- p,maxp,startp,sidx : PChar;
- len : longint;
- Begin
- { Delete the string }
- s^:=#0;
- { Check error and if file is open }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- { Read until #10 is found }
- sidx:=s;
- 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];
- 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);
- { update output string, take MaxLen into count }
- Move(startp^,sidx^,Len);
- inc(sidx,len);
- { was it a LF? then leave }
- if p^=#10 then
- begin
- If pchar(p-1)^=#13 Then
- dec(p);
- break;
- end;
- until false;
- sidx^:=#0;
- End;
- Procedure Read_Array(var f : TextRec;var s : array00);[Public,Alias:{$ifdef FPCNAMES}'FPC_'+{$endif}'READ_TEXT_PCHAR_AS_ARRAY'];
- var
- p,maxp,startp,sidx : PChar;
- len : longint;
- Begin
- { Delete the string }
- s[0]:=#0;
- { Check error and if file is open }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- { Read until #10 is found }
- sidx:=pchar(@s);
- 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];
- 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);
- { update output string, take MaxLen into count }
- Move(startp^,sidx^,Len);
- inc(sidx,len);
- { was it a LF? then leave }
- if p^=#10 then
- begin
- If pchar(p-1)^=#13 Then
- dec(p);
- break;
- end;
- until false;
- sidx^:=#0;
- End;
- {$ifdef useansistrings}
- Procedure Read_String(Maxlen : Longint;var f : TextRec;var s : AnsiString);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'READ_TEXT_ANSISTRING'];
- var
- p,maxp,startp,sidx : PChar;
- spos,len : longint;
- Begin
- { Delete the string }
- Decr_ansi_ref (S);
- { We assign room for 1024 characters totally at random.... }
- Pointer(s):=Pointer(NewAnsiString(1024));
- { Check error and if file is open }
- If (InOutRes<>0) then
- exit;
- if (f.mode<>fmInput) Then
- begin
- InOutRes:=104;
- exit;
- end;
- { Read until #10 is found }
- sidx:=pchar(@s);
- 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];
- 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);
- { update output string, take MaxLen into count }
- if SPos+Len>MaxLen then
- Len:=MaxLen-Spos;
- Move(startp^,sidx^,Len);
- inc(sidx,len);
- inc(spos,len);
- { was it a LF? then leave }
- if p^=#10 then
- begin
- If pchar(sidx-1)^=#13 Then
- begin
- dec(sidx);
- dec(spos);
- end;
- break;
- end;
- { Maxlen reached ? }
- if spos=MaxLen then
- break;
- until false;
- sidx^:=#0;
- PAnsiRec(Pointer(S)-FirstOff)^.Len:=spos;
- End;
- {$endif}
- Procedure Read_Longint(var f : TextRec;var l : Longint);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'READ_TEXT_LONGINT'];
- var
- hs : String;
- code : Word;
- 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
- HandleError(106);
- End;
- Procedure Read_Integer(var f : TextRec;var l : Integer);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'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
- HandleError(106);
- l:=ll;
- End;
- Procedure Read_Word(var f : TextRec;var l : Word);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'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
- HandleError(106);
- l:=ll;
- End;
- Procedure Read_Byte(var f : TextRec;var l : byte);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'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
- HandleError(106);
- l:=ll;
- End;
- Procedure Read_Shortint(var f : TextRec;var l : shortint);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'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
- HandleError(106);
- l:=ll;
- End;
- Procedure Read_Cardinal(var f : TextRec;var l : cardinal);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'READ_TEXT_CARDINAL'];
- var
- hs : String;
- code : Word;
- 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
- HandleError(106);
- End;
- Procedure Read_Real(var f : TextRec;var d : Real);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'READ_TEXT_REAL'];
- var
- hs : String;
- code : Word;
- Begin
- d:=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,d,code);
- If code<>0 Then
- HandleError(106);
- End;
- {$ifdef SUPPORT_EXTENDED}
- Procedure Read_Extended(var f : TextRec;var d : extended);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'READ_TEXT_EXTENDED'];
- var
- hs : String;
- code : Word;
- Begin
- d:=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,d,code);
- If code<>0 Then
- HandleError(106);
- End;
- {$endif SUPPORT_EXTENDED}
- {$ifdef SUPPORT_COMP}
- Procedure Read_Comp(var f : TextRec;var d : comp);[Public,Alias: {$ifdef FPCNAMES}'FPC_'+{$endif}'READ_TEXT_COMP'];
- var
- hs : String;
- code : Word;
- Begin
- d:=comp(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,d,code);
- If code<>0 Then
- HandleError(106);
- End;
- {$endif SUPPORT_COMP}
- {*****************************************************************************
- 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.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
- }
|