fpc/rtl/nativent/sysdir.inc
Jonas Maebe d66d15aad3 + added mkdir/chdir/rmdir(rawbytestring) and (unicodestring) to the system unit
* renamed platform-specific pchar versions of those rouines to do_*() and
    changed them to either rawbytestring or unicodestring depending on the
    FPCRTL_FILESYSTEM_SINGLE_BYTE_API/FPCRTL_FILESYSTEM_TWO_BYTE_API setting
  * implemented generic shortstring versions of those routines on top of either
    rawbytestring or unicodestring depending on the API-kind (in case of the
    embedded target, if ansistring are not supported they will map directly
    to shortstring routines instead)
  * all platform-specific *dir() routines with rawbytestring parameters now
    receive their parameters in DefaultFileSystemCodePage
  - removed no longer required ansistring variants from the objpas unit
  - removed no longer required FPC_SYS_MKDIR etc aliases
  * factored out empty string and inoutres<>0 checks from platform-specific
    *dir() routines to generic ones
  o platform-specific notes:
   o amiga/morphos: check new pathconv(rawbytestring) function
   o macos TODO: convert PathArgToFSSpec (and the routines it calls) to
     rawbytestring
   o nativent: added SysUnicodeStringToNtStr() function
   o wii: convert dirio callbacks to use rawbytestring to avoid conversion
  + test for unicode mk/ch/rm/getdir()

git-svn-id: branches/cpstrrtl@25048 -
2013-07-04 22:28:37 +00:00

130 lines
3.6 KiB
PHP

{
This file is part of the Free Pascal run time library.
Copyright (c) 2010 by Sven Barth
FPC Pascal system unit for the Native NT API.
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.
**********************************************************************}
{*****************************************************************************
Directory Handling
*****************************************************************************}
procedure do_MkDir(const s: UnicodeString);
var
objattr: TObjectAttributes;
name: TNtUnicodeString;
res: LongInt;
iostatus: TIOStatusBlock;
h: THandle;
begin
SysUnicodeStringToNtStr(name, s);
{ first we try to create a directory object }
SysInitializeObjectAttributes(objattr, @name, OBJ_PERMANENT, 0, Nil);
res := NtCreateDirectoryObject(@h, 0, @objattr);
if res <> STATUS_OBJECT_TYPE_MISMATCH then begin
if res = STATUS_SUCCESS then
NtClose(h);
errno := res;
Errno2InoutRes;
SysFreeNtStr(name);
Exit;
end;
{ so the parent directory isn't a directory object... retry as normal file
object }
objattr.Attributes := 0; // OBJ_PERMANENT is not valid for file objects
{ the flags are based on ReactOS' CreateDirectoryW except the missing LIST
access }
res := NtCreateFile(@h, NT_SYNCHRONIZE, @objattr, @iostatus, Nil,
FILE_ATTRIBUTE_NORMAL, FILE_SHARE_READ or FILE_SHARE_WRITE,
FILE_CREATE, FILE_DIRECTORY_FILE or FILE_SYNCHRONOUS_IO_NONALERT,
Nil, 0);
if res = STATUS_SUCCESS then
NtClose(h);
errno := res;
Errno2InOutRes;
SysFreeNtStr(name);
end;
procedure do_RmDir(const s: UnicodeString);
var
ntstr: TNtUnicodeString;
objattr: TObjectAttributes;
iostatus: TIOStatusBlock;
h: THandle;
disp: TFileDispositionInformation;
res: LongInt;
begin
if s = '.' then
begin
InOutRes := 16;
exit;
end;
if s = '..' then
begin
InOutRes := 5;
exit;
end;
SysUnicodeStringToNtStr(ntstr, s);
SysInitializeObjectAttributes(objattr, @ntstr, 0, 0, Nil);
res := NtOpenDirectoryObject(@h, STANDARD_RIGHTS_REQUIRED, @objattr);
if res >= 0 then begin
{ this is a directory object, so just make it temporary }
{$message warning 'Add check for subdirectories'}
res := NtMakeTemporaryObject(h);
NtClose(h);
errno := res;
Errno2InoutRes;
SysFreeNtStr(ntstr);
end else
if res = STATUS_OBJECT_TYPE_MISMATCH then begin
{ this is a file directory or file, so do it like RemoveDirectoryW }
res := NtCreateFile(@h, NT_DELETE or NT_SYNCHRONIZE, @objattr, @iostatus, Nil,
0, FILE_SHARE_READ or FILE_SHARE_WRITE or FILE_SHARE_DELETE,
FILE_OPEN, FILE_DIRECTORY_FILE or FILE_SYNCHRONOUS_IO_NONALERT,
Nil, 0);
if res >= 0 then begin
disp.DeleteFile := True;
{ NtDeleteFile does not work here... }
res := NtSetInformationFile(h, @iostatus, @disp,
SizeOf(TFileDispositionInformation), FileDispositionInformation);
NtClose(h);
end;
end;
SysFreeNtStr(ntstr);
errno := res;
Errno2InoutRes;
end;
procedure do_ChDir(const s: UnicodeString);
begin
{ for now this is not supported }
InOutRes := 3;
end;
procedure do_GetDir(DriveNr: byte; var Dir: UnicodeString);
begin
{ for now we return simply the root directory }
Dir := DirectorySeparator;
end;