📄 accio.c
字号:
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
* DESCRIBE IT HERE!
*
****************************************************************************/
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include "stdnt.h"
unsigned ReqFile_get_config( void )
{
file_get_config_ret *ret;
ret = GetOutPtr( 0 );
ret->file.ext_separator = '.';
ret->file.path_separator[0] = '\\';
ret->file.path_separator[1] = '/';
ret->file.path_separator[2] = ':';
ret->file.newline[0] = '\r';
ret->file.newline[1] = '\n';
return( sizeof( *ret ) );
}
unsigned ReqRead_user_keyboard( void )
{
read_user_keyboard_req *acc;
read_user_keyboard_ret *ret;
DWORD delay;
acc = GetInPtr( 0 );
ret = GetOutPtr( 0 );
delay = acc->wait * 1000;
// if( delay == 0 ) delay = 10000;
Sleep( delay );
//NYI: get user input
ret->key = ' ';
return( sizeof( *ret ) );
}
unsigned ReqFile_open( void )
{
HANDLE h;
file_open_req *acc;
file_open_ret *ret;
void *buff;
unsigned mode;
static unsigned const mapAcc[] = { 0, 1, 2 };
acc = GetInPtr( 0 );
buff = GetInPtr( sizeof( *acc ) );
ret = GetOutPtr( 0 );
/*
* GetMagicalFileHandle checks if a file name is of a special syntax.
* We generate magical file names for all DLL's when they load,
* since NT only gives a file handle to the DLL, not a file name.
* We fake up a name, and remember the handle. When the debugger
* asks to open up a fake name, we reuse the handle
*/
h = GetMagicalFileHandle( buff );
ret->err = 0;
if( h == NULL ) {
/*
* these __GetNT... routines are in the C library. they turn
* DOS style access and share bits into NT style ones
*/
extern void __GetNTAccessAttr( int rwmode, LPDWORD desired_access,
LPDWORD attr );
extern void __GetNTShareAttr( int share, LPDWORD share_mode );
DWORD share_mode;
DWORD desired_access;
DWORD attr;
DWORD create_disp;
mode = mapAcc[ ( 0x3 & acc->mode ) - 1];
__GetNTAccessAttr( mode & 0x7, &desired_access, &attr );
__GetNTShareAttr( mode & 0x70, &share_mode );
if( acc->mode & TF_CREATE ) {
create_disp = CREATE_ALWAYS;
} else {
create_disp = OPEN_EXISTING;
}
h = CreateFile( ( LPTSTR ) buff, desired_access, share_mode, 0,
create_disp, FILE_ATTRIBUTE_NORMAL, NULL );
if( h == ( HANDLE ) - 1 ) {
ret->err = GetLastError();
h = 0;
}
}
ret->handle = ( DWORD ) h;
return( sizeof( *ret ) );
}
unsigned ReqFile_seek( void )
{
DWORD rc;
file_seek_req *acc;
file_seek_ret *ret;
acc = GetInPtr( 0 );
ret = GetOutPtr( 0 );
rc = SetFilePointer( ( HANDLE ) acc->handle, acc->pos, 0,
acc->mode );
if( rc == -1 ) {
ret->err = GetLastError();
} else {
ret->err = 0;
}
ret->pos = rc;
return( sizeof( *ret ) );
}
unsigned ReqFile_write( void )
{
DWORD bytes;
BOOL rc;
file_write_req *acc;
file_write_ret *ret;
DWORD len;
void *buff;
acc = GetInPtr( 0 );
buff = GetInPtr( sizeof( *acc ) );
ret = GetOutPtr( 0 );
len = GetTotalSize() - sizeof( *acc );
rc = WriteFile( ( HANDLE )acc->handle, buff, len, &bytes, NULL );
if( !rc ) {
ret->err = GetLastError();
bytes = 0;
} else {
ret->err = 0;
}
ret->len = bytes;
return( sizeof( *ret ) );
}
unsigned ReqFile_write_console( void )
{
DWORD bytes;
BOOL rc;
file_write_console_req *acc;
file_write_console_ret *ret;
DWORD len;
void *buff;
HANDLE handle;
acc = GetInPtr( 0 );
ret = GetOutPtr( 0 );
buff = GetInPtr( sizeof( *acc ) );
len = GetTotalSize() - sizeof( *acc );
handle = GetStdHandle( STD_ERROR_HANDLE );
if( DebugeePid != NULL ) {
//NYI: write to program screen
} else {
rc = WriteFile( handle, buff, len, &bytes, NULL );
if( !rc ) {
ret->err = GetLastError();
bytes = 0;
} else {
ret->err = 0;
}
ret->len = bytes;
}
return( sizeof( *ret ) );
}
unsigned ReqFile_read( void )
{
DWORD bytes;
BOOL rc;
file_read_req *acc;
file_read_ret *ret;
void *buff;
acc = GetInPtr( 0 );
ret = GetOutPtr( 0 );
buff = GetOutPtr( sizeof( *ret ) );
rc = ReadFile( ( HANDLE ) acc->handle, buff, acc->len, &bytes, NULL );
if( !rc ) {
ret->err = GetLastError();
bytes = 0;
} else {
ret->err = 0;
}
return( sizeof( *ret ) + bytes );
}
unsigned ReqFile_close( void )
{
file_close_req *acc;
file_close_ret *ret;
BOOL rc;
acc = GetInPtr( 0 );
ret = GetOutPtr( 0 );
ret->err = 0;
/*
* we do not close the file handle if it was a magical one that
* we remembered from a DLL load
*/
if( !IsMagicalFileHandle( ( HANDLE ) acc->handle ) ) {
rc = CloseHandle( ( HANDLE ) acc->handle );
if( !rc ) {
ret->err = GetLastError();
}
}
return( sizeof( *ret ) );
}
unsigned ReqFile_erase( void )
{
file_erase_ret *ret;
char *buff;
buff = GetInPtr( sizeof( file_erase_req ) );
ret = GetOutPtr( 0 );
if( DeleteFile( buff ) ) {
ret->err = GetLastError();
} else {
ret->err = 0;
}
return( sizeof( *ret ) );
}
unsigned ReqFile_run_cmd( void )
{
file_run_cmd_ret *ret;
//NYI: to do
ret = GetOutPtr( 0 );
ret->err = 0;
return( sizeof( *ret ) );
}
unsigned ReqFile_string_to_fullpath( void )
{
file_string_to_fullpath_req *acc;
file_string_to_fullpath_ret *ret;
char *name;
char *fullname;
char *ext_list;
acc = GetInPtr( 0 );
name = GetInPtr( sizeof( *acc ) );
ret = GetOutPtr( 0 );
fullname = GetOutPtr( sizeof( *ret ) );
if( GetMagicalFileHandle( name ) != NULL ) {
strcpy( fullname, name );
ret->err = 0;
} else {
if( acc->file_type != TF_TYPE_EXE ) {
ext_list = "";
} else {
ext_list = ExtensionList;
}
ret->err = FindFilePath( name, fullname, ext_list );
}
if( ret->err != 0 )
*fullname = '\0';
return( sizeof( *ret ) + strlen( fullname ) + 1 );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -