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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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. /* Functions for discover of frm file from handler */
  14. #include "mysql_priv.h"
  15. #include <my_dir.h>
  16. /*
  17.   Read the contents of a .frm file
  18.   SYNOPSIS
  19.     readfrm()
  20.     name           path to table-file "db/name"
  21.     frmdata        frm data
  22.     len            length of the read frmdata
  23.   RETURN VALUES
  24.    0 ok
  25.    1 Could not open file
  26.    2    Could not stat file
  27.    3    Could not allocate data for read
  28.         Could not read file
  29.    frmdata and len are set to 0 on error
  30. */
  31. int readfrm(const char *name,
  32.     const void **frmdata, uint *len)
  33. {
  34.   int    error;
  35.   char  index_file[FN_REFLEN];
  36.   File  file;
  37.   ulong read_len;
  38.   char *read_data;
  39.   MY_STAT state;  
  40.   DBUG_ENTER("readfrm");
  41.   DBUG_PRINT("enter",("name: '%s'",name));
  42.   
  43.   *frmdata= NULL;      // In case of errors
  44.   *len= 0;
  45.   error= 1;
  46.   if ((file=my_open(fn_format(index_file,name,"",reg_ext,4),
  47.     O_RDONLY | O_SHARE,
  48.     MYF(0))) < 0)  
  49.     goto err_end; 
  50.   
  51.   // Get length of file
  52.   error= 2;
  53.   if (my_fstat(file, &state, MYF(0)))
  54.     goto err;
  55.   read_len= state.st_size;  
  56.   // Read whole frm file
  57.   error= 3;
  58.   read_data= 0; 
  59.   if (read_string(file, &read_data, read_len))
  60.     goto err;
  61.   // Setup return data
  62.   *frmdata= (void*) read_data;
  63.   *len= read_len;
  64.   error= 0;
  65.   
  66.  err:
  67.   if (file > 0)
  68.     VOID(my_close(file,MYF(MY_WME)));
  69.   
  70.  err_end:       /* Here when no file */
  71.   DBUG_RETURN (error);
  72. } /* readfrm */
  73. /*
  74.   Write the content of a frm data pointer 
  75.   to a frm file
  76.   SYNOPSIS
  77.     writefrm()
  78.     name           path to table-file "db/name"
  79.     frmdata        frm data
  80.     len            length of the frmdata
  81.   RETURN VALUES
  82.    0 ok
  83.    2    Could not write file
  84. */
  85. int writefrm(const char *name, const void *frmdata, uint len)
  86. {
  87.   File file;
  88.   char  index_file[FN_REFLEN];
  89.   int error;
  90.   DBUG_ENTER("writefrm");
  91.   DBUG_PRINT("enter",("name: '%s' len: %d ",name,len));
  92.   //DBUG_DUMP("frmdata", (char*)frmdata, len);
  93.   error= 0;
  94.   if ((file=my_create(fn_format(index_file,name,"",reg_ext,4),
  95.       CREATE_MODE,O_RDWR | O_TRUNC,MYF(MY_WME))) >= 0)
  96.   {
  97.     if (my_write(file,(byte*)frmdata,len,MYF(MY_WME | MY_NABP)))
  98.       error= 2;
  99.   }
  100.   VOID(my_close(file,MYF(0)));
  101.   DBUG_RETURN(error);
  102. } /* writefrm */