my_create.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. #define USES_TYPES
  14. #include "mysys_priv.h"
  15. #include <my_dir.h>
  16. #include "mysys_err.h"
  17. #include <errno.h>
  18. #if defined(MSDOS) || defined(__WIN__) || defined(__EMX__) || defined(OS2)
  19. #include <share.h>
  20. #endif
  21. /*
  22. ** Create a new file
  23. ** Arguments:
  24. ** Path-name of file
  25. ** Read | write on file (umask value)
  26. ** Read & Write on open file
  27. ** Special flags
  28. */
  29. File my_create(const char *FileName, int CreateFlags, int access_flags,
  30.        myf MyFlags)
  31. {
  32.   int fd;
  33.   DBUG_ENTER("my_create");
  34.   DBUG_PRINT("my",("Name: '%s' CreateFlags: %d  AccessFlags: %d  MyFlags: %d",
  35.    FileName, CreateFlags, access_flags, MyFlags));
  36. #if !defined(NO_OPEN_3) && !defined(__EMX__)
  37.   fd = open((my_string) FileName, access_flags | O_CREAT,
  38.     CreateFlags ? CreateFlags : my_umask);
  39. #elif defined(VMS)
  40.   fd = open((my_string) FileName, access_flags | O_CREAT, 0,
  41.     "ctx=stm","ctx=bin");
  42. #elif defined(MSDOS) || defined(__WIN__) || defined(__EMX__) || defined(OS2)
  43.   if (access_flags & O_SHARE)
  44.     fd = sopen((my_string) FileName, access_flags | O_CREAT | O_BINARY,
  45.        SH_DENYNO, MY_S_IREAD | MY_S_IWRITE);
  46.   else
  47.     fd =  open((my_string) FileName, access_flags | O_CREAT | O_BINARY,
  48.        MY_S_IREAD | MY_S_IWRITE);
  49. #else
  50.   fd = open(FileName, access_flags);
  51. #endif
  52.   DBUG_RETURN(my_register_filename(fd, FileName, FILE_BY_CREATE,
  53.    EE_CANTCREATEFILE, MyFlags));
  54. } /* my_create */