my_seek.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  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. #include "mysys_priv.h"
  18. /* Seek to position in file */
  19. /*ARGSUSED*/
  20. my_off_t my_seek(File fd, my_off_t pos, int whence, myf MyFlags)
  21. {
  22.   reg1 os_off_t newpos;
  23.   DBUG_ENTER("my_seek");
  24.   DBUG_PRINT("my",("Fd: %d  Hpos: %lu  Pos: %lu  Whence: %d  MyFlags: %d",
  25.    fd, ((ulonglong) pos) >> 32, (ulong) pos, whence, MyFlags));
  26.   newpos=lseek(fd, pos, whence);
  27.   if (newpos == (os_off_t) -1)
  28.   {
  29.     my_errno=errno;
  30.     DBUG_PRINT("error",("lseek: %lu, errno: %d",newpos,errno));
  31.     DBUG_RETURN(MY_FILEPOS_ERROR);
  32.   }
  33.   DBUG_RETURN((my_off_t) newpos);
  34. } /* my_seek */
  35. /* Tell current position of file */
  36. /* ARGSUSED */
  37. my_off_t my_tell(File fd, myf MyFlags)
  38. {
  39.   os_off_t pos;
  40.   DBUG_ENTER("my_tell");
  41.   DBUG_PRINT("my",("Fd: %d  MyFlags: %d",fd, MyFlags));
  42. #ifdef HAVE_TELL
  43.   pos=tell(fd);
  44. #else
  45.   pos=lseek(fd, 0L, MY_SEEK_CUR);
  46. #endif
  47.   if (pos == (os_off_t) -1)
  48.     my_errno=errno;
  49.   DBUG_PRINT("exit",("pos: %lu",pos));
  50.   DBUG_RETURN((my_off_t) pos);
  51. } /* my_tell */