* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
221 lines
6.1 KiB
C
221 lines
6.1 KiB
C
/*
|
|
* xHarbour Project source code:
|
|
*
|
|
*
|
|
* Copyright 2003 Przemyslaw Czerpak <druzus@acn.waw.pl>
|
|
* www - http://www.xharbour.org
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* 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. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software; see the file COPYING.txt. If not, write to
|
|
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
|
*
|
|
* As a special exception, the Harbour Project gives permission for
|
|
* additional uses of the text contained in its release of Harbour.
|
|
*
|
|
* The exception is that, if you link the Harbour libraries with other
|
|
* files to produce an executable, this does not by itself cause the
|
|
* resulting executable to be covered by the GNU General Public License.
|
|
* Your use of that executable is in no way restricted on account of
|
|
* linking the Harbour library code into it.
|
|
*
|
|
* This exception does not however invalidate any other reasons why
|
|
* the executable file might be covered by the GNU General Public License.
|
|
*
|
|
* This exception applies only to the code released by the Harbour
|
|
* Project under the name Harbour. If you copy code from other
|
|
* Harbour Project or Free Software Foundation releases into a copy of
|
|
* Harbour, as the General Public License permits, the exception does
|
|
* not apply to the code that you add in this way. To avoid misleading
|
|
* anyone as to the status of such modified files, you must delete
|
|
* this exception notice from them.
|
|
*
|
|
* If you write modifications of your own for Harbour, it is your choice
|
|
* whether to permit this exception to apply to your modifications.
|
|
* If you do not wish that, delete this exception notice.
|
|
*
|
|
*/
|
|
|
|
#include "hbapi.h"
|
|
#include "hbapifs.h"
|
|
#include "hbstack.h"
|
|
#include "hb_io.h"
|
|
|
|
#if defined( HB_OS_WIN )
|
|
# include <windows.h>
|
|
#else
|
|
# include <errno.h>
|
|
#endif
|
|
|
|
/* Try to translate C errno into DOS error code */
|
|
#if ! defined( HB_OS_WIN )
|
|
static HB_ERRCODE hb_errnoToDosError( int ErrCode )
|
|
{
|
|
switch( ErrCode )
|
|
{
|
|
#if defined( ENMFILE )
|
|
case ENMFILE:
|
|
#endif
|
|
case ENOENT:
|
|
return 2; /* File not found */
|
|
#if defined( ENOTDIR )
|
|
case ENOTDIR:
|
|
return 3; /* Path not found */
|
|
#endif
|
|
#if defined( ENFILE )
|
|
case ENFILE:
|
|
#endif
|
|
case EMFILE:
|
|
return 4; /* Too many open files */
|
|
case EACCES:
|
|
#if defined( ETXTBSY )
|
|
case ETXTBSY:
|
|
#endif
|
|
#if defined( EPERM )
|
|
case EPERM:
|
|
#endif
|
|
return 5; /* Access denied */
|
|
case EBADF:
|
|
return 6; /* Invalid handle */
|
|
case ENOMEM:
|
|
return 8; /* Insufficient memory */
|
|
#if defined( EFAULT )
|
|
case EFAULT:
|
|
return 9; /* Invalid memory block address */
|
|
#endif
|
|
case EINVAL:
|
|
return 13; /* Invalid data */
|
|
#if defined( EROFS )
|
|
case EROFS:
|
|
return 19; /* Attempt to write on write-protected diskette */
|
|
#endif
|
|
#if defined( ESPIPE )
|
|
case ESPIPE:
|
|
return 25; /* Seek error */
|
|
#endif
|
|
#if defined( ENOSPC )
|
|
case ENOSPC:
|
|
return 29; /* Write fault */
|
|
#endif
|
|
case EPIPE:
|
|
return 29; /* Write fault */
|
|
case EEXIST:
|
|
return 32; /* Sharing violation */
|
|
case EAGAIN:
|
|
return 33; /* Lock violation */
|
|
}
|
|
|
|
return ( HB_ERRCODE ) ErrCode;
|
|
}
|
|
|
|
#else
|
|
|
|
static HB_ERRCODE hb_WinToDosError( DWORD dwError )
|
|
{
|
|
#ifndef ERROR_PRIVILEGE_NOT_HELD
|
|
#define ERROR_PRIVILEGE_NOT_HELD 1314L
|
|
#endif
|
|
|
|
switch( dwError )
|
|
{
|
|
case ERROR_PRIVILEGE_NOT_HELD:
|
|
case ERROR_ALREADY_EXISTS: return 5;
|
|
case ERROR_FILE_NOT_FOUND: return 2;
|
|
case ERROR_PATH_NOT_FOUND: return 3;
|
|
case ERROR_TOO_MANY_OPEN_FILES: return 4;
|
|
case ERROR_INVALID_HANDLE: return 6;
|
|
}
|
|
|
|
return ( HB_ERRCODE ) dwError;
|
|
}
|
|
|
|
#endif
|
|
|
|
/* return FError() code */
|
|
HB_ERRCODE hb_fsGetFError( void )
|
|
{
|
|
HB_TRACE( HB_TR_DEBUG, ( "hb_fsGetFError()" ) );
|
|
|
|
return hb_stackIOErrors()->uiFError;
|
|
}
|
|
|
|
/* return DOS error code of last operation */
|
|
HB_ERRCODE hb_fsError( void )
|
|
{
|
|
HB_TRACE( HB_TR_DEBUG, ( "hb_fsError()" ) );
|
|
|
|
return hb_stackIOErrors()->uiErrorLast;
|
|
}
|
|
|
|
/* return real error code of last operation */
|
|
HB_ERRCODE hb_fsOsError( void )
|
|
{
|
|
HB_TRACE( HB_TR_DEBUG, ( "hb_fsOsError()" ) );
|
|
|
|
return hb_stackIOErrors()->uiOsErrorLast;
|
|
}
|
|
|
|
/* set FError() code */
|
|
void hb_fsSetFError( HB_ERRCODE uiError )
|
|
{
|
|
HB_TRACE( HB_TR_DEBUG, ( "hb_fsSetFError(%u)", uiError ) );
|
|
|
|
hb_stackIOErrors()->uiFError = uiError;
|
|
}
|
|
|
|
/* set DOS error code for last operation */
|
|
void hb_fsSetError( HB_ERRCODE uiError )
|
|
{
|
|
PHB_IOERRORS pIOErrors;
|
|
|
|
HB_TRACE( HB_TR_DEBUG, ( "hb_fsSetError(%u)", uiError ) );
|
|
|
|
pIOErrors = hb_stackIOErrors();
|
|
/* TODO: untranslate uiError into errno */
|
|
pIOErrors->uiOsErrorLast = pIOErrors->uiErrorLast = uiError;
|
|
}
|
|
|
|
/* set error code for last operation */
|
|
void hb_fsSetIOError( HB_BOOL fResult, HB_USHORT uiOperation )
|
|
{
|
|
HB_ERRCODE uiOsErrorLast, uiErrorLast;
|
|
PHB_IOERRORS pIOErrors;
|
|
|
|
/* TODO: implement it */
|
|
HB_SYMBOL_UNUSED( uiOperation );
|
|
|
|
if( fResult )
|
|
uiOsErrorLast = uiErrorLast = 0;
|
|
else
|
|
{
|
|
#if defined( HB_OS_WIN )
|
|
DWORD dwLastError = GetLastError();
|
|
uiOsErrorLast = ( HB_ERRCODE ) dwLastError;
|
|
uiErrorLast = hb_WinToDosError( dwLastError );
|
|
#else
|
|
int iErrCode = errno;
|
|
uiOsErrorLast = iErrCode;
|
|
uiErrorLast = hb_errnoToDosError( iErrCode );
|
|
#endif
|
|
}
|
|
|
|
/* HB_TRACE() message is intentionally here to not overwrite
|
|
* OS error code processed above.
|
|
*/
|
|
HB_TRACE( HB_TR_DEBUG, ( "hb_fsSetIOError(%d,%hu)", fResult, uiOperation ) );
|
|
|
|
pIOErrors = hb_stackIOErrors();
|
|
pIOErrors->uiOsErrorLast = uiOsErrorLast;
|
|
pIOErrors->uiErrorLast = uiErrorLast;
|
|
}
|