⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wopen.c

📁 ReactOS是一些高手根据Windows XP的内核编写出的类XP。内核实现机理和API函数调用几乎相同。甚至可以兼容XP的程序。喜欢研究系统内核的人可以看一看。
💻 C
字号:
/* $Id: wopen.c 25049 2006-12-03 21:06:03Z fireball $
 *
 * COPYRIGHT:   See COPYING in the top level directory
 * PROJECT:     ReactOS system libraries
 * FILE:        lib/msvcrt/io/open.c
 * PURPOSE:     Opens a file and translates handles to fileno
 * PROGRAMER:   Ariadne
 * UPDATE HISTORY:
 *              28/12/98: Created
 */

// rember to interlock the allocation of fileno when making this thread safe
// possibly store extra information at the handle

#include <precomp.h>
#if !defined(NDEBUG) && defined(DBG)
#include <stdarg.h>
#endif
#include <sys/stat.h>
#include <share.h>

#define NDEBUG
#include <internal/debug.h>


/*
 * @implemented
 */
int _wopen(const wchar_t* _path, int _oflag, ...)
{
#if !defined(NDEBUG) && defined(DBG)
    va_list arg;
    int pmode;
#endif
    HANDLE hFile;
    DWORD dwDesiredAccess = 0;
    DWORD dwShareMode = 0;
    DWORD dwCreationDistribution = 0;
    DWORD dwFlagsAndAttributes = 0;
    SECURITY_ATTRIBUTES sa = {sizeof(SECURITY_ATTRIBUTES), NULL, TRUE};

#if !defined(NDEBUG) && defined(DBG)
    va_start(arg, _oflag);
    pmode = va_arg(arg, int);
#endif

//    DPRINT("_wopen('%S', %x, (%x))\n", _path, _oflag, pmode);

    if ((_oflag & S_IREAD) == S_IREAD)
        dwShareMode = FILE_SHARE_READ;
    else if ( ( _oflag & S_IWRITE) == S_IWRITE) {
        dwShareMode = FILE_SHARE_READ | FILE_SHARE_WRITE;
    }

   /*
    *
    * _O_BINARY   Opens file in binary (untranslated) mode. (See fopen for a description of binary mode.)
    * _O_TEXT   Opens file in text (translated) mode. (For more information, see Text and Binary Mode File I/O and fopen.)
    *
    * _O_APPEND   Moves file pointer to end of file before every write operation.
    */
#if 0
    if ((_oflag & _O_RDWR) == _O_RDWR)
        dwDesiredAccess |= GENERIC_WRITE|GENERIC_READ | FILE_READ_DATA |
                           FILE_WRITE_DATA | FILE_READ_ATTRIBUTES |
                           FILE_WRITE_ATTRIBUTES;
    else if ((_oflag & O_RDONLY) == O_RDONLY)
        dwDesiredAccess |= GENERIC_READ | FILE_READ_DATA | FILE_READ_ATTRIBUTES |
                           FILE_WRITE_ATTRIBUTES;
    else if ((_oflag & _O_WRONLY) == _O_WRONLY)
        dwDesiredAccess |= GENERIC_WRITE | FILE_WRITE_DATA |
                           FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES;
#else
    if ((_oflag & _O_WRONLY) == _O_WRONLY)
        dwDesiredAccess |= GENERIC_WRITE | FILE_WRITE_DATA |
                           FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES;
    else if ((_oflag & _O_RDWR) == _O_RDWR)
        dwDesiredAccess |= GENERIC_WRITE|GENERIC_READ | FILE_READ_DATA |
                           FILE_WRITE_DATA | FILE_READ_ATTRIBUTES |
                           FILE_WRITE_ATTRIBUTES;
    else //if ((_oflag & O_RDONLY) == O_RDONLY)
        dwDesiredAccess |= GENERIC_READ | FILE_READ_DATA | FILE_READ_ATTRIBUTES |
                           FILE_WRITE_ATTRIBUTES;
#endif

    if ((_oflag & S_IREAD) == S_IREAD)
        dwShareMode |= FILE_SHARE_READ;

    if ((_oflag & S_IWRITE) == S_IWRITE)
        dwShareMode |= FILE_SHARE_WRITE;

    if ((_oflag & (_O_CREAT | _O_EXCL)) == (_O_CREAT | _O_EXCL))
        dwCreationDistribution |= CREATE_NEW;

    else if ((_oflag &  O_TRUNC) == O_TRUNC) {
        if ((_oflag &  O_CREAT) ==  O_CREAT)
            dwCreationDistribution |= CREATE_ALWAYS;
        else if ((_oflag & O_RDONLY) != O_RDONLY)
            dwCreationDistribution |= TRUNCATE_EXISTING;
    }
    else if ((_oflag & _O_APPEND) == _O_APPEND)
        dwCreationDistribution |= OPEN_EXISTING;
    else if ((_oflag &  _O_CREAT) == _O_CREAT)
        dwCreationDistribution |= OPEN_ALWAYS;
    else
        dwCreationDistribution |= OPEN_EXISTING;

    if ((_oflag &  _O_RANDOM) == _O_RANDOM)
        dwFlagsAndAttributes |= FILE_FLAG_RANDOM_ACCESS;
    if ((_oflag &  _O_SEQUENTIAL) == _O_SEQUENTIAL)
        dwFlagsAndAttributes |= FILE_FLAG_SEQUENTIAL_SCAN;

    if ((_oflag &  _O_TEMPORARY) == _O_TEMPORARY)
        dwFlagsAndAttributes |= FILE_FLAG_DELETE_ON_CLOSE;

    if ((_oflag &  _O_SHORT_LIVED) == _O_SHORT_LIVED)
        dwFlagsAndAttributes |= FILE_FLAG_DELETE_ON_CLOSE;

    if (_oflag & _O_NOINHERIT)
        sa.bInheritHandle = FALSE;

    hFile = CreateFileW(_path,
               dwDesiredAccess,
               dwShareMode,
               &sa,
               dwCreationDistribution,
               dwFlagsAndAttributes,
               NULL);
    if (hFile == (HANDLE)-1) {
    	_dosmaperr(GetLastError());
        return -1;
	}
    return alloc_fd(hFile,split_oflags(_oflag));
}

/*
 * @implemented
 */
int _wsopen(const wchar_t* path, int access, int shflag,.../* int mode*/)
{
   //FIXME: vararg
    return _wopen((path), (access)|(shflag));//, (mode));
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -