12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166 |
- {
- $Id$
- This file is part of the Free Pascal run time library.
- Copyright (c) 1999-2000 by the Free Pascal development team.
- Dos unit for BP7 compatible RTL
- 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 dos;
- interface
- Uses
- Go32;
- Const
- {Bitmasks for CPU Flags}
- fcarry = $0001;
- fparity = $0004;
- fauxiliary = $0010;
- fzero = $0040;
- fsign = $0080;
- foverflow = $0800;
- {Bitmasks for file attribute}
- readonly = $01;
- hidden = $02;
- sysfile = $04;
- volumeid = $08;
- directory = $10;
- archive = $20;
- anyfile = $3F;
- {File Status}
- fmclosed = $D7B0;
- fminput = $D7B1;
- fmoutput = $D7B2;
- fminout = $D7B3;
- Type
- { Needed for LFN Support }
- ComStr = String[255];
- PathStr = String[255];
- DirStr = String[255];
- NameStr = String[255];
- ExtStr = String[255];
- {
- filerec.inc contains the definition of the filerec.
- textrec.inc contains the definition of the textrec.
- It is in a separate file to make it available in other units without
- having to use the DOS unit for it.
- }
- {$i filerec.inc}
- {$i textrec.inc}
- DateTime = packed record
- Year,
- Month,
- Day,
- Hour,
- Min,
- Sec : word;
- End;
- searchrec = packed record
- fill : array[1..21] of byte;
- attr : byte;
- time : longint;
- { reserved : word; not in DJGPP V2 }
- size : longint;
- name : string[255]; { LFN Name, DJGPP uses only [12] but more can't hurt (PFV) }
- end;
- Registers = Go32.Registers;
- Var
- DosError : integer;
- {Interrupt}
- Procedure Intr(intno: byte; var regs: registers);
- Procedure MSDos(var regs: registers);
- {Info/Date/Time}
- Function DosVersion: Word;
- Procedure GetDate(var year, month, mday, wday: word);
- Procedure GetTime(var hour, minute, second, sec100: word);
- procedure SetDate(year,month,day: word);
- Procedure SetTime(hour,minute,second,sec100: word);
- Procedure UnpackTime(p: longint; var t: datetime);
- Procedure PackTime(var t: datetime; var p: longint);
- {Exec}
- Procedure Exec(const path: pathstr; const comline: comstr);
- Function DosExitCode: word;
- {Disk}
- Function DiskFree(drive: byte) : int64;
- Function DiskSize(drive: byte) : int64;
- Procedure FindFirst(const path: pathstr; attr: word; var f: searchRec);
- Procedure FindNext(var f: searchRec);
- Procedure FindClose(Var f: SearchRec);
- {File}
- Procedure GetFAttr(var f; var attr: word);
- Procedure GetFTime(var f; var time: longint);
- Function FSearch(path: pathstr; dirlist: string): pathstr;
- Function FExpand(const path: pathstr): pathstr;
- Procedure FSplit(path: pathstr; var dir: dirstr; var name: namestr; var ext: extstr);
- function GetShortName(var p : String) : boolean;
- function GetLongName(var p : String) : boolean;
- {Environment}
- Function EnvCount: longint;
- Function EnvStr(index: integer): string;
- Function GetEnv(envvar: string): string;
- {Misc}
- Procedure SetFAttr(var f; attr: word);
- Procedure SetFTime(var f; time: longint);
- Procedure GetCBreak(var breakvalue: boolean);
- Procedure SetCBreak(breakvalue: boolean);
- Procedure GetVerify(var verify: boolean);
- Procedure SetVerify(verify: boolean);
- {Do Nothing Functions}
- Procedure SwapVectors;
- Procedure GetIntVec(intno: byte; var vector: pointer);
- Procedure SetIntVec(intno: byte; vector: pointer);
- Procedure Keep(exitcode: word);
- implementation
- uses
- strings;
- {$ASMMODE ATT}
- {******************************************************************************
- --- Dos Interrupt ---
- ******************************************************************************}
- var
- dosregs : registers;
- procedure LoadDosError;
- var
- r : registers;
- SimpleDosError : word;
- begin
- if (dosregs.flags and carryflag) <> 0 then
- begin
- { I got a extended error = 0
- while CarryFlag was set from Exec function }
- SimpleDosError:=dosregs.ax;
- r.eax:=$5900;
- r.ebx:=$0;
- realintr($21,r);
- { conversion from word to integer !!
- gave a Bound check error if ax is $FFFF !! PM }
- doserror:=integer(r.ax);
- case doserror of
- 0 : DosError:=integer(SimpleDosError);
- 19 : DosError:=150;
- 21 : DosError:=152;
- end;
- end
- else
- doserror:=0;
- end;
- procedure intr(intno : byte;var regs : registers);
- begin
- realintr(intno,regs);
- end;
- procedure msdos(var regs : registers);
- begin
- intr($21,regs);
- end;
- {******************************************************************************
- --- Info / Date / Time ---
- ******************************************************************************}
- function dosversion : word;
- begin
- dosregs.ax:=$3000;
- msdos(dosregs);
- dosversion:=dosregs.ax;
- end;
- procedure getdate(var year,month,mday,wday : word);
- begin
- dosregs.ax:=$2a00;
- msdos(dosregs);
- wday:=dosregs.al;
- year:=dosregs.cx;
- month:=dosregs.dh;
- mday:=dosregs.dl;
- end;
- procedure setdate(year,month,day : word);
- begin
- dosregs.cx:=year;
- dosregs.dh:=month;
- dosregs.dl:=day;
- dosregs.ah:=$2b;
- msdos(dosregs);
- end;
- procedure gettime(var hour,minute,second,sec100 : word);
- begin
- dosregs.ah:=$2c;
- msdos(dosregs);
- hour:=dosregs.ch;
- minute:=dosregs.cl;
- second:=dosregs.dh;
- sec100:=dosregs.dl;
- end;
- procedure settime(hour,minute,second,sec100 : word);
- begin
- dosregs.ch:=hour;
- dosregs.cl:=minute;
- dosregs.dh:=second;
- dosregs.dl:=sec100;
- dosregs.ah:=$2d;
- msdos(dosregs);
- end;
- Procedure packtime(var t : datetime;var p : longint);
- Begin
- p:=(t.sec shr 1)+(t.min shl 5)+(t.hour shl 11)+(t.day shl 16)+(t.month shl 21)+((t.year-1980) shl 25);
- End;
- Procedure unpacktime(p : longint;var t : datetime);
- Begin
- with t do
- begin
- sec:=(p and 31) shl 1;
- min:=(p shr 5) and 63;
- hour:=(p shr 11) and 31;
- day:=(p shr 16) and 31;
- month:=(p shr 21) and 15;
- year:=(p shr 25)+1980;
- end;
- End;
- {******************************************************************************
- --- Exec ---
- ******************************************************************************}
- var
- lastdosexitcode : word;
- procedure exec(const path : pathstr;const comline : comstr);
- type
- realptr = packed record
- ofs,seg : word;
- end;
- texecblock = packed record
- envseg : word;
- comtail : realptr;
- firstFCB : realptr;
- secondFCB : realptr;
- iniStack : realptr;
- iniCSIP : realptr;
- end;
- var
- current_dos_buffer_pos,
- arg_ofs,
- i,la_env,
- la_p,la_c,la_e,
- fcb1_la,fcb2_la : longint;
- execblock : texecblock;
- c,p : string;
- function paste_to_dos(src : string) : boolean;
- var
- c : array[0..255] of char;
- begin
- paste_to_dos:=false;
- if current_dos_buffer_pos+length(src)+1>transfer_buffer+tb_size then
- RunError(217);
- move(src[1],c[0],length(src));
- c[length(src)]:=#0;
- seg_move(get_ds,longint(@c),dosmemselector,current_dos_buffer_pos,length(src)+1);
- current_dos_buffer_pos:=current_dos_buffer_pos+length(src)+1;
- paste_to_dos:=true;
- end;
- begin
- { create command line }
- move(comline[0],c[1],length(comline)+1);
- c[length(comline)+2]:=#13;
- c[0]:=char(length(comline)+2);
- { create path }
- p:=path;
- for i:=1 to length(p) do
- if p[i]='/' then
- p[i]:='\';
- if LFNSupport then
- GetShortName(p);
- { create buffer }
- la_env:=transfer_buffer;
- while (la_env and 15)<>0 do
- inc(la_env);
- current_dos_buffer_pos:=la_env;
- { copy environment }
- for i:=1 to envcount do
- paste_to_dos(envstr(i));
- paste_to_dos(''); { adds a double zero at the end }
- { allow slash as backslash }
- la_p:=current_dos_buffer_pos;
- paste_to_dos(p);
- la_c:=current_dos_buffer_pos;
- paste_to_dos(c);
- la_e:=current_dos_buffer_pos;
- fcb1_la:=la_e;
- la_e:=la_e+16;
- fcb2_la:=la_e;
- la_e:=la_e+16;
- { allocate FCB see dosexec code }
- arg_ofs:=1;
- while (c[arg_ofs] in [' ',#9]) do
- inc(arg_ofs);
- dosregs.ax:=$2901;
- dosregs.ds:=(la_c+arg_ofs) shr 4;
- dosregs.esi:=(la_c+arg_ofs) and 15;
- dosregs.es:=fcb1_la shr 4;
- dosregs.edi:=fcb1_la and 15;
- msdos(dosregs);
- { allocate second FCB see dosexec code }
- repeat
- inc(arg_ofs);
- until (c[arg_ofs] in [' ',#9,#13]);
- if c[arg_ofs]<>#13 then
- begin
- repeat
- inc(arg_ofs);
- until not (c[arg_ofs] in [' ',#9]);
- end;
- dosregs.ax:=$2901;
- dosregs.ds:=(la_c+arg_ofs) shr 4;
- dosregs.si:=(la_c+arg_ofs) and 15;
- dosregs.es:=fcb2_la shr 4;
- dosregs.di:=fcb2_la and 15;
- msdos(dosregs);
- with execblock do
- begin
- envseg:=la_env shr 4;
- comtail.seg:=la_c shr 4;
- comtail.ofs:=la_c and 15;
- firstFCB.seg:=fcb1_la shr 4;
- firstFCB.ofs:=fcb1_la and 15;
- secondFCB.seg:=fcb2_la shr 4;
- secondFCB.ofs:=fcb2_la and 15;
- end;
- seg_move(get_ds,longint(@execblock),dosmemselector,la_e,sizeof(texecblock));
- dosregs.edx:=la_p and 15;
- dosregs.ds:=la_p shr 4;
- dosregs.ebx:=la_e and 15;
- dosregs.es:=la_e shr 4;
- dosregs.ax:=$4b00;
- msdos(dosregs);
- LoadDosError;
- if DosError=0 then
- begin
- dosregs.ax:=$4d00;
- msdos(dosregs);
- LastDosExitCode:=DosRegs.al
- end
- else
- LastDosExitCode:=0;
- end;
- function dosexitcode : word;
- begin
- dosexitcode:=lastdosexitcode;
- end;
- procedure getcbreak(var breakvalue : boolean);
- begin
- DosError:=0;
- dosregs.ax:=$3300;
- msdos(dosregs);
- breakvalue:=dosregs.dl<>0;
- end;
- procedure setcbreak(breakvalue : boolean);
- begin
- DosError:=0;
- dosregs.ax:=$3301;
- dosregs.dl:=ord(breakvalue);
- msdos(dosregs);
- end;
- procedure getverify(var verify : boolean);
- begin
- DosError:=0;
- dosregs.ah:=$54;
- msdos(dosregs);
- verify:=dosregs.al<>0;
- end;
- procedure setverify(verify : boolean);
- begin
- DosError:=0;
- dosregs.ah:=$2e;
- dosregs.al:=ord(verify);
- msdos(dosregs);
- end;
- {******************************************************************************
- --- Disk ---
- ******************************************************************************}
- TYPE ExtendedFat32FreeSpaceRec=packed Record
- RetSize : WORD; { (ret) size of returned structure}
- Strucversion : WORD; {(call) structure version (0000h)
- (ret) actual structure version (0000h)}
- SecPerClus, {number of sectors per cluster}
- BytePerSec, {number of bytes per sector}
- AvailClusters, {number of available clusters}
- TotalClusters, {total number of clusters on the drive}
- AvailPhysSect, {physical sectors available on the drive}
- TotalPhysSect, {total physical sectors on the drive}
- AvailAllocUnits, {Available allocation units}
- TotalAllocUnits : DWORD; {Total allocation units}
- Dummy,Dummy2 : DWORD; {8 bytes reserved}
- END;
- function do_diskdata(drive : byte; Free : BOOLEAN) : Int64;
- VAR
- S : String;
- Rec : ExtendedFat32FreeSpaceRec;
- BEGIN
- if (swap(dosversion)>=$070A) AND LFNSupport then
- begin
- S:='C:\'#0;
- if Drive=0 then
- begin
- GetDir(Drive,S);
- Setlength(S,4);
- S[4]:=#0;
- end
- else
- S[1]:=chr(Drive+64);
- Rec.Strucversion:=0;
- dosmemput(tb_segment,tb_offset,Rec,SIZEOF(ExtendedFat32FreeSpaceRec));
- dosmemput(tb_segment,tb_offset+Sizeof(ExtendedFat32FreeSpaceRec)+1,S[1],4);
- dosregs.dx:=tb_offset+Sizeof(ExtendedFat32FreeSpaceRec)+1;
- dosregs.ds:=tb_segment;
- dosregs.di:=tb_offset;
- dosregs.es:=tb_segment;
- dosregs.cx:=Sizeof(ExtendedFat32FreeSpaceRec);
- dosregs.ax:=$7303;
- msdos(dosregs);
- copyfromdos(rec,Sizeof(ExtendedFat32FreeSpaceRec));
- if dosregs.eax<>-1 THEN {No error clausule in int except cf}
- begin
- copyfromdos(rec,Sizeof(ExtendedFat32FreeSpaceRec));
- if Free then
- Do_DiskData:=int64(rec.AvailAllocUnits)*rec.SecPerClus*rec.BytePerSec
- else
- Do_DiskData:=int64(rec.TotalAllocUnits)*rec.SecPerClus*rec.BytePerSec;
- end
- else
- Do_DiskData:=-1;
- end
- else
- begin
- dosregs.dl:=drive;
- dosregs.ah:=$36;
- msdos(dosregs);
- if dosregs.ax<>$FFFF then
- begin
- if Free then
- Do_DiskData:=int64(dosregs.ax)*dosregs.bx*dosregs.cx
- else
- Do_DiskData:=int64(dosregs.ax)*dosregs.cx*dosregs.dx;
- end
- else
- do_diskdata:=-1;
- end;
- end;
- function diskfree(drive : byte) : int64;
- begin
- diskfree:=Do_DiskData(drive,TRUE);
- end;
- function disksize(drive : byte) : int64;
- begin
- disksize:=Do_DiskData(drive,false);
- end;
- {******************************************************************************
- --- LFNFindfirst LFNFindNext ---
- ******************************************************************************}
- type
- LFNSearchRec=packed record
- attr,
- crtime,
- crtimehi,
- actime,
- actimehi,
- lmtime,
- lmtimehi,
- sizehi,
- size : longint;
- reserved : array[0..7] of byte;
- name : array[0..259] of byte;
- shortname : array[0..13] of byte;
- end;
- procedure LFNSearchRec2Dos(const w:LFNSearchRec;hdl:longint;var d:Searchrec);
- var
- Len : longint;
- begin
- With w do
- begin
- FillChar(d,sizeof(SearchRec),0);
- if DosError=0 then
- len:=StrLen(@Name)
- else
- len:=0;
- d.Name[0]:=chr(len);
- Move(Name[0],d.Name[1],Len);
- d.Time:=lmTime;
- d.Size:=Size;
- d.Attr:=Attr and $FF;
- Move(hdl,d.Fill,4);
- end;
- end;
- procedure LFNFindFirst(path:pchar;attr:longint;var s:searchrec);
- var
- i : longint;
- w : LFNSearchRec;
- begin
- { allow slash as backslash }
- for i:=0 to strlen(path) do
- if path[i]='/' then path[i]:='\';
- dosregs.si:=1; { use ms-dos time }
- { don't include the label if not asked for it, needed for network drives }
- if attr=$8 then
- dosregs.ecx:=8
- else
- dosregs.ecx:=attr and (not 8);
- dosregs.edx:=tb_offset+Sizeof(LFNSearchrec)+1;
- dosmemput(tb_segment,tb_offset+Sizeof(LFNSearchrec)+1,path^,strlen(path)+1);
- dosregs.ds:=tb_segment;
- dosregs.edi:=tb_offset;
- dosregs.es:=tb_segment;
- dosregs.ax:=$714e;
- msdos(dosregs);
- LoadDosError;
- copyfromdos(w,sizeof(LFNSearchRec));
- LFNSearchRec2Dos(w,dosregs.ax,s);
- end;
- procedure LFNFindNext(var s:searchrec);
- var
- hdl : longint;
- w : LFNSearchRec;
- begin
- Move(s.Fill,hdl,4);
- dosregs.si:=1; { use ms-dos time }
- dosregs.edi:=tb_offset;
- dosregs.es:=tb_segment;
- dosregs.ebx:=hdl;
- dosregs.ax:=$714f;
- msdos(dosregs);
- LoadDosError;
- copyfromdos(w,sizeof(LFNSearchRec));
- LFNSearchRec2Dos(w,hdl,s);
- end;
- procedure LFNFindClose(var s:searchrec);
- var
- hdl : longint;
- begin
- Move(s.Fill,hdl,4);
- dosregs.ebx:=hdl;
- dosregs.ax:=$71a1;
- msdos(dosregs);
- LoadDosError;
- end;
- {******************************************************************************
- --- DosFindfirst DosFindNext ---
- ******************************************************************************}
- procedure dossearchrec2searchrec(var f : searchrec);
- var
- len : longint;
- begin
- { Check is necessary!! OS/2's VDM doesn't clear the name with #0 if the }
- { file doesn't exist! (JM) }
- if dosError = 0 then
- len:=StrLen(@f.Name)
- else len := 0;
- Move(f.Name[0],f.Name[1],Len);
- f.Name[0]:=chr(len);
- end;
- procedure DosFindfirst(path : pchar;attr : word;var f : searchrec);
- var
- i : longint;
- begin
- { allow slash as backslash }
- for i:=0 to strlen(path) do
- if path[i]='/' then path[i]:='\';
- copytodos(f,sizeof(searchrec));
- dosregs.edx:=tb_offset;
- dosregs.ds:=tb_segment;
- dosregs.ah:=$1a;
- msdos(dosregs);
- dosregs.ecx:=attr;
- dosregs.edx:=tb_offset+Sizeof(searchrec)+1;
- dosmemput(tb_segment,tb_offset+Sizeof(searchrec)+1,path^,strlen(path)+1);
- dosregs.ds:=tb_segment;
- dosregs.ah:=$4e;
- msdos(dosregs);
- copyfromdos(f,sizeof(searchrec));
- LoadDosError;
- dossearchrec2searchrec(f);
- end;
- procedure Dosfindnext(var f : searchrec);
- begin
- copytodos(f,sizeof(searchrec));
- dosregs.edx:=tb_offset;
- dosregs.ds:=tb_segment;
- dosregs.ah:=$1a;
- msdos(dosregs);
- dosregs.ah:=$4f;
- msdos(dosregs);
- copyfromdos(f,sizeof(searchrec));
- LoadDosError;
- dossearchrec2searchrec(f);
- end;
- {******************************************************************************
- --- Findfirst FindNext ---
- ******************************************************************************}
- procedure findfirst(const path : pathstr;attr : word;var f : searchRec);
- var
- path0 : array[0..256] of char;
- begin
- doserror:=0;
- strpcopy(path0,path);
- if LFNSupport then
- LFNFindFirst(path0,attr,f)
- else
- Dosfindfirst(path0,attr,f);
- end;
- procedure findnext(var f : searchRec);
- begin
- doserror:=0;
- if LFNSupport then
- LFNFindnext(f)
- else
- Dosfindnext(f);
- end;
- Procedure FindClose(Var f: SearchRec);
- begin
- DosError:=0;
- if LFNSupport then
- LFNFindClose(f);
- end;
- type swap_proc = procedure;
- var
- _swap_in : swap_proc;external name '_swap_in';
- _swap_out : swap_proc;external name '_swap_out';
- _exception_exit : pointer;external name '_exception_exit';
- _v2prt0_exceptions_on : longbool;external name '_v2prt0_exceptions_on';
- procedure swapvectors;
- begin
- if _exception_exit<>nil then
- if _v2prt0_exceptions_on then
- _swap_in()
- else
- _swap_out();
- end;
- {******************************************************************************
- --- File ---
- ******************************************************************************}
- procedure fsplit(path : pathstr;var dir : dirstr;var name : namestr;var ext : extstr);
- var
- dotpos,p1,i : longint;
- begin
- { allow slash as backslash }
- for i:=1 to length(path) do
- if path[i]='/' then path[i]:='\';
- { get drive name }
- p1:=pos(':',path);
- if p1>0 then
- begin
- dir:=path[1]+':';
- delete(path,1,p1);
- end
- else
- dir:='';
- { split the path and the name, there are no more path informtions }
- { if path contains no backslashes }
- while true do
- begin
- p1:=pos('\',path);
- if p1=0 then
- break;
- dir:=dir+copy(path,1,p1);
- delete(path,1,p1);
- end;
- { try to find out a extension }
- if LFNSupport then
- begin
- Ext:='';
- i:=Length(Path);
- DotPos:=256;
- While (i>0) Do
- Begin
- If (Path[i]='.') Then
- begin
- DotPos:=i;
- break;
- end;
- Dec(i);
- end;
- Ext:=Copy(Path,DotPos,255);
- Name:=Copy(Path,1,DotPos - 1);
- end
- else
- begin
- p1:=pos('.',path);
- if p1>0 then
- begin
- ext:=copy(path,p1,4);
- delete(path,p1,length(path)-p1+1);
- end
- else
- ext:='';
- name:=path;
- end;
- end;
- function fexpand(const path : pathstr) : pathstr;
- var
- s,pa : pathstr;
- i,j : longint;
- begin
- getdir(0,s);
- i:=ioresult;
- if LFNSupport then
- begin
- pa:=path;
- end
- else
- if FileNameCaseSensitive then
- pa:=path
- else
- pa:=upcase(path);
- { allow slash as backslash }
- for i:=1 to length(pa) do
- if pa[i]='/' then
- pa[i]:='\';
- if (length(pa)>1) and (pa[2]=':') and (pa[1] in ['A'..'Z','a'..'z']) then
- begin
- { Always uppercase driveletter }
- if (pa[1] in ['a'..'z']) then
- pa[1]:=Chr(Ord(Pa[1])-32);
- { we must get the right directory }
- getdir(ord(pa[1])-ord('A')+1,s);
- i:=ioresult;
- if (ord(pa[0])>2) and (pa[3]<>'\') then
- if pa[1]=s[1] then
- begin
- { remove ending slash if it already exists }
- if s[length(s)]='\' then
- dec(s[0]);
- pa:=s+'\'+copy (pa,3,length(pa));
- end
- else
- pa:=pa[1]+':\'+copy (pa,3,length(pa))
- end
- else
- if pa[1]='\' then
- begin
- { Do not touch Network drive names if LFNSupport is true }
- if not ((Length(pa)>1) and (pa[2]='\') and LFNSupport) then
- pa:=s[1]+':'+pa;
- end
- else if s[0]=#3 then
- pa:=s+pa
- else
- pa:=s+'\'+pa;
- { Turbo Pascal gives current dir on drive if only drive given as parameter! }
- if length(pa) = 2 then
- begin
- getdir(byte(pa[1])-64,s);
- pa := s;
- end;
- {First remove all references to '\.\'}
- while pos ('\.\',pa)<>0 do
- delete (pa,pos('\.\',pa),2);
- {Now remove also all references to '\..\' + of course previous dirs..}
- repeat
- i:=pos('\..\',pa);
- if i<>0 then
- begin
- j:=i-1;
- while (j>1) and (pa[j]<>'\') do
- dec (j);
- if pa[j+1] = ':' then j := 3;
- delete (pa,j,i-j+3);
- end;
- until i=0;
- { Turbo Pascal gets rid of a \.. at the end of the path }
- { Now remove also any reference to '\..' at end of line
- + of course previous dir.. }
- i:=pos('\..',pa);
- if i<>0 then
- begin
- if i = length(pa) - 2 then
- begin
- j:=i-1;
- while (j>1) and (pa[j]<>'\') do
- dec (j);
- delete (pa,j,i-j+3);
- end;
- pa := pa + '\';
- end;
- { Remove End . and \}
- if (length(pa)>0) and (pa[length(pa)]='.') then
- dec(byte(pa[0]));
- { if only the drive + a '\' is left then the '\' should be left to prevtn the program
- accessing the current directory on the drive rather than the root!}
- { if the last char of path = '\' then leave it in as this is what TP does! }
- if ((length(pa)>3) and (pa[length(pa)]='\')) and (path[length(path)] <> '\') then
- dec(byte(pa[0]));
- { if only a drive is given in path then there should be a '\' at the
- end of the string given back }
- if length(pa) = 2 then pa := pa + '\';
- fexpand:=pa;
- end;
- Function FSearch(path: pathstr; dirlist: string): pathstr;
- var
- i,p1 : longint;
- s : searchrec;
- newdir : pathstr;
- begin
- { check if the file specified exists }
- findfirst(path,anyfile,s);
- if doserror=0 then
- begin
- findclose(s);
- fsearch:=path;
- exit;
- end;
- { No wildcards allowed in these things }
- if (pos('?',path)<>0) or (pos('*',path)<>0) then
- fsearch:=''
- else
- begin
- { allow slash as backslash }
- for i:=1 to length(dirlist) do
- if dirlist[i]='/' then dirlist[i]:='\';
- repeat
- p1:=pos(';',dirlist);
- if p1<>0 then
- begin
- newdir:=copy(dirlist,1,p1-1);
- delete(dirlist,1,p1);
- end
- else
- begin
- newdir:=dirlist;
- dirlist:='';
- end;
- if (newdir<>'') and (not (newdir[length(newdir)] in ['\',':'])) then
- newdir:=newdir+'\';
- findfirst(newdir+path,anyfile,s);
- if doserror=0 then
- newdir:=newdir+path
- else
- newdir:='';
- until (dirlist='') or (newdir<>'');
- fsearch:=newdir;
- end;
- findclose(s);
- end;
- { change to short filename if successful DOS call PM }
- function GetShortName(var p : String) : boolean;
- var
- c : array[0..255] of char;
- begin
- move(p[1],c[0],length(p));
- c[length(p)]:=#0;
- copytodos(c,length(p)+1);
- dosregs.ax:=$7160;
- dosregs.cx:=1;
- dosregs.ds:=tb_segment;
- dosregs.si:=tb_offset;
- dosregs.es:=tb_segment;
- dosregs.di:=tb_offset;
- msdos(dosregs);
- LoadDosError;
- if DosError=0 then
- begin
- copyfromdos(c,255);
- move(c[0],p[1],strlen(c));
- p[0]:=char(strlen(c));
- GetShortName:=true;
- end
- else
- GetShortName:=false;
- end;
- { change to long filename if successful DOS call PM }
- function GetLongName(var p : String) : boolean;
- var
- c : array[0..255] of char;
- begin
- move(p[1],c[0],length(p));
- c[length(p)]:=#0;
- copytodos(c,length(p)+1);
- dosregs.ax:=$7160;
- dosregs.cx:=2;
- dosregs.ds:=tb_segment;
- dosregs.si:=tb_offset;
- dosregs.es:=tb_segment;
- dosregs.di:=tb_offset;
- msdos(dosregs);
- LoadDosError;
- if DosError=0 then
- begin
- copyfromdos(c,255);
- move(c[0],p[1],strlen(c));
- p[0]:=char(strlen(c));
- GetLongName:=true;
- end
- else
- GetLongName:=false;
- end;
- {******************************************************************************
- --- Get/Set File Time,Attr ---
- ******************************************************************************}
- procedure getftime(var f;var time : longint);
- begin
- dosregs.bx:=textrec(f).handle;
- dosregs.ax:=$5700;
- msdos(dosregs);
- loaddoserror;
- time:=(dosregs.dx shl 16)+dosregs.cx;
- end;
- procedure setftime(var f;time : longint);
- begin
- dosregs.bx:=textrec(f).handle;
- dosregs.cx:=time and $ffff;
- dosregs.dx:=time shr 16;
- dosregs.ax:=$5701;
- msdos(dosregs);
- loaddoserror;
- end;
- procedure getfattr(var f;var attr : word);
- begin
- copytodos(filerec(f).name,strlen(filerec(f).name)+1);
- dosregs.edx:=tb_offset;
- dosregs.ds:=tb_segment;
- if LFNSupport then
- begin
- dosregs.ax:=$7143;
- dosregs.bx:=0;
- end
- else
- dosregs.ax:=$4300;
- msdos(dosregs);
- LoadDosError;
- Attr:=dosregs.cx;
- end;
- procedure setfattr(var f;attr : word);
- begin
- copytodos(filerec(f).name,strlen(filerec(f).name)+1);
- dosregs.edx:=tb_offset;
- dosregs.ds:=tb_segment;
- if LFNSupport then
- begin
- dosregs.ax:=$7143;
- dosregs.bx:=1;
- end
- else
- dosregs.ax:=$4301;
- dosregs.cx:=attr;
- msdos(dosregs);
- LoadDosError;
- end;
- {******************************************************************************
- --- Environment ---
- ******************************************************************************}
- function envcount : longint;
- var
- hp : ppchar;
- begin
- hp:=envp;
- envcount:=0;
- while assigned(hp^) do
- begin
- inc(envcount);
- inc(hp);
- end;
- end;
- function envstr(index : integer) : string;
- begin
- if (index<=0) or (index>envcount) then
- begin
- envstr:='';
- exit;
- end;
- envstr:=strpas(ppchar(pointer(envp)+4*(index-1))^);
- end;
- Function GetEnv(envvar: string): string;
- var
- hp : ppchar;
- hs : string;
- eqpos : longint;
- begin
- envvar:=upcase(envvar);
- hp:=envp;
- getenv:='';
- while assigned(hp^) do
- begin
- hs:=strpas(hp^);
- eqpos:=pos('=',hs);
- if upcase(copy(hs,1,eqpos-1))=envvar then
- begin
- getenv:=copy(hs,eqpos+1,255);
- exit;
- end;
- inc(hp);
- end;
- end;
- {******************************************************************************
- --- Not Supported ---
- ******************************************************************************}
- Procedure keep(exitcode : word);
- Begin
- End;
- Procedure getintvec(intno : byte;var vector : pointer);
- Begin
- End;
- Procedure setintvec(intno : byte;vector : pointer);
- Begin
- End;
- end.
- {
- $Log$
- Revision 1.10 2000-10-11 15:38:03 peter
- * diskfree doserror fix (merged)
- Revision 1.9 2000/09/06 20:47:34 peter
- * removed previous fsplit() patch as it's not the correct behaviour for
- LFNs. The code showing the bug could easily be adapted (merged)
- Revision 1.8 2000/09/04 20:17:53 peter
- * fixed previous commit (merged)
- Revision 1.7 2000/09/04 19:38:12 peter
- * fsplit with .. fix from Thomas (merged)
- Revision 1.6 2000/08/04 21:45:39 peter
- * getenv case insensitive (merged)
- Revision 1.4 2000/07/22 12:24:55 jonas
- * merged dossearchrec2searchrec() fix from fixes branch
- Revision 1.3 2000/07/14 10:33:09 michael
- + Conditionals fixed
- Revision 1.2 2000/07/13 11:33:39 michael
- + removed logs
- }
|