my_os2file64.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:12k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) Yuri Dario & 2000 MySQL AB
  2.    All the above parties has a full, independent copyright to
  3.    the following code, including the right to use the code in
  4.    any manner without any demands from the other parties.
  5.    This library is free software; you can redistribute it and/or
  6.    modify it under the terms of the GNU Library General Public
  7.    License as published by the Free Software Foundation; either
  8.    version 2 of the License, or (at your option) any later version.
  9.    This library is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.    Library General Public License for more details.
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. void     _OS2errno( APIRET rc);
  18. longlong    _lseek64( int fd, longlong offset, int seektype);
  19. int     _lock64( int fd, int locktype, my_off_t start,
  20.      my_off_t length, myf MyFlags);
  21. int     _sopen64( const char *name, int oflag, int shflag, int mask);
  22. /*
  23.   This class is used to define a global c++ variable, that
  24.   is initialized before main() gets called.
  25. */
  26. class File64bit
  27. {
  28.    public:
  29.       File64bit();  /* default constructor */
  30. } initFile64bit;
  31. static APIRET (* APIENTRY _DosOpenL)(PCSZ  pszFileName,
  32.     PHFILE phf,
  33.     PULONG pulAction,
  34.     LONGLONG cbFile,
  35.     ULONG ulAttribute,
  36.     ULONG fsOpenFlags,
  37.     ULONG fsOpenMode,
  38.     PEAOP2 peaop2);
  39. static APIRET (* APIENTRY _DosSetFilePtrL)(HFILE hFile,
  40.    LONGLONG ib,
  41.    ULONG method,
  42.    PLONGLONG ibActual);
  43. static APIRET (* APIENTRY _DosSetFileLocksL)(HFILE hFile,
  44.     PFILELOCKL pflUnlock,
  45.     PFILELOCKL pflLock,
  46.     ULONG timeout,
  47.     ULONG flags);
  48. #define  EIO   EINVAL
  49. #define  ESPIPE   EBADSEEK
  50. static unsigned char const errno_tab[] =
  51. {
  52.   0 , EINVAL, ENOENT, ENOENT, EMFILE,  /* 0..4 */
  53.   EACCES, EBADF,  EIO,   ENOMEM, EIO,    /* 5..9 */
  54.   EINVAL, ENOEXEC,EINVAL, EINVAL, EINVAL,  /* 10..14 */
  55.   ENOENT, EBUSY,  EXDEV,  ENOENT, EROFS,   /* 15..19 */
  56.   EIO,   EIO,   EIO,   EIO,   EIO,    /* 20..24 */
  57.   EIO,   EIO,   EIO,   ENOSPC, EIO,    /* 25..29 */
  58.   EIO,   EIO,   EACCES, EACCES, EIO,    /* 30..34 */
  59.   EIO,   EIO,   EIO,   EIO,   ENOSPC,  /* 35..39 */
  60.   EIO,   EIO,   EIO,   EIO,   EIO,    /* 40..44 */
  61.   EIO,   EIO,   EIO,   EIO,   EIO,    /* 45..49 */
  62.   EIO,   EIO,   EIO,   EIO,   EBUSY,   /* 50..54 */
  63.   EIO,   EIO,   EIO,   EIO,   EIO,    /* 55..59 */
  64.   EIO,   ENOSPC, ENOSPC, EIO,   EIO,    /* 60..64 */
  65.   EACCES, EIO,   EIO,   EIO,   EIO,    /* 65..69 */
  66.   EIO,   EIO,   EIO,   EROFS,  EIO,    /* 70..74 */
  67.   EIO,   EIO,   EIO,   EIO,   EIO,    /* 75..79 */
  68.   EEXIST, EIO,   ENOENT, EIO,   EIO,    /* 80..84 */
  69.   EIO,   EIO,   EINVAL, EIO,   EAGAIN,  /* 85..89 */
  70.   EIO,   EIO,   EIO,   EIO,   EIO,    /* 90..94 */
  71.   EINTR,  EIO,   EIO,   EIO,   EACCES,  /* 95..99 */
  72.   ENOMEM, EINVAL, EINVAL, ENOMEM, EINVAL,  /* 100..104 */
  73.   EINVAL, ENOMEM, EIO,   EACCES, EPIPE,   /* 105..109 */
  74.   ENOENT, E2BIG,  ENOSPC, ENOMEM, EBADF,   /* 110..114 */
  75.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 115..119 */
  76.   EINVAL, EINVAL, EINVAL, ENOENT, EINVAL,  /* 120..124 */
  77.   ENOENT, ENOENT, ENOENT, ECHILD, ECHILD,  /* 125..129 */
  78.   EACCES, EINVAL, ESPIPE, EINVAL, EINVAL,  /* 130..134 */
  79.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 135..139 */
  80.   EINVAL, EINVAL, EBUSY,  EINVAL, EINVAL,  /* 140..144 */
  81.   EINVAL, EINVAL, EINVAL, EBUSY,  EINVAL,  /* 145..149 */
  82.   EINVAL, EINVAL, ENOMEM, EINVAL, EINVAL,  /* 150..154 */
  83.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 155..159 */
  84.   EINVAL, EINVAL, EINVAL, EINVAL, EAGAIN,  /* 160..164 */
  85.   EINVAL, EINVAL, EACCES, EINVAL, EINVAL,  /* 165..169 */
  86.   EBUSY,  EINVAL, EINVAL, EINVAL, EINVAL,  /* 170..174 */
  87.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 175..179 */
  88.   EINVAL, EINVAL, EINVAL, EINVAL, ECHILD,  /* 180..184 */
  89.   EINVAL, EINVAL, ENOENT, EINVAL, EINVAL,  /* 185..189 */
  90.   ENOEXEC,ENOEXEC,ENOEXEC,ENOEXEC,ENOEXEC, /* 190..194 */
  91.   ENOEXEC,ENOEXEC,ENOEXEC,ENOEXEC,ENOEXEC, /* 195..199 */
  92.   ENOEXEC,ENOEXEC,ENOEXEC,ENOENT, EINVAL,  /* 200..204 */
  93.   EINVAL, ENAMETOOLONG, EINVAL, EINVAL, EINVAL,  /* 205..209 */
  94.   EINVAL, EINVAL, EACCES, ENOEXEC,ENOEXEC, /* 210..214 */
  95.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 215..219 */
  96.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 220..224 */
  97.   EINVAL, EINVAL, EINVAL, ECHILD, EINVAL,  /* 225..229 */
  98.   EINVAL, EBUSY,  EAGAIN, ENOTCONN, EINVAL, /* 230..234 */
  99.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 235..239 */
  100.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 240..244 */
  101.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 245..249 */
  102.   EACCES, EACCES, EINVAL, ENOENT, EINVAL,  /* 250..254 */
  103.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 255..259 */
  104.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 260..264 */
  105.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 265..269 */
  106.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 270..274 */
  107.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 275..279 */
  108.   EINVAL, EINVAL, EINVAL, EINVAL, EEXIST,  /* 280..284 */
  109.   EEXIST, EINVAL, EINVAL, EINVAL, EINVAL,  /* 285..289 */
  110.   ENOMEM, EMFILE, EINVAL, EINVAL, EINVAL,  /* 290..294 */
  111.   EINVAL, EINVAL, EINVAL, EINVAL, EINVAL,  /* 295..299 */
  112.   EINVAL, EBUSY,  EINVAL, ESRCH,  EINVAL,  /* 300..304 */
  113.   ESRCH,  EINVAL, EINVAL, EINVAL, ESRCH,   /* 305..309 */
  114.   EINVAL, ENOMEM, EINVAL, EINVAL, EINVAL,  /* 310..314 */
  115.   EINVAL, E2BIG,  ENOENT, EIO,   EIO,    /* 315..319 */
  116.   EINVAL, EINVAL, EINVAL, EINVAL, EAGAIN,  /* 320..324 */
  117.   EINVAL, EINVAL, EINVAL, EIO,   ENOENT,  /* 325..329 */
  118.   EACCES, EACCES, EACCES, ENOENT, ENOMEM   /* 330..334 */
  119. };
  120. /*
  121.  * Initialize 64bit file access: dynamic load of WSeB API
  122. */
  123.     File64bit :: File64bit()
  124. {
  125.    HMODULE hDoscalls;
  126.    if (DosQueryModuleHandle("DOSCALLS", &hDoscalls) != NO_ERROR)
  127.       return;
  128.    if (DosQueryProcAddr(hDoscalls, 981, NULL, (PFN *)&_DosOpenL) != NO_ERROR)
  129.       return;
  130.    if (DosQueryProcAddr(hDoscalls, 988, NULL, (PFN *)&_DosSetFilePtrL) != NO_ERROR) {
  131.       _DosOpenL = NULL;
  132.       return;
  133.    }
  134.    if (DosQueryProcAddr(hDoscalls, 986, NULL, (PFN *)&_DosSetFileLocksL) != NO_ERROR) {
  135.       _DosOpenL = NULL;
  136.       _DosSetFilePtrL = NULL;
  137.       return;
  138.    }
  139.    /* notify success */
  140. #ifdef MYSQL_SERVER
  141.    printf( "WSeB 64bit file API loaded.n");
  142. #endif
  143. }
  144. void     _OS2errno( APIRET rc)
  145. {
  146.   if (rc >= sizeof (errno_tab))
  147.     errno = EINVAL;
  148.   else
  149.     errno = errno_tab[rc];
  150. }
  151. longlong _lseek64( int fd, longlong offset, int seektype)
  152. {
  153.   APIRET   rc;
  154.   longlong actual;
  155.   if (_DosSetFilePtrL)
  156.     rc = _DosSetFilePtrL( fd, offset, seektype, &actual);
  157.   else
  158.   {
  159.     ULONG ulActual;
  160.     rc = DosSetFilePtr( fd, (long) offset, seektype, &ulActual);
  161.     actual = ulActual;
  162.   }
  163.   if (!rc)
  164.     return( actual); /* NO_ERROR */
  165.   _OS2errno( rc); /* set errno */
  166.   return(-1); /* seek failed */
  167. }
  168. inline APIRET _SetFileLocksL(HFILE hFile,
  169.      PFILELOCKL pflUnlock,
  170.      PFILELOCKL pflLock,
  171.      ULONG timeout,
  172.      ULONG flags)
  173. {
  174.   if (_DosSetFileLocksL)
  175.   {
  176.     APIRET rc;
  177.     rc = _DosSetFileLocksL( hFile, pflUnlock, pflLock, timeout, flags);
  178.     /*
  179.       on FAT/HPFS/LAN a INVALID_PARAMETER is returned, seems that
  180.       only JFS can handle >2GB ranges.
  181.     */
  182.     if (rc != 87)
  183.       return rc;
  184.     /* got INVALID_PARAMETER, fallback to standard call */
  185.   }
  186.   FILELOCK flUnlock = { pflUnlock->lOffset, pflUnlock->lRange };
  187.   FILELOCK flLock = { pflLock->lOffset, pflLock->lRange };
  188.   return DosSetFileLocks( hFile, &flUnlock, &flLock, timeout, flags);
  189. }
  190. int  _lock64( int fd, int locktype, my_off_t start,
  191.       my_off_t length, myf MyFlags)
  192. {
  193.   FILELOCKL LockArea = {0,0}, UnlockArea = {0,0};
  194.   ULONG     readonly = 0;
  195.   APIRET    rc = -1;
  196.   switch (locktype) {
  197.   case F_UNLCK:
  198.     UnlockArea.lOffset = start;
  199.     UnlockArea.lRange = length ? length : LONGLONG_MAX;
  200.     break;
  201.   case F_RDLCK:
  202.   case F_WRLCK:
  203.     LockArea.lOffset = start;
  204.     LockArea.lRange = length ? length : LONGLONG_MAX;
  205.     readonly = (locktype == F_RDLCK ? 1 : 0);
  206.     break;
  207.   default:
  208.     errno = EINVAL;
  209.     rc = -1;
  210.     break;
  211.   }
  212.   if (MyFlags & MY_DONT_WAIT)
  213.   {
  214.     rc = _SetFileLocksL( fd, &UnlockArea, &LockArea, 0, readonly);
  215.     /* printf("fd %d, locktype %d, rc %d (dont_wait)n", fd, locktype, rc); */
  216.     if (rc == 33) {  /* Lock Violation */
  217.       DBUG_PRINT("info",("Was locked, trying with timeout"));
  218.       rc = _SetFileLocksL( fd, &UnlockArea, &LockArea, 1 * 1000, readonly);
  219.       /* printf( "fd %d, locktype %d, rc %d (dont_wait with timeout)n", fd, locktype, rc); */
  220.     }
  221.   }
  222.   else
  223.   {
  224.     while (rc = _SetFileLocksL( fd, &UnlockArea, &LockArea, 0, readonly) &&
  225.    (rc == 33))
  226.     {
  227.       printf(".");
  228.       DosSleep(1 * 1000);
  229.     }
  230.     /* printf( "fd %d, locktype %d, rc %d (wait2)n", fd, locktype, rc); */
  231.   }
  232.   if (!rc)
  233.     return(0); /* NO_ERROR */
  234.   _OS2errno( rc); /* set errno */
  235.   return(-1); /* lock failed */
  236. }
  237. int sopen(const char *name, int oflag, int shflag, int mask)
  238. {
  239.   int     fail_errno;
  240.   APIRET   rc = 0;
  241.   HFILE    hf = 0;
  242.   ULONG    ulAction = 0;
  243.   LONGLONG cbFile = 0;
  244.   ULONG    ulAttribute = FILE_NORMAL;
  245.   ULONG    fsOpenFlags = 0;
  246.   ULONG    fsOpenMode = 0;
  247.   /* Extract the access mode and sharing mode bits. */
  248.   fsOpenMode = (shflag & 0xFF) | (oflag & 0x03);
  249.   /*
  250.     Translate ERROR_OPEN_FAILED to ENOENT unless O_EXCL is set (see
  251.     below).
  252.   */
  253.   fail_errno = ENOENT;
  254.   /*
  255.     Compute `open_flag' depending on `flags'.  Note that _SO_CREAT is
  256.     set for O_CREAT.
  257.   */
  258.   if (oflag & O_CREAT)
  259.   {
  260.     if (oflag & O_EXCL)
  261.     {
  262.       fsOpenFlags = OPEN_ACTION_FAIL_IF_EXISTS | OPEN_ACTION_CREATE_IF_NEW;
  263.       fail_errno = EEXIST;
  264.     }
  265.     else if (oflag & O_TRUNC)
  266.       fsOpenFlags = OPEN_ACTION_REPLACE_IF_EXISTS | OPEN_ACTION_CREATE_IF_NEW;
  267.     else
  268.       fsOpenFlags = OPEN_ACTION_OPEN_IF_EXISTS | OPEN_ACTION_CREATE_IF_NEW;
  269.     if (mask & S_IWRITE)
  270.       ulAttribute = FILE_NORMAL;
  271.     else
  272.       ulAttribute = FILE_READONLY;
  273.   }
  274.   else if (oflag & O_TRUNC)
  275.     fsOpenFlags = OPEN_ACTION_REPLACE_IF_EXISTS | OPEN_ACTION_FAIL_IF_NEW;
  276.   else
  277.     fsOpenFlags = OPEN_ACTION_OPEN_IF_EXISTS | OPEN_ACTION_FAIL_IF_NEW;
  278.   /* Try to open the file and handle errors. */
  279.   if (_DosOpenL)
  280.     rc = _DosOpenL( name, &hf, &ulAction, cbFile,
  281.     ulAttribute, fsOpenFlags, fsOpenMode, NULL);
  282.   else
  283.     rc = DosOpen( name, &hf, &ulAction, (LONG) cbFile,
  284.   ulAttribute, fsOpenFlags, fsOpenMode, NULL);
  285.   if (rc == ERROR_OPEN_FAILED)
  286.   {
  287.     errno = fail_errno;
  288.     return -1;
  289.   }
  290.   if (rc != 0)
  291.   {
  292.     _OS2errno( rc);      /* set errno */
  293.     return -1;
  294.   }
  295.   if (oflag & O_APPEND)
  296.     _lseek64( hf, 0L, SEEK_END);
  297.   return hf;
  298. }
  299. int read(int fd, void *buffer, unsigned int count)
  300. {
  301.   APIRET   rc;
  302.   ULONG    actual;
  303.   rc= DosRead( fd, (PVOID) buffer, count, &actual);
  304.   if (!rc)
  305.     return( actual); /* NO_ERROR */
  306.   _OS2errno( rc); /* set errno */
  307.   return(-1); /* read failed */
  308. }
  309. int write(int fd, const void *buffer, unsigned int count)
  310. {
  311.   APIRET   rc;
  312.   ULONG    actual;
  313.   rc = DosWrite( fd, (PVOID) buffer, count, &actual);
  314.   if (!rc)
  315.     return( actual); /* NO_ERROR */
  316.   _OS2errno( rc); /* set errno */
  317.   return(-1); /* write failed */
  318. }
  319. int close( int fd)
  320. {
  321.   APIRET   rc;
  322.   ULONG    actual;
  323.   rc = DosClose( fd);
  324.   if (!rc)
  325.     return( 0); /* NO_ERROR */
  326.   _OS2errno( rc); /* set errno */
  327.   return(-1); /* close failed */
  328. }
  329. int open( const char *name, int oflag)
  330. {
  331.    return sopen( name, oflag, OPEN_SHARE_DENYNONE, S_IREAD | S_IWRITE);
  332. }
  333. int open( const char *name, int oflag, int mask)
  334. {
  335.    return sopen( name, oflag, OPEN_SHARE_DENYNONE, mask);
  336. }