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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include "mysys_priv.h"
  14. /* Seek to position in file */
  15. /*ARGSUSED*/
  16. my_off_t my_seek(File fd, my_off_t pos, int whence,
  17.  myf MyFlags __attribute__((unused)))
  18. {
  19.   reg1 os_off_t newpos;
  20.   DBUG_ENTER("my_seek");
  21.   DBUG_PRINT("my",("Fd: %d  Hpos: %lu  Pos: %lu  Whence: %d  MyFlags: %d",
  22.    fd, (ulong) (((ulonglong) pos) >> 32), (ulong) pos, 
  23.    whence, MyFlags));
  24.   DBUG_ASSERT(pos != MY_FILEPOS_ERROR); /* safety check */
  25.   newpos=lseek(fd, pos, whence);
  26.   if (newpos == (os_off_t) -1)
  27.   {
  28.     my_errno=errno;
  29.     DBUG_PRINT("error",("lseek: %lu, errno: %d",newpos,errno));
  30.     DBUG_RETURN(MY_FILEPOS_ERROR);
  31.   }
  32.   if ((my_off_t) newpos != pos)
  33.   {
  34.     DBUG_PRINT("exit",("pos: %lu", (ulong) newpos));
  35.   }
  36.   DBUG_RETURN((my_off_t) newpos);
  37. } /* my_seek */
  38. /* Tell current position of file */
  39. /* ARGSUSED */
  40. my_off_t my_tell(File fd, myf MyFlags __attribute__((unused)))
  41. {
  42.   os_off_t pos;
  43.   DBUG_ENTER("my_tell");
  44.   DBUG_PRINT("my",("Fd: %d  MyFlags: %d",fd, MyFlags));
  45. #ifdef HAVE_TELL
  46.   pos=tell(fd);
  47. #else
  48.   pos=lseek(fd, 0L, MY_SEEK_CUR);
  49. #endif
  50.   if (pos == (os_off_t) -1)
  51.     my_errno=errno;
  52.   DBUG_PRINT("exit",("pos: %lu", (ulong) pos));
  53.   DBUG_RETURN((my_off_t) pos);
  54. } /* my_tell */