table.cc 40.5 KB
Newer Older
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
2

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3 4 5 6
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
7

bk@work.mysql.com's avatar
bk@work.mysql.com committed
8 9 10 11
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
12

bk@work.mysql.com's avatar
bk@work.mysql.com committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */


/* Some general useful functions */

#include "mysql_priv.h"
#include <errno.h>
#include <m_ctype.h>


	/* Functions defined in this file */

static void frm_error(int error,TABLE *form,const char *name,int errortype);
static void fix_type_pointers(const char ***array, TYPELIB *point_to_type,
			      uint types, char **names);
static uint find_field(TABLE *form,uint start,uint length);


33
static byte* get_field_name(Field **buff,uint *length,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
34 35
			    my_bool not_used __attribute__((unused)))
{
36 37
  *length= (uint) strlen((*buff)->field_name);
  return (byte*) (*buff)->field_name;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
38 39
}

40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
/*
  Open a .frm file 

  SYNOPSIS
    openfrm()

    name           path to table-file "db/name"
    alias          alias for table
    db_stat        open flags (for example HA_OPEN_KEYFILE|HA_OPEN_RNDFILE..)
                   can be 0 (example in ha_example_table)
    prgflag        READ_ALL etc..
    ha_open_flags  HA_OPEN_ABORT_IF_LOCKED etc..
    outparam       result table

  RETURN VALUES
   0	ok
   1	Error (see frm_error)
   2    Error (see frm_error)
   3    Wrong data in .frm file
   4    Error (see frm_error)
*/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
61 62

int openfrm(const char *name, const char *alias, uint db_stat, uint prgflag,
63
	    uint ha_open_flags, TABLE *outparam)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
