123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- {
- This file is part of the Free Pascal Run time library.
- Copyright (c) 2010 by Florian Klaempfl
- This unit contain procedures specific for iso pascal mode.
- It should be platform independant.
- 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.
- **********************************************************************}
- unit iso7185;
- interface
- const
- MaxInt = MaxLongint;
- type
- Integer = Longint;
- Procedure Rewrite(var t : Text);
- Procedure Reset(var t : Text);
- Procedure Reset(var f : TypedFile); [INTERNPROC: fpc_in_Reset_TypedFile];
- Procedure Rewrite(var f : TypedFile); [INTERNPROC: fpc_in_Rewrite_TypedFile];
- Procedure Rewrite(var t : Text;const filename : string);
- Procedure Reset(var t : Text;const filename : string);
- Procedure Reset(var f : TypedFile;const filename : string); [INTERNPROC: fpc_in_Reset_TypedFile_Name];
- Procedure Rewrite(var f : TypedFile;const filename : string); [INTERNPROC: fpc_in_Rewrite_TypedFile_Name];
- Function Eof(Var t: Text): Boolean;
- Function Eof:Boolean;
- Function Eoln(Var t: Text): Boolean;
- Function Eoln:Boolean;
- Procedure Page;
- Procedure Page(Var t: Text);
- Procedure Get(Var t: Text);
- Procedure Put(Var t: Text);
- procedure Get;
- Procedure Put;
- Procedure Get(Var f: TypedFile);
- Procedure Put(Var f: TypedFile);
- Procedure Seek(var f:TypedFile;Pos:Int64);
- Function FilePos(var f:TypedFile):Int64;
- Function Eof(var f:TypedFile): Boolean;
- {$ifndef FPUNONE}
- {$ifdef FPC_CURRENCY_IS_INT64}
- function round(c : currency) : int64;
- {$ifndef cpujvm}
- function round(c : comp) : int64;
- {$else not cpujvm}
- function round_comp(c : comp) : int64;
- {$endif not cpujvm}
- {$endif FPC_CURRENCY_IS_INT64}
- function Round(d : ValReal) : int64;
- {$endif FPUNONE}
- implementation
- {$i isotmp.inc}
-
- {$i-}
- procedure DoAssign(var t : Text);
- {$ifndef FPC_HAS_FEATURE_RANDOM}
- const
- NextIndex : Word = 1;
- {$endif FPC_HAS_FEATURE_RANDOM}
- begin
- {$ifdef FPC_HAS_FEATURE_RANDOM}
- Assign(t,getTempDir+'fpc_'+HexStr(random(1000000000),8)+'.tmp');
- {$else FPC_HAS_FEATURE_RANDOM}
- Assign(t,getTempDir+'fpc_'+HexStr(NextIndex,4)+'.tmp');
- Inc(NextIndex);
- {$endif FPC_HAS_FEATURE_RANDOM}
- end;
- Procedure Rewrite(var t : Text);[IOCheck];
- Begin
- { create file name? }
- if Textrec(t).mode=0 then
- DoAssign(t);
- System.Rewrite(t);
- End;
- Procedure Reset(var t : Text);[IOCheck];
- Begin
- case Textrec(t).mode of
- { create file name? }
- 0:
- DoAssign(t);
- fmOutput:
- Write(t,#26);
- end;
- System.Reset(t);
- End;
- Procedure Rewrite(var t : Text;const filename : string);[IOCheck];
- Begin
- { create file name? }
- if Textrec(t).mode=0 then
- Assign(t,filename);
- System.Rewrite(t);
- End;
- Procedure Reset(var t : Text;const filename : string);[IOCheck];
- Begin
- case Textrec(t).mode of
- { create file name? }
- 0:
- Assign(t,filename);
- fmOutput:
- Write(t,#26);
- end;
- System.Reset(t);
- End;
- Function Eof(Var t: Text): Boolean;[IOCheck];
- var
- OldCtrlZMarksEof : Boolean;
- Begin
- { not sure if this is correct, but we are always at eof when
- writing to a file }
- if TextRec(t).mode=fmOutput then
- Eof:=true
- else
- begin
- OldCtrlZMarksEof:=CtrlZMarksEOF;
- CtrlZMarksEof:=true;
- Eof:=System.Eof(t);
- CtrlZMarksEof:=OldCtrlZMarksEOF;
- end;
- end;
- Function Eof:Boolean;
- Begin
- Eof:=Eof(Input);
- End;
- Function Eoln(Var t: Text): Boolean;[IOCheck];
- var
- OldCtrlZMarksEof : Boolean;
- Begin
- OldCtrlZMarksEof:=CtrlZMarksEOF;
- CtrlZMarksEof:=true;
- Eoln:=System.Eoln(t);
- CtrlZMarksEof:=OldCtrlZMarksEOF;
- end;
- Function Eoln:Boolean;
- Begin
- Eoln:=Eoln(Input);
- End;
- Procedure Page;[IOCheck];
- begin
- Page(Output);
- end;
- Procedure Page(var t : Text);[IOCheck];
- Begin
- write(#12);
- End;
- procedure Get(var t : Text);[IOCheck];
- var
- c : char;
- Begin
- Read(t,c);
- End;
- Procedure Put(var t : Text);[IOCheck];
- type
- FileFunc = Procedure(var t : TextRec);
- begin
- inc(TextRec(t).BufPos);
- If TextRec(t).BufPos>=TextRec(t).BufSize Then
- FileFunc(TextRec(t).InOutFunc)(TextRec(t));
- end;
- procedure Get;[IOCheck];
- var
- c : char;
- Begin
- Read(input,c);
- End;
- Procedure Put;[IOCheck];
- type
- FileFunc = Procedure(var t : TextRec);
- begin
- inc(TextRec(Output).BufPos);
- If TextRec(Output).BufPos>=TextRec(Output).BufSize Then
- FileFunc(TextRec(Output).InOutFunc)(TextRec(Output));
- end;
- procedure Get(var f:TypedFile);[IOCheck];
- Begin
- if not(system.eof(f)) then
- BlockRead(f,(pbyte(@f)+sizeof(FileRec))^,1)
- else
- FileRec(f)._private[1]:=1;
- End;
- Procedure Put(var f:TypedFile);[IOCheck];
- begin
- BlockWrite(f,(pbyte(@f)+sizeof(FileRec))^,1);
- end;
- Function Eof(var f:TypedFile): Boolean;[IOCheck];
- Begin
- Eof:=FileRec(f)._private[1]=1;
- End;
- Procedure Seek(var f:TypedFile;Pos:Int64);[IOCheck];
- Begin
- System.Seek(f,Pos);
- if (FileRec(f).mode=fmInOut) or
- (FileRec(f).mode=fmInput) then
- begin
- if FilePos(f)<FileSize(f) then
- begin
- FileRec(f)._private[1]:=0;
- Get(f);
- end
- else
- FileRec(f)._private[1]:=1;
- end;
- End;
- Function FilePos(var f:TypedFile):Int64;[IOCheck];
- Begin
- FilePos:=System.FilePos(f);
- { in case of reading a file, the buffer is always filled, so the result of Do_FilePos is off by one }
- if (FileRec(f).mode=fmInOut) or
- (FileRec(f).mode=fmInput) then
- dec(FilePos);
- End;
- {$ifndef FPUNONE}
- {$ifdef FPC_CURRENCY_IS_INT64}
- function round(c : currency) : int64;
- begin
- if c>=0.0 then
- Round:=Trunc(c+0.5)
- else
- Round:=Trunc(c-0.5);
- end;
- {$ifndef cpujvm}
- function round(c : comp) : int64;
- begin
- if c>=0.0 then
- round:=Trunc(c+0.5)
- else
- round:=Trunc(c-0.5);
- end;
- {$else not cpujvm}
- function round_comp(c : comp) : int64;
- begin
- if c>=0.0 then
- round_comp:=Trunc(c+0.5)
- else
- round_comp:=Trunc(c-0.5);
- end;
- {$endif cpujvm}
- {$endif FPC_CURRENCY_IS_INT64}
- function Round(d : ValReal) : int64;
- begin
- if d>=0.0 then
- Round:=Trunc(d+0.5)
- else
- Round:=Trunc(d-0.5);
- end;
- {$endif FPUNONE}
- begin
- { we shouldn't do this because it might confuse user programs, but for now it
- is good enough to get pretty unique tmp file names }
- {$ifdef FPC_HAS_FEATURE_RANDOM}
- Randomize;
- {$endif FPC_HAS_FEATURE_RANDOM}
- { reset opens with read-only }
- Filemode:=0;
- end.
|