64 65 66
{
  reg1 uint i;
  reg2 uchar *strpos;
67
  int	 j,error;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
68
  uint	 rec_buff_length,n_length,int_length,records,key_parts,keys,
69
         interval_count,interval_parts,read_length,db_create_options;
70
  uint	 key_info_length, com_length;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
71
  ulong  pos;
72
  char	 index_file[FN_REFLEN], *names, *keynames, *comment_pos;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
73 74 75
  uchar  head[288],*disk_buff,new_field_pack_flag;
  my_string record;
  const char **int_array;
76
  bool	 use_hash, null_field_first;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
77 78 79 80 81
  File	 file;
  Field  **field_ptr,*reg_field;
  KEY	 *keyinfo;
  KEY_PART_INFO *key_part;
  uchar *null_pos;
82
  uint null_bit, new_frm_ver, field_pack_length;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
83 84 85 86 87 88 89 90 91 92
  SQL_CRYPT *crypted=0;
  DBUG_ENTER("openfrm");
  DBUG_PRINT("enter",("name: '%s'  form: %lx",name,outparam));

  bzero((char*) outparam,sizeof(*outparam));
  outparam->blob_ptr_size=sizeof(char*);
  disk_buff=NULL; record= NULL; keynames=NullS;
  outparam->db_stat = db_stat;
  error=1;

93
  init_sql_alloc(&outparam->mem_root, TABLE_ALLOC_BLOCK_SIZE, 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
94 95 96 97 98 99 100 101 102 103
  MEM_ROOT *old_root=my_pthread_getspecific_ptr(MEM_ROOT*,THR_MALLOC);
  my_pthread_setspecific_ptr(THR_MALLOC,&outparam->mem_root);

  outparam->real_name=strdup_root(&outparam->mem_root,
				  name+dirname_length(name));
  *fn_ext(outparam->real_name)='\0';		// Remove extension
  outparam->table_name=my_strdup(alias,MYF(MY_WME));
  if (!outparam->real_name || !outparam->table_name)
    goto err_end;

monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
104
  if ((file=my_open(fn_format(index_file,name,"",reg_ext,MY_UNPACK_FILENAME),
105
		    O_RDONLY | O_SHARE,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
106 107 108 109 110 111 112 113 114 115 116 117
		    MYF(0)))
      < 0)
  {
    goto err_end; /* purecov: inspected */
  }
  error=4;
  if (!(outparam->path= strdup_root(&outparam->mem_root,name)))
    goto err_not_open;
  *fn_ext(outparam->path)='\0';		// Remove extension

  if (my_read(file,(byte*) head,64,MYF(MY_NABP))) goto err_not_open;
  if (head[0] != (uchar) 254 || head[1] != 1 ||
118
      (head[2] != FRM_VER && head[2] != FRM_VER+1 && head[2] != FRM_VER+3))
119
    goto err_not_open;				/* purecov: inspected */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
120
  new_field_pack_flag=head[27];
121
  new_frm_ver= (head[2] - FRM_VER);
122
  field_pack_length= new_frm_ver < 2 ? 11 : 17;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
123 124 125

  error=3;
  if (!(pos=get_form_pos(file,head,(TYPELIB*) 0)))
126
    goto err_not_open;				/* purecov: inspected */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
127 128
  *fn_ext(index_file)='\0';			// Remove .frm extension

129
  outparam->frm_version= head[2];
bk@work.mysql.com's avatar
bk@work.mysql.com committed
130 131 132 133 134 135 136 137 138 139 140
  outparam->db_type=ha_checktype((enum db_type) (uint) *(head+3));
  outparam->db_create_options=db_create_options=uint2korr(head+30);
  outparam->db_options_in_use=outparam->db_create_options;
  null_field_first=0;
  if (!head[32])				// New frm file in 3.23
  {
    outparam->avg_row_length=uint4korr(head+34);
    outparam->row_type=(row_type) head[40];
    outparam->raid_type=   head[41];
    outparam->raid_chunks= head[42];
    outparam->raid_chunksize= uint4korr(head+43);
141
    outparam->table_charset=get_charset((uint) head[38],MYF(0));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
142 143
    null_field_first=1;
  }
144 145
  if (!outparam->table_charset) /* unknown charset in head[38] or pre-3.23 frm */
    outparam->table_charset=default_charset_info;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
146 147 148
  outparam->db_record_offset=1;
  if (db_create_options & HA_OPTION_LONG_BLOB_PTR)
    outparam->blob_ptr_size=portable_sizeof_char_ptr;
149 150
  /* Set temporaryly a good value for db_low_byte_first */
  outparam->db_low_byte_first=test(outparam->db_type != DB_TYPE_ISAM);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
151 152 153 154 155
  error=4;
  outparam->max_rows=uint4korr(head+18);
  outparam->min_rows=uint4korr(head+22);

  /* Read keyinformation */
156
  key_info_length= (uint) uint2korr(head+28);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
157
  VOID(my_seek(file,(ulong) uint2korr(head+6),MY_SEEK_SET,MYF(0)));
158
  if (read_string(file,(gptr*) &disk_buff,key_info_length))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
159
    goto err_not_open; /* purecov: inspected */
serg@serg.mylan's avatar
serg@serg.mylan committed
160
  if (disk_buff[0] & 0x80)
serg@serg.mylan's avatar
serg@serg.mylan committed
161
  {
serg@serg.mylan's avatar
serg@serg.mylan committed
162
    outparam->keys=      keys=      (disk_buff[1] << 7) | (disk_buff[0] & 0x7f);
serg@serg.mylan's avatar
serg@serg.mylan committed
163 164 165 166 167 168 169
    outparam->key_parts= key_parts= uint2korr(disk_buff+2);
  }
  else
  {
    outparam->keys=      keys=      disk_buff[0];
    outparam->key_parts= key_parts= disk_buff[1];
  }
170
  outparam->keys_for_keyread.init(0);
serg@serg.mylan's avatar
serg@serg.mylan committed
171
  outparam->keys_in_use.init(keys);
172
  outparam->read_only_keys.init(keys);
173 174 175
  outparam->quick_keys.init();
  outparam->used_keys.init();
  outparam->keys_in_use_for_query.init();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
176 177 178 179 180 181 182

  n_length=keys*sizeof(KEY)+key_parts*sizeof(KEY_PART_INFO);
  if (!(keyinfo = (KEY*) alloc_root(&outparam->mem_root,
				    n_length+uint2korr(disk_buff+4))))
    goto err_not_open; /* purecov: inspected */
  bzero((char*) keyinfo,n_length);
  outparam->key_info=keyinfo;
183
  outparam->max_key_length= outparam->total_key_length= 0;
184
  key_part= my_reinterpret_cast(KEY_PART_INFO*) (keyinfo+keys);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
185 186 187 188 189 190 191 192 193
  strpos=disk_buff+6;

  ulong *rec_per_key;
  if (!(rec_per_key= (ulong*) alloc_root(&outparam->mem_root,
					 sizeof(ulong*)*key_parts)))
    goto err_not_open;

  for (i=0 ; i < keys ; i++, keyinfo++)
  {
194
    if (new_frm_ver == 3)
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
    {
      keyinfo->flags=	   (uint) uint2korr(strpos) ^ HA_NOSAME;
      keyinfo->key_length= (uint) uint2korr(strpos+2);
      keyinfo->key_parts=  (uint) strpos[4];
      keyinfo->algorithm=  (enum ha_key_alg) strpos[5];
      strpos+=8;
    }
    else
    {
      keyinfo->flags=	 ((uint) strpos[0]) ^ HA_NOSAME;
      keyinfo->key_length= (uint) uint2korr(strpos+1);
      keyinfo->key_parts=  (uint) strpos[3];
      keyinfo->algorithm= HA_KEY_ALG_UNDEF;
      strpos+=4;
    }
210

bk@work.mysql.com's avatar
bk@work.mysql.com committed
211 212 213 214 215 216 217 218 219
    keyinfo->key_part=	 key_part;
    keyinfo->rec_per_key= rec_per_key;
    for (j=keyinfo->key_parts ; j-- ; key_part++)
    {
      *rec_per_key++=0;
      key_part->fieldnr=	(uint16) (uint2korr(strpos) & FIELD_NR_MASK);
      key_part->offset= (uint) uint2korr(strpos+2)-1;
      key_part->key_type=	(uint) uint2korr(strpos+5);
      // key_part->field=	(Field*) 0;	// Will be fixed later
220
      if (new_frm_ver >= 1)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
      {
	key_part->key_part_flag= *(strpos+4);
	key_part->length=	(uint) uint2korr(strpos+7);
	strpos+=9;
      }
      else
      {
	key_part->length=	*(strpos+4);
	key_part->key_part_flag=0;
	if (key_part->length > 128)
	{
	  key_part->length&=127;		/* purecov: inspected */
	  key_part->key_part_flag=HA_REVERSE_SORT; /* purecov: inspected */
	}
	strpos+=7;
      }
      key_part->store_length=key_part->length;
    }
    set_if_bigger(outparam->max_key_length,keyinfo->key_length+
		  keyinfo->key_parts);
241
    outparam->total_key_length+= keyinfo->key_length;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
242 243 244
    if (keyinfo->flags & HA_NOSAME)
      set_if_bigger(outparam->max_unique_length,keyinfo->key_length);
  }
245 246
  keynames=(char*) key_part;
  strpos+= (strmov(keynames, (char *) strpos) - keynames)+1;
247

bk@work.mysql.com's avatar
bk@work.mysql.com committed
248 249 250 251 252 253 254 255 256 257 258 259 260
  outparam->reclength = uint2korr((head+16));
  if (*(head+26) == 1)
    outparam->system=1;				/* one-record-database */
#ifdef HAVE_CRYPTED_FRM
  else if (*(head+26) == 2)
  {
    my_pthread_setspecific_ptr(THR_MALLOC,old_root);
    crypted=get_crypt_for_frm();
    my_pthread_setspecific_ptr(THR_MALLOC,&outparam->mem_root);
    outparam->crypted=1;
  }
#endif

261
  /* Allocate handler */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
262 263 264 265 266 267
  if (!(outparam->file= get_new_handler(outparam,outparam->db_type)))
    goto err_not_open;

  error=4;
  outparam->reginfo.lock_type= TL_UNLOCK;
  outparam->current_lock=F_UNLCK;
268
  if ((db_stat & HA_OPEN_KEYFILE) || (prgflag & DELAYED_OPEN)) records=2;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
269 270
  else records=1;
  if (prgflag & (READ_ALL+EXTRA_RECORD)) records++;
271 272 273
  /* QQ: TODO, remove the +1 from below */
  rec_buff_length=ALIGN_SIZE(outparam->reclength+1+
			     outparam->file->extra_rec_buf_length());
bk@work.mysql.com's avatar
bk@work.mysql.com committed
274 275 276
  if (!(outparam->record[0]= (byte*)
	(record = (char *) alloc_root(&outparam->mem_root,
				      rec_buff_length * records))))
277
    goto err_not_open;				/* purecov: inspected */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
278 279 280
  record[outparam->reclength]=0;		// For purify and ->c_ptr()
  outparam->rec_buff_length=rec_buff_length;
  if (my_pread(file,(byte*) record,(uint) outparam->reclength,
serg@serg.mylan's avatar
serg@serg.mylan committed
281 282
	       (ulong) (uint2korr(head+6)+
                        ((uint2korr(head+14) == 0xffff ?
serg@serg.mylan's avatar
serg@serg.mylan committed
283
                            uint4korr(head+47) : uint2korr(head+14)))),
bk@work.mysql.com's avatar
bk@work.mysql.com committed
284
	       MYF(MY_NABP)))
285
    goto err_not_open; /* purecov: inspected */
286
  /* HACK: table->record[2] is used instead of table->default_values here */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
287 288 289 290 291 292 293 294 295
  for (i=0 ; i < records ; i++, record+=rec_buff_length)
  {
    outparam->record[i]=(byte*) record;
    if (i)
      memcpy(record,record-rec_buff_length,(uint) outparam->reclength);
  }

  if (records == 2)
  {						/* fix for select */
296
    outparam->default_values=outparam->record[1];
bk@work.mysql.com's avatar
bk@work.mysql.com committed
297 298 299
    if (db_stat & HA_READ_ONLY)
      outparam->record[1]=outparam->record[0]; /* purecov: inspected */
  }
300 301
  outparam->insert_values=0;                   /* for INSERT ... UPDATE */

bk@work.mysql.com's avatar
bk@work.mysql.com committed
302
  VOID(my_seek(file,pos,MY_SEEK_SET,MYF(0)));
303
  if (my_read(file,(byte*) head,288,MYF(MY_NABP))) goto err_not_open;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
304 305 306 307
  if (crypted)
  {
    crypted->decode((char*) head+256,288-256);
    if (sint2korr(head+284) != 0)		// Should be 0
308
      goto err_not_open;			// Wrong password
bk@work.mysql.com's avatar
bk@work.mysql.com committed
309 310 311 312 313 314 315 316 317
  }

  outparam->fields= uint2korr(head+258);
  pos=uint2korr(head+260);			/* Length of all screens */
  n_length=uint2korr(head+268);
  interval_count=uint2korr(head+270);
  interval_parts=uint2korr(head+272);
  int_length=uint2korr(head+274);
  outparam->null_fields=uint2korr(head+282);
318
  com_length=uint2korr(head+284);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
319 320 321
  outparam->comment=strdup_root(&outparam->mem_root,
				(char*) head+47);

322
  DBUG_PRINT("info",("i_count: %d  i_parts: %d  index: %d  n_length: %d  int_length: %d  com_length: %d", interval_count,interval_parts, outparam->keys,n_length,int_length, com_length));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
323 324 325 326 327 328 329

  if (!(field_ptr = (Field **)
	alloc_root(&outparam->mem_root,
		   (uint) ((outparam->fields+1)*sizeof(Field*)+
			   interval_count*sizeof(TYPELIB)+
			   (outparam->fields+interval_parts+
			    keys+3)*sizeof(my_string)+
330
			   (n_length+int_length+com_length)))))
331
    goto err_not_open; /* purecov: inspected */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
332 333

  outparam->field=field_ptr;
334
  read_length=(uint) (outparam->fields * field_pack_length +
335
		      pos+ (uint) (n_length+int_length+com_length));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
336
  if (read_string(file,(gptr*) &disk_buff,read_length))
337
    goto err_not_open; /* purecov: inspected */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
338 339 340 341 342 343 344 345 346 347 348 349 350
  if (crypted)
  {
    crypted->decode((char*) disk_buff,read_length);
    delete crypted;
    crypted=0;
  }
  strpos= disk_buff+pos;

  outparam->intervals= (TYPELIB*) (field_ptr+outparam->fields+1);
  int_array= (const char **) (outparam->intervals+interval_count);
  names= (char*) (int_array+outparam->fields+interval_parts+keys+3);
  if (!interval_count)
    outparam->intervals=0;			// For better debugging
351
  memcpy((char*) names, strpos+(outparam->fields*field_pack_length),
bk@work.mysql.com's avatar
bk@work.mysql.com committed
352
	 (uint) (n_length+int_length));
353 354
  comment_pos=names+(n_length+int_length);
  memcpy(comment_pos, disk_buff+read_length-com_length, com_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
355 356 357 358 359 360 361

  fix_type_pointers(&int_array,&outparam->fieldnames,1,&names);
  fix_type_pointers(&int_array,outparam->intervals,interval_count,
		    &names);
  if (keynames)
    fix_type_pointers(&int_array,&outparam->keynames,1,&keynames);
  VOID(my_close(file,MYF(MY_WME)));
362
  file= -1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381

  record=(char*) outparam->record[0]-1;		/* Fieldstart = 1 */
  if (null_field_first)
  {
    outparam->null_flags=null_pos=(uchar*) record+1;
    null_bit= (db_create_options & HA_OPTION_PACK_RECORD) ? 1 : 2;
    outparam->null_bytes=(outparam->null_fields+null_bit+6)/8;
  }
  else
  {
    outparam->null_bytes=(outparam->null_fields+7)/8;
    outparam->null_flags=null_pos=
      (uchar*) (record+1+outparam->reclength-outparam->null_bytes);
    null_bit=1;
  }

  use_hash= outparam->fields >= MAX_FIELDS_BEFORE_HASH;
  if (use_hash)
    use_hash= !hash_init(&outparam->name_hash,
382
			 system_charset_info,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
383
			 outparam->fields,0,0,
384
			 (hash_get_key) get_field_name,0,0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
385

386
  for (i=0 ; i < outparam->fields; i++, strpos+=field_pack_length, field_ptr++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
387
  {
388
    uint pack_flag, interval_nr, unireg_type, recpos, field_length;
389
    enum_field_types field_type;
390
    CHARSET_INFO *charset=NULL;
391
    Field::geometry_type geom_type= Field::GEOM_GEOMETRY;
392
    LEX_STRING comment;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
393

394
    if (new_frm_ver == 3)
395 396
    {
      /* new frm file in 4.1 */
397 398 399 400 401 402 403 404
      field_length= uint2korr(strpos+3);
      recpos=	    uint3korr(strpos+5);
      pack_flag=    uint2korr(strpos+8);
      unireg_type=  (uint) strpos[10];
      interval_nr=  (uint) strpos[12];

      uint comment_length=uint2korr(strpos+15);
      field_type=(enum_field_types) (uint) strpos[13];
405 406 407 408

      // charset and geometry_type share the same byte in frm
      if (field_type == FIELD_TYPE_GEOMETRY)
      {
hf@deer.(none)'s avatar
hf@deer.(none) committed
409
#ifdef HAVE_SPATIAL
410 411
	geom_type= (Field::geometry_type) strpos[14];
	charset= &my_charset_bin;
hf@deer.(none)'s avatar
hf@deer.(none) committed
412 413 414 415
#else
	error= 4;  // unsupported field type
	goto err_not_open;
#endif
416 417 418
      }
      else
      {
419 420 421
	if (!strpos[14])
	  charset= &my_charset_bin;
	else if (!(charset=get_charset((uint) strpos[14], MYF(0))))
422
	  charset= outparam->table_charset;
423
      }
424 425 426 427 428 429 430 431 432 433 434 435 436 437
      if (!comment_length)
      {
	comment.str= (char*) "";
	comment.length=0;
      }
      else
      {
	comment.str=    (char*) comment_pos;
	comment.length= comment_length;
	comment_pos+=   comment_length;
      }
    }
    else
    {
438 439 440 441 442 443
      field_length= (uint) strpos[3];
      recpos=	    uint2korr(strpos+4),
      pack_flag=    uint2korr(strpos+6);
      unireg_type=  (uint) strpos[8];
      interval_nr=  (uint) strpos[10];

444 445
      /* old frm file */
      field_type= (enum_field_types) f_packtype(pack_flag);
446
      charset=f_is_binary(pack_flag) ? &my_charset_bin : outparam->table_charset;
447 448
      bzero((char*) &comment, sizeof(comment));
    }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
449
    *field_ptr=reg_field=
450 451
      make_field(record+recpos,
		 (uint32) field_length,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
452 453
		 null_pos,null_bit,
		 pack_flag,
454
		 field_type,
455
		 charset,
456
		 geom_type,
457
		 (Field::utype) MTYP_TYPENR(unireg_type),
bk@work.mysql.com's avatar
bk@work.mysql.com committed
458 459 460 461 462
		 (interval_nr ?
		  outparam->intervals+interval_nr-1 :
		  (TYPELIB*) 0),
		 outparam->fieldnames.type_names[i],
		 outparam);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
463
    if (!reg_field)				// Not supported field type
464 465 466 467
    {
      error= 4;
      goto err_not_open;			/* purecov: inspected */
    }
468
    reg_field->comment=comment;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
469 470 471 472 473 474 475 476 477
    if (!(reg_field->flags & NOT_NULL_FLAG))
    {
      if ((null_bit<<=1) == 256)
      {
	null_pos++;
	null_bit=1;
      }
    }
    if (reg_field->unireg_check == Field::NEXT_NUMBER)
478
      outparam->found_next_number_field= reg_field;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
479 480 481
    if (outparam->timestamp_field == reg_field)
      outparam->timestamp_field_offset=i;
    if (use_hash)
482
      (void) my_hash_insert(&outparam->name_hash,(byte*) field_ptr); // Will never fail
bk@work.mysql.com's avatar
bk@work.mysql.com committed
483 484 485 486 487 488
  }
  *field_ptr=0;					// End marker

  /* Fix key->name and key_part->field */
  if (key_parts)
  {
489 490
    uint primary_key=(uint) (find_type((char*) primary_key_name,
				       &outparam->keynames, 3) - 1);
491
    uint ha_option=outparam->file->table_flags();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
492 493 494 495 496 497 498
    keyinfo=outparam->key_info;
    key_part=keyinfo->key_part;

    for (uint key=0 ; key < outparam->keys ; key++,keyinfo++)
    {
      uint usable_parts=0;
      keyinfo->name=(char*) outparam->keynames.type_names[key];
499 500 501 502
      /* Fix fulltext keys for old .frm files */
      if (outparam->key_info[key].flags & HA_FULLTEXT)
	outparam->key_info[key].algorithm= HA_KEY_ALG_FULLTEXT;

bk@work.mysql.com's avatar
bk@work.mysql.com committed
503 504 505
      if (primary_key >= MAX_KEY && (keyinfo->flags & HA_NOSAME))
      {
	/*
506 507
	  If the UNIQUE key doesn't have NULL columns and is not a part key
	  declare this as a primary key.
bk@work.mysql.com's avatar
bk@work.mysql.com committed
508 509 510 511
	*/
	primary_key=key;
	for (i=0 ; i < keyinfo->key_parts ;i++)
	{
512 513 514 515 516
	  uint fieldnr= key_part[i].fieldnr;
	  if (!fieldnr ||
	      outparam->field[fieldnr-1]->null_ptr ||
	      outparam->field[fieldnr-1]->key_length() !=
	      key_part[i].length)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
	  {
	    primary_key=MAX_KEY;		// Can't be used
	    break;
	  }
	}
      }

      for (i=0 ; i < keyinfo->key_parts ; key_part++,i++)
      {
	if (new_field_pack_flag <= 1)
	  key_part->fieldnr=(uint16) find_field(outparam,
						(uint) key_part->offset,
						(uint) key_part->length);
#ifdef EXTRA_DEBUG
	if (key_part->fieldnr > outparam->fields)
532
	  goto err_not_open; // sanity check
bk@work.mysql.com's avatar
bk@work.mysql.com committed
533 534 535 536 537 538 539 540 541 542 543 544
#endif
	if (key_part->fieldnr)
	{					// Should always be true !
	  Field *field=key_part->field=outparam->field[key_part->fieldnr-1];
	  if (field->null_ptr)
	  {
	    key_part->null_offset=(uint) ((byte*) field->null_ptr -
					  outparam->record[0]);
	    key_part->null_bit= field->null_bit;
	    key_part->store_length+=HA_KEY_NULL_LENGTH;
	    keyinfo->flags|=HA_NULL_PART_KEY;
	    keyinfo->extra_length+= HA_KEY_NULL_LENGTH;
545
	    keyinfo->key_length+= HA_KEY_NULL_LENGTH;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
546 547 548 549 550 551 552 553
	  }
	  if (field->type() == FIELD_TYPE_BLOB ||
	      field->real_type() == FIELD_TYPE_VAR_STRING)
	  {
	    if (field->type() == FIELD_TYPE_BLOB)
	      key_part->key_part_flag|= HA_BLOB_PART;
	    keyinfo->extra_length+=HA_KEY_BLOB_LENGTH;
	    key_part->store_length+=HA_KEY_BLOB_LENGTH;
554
	    keyinfo->key_length+= HA_KEY_BLOB_LENGTH;
555 556 557 558 559 560
	    /*
	      Mark that there may be many matching values for one key
	      combination ('a', 'a ', 'a  '...)
	    */
	    if (!(field->flags & BINARY_FLAG))
	      keyinfo->flags|= HA_END_SPACE_KEY;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
561 562 563 564 565 566 567
	  }
	  if (i == 0 && key != primary_key)
	    field->flags |=
	      ((keyinfo->flags & HA_NOSAME) &&
	       field->key_length() ==
	       keyinfo->key_length ? UNIQUE_KEY_FLAG : MULTIPLE_KEY_FLAG);
	  if (i == 0)
568
	    field->key_start.set_bit(key);
569
	  if (field->key_length() == key_part->length &&
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
570
	      !(field->flags & BLOB_FLAG))
571
	  {
572
            if (outparam->file->index_flags(key, i) & HA_KEYREAD_ONLY)
573 574 575
            {
              outparam->read_only_keys.clear_bit(key);
              outparam->keys_for_keyread.set_bit(key);
576
	      field->part_of_key.set_bit(key);
577
            }
578
	    if (outparam->file->index_flags(key, i) & HA_READ_ORDER)
579
	      field->part_of_sortkey.set_bit(key);
580
	  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
581 582 583 584 585 586 587
	  if (!(key_part->key_part_flag & HA_REVERSE_SORT) &&
	      usable_parts == i)
	    usable_parts++;			// For FILESORT
	  field->flags|= PART_KEY_FLAG;
	  if (key == primary_key)
	  {
	    field->flags|= PRI_KEY_FLAG;
588 589 590 591
	    /*
	      If this field is part of the primary key and all keys contains
	      the primary key, then we can use any key to find this column
	    */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
592
	    if (ha_option & HA_PRIMARY_KEY_IN_READ_INDEX)
593
	      field->part_of_key= outparam->keys_in_use;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
594 595 596
	  }
	  if (field->key_length() != key_part->length)
	  {
597
	    key_part->key_part_flag|= HA_PART_KEY_SEG;
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
598
	    if (!(field->flags & BLOB_FLAG))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
599
	    {					// Create a new field
600 601
	      field=key_part->field=field->new_field(&outparam->mem_root,
						     outparam);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
602 603 604
	      field->field_length=key_part->length;
	    }
	  }
605 606 607 608 609 610
	  /*
	    If the field can be NULL, don't optimize away the test
	    key_part_column = expression from the WHERE clause
	    as we need to test for NULL = NULL.
	  */
	  if (field->real_maybe_null())
611
	    key_part->key_part_flag|= HA_PART_KEY_SEG;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
612 613 614 615 616 617 618 619 620
	}
	else
	{					// Error: shorten key
	  keyinfo->key_parts=usable_parts;
	  keyinfo->flags=0;
	}
      }
      keyinfo->usable_key_parts=usable_parts; // Filesort
    }
621
    if (primary_key < MAX_KEY &&
622
	(outparam->keys_in_use.is_set(primary_key)))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
623 624
    {
      outparam->primary_key=primary_key;
625 626 627 628
      /*
	If we are using an integer as the primary key then allow the user to
	refer to it as '_rowid'
      */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
629 630 631 632 633 634 635 636 637 638
      if (outparam->key_info[primary_key].key_parts == 1)
      {
	Field *field= outparam->key_info[primary_key].key_part[0].field;
	if (field && field->result_type() == INT_RESULT)
	  outparam->rowid_field=field;
      }
    }
    else
      outparam->primary_key = MAX_KEY; // we do not have a primary key
  }
639 640
  else
    outparam->primary_key= MAX_KEY;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
641
  x_free((gptr) disk_buff);
642
  disk_buff=0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
643 644 645 646 647 648 649 650 651
  if (new_field_pack_flag <= 1)
  {			/* Old file format with default null */
    uint null_length=(outparam->null_fields+7)/8;
    bfill(outparam->null_flags,null_length,255);
    bfill(outparam->null_flags+outparam->rec_buff_length,null_length,255);
    if (records > 2)
      bfill(outparam->null_flags+outparam->rec_buff_length*2,null_length,255);
  }

652 653 654 655 656 657 658 659 660 661 662 663 664 665

  if ((reg_field=outparam->found_next_number_field))
  {
    if ((int) (outparam->next_number_index= (uint)
	       find_ref_key(outparam,reg_field,
			    &outparam->next_number_key_offset)) < 0)
    {
      reg_field->unireg_check=Field::NONE;	/* purecov: inspected */
      outparam->found_next_number_field=0;
    }
    else
      reg_field->flags|=AUTO_INCREMENT_FLAG;
  }

bk@work.mysql.com's avatar
bk@work.mysql.com committed
666 667 668 669 670 671 672 673 674
  if (outparam->blob_fields)
  {
    Field **ptr;
    Field_blob **save;

    if (!(outparam->blob_field=save=
	  (Field_blob**) alloc_root(&outparam->mem_root,
				    (uint) (outparam->blob_fields+1)*
				    sizeof(Field_blob*))))
675
      goto err_not_open;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
676 677 678 679 680 681 682 683 684 685 686
    for (ptr=outparam->field ; *ptr ; ptr++)
    {
      if ((*ptr)->flags & BLOB_FLAG)
	(*save++)= (Field_blob*) *ptr;
    }
    *save=0;					// End marker
  }
  else
    outparam->blob_field=
      (Field_blob**) (outparam->field+outparam->fields); // Point at null ptr

687 688 689 690 691
  /* The table struct is now initialzed;  Open the table */
  error=2;
  if (db_stat)
  {
    int err;
692
    unpack_filename(index_file,index_file);
693
    if ((err=(outparam->file->
694
	      ha_open(index_file,
695 696 697 698 699 700 701 702 703 704
		      (db_stat & HA_READ_ONLY ? O_RDONLY : O_RDWR),
		      (db_stat & HA_OPEN_TEMPORARY ? HA_OPEN_TMP_TABLE :
		       ((db_stat & HA_WAIT_IF_LOCKED) ||
			(specialflag & SPECIAL_WAIT_IF_LOCKED)) ?
		       HA_OPEN_WAIT_IF_LOCKED :
		       (db_stat & (HA_ABORT_IF_LOCKED | HA_GET_INFO)) ?
		       HA_OPEN_ABORT_IF_LOCKED :
		       HA_OPEN_IGNORE_IF_LOCKED) | ha_open_flags))))
    {
      /* Set a flag if the table is crashed and it can be auto. repaired */
705
      outparam->crashed=((err == HA_ERR_CRASHED_ON_USAGE) &&
706 707 708 709 710 711 712
			 outparam->file->auto_repair() &&
			 !(ha_open_flags & HA_OPEN_FOR_REPAIR));
      goto err_not_open; /* purecov: inspected */
    }
  }
  outparam->db_low_byte_first=outparam->file->low_byte_first();

bk@work.mysql.com's avatar
bk@work.mysql.com committed
713 714 715 716 717 718 719 720 721 722
  my_pthread_setspecific_ptr(THR_MALLOC,old_root);
  opened_tables++;
#ifndef DBUG_OFF
  if (use_hash)
    (void) hash_check(&outparam->name_hash);
#endif
  DBUG_RETURN (0);

 err_not_open:
  x_free((gptr) disk_buff);
723 724
  if (file > 0)
    VOID(my_close(file,MYF(MY_WME)));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
725 726 727 728 729

 err_end:					/* Here when no file */
  delete crypted;
  my_pthread_setspecific_ptr(THR_MALLOC,old_root);
  frm_error(error,outparam,name,ME_ERROR+ME_WAITTANG);
730
  delete outparam->file;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
731
  outparam->file=0;				// For easyer errorchecking
732
  outparam->db_stat=0;
733
  hash_free(&outparam->name_hash);
734
  free_root(&outparam->mem_root,MYF(0));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761
  my_free(outparam->table_name,MYF(MY_ALLOW_ZERO_PTR));
  DBUG_RETURN (error);
} /* openfrm */


	/* close a .frm file and it's tables */

int closefrm(register TABLE *table)
{
  int error=0;
  DBUG_ENTER("closefrm");
  if (table->db_stat)
    error=table->file->close();
  if (table->table_name)
  {
    my_free(table->table_name,MYF(0));
    table->table_name=0;
  }
  if (table->fields)
  {
    for (Field **ptr=table->field ; *ptr ; ptr++)
      delete *ptr;
    table->fields=0;
  }
  delete table->file;
  table->file=0;				/* For easyer errorchecking */
  hash_free(&table->name_hash);
762
  free_root(&table->mem_root,MYF(0));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
  DBUG_RETURN(error);
}


/* Deallocate temporary blob storage */

void free_blobs(register TABLE *table)
{
  for (Field_blob **ptr=table->blob_field ; *ptr ; ptr++)
    (*ptr)->free();
}


	/* Find where a form starts */
	/* if formname is NullS then only formnames is read */

ulong get_form_pos(File file, uchar *head, TYPELIB *save_names)
{
  uint a_length,names,length;
  uchar *pos,*buf;
  ulong ret_value=0;
  DBUG_ENTER("get_form_pos");

  names=uint2korr(head+8);
  a_length=(names+2)*sizeof(my_string);		/* Room for two extra */

  if (!save_names)
    a_length=0;
  else
    save_names->type_names=0;			/* Clear if error */

  if (names)
  {
    length=uint2korr(head+4);
    VOID(my_seek(file,64L,MY_SEEK_SET,MYF(0)));
    if (!(buf= (uchar*) my_malloc((uint) length+a_length+names*4,
				  MYF(MY_WME))) ||
	my_read(file,(byte*) buf+a_length,(uint) (length+names*4),
		MYF(MY_NABP)))
    {						/* purecov: inspected */
      x_free((gptr) buf);			/* purecov: inspected */
      DBUG_RETURN(0L);				/* purecov: inspected */
    }
    pos= buf+a_length+length;
    ret_value=uint4korr(pos);
  }
  if (! save_names)
    my_free((gptr) buf,MYF(0));
  else if (!names)
    bzero((char*) save_names,sizeof(save_names));
  else
  {
    char *str;
    str=(char *) (buf+a_length);
    fix_type_pointers((const char ***) &buf,save_names,1,&str);
  }
  DBUG_RETURN(ret_value);
}


	/* Read string from a file with malloc */

int read_string(File file, gptr *to, uint length)
{
  DBUG_ENTER("read_string");

  x_free((gptr) *to);
  if (!(*to= (gptr) my_malloc(length+1,MYF(MY_WME))) ||
      my_read(file,(byte*) *to,length,MYF(MY_NABP)))
  {
    x_free((gptr) *to); /* purecov: inspected */
    *to= 0; /* purecov: inspected */
    DBUG_RETURN(1); /* purecov: inspected */
  }
  *((char*) *to+length)= '\0';
  DBUG_RETURN (0);
} /* read_string */


	/* Add a new form to a form file */

ulong make_new_entry(File file, uchar *fileinfo, TYPELIB *formnames,
		     const char *newname)
{
  uint i,bufflength,maxlength,n_length,length,names;
  ulong endpos,newpos;
  char buff[IO_SIZE];
  uchar *pos;
  DBUG_ENTER("make_new_entry");

853
  length=(uint) strlen(newname)+1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
854 855 856 857 858 859 860 861 862
  n_length=uint2korr(fileinfo+4);
  maxlength=uint2korr(fileinfo+6);
  names=uint2korr(fileinfo+8);
  newpos=uint4korr(fileinfo+10);

  if (64+length+n_length+(names+1)*4 > maxlength)
  {						/* Expand file */
    newpos+=IO_SIZE;
    int4store(fileinfo+10,newpos);
863
    endpos=(ulong) my_seek(file,0L,MY_SEEK_END,MYF(0));/* Copy from file-end */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906
    bufflength= (uint) (endpos & (IO_SIZE-1));	/* IO_SIZE is a power of 2 */

    while (endpos > maxlength)
    {
      VOID(my_seek(file,(ulong) (endpos-bufflength),MY_SEEK_SET,MYF(0)));
      if (my_read(file,(byte*) buff,bufflength,MYF(MY_NABP+MY_WME)))
	DBUG_RETURN(0L);
      VOID(my_seek(file,(ulong) (endpos-bufflength+IO_SIZE),MY_SEEK_SET,
		   MYF(0)));
      if ((my_write(file,(byte*) buff,bufflength,MYF(MY_NABP+MY_WME))))
	DBUG_RETURN(0);
      endpos-=bufflength; bufflength=IO_SIZE;
    }
    bzero(buff,IO_SIZE);			/* Null new block */
    VOID(my_seek(file,(ulong) maxlength,MY_SEEK_SET,MYF(0)));
    if (my_write(file,(byte*) buff,bufflength,MYF(MY_NABP+MY_WME)))
	DBUG_RETURN(0L);
    maxlength+=IO_SIZE;				/* Fix old ref */
    int2store(fileinfo+6,maxlength);
    for (i=names, pos= (uchar*) *formnames->type_names+n_length-1; i-- ;
	 pos+=4)
    {
      endpos=uint4korr(pos)+IO_SIZE;
      int4store(pos,endpos);
    }
  }

  if (n_length == 1 )
  {						/* First name */
    length++;
    VOID(strxmov(buff,"/",newname,"/",NullS));
  }
  else
    VOID(strxmov(buff,newname,"/",NullS)); /* purecov: inspected */
  VOID(my_seek(file,63L+(ulong) n_length,MY_SEEK_SET,MYF(0)));
  if (my_write(file,(byte*) buff,(uint) length+1,MYF(MY_NABP+MY_WME)) ||
      (names && my_write(file,(byte*) (*formnames->type_names+n_length-1),
			 names*4, MYF(MY_NABP+MY_WME))) ||
      my_write(file,(byte*) fileinfo+10,(uint) 4,MYF(MY_NABP+MY_WME)))
    DBUG_RETURN(0L); /* purecov: inspected */

  int2store(fileinfo+8,names+1);
  int2store(fileinfo+4,n_length+length);
907
  VOID(my_chsize(file, newpos, 0, MYF(MY_WME)));/* Append file with '\0' */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
  DBUG_RETURN(newpos);
} /* make_new_entry */


	/* error message when opening a form file */

static void frm_error(int error, TABLE *form, const char *name, myf errortype)
{
  int err_no;
  char buff[FN_REFLEN];
  const char *form_dev="",*datext;
  DBUG_ENTER("frm_error");

  switch (error) {
  case 1:
    if (my_errno == ENOENT)
    {
      char *db;
      uint length=dirname_part(buff,name);
      buff[length-1]=0;
      db=buff+dirname_length(buff);
      my_error(ER_NO_SUCH_TABLE,MYF(0),db,form->real_name);
    }
    else
      my_error(ER_FILE_NOT_FOUND,errortype,
	       fn_format(buff,name,form_dev,reg_ext,0),my_errno);
    break;
  case 2:
  {
937 938
    datext= form->file ? *form->file->bas_ext() : "";
    datext= datext==NullS ? "" : datext;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981
    err_no= (my_errno == ENOENT) ? ER_FILE_NOT_FOUND : (my_errno == EAGAIN) ?
      ER_FILE_USED : ER_CANT_OPEN_FILE;
    my_error(err_no,errortype,
	     fn_format(buff,form->real_name,form_dev,datext,2),my_errno);
    break;
  }
  default:				/* Better wrong error than none */
  case 4:
    my_error(ER_NOT_FORM_FILE,errortype,
	     fn_format(buff,name,form_dev,reg_ext,0));
    break;
  }
  DBUG_VOID_RETURN;
} /* frm_error */


	/*
	** fix a str_type to a array type
	** typeparts sepearated with some char. differents types are separated
	** with a '\0'
	*/

static void
fix_type_pointers(const char ***array, TYPELIB *point_to_type, uint types,
		  char **names)
{
  char *type_name, *ptr;
  char chr;

  ptr= *names;
  while (types--)
  {
    point_to_type->name=0;
    point_to_type->type_names= *array;

    if ((chr= *ptr))			/* Test if empty type */
    {
      while ((type_name=strchr(ptr+1,chr)) != NullS)
      {
	*((*array)++) = ptr+1;
	*type_name= '\0';		/* End string */
	ptr=type_name;
      }
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
982
      ptr+=2;				/* Skip end mark and last 0 */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
    }
    else
      ptr++;
    point_to_type->count= (uint) (*array - point_to_type->type_names);
    point_to_type++;
    *((*array)++)= NullS;		/* End of type */
  }
  *names=ptr;				/* Update end */
  return;
} /* fix_type_pointers */


TYPELIB *typelib(List<String> &strings)
{
  TYPELIB *result=(TYPELIB*) sql_alloc(sizeof(TYPELIB));
  if (!result)
    return 0;
  result->count=strings.elements;
  result->name="";
  if (!(result->type_names=(const char **) sql_alloc(sizeof(char *)*
						     (result->count+1))))
    return 0;
  List_iterator<String> it(strings);
  String *tmp;
  for (uint i=0; (tmp=it++) ; i++)
    result->type_names[i]=tmp->ptr();
  result->type_names[result->count]=0;		// End marker
  return result;
}


	/*
	** Search after a field with given start & length
	** If an exact field isn't found, return longest field with starts
	** at right position.
	** Return 0 on error, else field number+1
	** This is needed because in some .frm fields 'fieldnr' was saved wrong
	*/

static uint find_field(TABLE *form,uint start,uint length)
{
  Field **field;
  uint i,pos;

  pos=0;

  for (field=form->field, i=1 ; i<= form->fields ; i++,field++)
  {
    if ((*field)->offset() == start)
    {
      if ((*field)->key_length() == length)
	return (i);
      if (!pos || form->field[pos-1]->pack_length() <
	  (*field)->pack_length())
	pos=i;
    }
  }
  return (pos);
}


	/* Check that the integer is in the internvall */

int set_zone(register int nr, int min_zone, int max_zone)
{
  if (nr<=min_zone)
    return (min_zone);
  if (nr>=max_zone)
    return (max_zone);
  return (nr);
} /* set_zone */

	/* Adjust number to next larger disk buffer */

ulong next_io_size(register ulong pos)
{
  reg2 ulong offset;
  if ((offset= pos & (IO_SIZE-1)))
    return pos-offset+IO_SIZE;
  return pos;
} /* next_io_size */


1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
/*
  Store an SQL quoted string.

  SYNOPSIS  
    append_unescaped()
    res		result String
    pos		string to be quoted
    length	it's length

  NOTE
    This function works correctly with utf8 or single-byte charset strings.
    May fail with some multibyte charsets though.
*/
1079

1080
void append_unescaped(String *res, const char *pos, uint length)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1081
{
1082 1083 1084 1085
  const char *end= pos+length;
  res->append('\'');

  for (; pos != end ; pos++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
  {
    switch (*pos) {
    case 0:				/* Must be escaped for 'mysql' */
      res->append('\\');
      res->append('0');
      break;
    case '\n':				/* Must be escaped for logs */
      res->append('\\');
      res->append('n');
      break;
    case '\r':
      res->append('\\');		/* This gives better readbility */
      res->append('r');
      break;
    case '\\':
      res->append('\\');		/* Because of the sql syntax */
      res->append('\\');
      break;
    case '\'':
      res->append('\'');		/* Because of the sql syntax */
      res->append('\'');
      break;
    default:
      res->append(*pos);
      break;
    }
  }
1113
  res->append('\'');
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
}

	/* Create a .frm file */

File create_frm(register my_string name, uint reclength, uchar *fileinfo,
		HA_CREATE_INFO *create_info, uint keys)
{
  register File file;
  uint key_length;
  ulong length;
  char fill[IO_SIZE];

#if SIZEOF_OFF_T > 4
monty@mysql.com's avatar
monty@mysql.com committed
1127
  /* Fix this when we have new .frm files;  Current limit is 4G rows (QQ) */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1128 1129 1130 1131 1132
  if (create_info->max_rows > ~(ulong) 0)
    create_info->max_rows= ~(ulong) 0;
  if (create_info->min_rows > ~(ulong) 0)
    create_info->min_rows= ~(ulong) 0;
#endif
1133 1134 1135 1136 1137
  /*
    Ensure that raid_chunks can't be larger than 255, as this would cause
    problems with drop database
  */
  set_if_smaller(create_info->raid_chunks, 255);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1138 1139 1140 1141

  if ((file=my_create(name,CREATE_MODE,O_RDWR | O_TRUNC,MYF(MY_WME))) >= 0)
  {
    bzero((char*) fileinfo,64);
1142
    fileinfo[0]=(uchar) 254; fileinfo[1]= 1; fileinfo[2]= FRM_VER+3; // Header
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1143 1144 1145 1146 1147 1148
    fileinfo[3]= (uchar) ha_checktype(create_info->db_type);
    fileinfo[4]=1;
    int2store(fileinfo+6,IO_SIZE);		/* Next block starts here */
    key_length=keys*(7+NAME_LEN+MAX_REF_PARTS*9)+16;
    length=(ulong) next_io_size((ulong) (IO_SIZE+key_length+reclength));
    int4store(fileinfo+10,length);
serg@serg.mylan's avatar
serg@serg.mylan committed
1149
    if (key_length > 0xffff) key_length=0xffff;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1150 1151 1152 1153 1154 1155 1156 1157 1158
    int2store(fileinfo+14,key_length);
    int2store(fileinfo+16,reclength);
    int4store(fileinfo+18,create_info->max_rows);
    int4store(fileinfo+22,create_info->min_rows);
    fileinfo[27]=2;				// Use long pack-fields
    create_info->table_options|=HA_OPTION_LONG_BLOB_PTR; // Use portable blob pointers
    int2store(fileinfo+30,create_info->table_options);
    fileinfo[32]=0;				// No filename anymore
    int4store(fileinfo+34,create_info->avg_row_length);
1159 1160
    fileinfo[38]= (create_info->default_table_charset ?
		   create_info->default_table_charset->number : 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
    fileinfo[40]= (uchar) create_info->row_type;
    fileinfo[41]= (uchar) create_info->raid_type;
    fileinfo[42]= (uchar) create_info->raid_chunks;
    int4store(fileinfo+43,create_info->raid_chunksize);
    bzero(fill,IO_SIZE);
    for (; length > IO_SIZE ; length-= IO_SIZE)
    {
      if (my_write(file,(byte*) fill,IO_SIZE,MYF(MY_WME | MY_NABP)))
      {
	VOID(my_close(file,MYF(0)));
	VOID(my_delete(name,MYF(0)));
	return(-1);
      }
    }
  }
  return (file);
} /* create_frm */


void update_create_info_from_table(HA_CREATE_INFO *create_info, TABLE *table)
{
1182
  DBUG_ENTER("update_create_info_from_table");
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1183 1184 1185 1186 1187 1188 1189 1190
  create_info->max_rows=table->max_rows;
  create_info->min_rows=table->min_rows;
  create_info->table_options=table->db_create_options;
  create_info->avg_row_length=table->avg_row_length;
  create_info->row_type=table->row_type;
  create_info->raid_type=table->raid_type;
  create_info->raid_chunks=table->raid_chunks;
  create_info->raid_chunksize=table->raid_chunksize;
1191 1192
  create_info->default_table_charset=table->table_charset;
  create_info->table_charset= 0;
1193
  DBUG_VOID_RETURN;
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1194
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205

int
rename_file_ext(const char * from,const char * to,const char * ext)
{
  char from_b[FN_REFLEN],to_b[FN_REFLEN];
  VOID(strxmov(from_b,from,ext,NullS));
  VOID(strxmov(to_b,to,ext,NullS));
  return (my_rename(from_b,to_b,MYF(MY_WME)));
}


vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215
/*
  Allocate string field in MEM_ROOT and return it as String

  SYNOPSIS
    get_field()
    mem   	MEM_ROOT for allocating
    field 	Field for retrieving of string
    res         result String

  RETURN VALUES
1216 1217
    1   string is empty
    0	all ok
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1218 1219 1220 1221
*/

bool get_field(MEM_ROOT *mem, Field *field, String *res)
{
1222
  char buff[MAX_FIELD_WIDTH], *to;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1223
  String str(buff,sizeof(buff),&my_charset_bin);
1224 1225
  uint length;

1226
  field->val_str(&str);
1227 1228 1229 1230 1231
  if (!(length= str.length()))
    return 1;
  to= strmake_root(mem, str.ptr(), length);
  res->set(to, length, ((Field_str*)field)->charset());
  return 0;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1232 1233
}

1234

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1235
/*
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
  Allocate string field in MEM_ROOT and return it as NULL-terminated string

  SYNOPSIS
    get_field()
    mem   	MEM_ROOT for allocating
    field 	Field for retrieving of string

  RETURN VALUES
    NullS  string is empty
    #      pointer to NULL-terminated string value of field
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1246 1247
*/

1248
char *get_field(MEM_ROOT *mem, Field *field)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1249
{
monty@mysql.com's avatar
monty@mysql.com committed
1250
  char buff[MAX_FIELD_WIDTH], *to;
1251
  String str(buff,sizeof(buff),&my_charset_bin);
1252 1253
  uint length;

1254
  field->val_str(&str);
monty@mysql.com's avatar
monty@mysql.com committed
1255
  length= str.length();
1256
  if (!length || !(to= (char*) alloc_root(mem,length+1)))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1257 1258 1259 1260 1261 1262
    return NullS;
  memcpy(to,str.ptr(),(uint) length);
  to[length]=0;
  return to;
}

1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279

/*
  Check if database name is valid

  SYNPOSIS
    check_db_name()
    name		Name of database

  NOTES
    If lower_case_table_names is set then database is converted to lower case

  RETURN
    0	ok
    1   error
*/

bool check_db_name(char *name)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1280
{
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1281
  char *start=name;
monty@mysql.com's avatar
monty@mysql.com committed
1282 1283
  /* Used to catch empty names and names with end space */
  bool last_char_is_space= TRUE;
1284

1285
  if (lower_case_table_names && name != any_db)
1286
    my_casedn_str(files_charset_info, name);
1287

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1288 1289 1290
  while (*name)
  {
#if defined(USE_MB) && defined(USE_MB_IDENT)
1291
    last_char_is_space= my_isspace(default_charset_info, *name);
1292
    if (use_mb(system_charset_info))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1293
    {
1294 1295
      int len=my_ismbchar(system_charset_info, name, 
		name+system_charset_info->mbmaxlen);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1296 1297 1298 1299 1300 1301
      if (len)
      {
        name += len;
        continue;
      }
    }
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1302
#else
1303
    last_char_is_space= *name==' ';
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1304
#endif
1305 1306
    if (*name == '/' || *name == '\\' || *name == FN_LIBCHAR ||
	*name == FN_EXTCHAR)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1307 1308 1309
      return 1;
    name++;
  }
1310
  return last_char_is_space || (uint) (name - start) > NAME_LEN;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1311 1312 1313 1314 1315 1316
}


/*
  Allow anything as a table name, as long as it doesn't contain an
  a '/', or a '.' character
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1317
  or ' ' at the end
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1318 1319 1320 1321 1322 1323 1324
  returns 1 on error
*/


bool check_table_name(const char *name, uint length)
{
  const char *end= name+length;
1325 1326
  if (!length || length > NAME_LEN)
    return 1;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1327
#if defined(USE_MB) && defined(USE_MB_IDENT)
1328
  bool last_char_is_space= FALSE;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1329 1330 1331 1332
#else
  if (name[length-1]==' ')
    return 1;
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1333 1334 1335 1336

  while (name != end)
  {
#if defined(USE_MB) && defined(USE_MB_IDENT)
1337
    last_char_is_space= my_isspace(default_charset_info, *name);
1338
    if (use_mb(system_charset_info))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1339
    {
1340
      int len=my_ismbchar(system_charset_info, name, end);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1341 1342 1343 1344 1345 1346 1347
      if (len)
      {
        name += len;
        continue;
      }
    }
#endif
1348
    if (*name == '/' || *name == '\\' || *name == FN_EXTCHAR)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1349 1350 1351
      return 1;
    name++;
  }
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1352
#if defined(USE_MB) && defined(USE_MB_IDENT)
1353 1354
  return last_char_is_space;
#else
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1355
  return 0;
1356
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1357 1358
}

monty@mysql.com's avatar
monty@mysql.com committed
1359

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1360 1361
bool check_column_name(const char *name)
{
1362
  const char *start= name;
monty@mysql.com's avatar
monty@mysql.com committed
1363
  bool last_char_is_space= TRUE;
1364
  
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1365 1366 1367
  while (*name)
  {
#if defined(USE_MB) && defined(USE_MB_IDENT)
1368
    last_char_is_space= my_isspace(default_charset_info, *name);
1369
    if (use_mb(system_charset_info))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1370
    {
1371 1372
      int len=my_ismbchar(system_charset_info, name, 
		name+system_charset_info->mbmaxlen);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1373 1374 1375 1376 1377 1378
      if (len)
      {
        name += len;
        continue;
      }
    }
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1379
#else
1380
    last_char_is_space= *name==' ';
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1381 1382 1383 1384 1385
#endif
    if (*name == NAMES_SEP_CHAR)
      return 1;
    name++;
  }
1386
  /* Error if empty or too long column name */
monty@mysql.com's avatar
monty@mysql.com committed
1387
  return last_char_is_space || (uint) (name - start) > NAME_LEN;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
}

/*
** Get type of table from .frm file
*/

db_type get_table_type(const char *name)
{
  File	 file;
  uchar head[4];
  int error;
  DBUG_ENTER("get_table_type");
  DBUG_PRINT("enter",("name: '%s'",name));

  if ((file=my_open(name,O_RDONLY, MYF(0))) < 0)
    DBUG_RETURN(DB_TYPE_UNKNOWN);
  error=my_read(file,(byte*) head,4,MYF(MY_NABP));
  my_close(file,MYF(0));
  if (error || head[0] != (uchar) 254 || head[1] != 1 ||
1407
      (head[2] != FRM_VER && head[2] != FRM_VER+1 && head[2] != FRM_VER+3))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420
    DBUG_RETURN(DB_TYPE_UNKNOWN);
  DBUG_RETURN(ha_checktype((enum db_type) (uint) *(head+3)));
}


/*****************************************************************************
** Instansiate templates
*****************************************************************************/

#ifdef __GNUC__
template class List<String>;
template class List_iterator<String>;
#endif