~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000-2006 MySQL AB
2
3
   This program is free software; you can redistribute it and/or modify
4
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
6
7
   This program is distributed in the hope that it will be useful,
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
   GNU General Public License for more details.
11
12
   You should have received a copy of the GNU General Public License
13
   along with this program; if not, write to the Free Software
1802.10.2 by Monty Taylor
Update all of the copyright headers to include the correct address.
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
1 by brian
clean slate
15
16
17
1241.9.12 by Monty Taylor
Trims more out of server_includes.h.
18
#include "config.h"
1241.9.64 by Monty Taylor
Moved remaining non-public portions of mysys and mystrings to drizzled/internal.
19
#include "drizzled/internal/my_bit.h"
685.1.3 by Monty Taylor
Turned off stdinc - and then fixed the carnage.
20
#include "myisampack.h"
1 by brian
clean slate
21
#include "ha_myisam.h"
1130.3.28 by Monty Taylor
Moved heapdef.h and myisamdef.h to *_priv.h for easier filtering for include guard check.
22
#include "myisam_priv.h"
1410.3.4 by Djellel E. Difallah
update references to old my_'s
23
#include "drizzled/option.h"
1241.9.64 by Monty Taylor
Moved remaining non-public portions of mysys and mystrings to drizzled/internal.
24
#include "drizzled/internal/my_bit.h"
25
#include "drizzled/internal/m_string.h"
1130.3.1 by Monty Taylor
Moved multi_malloc into drizzled since it's not going away any time soon. Also,
26
#include "drizzled/util/test.h"
27
#include "drizzled/error.h"
28
#include "drizzled/errmsg_print.h"
29
#include "drizzled/gettext.h"
30
#include "drizzled/session.h"
1878.3.2 by Monty Taylor
Split out show_type into its own header and made sys_var work through
31
#include "drizzled/plugin.h"
1130.3.9 by Monty Taylor
Wrapped table_proto_write.cc code in namespace drizzled.
32
#include "drizzled/plugin/client.h"
1130.3.1 by Monty Taylor
Moved multi_malloc into drizzled since it's not going away any time soon. Also,
33
#include "drizzled/table.h"
34
#include "drizzled/field/timestamp.h"
35
#include "drizzled/memory/multi_malloc.h"
1324.2.3 by Monty Taylor
Remove plugin deinit.
36
#include "drizzled/plugin/daemon.h"
1 by brian
clean slate
37
1502.1.30 by Brian Aker
First pass on cleanup of Stewart's patch, plus re-engineer to make it work a
38
#include <boost/algorithm/string.hpp>
39
960.2.41 by Monty Taylor
Made StorageEngine name private. Added constructor param and accessor method.
40
#include <string>
1241.9.12 by Monty Taylor
Trims more out of server_includes.h.
41
#include <sstream>
1183.1.21 by Brian Aker
Fixed temp engines to no longer write out DFE. I have two designs right now
42
#include <map>
1067.4.8 by Nathan Williams
Converted all usages of cmin/cmax in plugin directory to std::min/max.
43
#include <algorithm>
1677.2.1 by Vijay Samuel
Merge refactored command line for myisam
44
#include <boost/program_options.hpp>
45
#include <drizzled/module/option_map.h>
46
47
namespace po= boost::program_options;
960.2.41 by Monty Taylor
Made StorageEngine name private. Added constructor param and accessor method.
48
49
using namespace std;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
50
using namespace drizzled;
960.2.41 by Monty Taylor
Made StorageEngine name private. Added constructor param and accessor method.
51
52
static const string engine_name("MyISAM");
53
1703.1.3 by Brian Aker
Replace pthread mutex with boost based one for myisam.
54
boost::mutex THR_LOCK_myisam;
1 by brian
clean slate
55
1689.2.21 by Brian Aker
Remove outward sign of Key Cache
56
static uint32_t myisam_key_cache_block_size= KEY_CACHE_BLOCK_SIZE;
1251.2.7 by Jay Pipes
Why on Earth key_buffer_size was a 64-bit integer when the resize_key_cache() expected a 32-bit integer is beyond me.
57
static uint32_t myisam_key_cache_size;
1251.2.2 by Jay Pipes
Pulls MyISAM-specific server variables into the MyISAM
58
static uint32_t myisam_key_cache_division_limit;
59
static uint32_t myisam_key_cache_age_threshold;
788 by Brian Aker
Move MyISAM bits to myisam plugin
60
static uint64_t max_sort_file_size;
789 by Brian Aker
MyISAM fix.
61
static uint64_t sort_buffer_size;
753 by Brian Aker
Converted myisam_repair_threads to being in module for MyISAM
62
1689.2.16 by Brian Aker
This places keycache directly into the table (ie it is now mapped 1=1).
63
void st_mi_isam_share::setKeyCache()
64
{
65
  (void)init_key_cache(&key_cache,
66
                       myisam_key_cache_block_size,
67
                       myisam_key_cache_size,
68
                       myisam_key_cache_division_limit, 
69
                       myisam_key_cache_age_threshold);
70
}
71
1 by brian
clean slate
72
/*****************************************************************************
73
** MyISAM tables
74
*****************************************************************************/
75
1039.3.1 by Stewart Smith
move bas_ext to StorageEngine instead of handler
76
static const char *ha_myisam_exts[] = {
77
  ".MYI",
78
  ".MYD",
79
  NULL
80
};
81
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
82
class MyisamEngine : public plugin::StorageEngine
1 by brian
clean slate
83
{
1324.2.19 by Monty Taylor
Fixed up myisam just a little bit.
84
  MyisamEngine();
85
  MyisamEngine(const MyisamEngine&);
86
  MyisamEngine& operator=(const MyisamEngine&);
960.2.41 by Monty Taylor
Made StorageEngine name private. Added constructor param and accessor method.
87
public:
1324.2.14 by Monty Taylor
Removed MyisamCleanup... encorporated into Engine destructor.
88
  explicit MyisamEngine(string name_arg) :
89
    plugin::StorageEngine(name_arg,
90
                          HTON_CAN_INDEX_BLOBS |
91
                          HTON_STATS_RECORDS_IS_EXACT |
92
                          HTON_TEMPORARY_ONLY |
93
                          HTON_NULL_IN_KEY |
94
                          HTON_HAS_RECORDS |
95
                          HTON_DUPLICATE_POS |
96
                          HTON_AUTO_PART_KEY |
1461.1.1 by Stewart Smith
remove HTON_FILE_BASED: it's unused now.
97
                          HTON_SKIP_STORE_LOCK)
1324.2.14 by Monty Taylor
Removed MyisamCleanup... encorporated into Engine destructor.
98
  {
99
  }
100
101
  virtual ~MyisamEngine()
102
  { 
103
    mi_panic(HA_PANIC_CLOSE);
104
  }
1183.1.21 by Brian Aker
Fixed temp engines to no longer write out DFE. I have two designs right now
105
1869.1.4 by Brian Aker
TableShare is no longer in the house (i.e. we no longer directly have a copy
106
  virtual Cursor *create(Table &table)
960.2.33 by Monty Taylor
Converted MyISAM.
107
  {
1680.6.1 by Brian Aker
Remove call for using special new for a cursor.
108
    return new ha_myisam(*this, table);
960.2.33 by Monty Taylor
Converted MyISAM.
109
  }
1039.3.1 by Stewart Smith
move bas_ext to StorageEngine instead of handler
110
111
  const char **bas_ext() const {
112
    return ha_myisam_exts;
113
  }
1039.3.3 by Stewart Smith
Move handler::create to StorageEngine::create_table
114
1413 by Brian Aker
doCreateTable() was still taking a pointer instead of a session reference.
115
  int doCreateTable(Session&,
1183.1.18 by Brian Aker
Fixed references to doCreateTable()
116
                    Table& table_arg,
1618.1.1 by Brian Aker
Modify TableIdentifier to be const
117
                    const TableIdentifier &identifier,
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
118
                    message::Table&);
1095.3.29 by Stewart Smith
s/Impl/Implementation/
119
1618.1.1 by Brian Aker
Modify TableIdentifier to be const
120
  int doRenameTable(Session&, const TableIdentifier &from, const TableIdentifier &to);
1095.3.29 by Stewart Smith
s/Impl/Implementation/
121
1618.1.1 by Brian Aker
Modify TableIdentifier to be const
122
  int doDropTable(Session&, const TableIdentifier &identifier);
1183.1.21 by Brian Aker
Fixed temp engines to no longer write out DFE. I have two designs right now
123
1183.1.29 by Brian Aker
Clean up interface so that Truncate sets the propper engine when
124
  int doGetTableDefinition(Session& session,
1618.1.1 by Brian Aker
Modify TableIdentifier to be const
125
                           const TableIdentifier &identifier,
1354.1.1 by Brian Aker
Modify ptr to reference.
126
                           message::Table &table_message);
1183.1.21 by Brian Aker
Fixed temp engines to no longer write out DFE. I have two designs right now
127
1233.1.9 by Brian Aker
Move max key stuff up to engine.
128
  uint32_t max_supported_keys()          const { return MI_MAX_KEY; }
129
  uint32_t max_supported_key_length()    const { return MI_MAX_KEY_LENGTH; }
130
  uint32_t max_supported_key_part_length() const { return MI_MAX_KEY_LENGTH; }
1235.1.13 by Brian Aker
Next pass through interface to move index flag bits up to engine.
131
132
  uint32_t index_flags(enum  ha_key_alg) const
133
  {
134
    return (HA_READ_NEXT |
135
            HA_READ_PREV |
136
            HA_READ_RANGE |
137
            HA_READ_ORDER |
138
            HA_KEYREAD_ONLY);
139
  }
1618.1.1 by Brian Aker
Modify TableIdentifier to be const
140
  bool doDoesTableExist(Session& session, const TableIdentifier &identifier);
1429.1.3 by Brian Aker
Merge in work for fetching a list of table identifiers.
141
142
  void doGetTableIdentifiers(drizzled::CachedDirectory &directory,
1642 by Brian Aker
This adds const to SchemaIdentifier.
143
                             const drizzled::SchemaIdentifier &schema_identifier,
1429.1.3 by Brian Aker
Merge in work for fetching a list of table identifiers.
144
                             drizzled::TableIdentifiers &set_of_identifiers);
1502.1.30 by Brian Aker
First pass on cleanup of Stewart's patch, plus re-engineer to make it work a
145
  bool validateCreateTableOption(const std::string &key, const std::string &state)
146
  {
147
    (void)state;
148
    if (boost::iequals(key, "ROW_FORMAT"))
149
    {
150
      return true;
151
    }
152
153
    return false;
154
  }
960.2.33 by Monty Taylor
Converted MyISAM.
155
};
1 by brian
clean slate
156
1429.1.3 by Brian Aker
Merge in work for fetching a list of table identifiers.
157
void MyisamEngine::doGetTableIdentifiers(drizzled::CachedDirectory&,
1642 by Brian Aker
This adds const to SchemaIdentifier.
158
                                         const drizzled::SchemaIdentifier&,
1429.1.3 by Brian Aker
Merge in work for fetching a list of table identifiers.
159
                                         drizzled::TableIdentifiers&)
160
{
161
}
162
1618.1.1 by Brian Aker
Modify TableIdentifier to be const
163
bool MyisamEngine::doDoesTableExist(Session &session, const TableIdentifier &identifier)
1358.1.1 by Brian Aker
Fixes regression in performance from Exists patch.
164
{
1372.1.4 by Brian Aker
Update to remove cache in enginges for per session (which also means... no
165
  return session.doesTableMessageExist(identifier);
1358.1.1 by Brian Aker
Fixes regression in performance from Exists patch.
166
}
167
1372.1.4 by Brian Aker
Update to remove cache in enginges for per session (which also means... no
168
int MyisamEngine::doGetTableDefinition(Session &session,
1618.1.1 by Brian Aker
Modify TableIdentifier to be const
169
                                       const TableIdentifier &identifier,
1372.1.4 by Brian Aker
Update to remove cache in enginges for per session (which also means... no
170
                                       message::Table &table_message)
1183.1.21 by Brian Aker
Fixed temp engines to no longer write out DFE. I have two designs right now
171
{
1372.1.4 by Brian Aker
Update to remove cache in enginges for per session (which also means... no
172
  if (session.getTableMessage(identifier, table_message))
173
    return EEXIST;
174
  return ENOENT;
1183.1.21 by Brian Aker
Fixed temp engines to no longer write out DFE. I have two designs right now
175
}
176
1126.2.2 by Brian Aker
Remove need for protocol from myisam
177
/* 
178
  Convert to push_Warnings if you ever care about this, otherwise, it is a no-op.
179
*/
1 by brian
clean slate
180
1126.2.2 by Brian Aker
Remove need for protocol from myisam
181
static void mi_check_print_msg(MI_CHECK *,	const char* ,
182
                               const char *, va_list )
1 by brian
clean slate
183
{
184
}
185
186
187
/*
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
188
  Convert Table object to MyISAM key and column definition
1 by brian
clean slate
189
190
  SYNOPSIS
191
    table2myisam()
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
192
      table_arg   in     Table object.
1 by brian
clean slate
193
      keydef_out  out    MyISAM key definition.
194
      recinfo_out out    MyISAM column definition.
195
      records_out out    Number of fields.
196
197
  DESCRIPTION
198
    This function will allocate and initialize MyISAM key and column
199
    definition for further use in mi_create or for a check for underlying
200
    table conformance in merge engine.
201
202
    The caller needs to free *recinfo_out after use. Since *recinfo_out
1130.3.1 by Monty Taylor
Moved multi_malloc into drizzled since it's not going away any time soon. Also,
203
    and *keydef_out are allocated with a multi_malloc, *keydef_out
1 by brian
clean slate
204
    is freed automatically when *recinfo_out is freed.
205
206
  RETURN VALUE
207
    0  OK
208
    !0 error code
209
*/
210
1085.1.2 by Monty Taylor
Fixed -Wmissing-declarations
211
static int table2myisam(Table *table_arg, MI_KEYDEF **keydef_out,
212
                        MI_COLUMNDEF **recinfo_out, uint32_t *records_out)
1 by brian
clean slate
213
{
482 by Brian Aker
Remove uint.
214
  uint32_t i, j, recpos, minpos, fieldpos, temp_length, length;
1 by brian
clean slate
215
  enum ha_base_keytype type= HA_KEYTYPE_BINARY;
481 by Brian Aker
Remove all of uchar.
216
  unsigned char *record;
1 by brian
clean slate
217
  MI_KEYDEF *keydef;
218
  MI_COLUMNDEF *recinfo, *recinfo_pos;
219
  HA_KEYSEG *keyseg;
1532.1.15 by Brian Aker
Partial encapsulation of TableShare from Table.
220
  TableShare *share= table_arg->getMutableShare();
482 by Brian Aker
Remove uint.
221
  uint32_t options= share->db_options_in_use;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
222
  if (!(memory::multi_malloc(false,
1578.2.10 by Brian Aker
keys and fields partial encapsulation.
223
          recinfo_out, (share->sizeFields() * 2 + 2) * sizeof(MI_COLUMNDEF),
224
          keydef_out, share->sizeKeys() * sizeof(MI_KEYDEF),
225
          &keyseg, (share->key_parts + share->sizeKeys()) * sizeof(HA_KEYSEG),
461 by Monty Taylor
Removed NullS. bu-bye.
226
          NULL)))
971.6.11 by Eric Day
Removed purecov messages.
227
    return(HA_ERR_OUT_OF_MEM);
1 by brian
clean slate
228
  keydef= *keydef_out;
229
  recinfo= *recinfo_out;
1578.2.10 by Brian Aker
keys and fields partial encapsulation.
230
  for (i= 0; i < share->sizeKeys(); i++)
1 by brian
clean slate
231
  {
1574.1.1 by Brian Aker
Small touchup for using array, not increment.
232
    KeyInfo *pos= &table_arg->key_info[i];
249 by Brian Aker
Random key cleanup (it is a friday...)
233
    keydef[i].flag= ((uint16_t) pos->flags & (HA_NOSAME));
234
    keydef[i].key_alg= HA_KEY_ALG_BTREE;
1 by brian
clean slate
235
    keydef[i].block_length= pos->block_size;
236
    keydef[i].seg= keyseg;
237
    keydef[i].keysegs= pos->key_parts;
238
    for (j= 0; j < pos->key_parts; j++)
239
    {
240
      Field *field= pos->key_part[j].field;
241
      type= field->key_type();
242
      keydef[i].seg[j].flag= pos->key_part[j].key_part_flag;
243
244
      if (options & HA_OPTION_PACK_KEYS ||
245
          (pos->flags & (HA_PACK_KEY | HA_BINARY_PACK_KEY |
246
                         HA_SPACE_PACK_USED)))
247
      {
248
        if (pos->key_part[j].length > 8 &&
249
            (type == HA_KEYTYPE_TEXT ||
250
             (type == HA_KEYTYPE_BINARY && !field->zero_pack())))
251
        {
252
          /* No blobs here */
253
          if (j == 0)
254
            keydef[i].flag|= HA_PACK_KEY;
241 by Brian Aker
First pass of CHAR removal.
255
          if ((((int) (pos->key_part[j].length - field->decimals())) >= 4))
1 by brian
clean slate
256
            keydef[i].seg[j].flag|= HA_SPACE_PACK;
257
        }
258
        else if (j == 0 && (!(pos->flags & HA_NOSAME) || pos->key_length > 16))
259
          keydef[i].flag|= HA_BINARY_PACK_KEY;
260
      }
261
      keydef[i].seg[j].type= (int) type;
262
      keydef[i].seg[j].start= pos->key_part[j].offset;
263
      keydef[i].seg[j].length= pos->key_part[j].length;
264
      keydef[i].seg[j].bit_start= keydef[i].seg[j].bit_end=
265
        keydef[i].seg[j].bit_length= 0;
266
      keydef[i].seg[j].bit_pos= 0;
267
      keydef[i].seg[j].language= field->charset()->number;
268
269
      if (field->null_ptr)
270
      {
271
        keydef[i].seg[j].null_bit= field->null_bit;
272
        keydef[i].seg[j].null_pos= (uint) (field->null_ptr-
1672.3.6 by Brian Aker
First pass in encapsulating row
273
                                           (unsigned char*) table_arg->getInsertRecord());
1 by brian
clean slate
274
      }
275
      else
276
      {
277
        keydef[i].seg[j].null_bit= 0;
278
        keydef[i].seg[j].null_pos= 0;
279
      }
212.2.2 by Patrick Galbraith
Renamed FIELD_TYPE to DRIZZLE_TYPE
280
      if (field->type() == DRIZZLE_TYPE_BLOB)
1 by brian
clean slate
281
      {
282
        keydef[i].seg[j].flag|= HA_BLOB_PART;
283
        /* save number of bytes used to pack length */
284
        keydef[i].seg[j].bit_start= (uint) (field->pack_length() -
285
                                            share->blob_ptr_size);
286
      }
287
    }
288
    keyseg+= pos->key_parts;
289
  }
290
  if (table_arg->found_next_number_field)
291
    keydef[share->next_number_index].flag|= HA_AUTO_KEY;
1672.3.6 by Brian Aker
First pass in encapsulating row
292
  record= table_arg->getInsertRecord();
1 by brian
clean slate
293
  recpos= 0;
294
  recinfo_pos= recinfo;
383.7.1 by Andrey Zhakov
Initial submit of code and tests
295
  while (recpos < (uint) share->stored_rec_length)
1 by brian
clean slate
296
  {
297
    Field **field, *found= 0;
1578.2.8 by Brian Aker
Encapsulate record length.
298
    minpos= share->getRecordLength();
1 by brian
clean slate
299
    length= 0;
300
1578.2.16 by Brian Aker
Merge in change to getTable() to private the field objects.
301
    for (field= table_arg->getFields(); *field; field++)
1 by brian
clean slate
302
    {
303
      if ((fieldpos= (*field)->offset(record)) >= recpos &&
304
          fieldpos <= minpos)
305
      {
306
        /* skip null fields */
307
        if (!(temp_length= (*field)->pack_length_in_rec()))
308
          continue; /* Skip null-fields */
309
        if (! found || fieldpos < minpos ||
310
            (fieldpos == minpos && temp_length < length))
311
        {
312
          minpos= fieldpos;
313
          found= *field;
314
          length= temp_length;
315
        }
316
      }
317
    }
318
    if (recpos != minpos)
319
    { // Reserved space (Null bits?)
212.6.12 by Mats Kindahl
Removing redundant use of casts in MyISAM storage for memcmp(), memcpy(), memset(), and memmove().
320
      memset(recinfo_pos, 0, sizeof(*recinfo_pos));
1 by brian
clean slate
321
      recinfo_pos->type= (int) FIELD_NORMAL;
206 by Brian Aker
Removed final uint dead types.
322
      recinfo_pos++->length= (uint16_t) (minpos - recpos);
1 by brian
clean slate
323
    }
324
    if (!found)
325
      break;
326
327
    if (found->flags & BLOB_FLAG)
328
      recinfo_pos->type= (int) FIELD_BLOB;
212.2.2 by Patrick Galbraith
Renamed FIELD_TYPE to DRIZZLE_TYPE
329
    else if (found->type() == DRIZZLE_TYPE_VARCHAR)
1 by brian
clean slate
330
      recinfo_pos->type= FIELD_VARCHAR;
331
    else if (!(options & HA_OPTION_PACK_RECORD))
332
      recinfo_pos->type= (int) FIELD_NORMAL;
333
    else if (found->zero_pack())
334
      recinfo_pos->type= (int) FIELD_SKIP_ZERO;
335
    else
241 by Brian Aker
First pass of CHAR removal.
336
      recinfo_pos->type= (int) ((length <= 3) ?  FIELD_NORMAL : FIELD_SKIP_PRESPACE);
1 by brian
clean slate
337
    if (found->null_ptr)
338
    {
339
      recinfo_pos->null_bit= found->null_bit;
340
      recinfo_pos->null_pos= (uint) (found->null_ptr -
1672.3.6 by Brian Aker
First pass in encapsulating row
341
                                     (unsigned char*) table_arg->getInsertRecord());
1 by brian
clean slate
342
    }
343
    else
344
    {
345
      recinfo_pos->null_bit= 0;
346
      recinfo_pos->null_pos= 0;
347
    }
206 by Brian Aker
Removed final uint dead types.
348
    (recinfo_pos++)->length= (uint16_t) length;
1 by brian
clean slate
349
    recpos= minpos + length;
350
  }
351
  *records_out= (uint) (recinfo_pos - recinfo);
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
352
  return(0);
1 by brian
clean slate
353
}
354
1208.2.2 by Brian Aker
Merge Truncate patch. This fixes all of the "half setup" of Truncate. Still
355
int ha_myisam::reset_auto_increment(uint64_t value)
356
{
1210 by Brian Aker
Merge new Truncate
357
  file->s->state.auto_increment= value;
358
  return 0;
1208.2.2 by Brian Aker
Merge Truncate patch. This fixes all of the "half setup" of Truncate. Still
359
}
1 by brian
clean slate
360
361
/*
362
  Check for underlying table conformance
363
364
  SYNOPSIS
365
    check_definition()
366
      t1_keyinfo       in    First table key definition
367
      t1_recinfo       in    First table record definition
368
      t1_keys          in    Number of keys in first table
369
      t1_recs          in    Number of records in first table
370
      t2_keyinfo       in    Second table key definition
371
      t2_recinfo       in    Second table record definition
372
      t2_keys          in    Number of keys in second table
373
      t2_recs          in    Number of records in second table
374
      strict           in    Strict check switch
375
376
  DESCRIPTION
377
    This function compares two MyISAM definitions. By intention it was done
378
    to compare merge table definition against underlying table definition.
379
    It may also be used to compare dot-frm and MYI definitions of MyISAM
380
    table as well to compare different MyISAM table definitions.
381
382
    For merge table it is not required that number of keys in merge table
383
    must exactly match number of keys in underlying table. When calling this
384
    function for underlying table conformance check, 'strict' flag must be
385
    set to false, and converted merge definition must be passed as t1_*.
386
387
    Otherwise 'strict' flag must be set to 1 and it is not required to pass
388
    converted dot-frm definition as t1_*.
389
390
  RETURN VALUE
391
    0 - Equal definitions.
392
    1 - Different definitions.
393
394
  TODO
395
    - compare FULLTEXT keys;
396
    - compare SPATIAL keys;
397
    - compare FIELD_SKIP_ZERO which is converted to FIELD_NORMAL correctly
398
      (should be corretly detected in table2myisam).
399
*/
400
1085.1.2 by Monty Taylor
Fixed -Wmissing-declarations
401
static int check_definition(MI_KEYDEF *t1_keyinfo, MI_COLUMNDEF *t1_recinfo,
402
                            uint32_t t1_keys, uint32_t t1_recs,
403
                            MI_KEYDEF *t2_keyinfo, MI_COLUMNDEF *t2_recinfo,
404
                            uint32_t t2_keys, uint32_t t2_recs, bool strict)
1 by brian
clean slate
405
{
482 by Brian Aker
Remove uint.
406
  uint32_t i, j;
1 by brian
clean slate
407
  if ((strict ? t1_keys != t2_keys : t1_keys > t2_keys))
408
  {
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
409
    return(1);
1 by brian
clean slate
410
  }
411
  if (t1_recs != t2_recs)
412
  {
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
413
    return(1);
1 by brian
clean slate
414
  }
415
  for (i= 0; i < t1_keys; i++)
416
  {
417
    HA_KEYSEG *t1_keysegs= t1_keyinfo[i].seg;
418
    HA_KEYSEG *t2_keysegs= t2_keyinfo[i].seg;
419
    if (t1_keyinfo[i].keysegs != t2_keyinfo[i].keysegs ||
420
        t1_keyinfo[i].key_alg != t2_keyinfo[i].key_alg)
421
    {
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
422
      return(1);
1 by brian
clean slate
423
    }
424
    for (j=  t1_keyinfo[i].keysegs; j--;)
425
    {
206 by Brian Aker
Removed final uint dead types.
426
      uint8_t t1_keysegs_j__type= t1_keysegs[j].type;
1 by brian
clean slate
427
428
      /*
429
        Table migration from 4.1 to 5.1. In 5.1 a *TEXT key part is
430
        always HA_KEYTYPE_VARTEXT2. In 4.1 we had only the equivalent of
431
        HA_KEYTYPE_VARTEXT1. Since we treat both the same on MyISAM
432
        level, we can ignore a mismatch between these types.
433
      */
434
      if ((t1_keysegs[j].flag & HA_BLOB_PART) &&
435
          (t2_keysegs[j].flag & HA_BLOB_PART))
436
      {
437
        if ((t1_keysegs_j__type == HA_KEYTYPE_VARTEXT2) &&
438
            (t2_keysegs[j].type == HA_KEYTYPE_VARTEXT1))
971.6.11 by Eric Day
Removed purecov messages.
439
          t1_keysegs_j__type= HA_KEYTYPE_VARTEXT1;
1 by brian
clean slate
440
        else if ((t1_keysegs_j__type == HA_KEYTYPE_VARBINARY2) &&
441
                 (t2_keysegs[j].type == HA_KEYTYPE_VARBINARY1))
971.6.11 by Eric Day
Removed purecov messages.
442
          t1_keysegs_j__type= HA_KEYTYPE_VARBINARY1;
1 by brian
clean slate
443
      }
444
445
      if (t1_keysegs_j__type != t2_keysegs[j].type ||
446
          t1_keysegs[j].language != t2_keysegs[j].language ||
447
          t1_keysegs[j].null_bit != t2_keysegs[j].null_bit ||
448
          t1_keysegs[j].length != t2_keysegs[j].length)
449
      {
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
450
        return(1);
1 by brian
clean slate
451
      }
452
    }
453
  }
454
  for (i= 0; i < t1_recs; i++)
455
  {
456
    MI_COLUMNDEF *t1_rec= &t1_recinfo[i];
457
    MI_COLUMNDEF *t2_rec= &t2_recinfo[i];
458
    /*
459
      FIELD_SKIP_ZERO can be changed to FIELD_NORMAL in mi_create,
460
      see NOTE1 in mi_create.c
461
    */
462
    if ((t1_rec->type != t2_rec->type &&
463
         !(t1_rec->type == (int) FIELD_SKIP_ZERO &&
464
           t1_rec->length == 1 &&
465
           t2_rec->type == (int) FIELD_NORMAL)) ||
466
        t1_rec->length != t2_rec->length ||
467
        t1_rec->null_bit != t2_rec->null_bit)
468
    {
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
469
      return(1);
1 by brian
clean slate
470
    }
471
  }
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
472
  return(0);
1 by brian
clean slate
473
}
474
475
476
volatile int *killed_ptr(MI_CHECK *param)
477
{
478
  /* In theory Unsafe conversion, but should be ok for now */
520.1.22 by Brian Aker
Second pass of thd cleanup
479
  return (int*) &(((Session *)(param->session))->killed);
1 by brian
clean slate
480
}
481
482
void mi_check_print_error(MI_CHECK *param, const char *fmt,...)
483
{
484
  param->error_printed|=1;
485
  param->out_flag|= O_DATA_LOST;
486
  va_list args;
487
  va_start(args, fmt);
488
  mi_check_print_msg(param, "error", fmt, args);
489
  va_end(args);
490
}
491
492
void mi_check_print_info(MI_CHECK *param, const char *fmt,...)
493
{
494
  va_list args;
495
  va_start(args, fmt);
496
  mi_check_print_msg(param, "info", fmt, args);
497
  va_end(args);
498
}
499
500
void mi_check_print_warning(MI_CHECK *param, const char *fmt,...)
501
{
502
  param->warning_printed=1;
503
  param->out_flag|= O_DATA_LOST;
504
  va_list args;
505
  va_start(args, fmt);
506
  mi_check_print_msg(param, "warning", fmt, args);
507
  va_end(args);
508
}
509
510
/**
511
  Report list of threads (and queries) accessing a table, thread_id of a
512
  thread that detected corruption, ource file name and line number where
513
  this corruption was detected, optional extra information (string).
514
515
  This function is intended to be used when table corruption is detected.
516
517
  @param[in] file      MI_INFO object.
518
  @param[in] message   Optional error message.
519
  @param[in] sfile     Name of source file.
520
  @param[in] sline     Line number in source file.
521
522
  @return void
523
*/
524
525
void _mi_report_crashed(MI_INFO *file, const char *message,
482 by Brian Aker
Remove uint.
526
                        const char *sfile, uint32_t sline)
1 by brian
clean slate
527
{
520.1.22 by Brian Aker
Second pass of thd cleanup
528
  Session *cur_session;
916.1.35 by Padraig O'Sullivan
Removing the last of LIST from the MyISAM storage engine.
529
  if ((cur_session= file->in_use))
755.2.1 by Mark Atwood
replace sql_print_error etc with errmsg_print
530
    errmsg_printf(ERRMSG_LVL_ERROR, _("Got an error from thread_id=%"PRIu64", %s:%d"),
553 by Monty Taylor
Changed my_thread_id type.
531
                    cur_session->thread_id,
1 by brian
clean slate
532
                    sfile, sline);
533
  else
755.2.1 by Mark Atwood
replace sql_print_error etc with errmsg_print
534
    errmsg_printf(ERRMSG_LVL_ERROR, _("Got an error from unknown thread, %s:%d"), sfile, sline);
1 by brian
clean slate
535
  if (message)
755.2.1 by Mark Atwood
replace sql_print_error etc with errmsg_print
536
    errmsg_printf(ERRMSG_LVL_ERROR, "%s", message);
916.1.35 by Padraig O'Sullivan
Removing the last of LIST from the MyISAM storage engine.
537
  list<Session *>::iterator it= file->s->in_use->begin();
538
  while (it != file->s->in_use->end())
1 by brian
clean slate
539
  {
755.2.1 by Mark Atwood
replace sql_print_error etc with errmsg_print
540
    errmsg_printf(ERRMSG_LVL_ERROR, "%s", _("Unknown thread accessing table"));
916.1.35 by Padraig O'Sullivan
Removing the last of LIST from the MyISAM storage engine.
541
    ++it;
1 by brian
clean slate
542
  }
543
}
544
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
545
ha_myisam::ha_myisam(plugin::StorageEngine &engine_arg,
1869.1.4 by Brian Aker
TableShare is no longer in the house (i.e. we no longer directly have a copy
546
                     Table &table_arg)
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
547
  : Cursor(engine_arg, table_arg),
1220.1.12 by Brian Aker
Small cleanup from something Jay noticed.
548
  file(0),
549
  can_enable_indexes(true),
550
  is_ordered(true)
551
{ }
1 by brian
clean slate
552
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
553
Cursor *ha_myisam::clone(memory::Root *mem_root)
1 by brian
clean slate
554
{
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
555
  ha_myisam *new_handler= static_cast <ha_myisam *>(Cursor::clone(mem_root));
1 by brian
clean slate
556
  if (new_handler)
557
    new_handler->file->state= file->state;
558
  return new_handler;
559
}
560
779.1.27 by Monty Taylor
Got rid of __attribute__((unused)) and the like from the .cc files.
561
const char *ha_myisam::index_type(uint32_t )
1 by brian
clean slate
562
{
74 by Brian Aker
More removal of FT from MyISAM
563
  return "BTREE";
1 by brian
clean slate
564
}
565
566
/* Name is here without an extension */
1749.3.20 by Brian Aker
Updated myisam for identifier.
567
int ha_myisam::doOpen(const drizzled::TableIdentifier &identifier, int mode, uint32_t test_if_locked)
1 by brian
clean slate
568
{
569
  MI_KEYDEF *keyinfo;
570
  MI_COLUMNDEF *recinfo= 0;
482 by Brian Aker
Remove uint.
571
  uint32_t recs;
572
  uint32_t i;
1 by brian
clean slate
573
574
  /*
575
    If the user wants to have memory mapped data files, add an
576
    open_flag. Do not memory map temporary tables because they are
577
    expected to be inserted and thus extended a lot. Memory mapping is
578
    efficient for files that keep their size, but very inefficient for
579
    growing files. Using an open_flag instead of calling mi_extra(...
580
    HA_EXTRA_MMAP ...) after mi_open() has the advantage that the
581
    mapping is not repeated for every open, but just done on the initial
582
    open, when the MyISAM share is created. Everytime the server
583
    requires to open a new instance of a table it calls this method. We
584
    will always supply HA_OPEN_MMAP for a permanent table. However, the
585
    MyISAM storage engine will ignore this flag if this is a secondary
586
    open of a table that is in use by other threads already (if the
587
    MyISAM share exists already).
588
  */
1749.3.20 by Brian Aker
Updated myisam for identifier.
589
  if (!(file= mi_open(identifier, mode, test_if_locked)))
1241.9.57 by Monty Taylor
Oy. Bigger change than I normally like - but this stuff is all intertwined.
590
    return (errno ? errno : -1);
1115.1.7 by Brian Aker
Remove dead myisam program
591
1869.1.5 by Brian Aker
getTable()
592
  if (!getTable()->getShare()->getType()) /* No need to perform a check for tmp table */
1 by brian
clean slate
593
  {
1869.1.5 by Brian Aker
getTable()
594
    if ((errno= table2myisam(getTable(), &keyinfo, &recinfo, &recs)))
1 by brian
clean slate
595
    {
596
      goto err;
597
    }
1869.1.5 by Brian Aker
getTable()
598
    if (check_definition(keyinfo, recinfo, getTable()->getShare()->sizeKeys(), recs,
1 by brian
clean slate
599
                         file->s->keyinfo, file->s->rec,
600
                         file->s->base.keys, file->s->base.fields, true))
601
    {
1241.9.57 by Monty Taylor
Oy. Bigger change than I normally like - but this stuff is all intertwined.
602
      errno= HA_ERR_CRASHED;
1 by brian
clean slate
603
      goto err;
604
    }
605
  }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
606
1578.2.9 by Brian Aker
Simplify ha_open.
607
  assert(test_if_locked);
1 by brian
clean slate
608
  if (test_if_locked & (HA_OPEN_IGNORE_IF_LOCKED | HA_OPEN_TMP_TABLE))
398.1.10 by Monty Taylor
Actually removed VOID() this time.
609
    mi_extra(file, HA_EXTRA_NO_WAIT_LOCK, 0);
1 by brian
clean slate
610
611
  info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
612
  if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED))
398.1.10 by Monty Taylor
Actually removed VOID() this time.
613
    mi_extra(file, HA_EXTRA_WAIT_LOCK, 0);
1869.1.5 by Brian Aker
getTable()
614
  if (!getTable()->getShare()->db_record_offset)
1220.2.1 by Brian Aker
Move cursor flags up to storage engine flags. These need to be merged.
615
    is_ordered= false;
616
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
617
1005.2.6 by Monty Taylor
Re-added bitset<> as a replacement for Bitmap<>
618
  keys_with_parts.reset();
1869.1.5 by Brian Aker
getTable()
619
  for (i= 0; i < getTable()->getShare()->sizeKeys(); i++)
1 by brian
clean slate
620
  {
1869.1.5 by Brian Aker
getTable()
621
    getTable()->key_info[i].block_size= file->s->keyinfo[i].block_length;
1 by brian
clean slate
622
1869.1.5 by Brian Aker
getTable()
623
    KeyPartInfo *kp= getTable()->key_info[i].key_part;
624
    KeyPartInfo *kp_end= kp + getTable()->key_info[i].key_parts;
1 by brian
clean slate
625
    for (; kp != kp_end; kp++)
626
    {
1005.2.6 by Monty Taylor
Re-added bitset<> as a replacement for Bitmap<>
627
      if (!kp->field->part_of_key.test(i))
1 by brian
clean slate
628
      {
1005.2.6 by Monty Taylor
Re-added bitset<> as a replacement for Bitmap<>
629
        keys_with_parts.set(i);
1 by brian
clean slate
630
        break;
631
      }
632
    }
633
  }
1241.9.57 by Monty Taylor
Oy. Bigger change than I normally like - but this stuff is all intertwined.
634
  errno= 0;
1 by brian
clean slate
635
  goto end;
636
 err:
637
  this->close();
638
 end:
639
  /*
1130.3.1 by Monty Taylor
Moved multi_malloc into drizzled since it's not going away any time soon. Also,
640
    Both recinfo and keydef are allocated by multi_malloc(), thus only
1 by brian
clean slate
641
    recinfo must be freed.
642
  */
643
  if (recinfo)
481 by Brian Aker
Remove all of uchar.
644
    free((unsigned char*) recinfo);
1241.9.57 by Monty Taylor
Oy. Bigger change than I normally like - but this stuff is all intertwined.
645
  return errno;
1 by brian
clean slate
646
}
647
648
int ha_myisam::close(void)
649
{
650
  MI_INFO *tmp=file;
651
  file=0;
652
  return mi_close(tmp);
653
}
654
1491.1.2 by Jay Pipes
Cursor::write_row() -> Cursor::doInsertRecord(). Cursor::ha_write_row() -> Cursor::insertRecord()
655
int ha_myisam::doInsertRecord(unsigned char *buf)
1 by brian
clean slate
656
{
657
  /*
658
    If we have an auto_increment column and we are writing a changed row
659
    or a new row, then update the auto_increment value in the record.
660
  */
1869.1.5 by Brian Aker
getTable()
661
  if (getTable()->next_number_field && buf == getTable()->getInsertRecord())
1 by brian
clean slate
662
  {
663
    int error;
664
    if ((error= update_auto_increment()))
665
      return error;
666
  }
667
  return mi_write(file,buf);
668
}
669
670
520.1.22 by Brian Aker
Second pass of thd cleanup
671
int ha_myisam::repair(Session *session, MI_CHECK &param, bool do_optimize)
1 by brian
clean slate
672
{
673
  int error=0;
789 by Brian Aker
MyISAM fix.
674
  uint32_t local_testflag= param.testflag;
1 by brian
clean slate
675
  bool optimize_done= !do_optimize, statistics_done=0;
520.1.22 by Brian Aker
Second pass of thd cleanup
676
  const char *old_proc_info= session->get_proc_info();
1 by brian
clean slate
677
  char fixed_name[FN_REFLEN];
678
  MYISAM_SHARE* share = file->s;
679
  ha_rows rows= file->state->records;
680
681
  /*
682
    Normally this method is entered with a properly opened table. If the
683
    repair fails, it can be repeated with more elaborate options. Under
684
    special circumstances it can happen that a repair fails so that it
685
    closed the data file and cannot re-open it. In this case file->dfile
686
    is set to -1. We must not try another repair without an open data
687
    file. (Bug #25289)
688
  */
689
  if (file->dfile == -1)
690
  {
755.2.1 by Mark Atwood
replace sql_print_error etc with errmsg_print
691
    errmsg_printf(ERRMSG_LVL_INFO, "Retrying repair of: '%s' failed. "
1 by brian
clean slate
692
                          "Please try REPAIR EXTENDED or myisamchk",
1869.1.5 by Brian Aker
getTable()
693
                          getTable()->getShare()->getPath());
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
694
    return(HA_ADMIN_FAILED);
1 by brian
clean slate
695
  }
696
1869.1.5 by Brian Aker
getTable()
697
  param.db_name=    getTable()->getShare()->getSchemaName();
698
  param.table_name= getTable()->getAlias();
1 by brian
clean slate
699
  param.tmpfile_createflag = O_RDWR | O_TRUNC;
700
  param.using_global_keycache = 1;
520.1.22 by Brian Aker
Second pass of thd cleanup
701
  param.session= session;
1 by brian
clean slate
702
  param.out_flag= 0;
779.3.20 by Monty Taylor
Fixed Solaris warnings for MyISAM.
703
  param.sort_buffer_length= (size_t)sort_buffer_size;
641.4.3 by Toru Maesaka
Final pass of replacing MySQL's my_stpcpy() with appropriate libc calls
704
  strcpy(fixed_name,file->filename);
1 by brian
clean slate
705
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
706
  // Don't lock tables if we have used LOCK Table
1869.1.5 by Brian Aker
getTable()
707
  if (mi_lock_database(file, getTable()->getShare()->getType() ? F_EXTRA_LCK : F_WRLCK))
1 by brian
clean slate
708
  {
1241.9.57 by Monty Taylor
Oy. Bigger change than I normally like - but this stuff is all intertwined.
709
    mi_check_print_error(&param,ER(ER_CANT_LOCK),errno);
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
710
    return(HA_ADMIN_FAILED);
1 by brian
clean slate
711
  }
712
713
  if (!do_optimize ||
714
      ((file->state->del || share->state.split != file->state->records) &&
715
       (!(param.testflag & T_QUICK) ||
716
	!(share->state.changed & STATE_NOT_OPTIMIZED_KEYS))))
717
  {
718
    uint64_t key_map= ((local_testflag & T_CREATE_MISSING_KEYS) ?
719
			mi_get_mask_all_keys_active(share->base.keys) :
720
			share->state.key_map);
482 by Brian Aker
Remove uint.
721
    uint32_t testflag=param.testflag;
1 by brian
clean slate
722
    if (mi_test_if_sort_rep(file,file->state->records,key_map,0) &&
723
	(local_testflag & T_REP_BY_SORT))
724
    {
725
      local_testflag|= T_STATISTICS;
726
      param.testflag|= T_STATISTICS;		// We get this for free
727
      statistics_done=1;
728
      {
520.1.22 by Brian Aker
Second pass of thd cleanup
729
        session->set_proc_info("Repair by sorting");
1 by brian
clean slate
730
        error = mi_repair_by_sort(&param, file, fixed_name,
731
            param.testflag & T_QUICK);
732
      }
733
    }
734
    else
735
    {
520.1.22 by Brian Aker
Second pass of thd cleanup
736
      session->set_proc_info("Repair with keycache");
1 by brian
clean slate
737
      param.testflag &= ~T_REP_BY_SORT;
738
      error=  mi_repair(&param, file, fixed_name,
739
			param.testflag & T_QUICK);
740
    }
741
    param.testflag=testflag;
742
    optimize_done=1;
743
  }
744
  if (!error)
745
  {
746
    if ((local_testflag & T_SORT_INDEX) &&
747
	(share->state.changed & STATE_NOT_SORTED_PAGES))
748
    {
749
      optimize_done=1;
520.1.22 by Brian Aker
Second pass of thd cleanup
750
      session->set_proc_info("Sorting index");
1 by brian
clean slate
751
      error=mi_sort_index(&param,file,fixed_name);
752
    }
753
    if (!statistics_done && (local_testflag & T_STATISTICS))
754
    {
755
      if (share->state.changed & STATE_NOT_ANALYZED)
756
      {
757
	optimize_done=1;
520.1.22 by Brian Aker
Second pass of thd cleanup
758
	session->set_proc_info("Analyzing");
1 by brian
clean slate
759
	error = chk_key(&param, file);
760
      }
761
      else
762
	local_testflag&= ~T_STATISTICS;		// Don't update statistics
763
    }
764
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
765
  session->set_proc_info("Saving state");
1 by brian
clean slate
766
  if (!error)
767
  {
768
    if ((share->state.changed & STATE_CHANGED) || mi_is_crashed(file))
769
    {
770
      share->state.changed&= ~(STATE_CHANGED | STATE_CRASHED |
771
			       STATE_CRASHED_ON_REPAIR);
772
      file->update|=HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
773
    }
774
    /*
775
      the following 'if', thought conceptually wrong,
776
      is a useful optimization nevertheless.
777
    */
778
    if (file->state != &file->s->state.state)
779
      file->s->state.state = *file->state;
780
    if (file->s->base.auto_key)
781
      update_auto_increment_key(&param, file, 1);
782
    if (optimize_done)
783
      error = update_state_info(&param, file,
784
				UPDATE_TIME | UPDATE_OPEN_COUNT |
785
				(local_testflag &
786
				 T_STATISTICS ? UPDATE_STAT : 0));
787
    info(HA_STATUS_NO_LOCK | HA_STATUS_TIME | HA_STATUS_VARIABLE |
788
	 HA_STATUS_CONST);
789
    if (rows != file->state->records && ! (param.testflag & T_VERY_SILENT))
790
    {
791
      char llbuff[22],llbuff2[22];
792
      mi_check_print_warning(&param,"Number of rows changed from %s to %s",
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
793
			     internal::llstr(rows,llbuff),
794
			     internal::llstr(file->state->records,llbuff2));
1 by brian
clean slate
795
    }
796
  }
797
  else
798
  {
799
    mi_mark_crashed_on_repair(file);
800
    file->update |= HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
801
    update_state_info(&param, file, 0);
802
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
803
  session->set_proc_info(old_proc_info);
1054.1.8 by Brian Aker
Remove lock_tables list from session.
804
  mi_lock_database(file,F_UNLCK);
805
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
806
  return(error ? HA_ADMIN_FAILED :
1 by brian
clean slate
807
	      !optimize_done ? HA_ADMIN_ALREADY_DONE : HA_ADMIN_OK);
808
}
809
810
811
/*
812
  Disable indexes, making it persistent if requested.
813
814
  SYNOPSIS
815
    disable_indexes()
816
    mode        mode of operation:
817
                HA_KEY_SWITCH_NONUNIQ      disable all non-unique keys
818
                HA_KEY_SWITCH_ALL          disable all keys
819
                HA_KEY_SWITCH_NONUNIQ_SAVE dis. non-uni. and make persistent
820
                HA_KEY_SWITCH_ALL_SAVE     dis. all keys and make persistent
821
822
  IMPLEMENTATION
823
    HA_KEY_SWITCH_NONUNIQ       is not implemented.
824
    HA_KEY_SWITCH_ALL_SAVE      is not implemented.
825
826
  RETURN
827
    0  ok
828
    HA_ERR_WRONG_COMMAND  mode not implemented.
829
*/
830
482 by Brian Aker
Remove uint.
831
int ha_myisam::disable_indexes(uint32_t mode)
1 by brian
clean slate
832
{
833
  int error;
834
835
  if (mode == HA_KEY_SWITCH_ALL)
836
  {
837
    /* call a storage engine function to switch the key map */
838
    error= mi_disable_indexes(file);
839
  }
840
  else if (mode == HA_KEY_SWITCH_NONUNIQ_SAVE)
841
  {
842
    mi_extra(file, HA_EXTRA_NO_KEYS, 0);
843
    info(HA_STATUS_CONST);                        // Read new key info
844
    error= 0;
845
  }
846
  else
847
  {
848
    /* mode not implemented */
849
    error= HA_ERR_WRONG_COMMAND;
850
  }
851
  return error;
852
}
853
854
855
/*
856
  Enable indexes, making it persistent if requested.
857
858
  SYNOPSIS
859
    enable_indexes()
860
    mode        mode of operation:
861
                HA_KEY_SWITCH_NONUNIQ      enable all non-unique keys
862
                HA_KEY_SWITCH_ALL          enable all keys
863
                HA_KEY_SWITCH_NONUNIQ_SAVE en. non-uni. and make persistent
864
                HA_KEY_SWITCH_ALL_SAVE     en. all keys and make persistent
865
866
  DESCRIPTION
867
    Enable indexes, which might have been disabled by disable_index() before.
868
    The modes without _SAVE work only if both data and indexes are empty,
869
    since the MyISAM repair would enable them persistently.
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
870
    To be sure in these cases, call Cursor::delete_all_rows() before.
1 by brian
clean slate
871
872
  IMPLEMENTATION
873
    HA_KEY_SWITCH_NONUNIQ       is not implemented.
874
    HA_KEY_SWITCH_ALL_SAVE      is not implemented.
875
876
  RETURN
877
    0  ok
878
    !=0  Error, among others:
879
    HA_ERR_CRASHED  data or index is non-empty. Delete all rows and retry.
880
    HA_ERR_WRONG_COMMAND  mode not implemented.
881
*/
882
482 by Brian Aker
Remove uint.
883
int ha_myisam::enable_indexes(uint32_t mode)
1 by brian
clean slate
884
{
885
  int error;
886
887
  if (mi_is_all_keys_active(file->s->state.key_map, file->s->base.keys))
888
  {
889
    /* All indexes are enabled already. */
890
    return 0;
891
  }
892
893
  if (mode == HA_KEY_SWITCH_ALL)
894
  {
895
    error= mi_enable_indexes(file);
896
    /*
897
       Do not try to repair on error,
898
       as this could make the enabled state persistent,
899
       but mode==HA_KEY_SWITCH_ALL forbids it.
900
    */
901
  }
902
  else if (mode == HA_KEY_SWITCH_NONUNIQ_SAVE)
903
  {
1869.1.5 by Brian Aker
getTable()
904
    Session *session= getTable()->in_use;
1 by brian
clean slate
905
    MI_CHECK param;
520.1.22 by Brian Aker
Second pass of thd cleanup
906
    const char *save_proc_info= session->get_proc_info();
907
    session->set_proc_info("Creating index");
1 by brian
clean slate
908
    myisamchk_init(&param);
909
    param.op_name= "recreating_index";
910
    param.testflag= (T_SILENT | T_REP_BY_SORT | T_QUICK |
911
                     T_CREATE_MISSING_KEYS);
912
    param.myf_rw&= ~MY_WAIT_IF_FULL;
779.3.20 by Monty Taylor
Fixed Solaris warnings for MyISAM.
913
    param.sort_buffer_length=  (size_t)sort_buffer_size;
1115.1.3 by Brian Aker
Remove final bits of "myisam" specific from drizzled.cc
914
    param.stats_method= MI_STATS_METHOD_NULLS_NOT_EQUAL;
520.1.22 by Brian Aker
Second pass of thd cleanup
915
    if ((error= (repair(session,param,0) != HA_ADMIN_OK)) && param.retry_repair)
1 by brian
clean slate
916
    {
755.2.1 by Mark Atwood
replace sql_print_error etc with errmsg_print
917
      errmsg_printf(ERRMSG_LVL_WARN, "Warning: Enabling keys got errno %d on %s.%s, retrying",
1241.9.57 by Monty Taylor
Oy. Bigger change than I normally like - but this stuff is all intertwined.
918
                        errno, param.db_name, param.table_name);
1 by brian
clean slate
919
      /* Repairing by sort failed. Now try standard repair method. */
920
      param.testflag&= ~(T_REP_BY_SORT | T_QUICK);
520.1.22 by Brian Aker
Second pass of thd cleanup
921
      error= (repair(session,param,0) != HA_ADMIN_OK);
1 by brian
clean slate
922
      /*
923
        If the standard repair succeeded, clear all error messages which
924
        might have been set by the first repair. They can still be seen
925
        with SHOW WARNINGS then.
926
      */
927
      if (! error)
520.1.22 by Brian Aker
Second pass of thd cleanup
928
        session->clear_error();
1 by brian
clean slate
929
    }
930
    info(HA_STATUS_CONST);
520.1.22 by Brian Aker
Second pass of thd cleanup
931
    session->set_proc_info(save_proc_info);
1 by brian
clean slate
932
  }
933
  else
934
  {
935
    /* mode not implemented */
936
    error= HA_ERR_WRONG_COMMAND;
937
  }
938
  return error;
939
}
940
941
942
/*
943
  Test if indexes are disabled.
944
945
946
  SYNOPSIS
947
    indexes_are_disabled()
948
      no parameters
949
950
951
  RETURN
952
    0  indexes are not disabled
953
    1  all indexes are disabled
954
   [2  non-unique indexes are disabled - NOT YET IMPLEMENTED]
955
*/
956
957
int ha_myisam::indexes_are_disabled(void)
958
{
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
959
1 by brian
clean slate
960
  return mi_indexes_are_disabled(file);
961
}
962
963
964
/*
965
  prepare for a many-rows insert operation
966
  e.g. - disable indexes (if they can be recreated fast) or
967
  activate special bulk-insert optimizations
968
969
  SYNOPSIS
970
    start_bulk_insert(rows)
971
    rows        Rows to be inserted
972
                0 if we don't know
973
974
  NOTICE
975
    Do not forget to call end_bulk_insert() later!
976
*/
977
978
void ha_myisam::start_bulk_insert(ha_rows rows)
979
{
1869.1.5 by Brian Aker
getTable()
980
  Session *session= getTable()->in_use;
1116.1.2 by Brian Aker
Remove options which are just for internal optimizations.
981
  ulong size= session->variables.read_buff_size;
1 by brian
clean slate
982
983
  /* don't enable row cache if too few rows */
984
  if (! rows || (rows > MI_MIN_ROWS_TO_USE_WRITE_CACHE))
985
    mi_extra(file, HA_EXTRA_WRITE_CACHE, (void*) &size);
986
987
  can_enable_indexes= mi_is_all_keys_active(file->s->state.key_map,
988
                                            file->s->base.keys);
989
362 by Brian Aker
No more dead special flags...
990
  /*
991
    Only disable old index if the table was empty and we are inserting
992
    a lot of rows.
993
    We should not do this for only a few rows as this is slower and
994
    we don't want to update the key statistics based of only a few rows.
995
  */
996
  if (file->state->records == 0 && can_enable_indexes &&
997
      (!rows || rows >= MI_MIN_ROWS_TO_DISABLE_INDEXES))
998
    mi_disable_non_unique_index(file,rows);
999
  else
1 by brian
clean slate
1000
    if (!file->bulk_insert &&
1001
        (!rows || rows >= MI_MIN_ROWS_TO_USE_BULK_INSERT))
1002
    {
779.3.20 by Monty Taylor
Fixed Solaris warnings for MyISAM.
1003
      mi_init_bulk_insert(file,
1004
                          (size_t)session->variables.bulk_insert_buff_size,
1005
                          rows);
1 by brian
clean slate
1006
    }
1007
}
1008
1009
/*
1010
  end special bulk-insert optimizations,
1011
  which have been activated by start_bulk_insert().
1012
1013
  SYNOPSIS
1014
    end_bulk_insert()
1015
    no arguments
1016
1017
  RETURN
1018
    0     OK
1019
    != 0  Error
1020
*/
1021
1022
int ha_myisam::end_bulk_insert()
1023
{
1024
  mi_end_bulk_insert(file);
1025
  int err=mi_extra(file, HA_EXTRA_NO_CACHE, 0);
1026
  return err ? err : can_enable_indexes ?
1027
                     enable_indexes(HA_KEY_SWITCH_NONUNIQ_SAVE) : 0;
1028
}
1029
1030
1031
1491.1.3 by Jay Pipes
Cursor::update_row() changed to doUpdateRecord() and updateRecord()
1032
int ha_myisam::doUpdateRecord(const unsigned char *old_data, unsigned char *new_data)
1 by brian
clean slate
1033
{
1034
  return mi_update(file,old_data,new_data);
1035
}
1036
1491.1.4 by Jay Pipes
delete_row() is now deleteRecord() and doDeleteRecord() in Cursor
1037
int ha_myisam::doDeleteRecord(const unsigned char *buf)
1 by brian
clean slate
1038
{
1039
  return mi_delete(file,buf);
1040
}
1041
1042
1491.1.6 by Jay Pipes
Cursor::ha_index_init() -> Cursor::startIndexScan(). Cursor::ha_index_end() -> Cursor::endIndexScan()
1043
int ha_myisam::doStartIndexScan(uint32_t idx, bool )
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1044
{
1 by brian
clean slate
1045
  active_index=idx;
163 by Brian Aker
Merge Monty's code.
1046
  //in_range_read= false;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1047
  return 0;
1 by brian
clean slate
1048
}
1049
1050
1491.1.6 by Jay Pipes
Cursor::ha_index_init() -> Cursor::startIndexScan(). Cursor::ha_index_end() -> Cursor::endIndexScan()
1051
int ha_myisam::doEndIndexScan()
1 by brian
clean slate
1052
{
1053
  active_index=MAX_KEY;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1054
  return 0;
1 by brian
clean slate
1055
}
1056
1057
481 by Brian Aker
Remove all of uchar.
1058
int ha_myisam::index_read_map(unsigned char *buf, const unsigned char *key,
1 by brian
clean slate
1059
                              key_part_map keypart_map,
1060
                              enum ha_rkey_function find_flag)
1061
{
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
1062
  assert(inited==INDEX);
1273.16.8 by Brian Aker
Remove typedef.
1063
  ha_statistic_increment(&system_status_var::ha_read_key_count);
1 by brian
clean slate
1064
  int error=mi_rkey(file, buf, active_index, key, keypart_map, find_flag);
1869.1.5 by Brian Aker
getTable()
1065
  getTable()->status=error ? STATUS_NOT_FOUND: 0;
1 by brian
clean slate
1066
  return error;
1067
}
1068
482 by Brian Aker
Remove uint.
1069
int ha_myisam::index_read_idx_map(unsigned char *buf, uint32_t index, const unsigned char *key,
1 by brian
clean slate
1070
                                  key_part_map keypart_map,
1071
                                  enum ha_rkey_function find_flag)
1072
{
1273.16.8 by Brian Aker
Remove typedef.
1073
  ha_statistic_increment(&system_status_var::ha_read_key_count);
1 by brian
clean slate
1074
  int error=mi_rkey(file, buf, index, key, keypart_map, find_flag);
1869.1.5 by Brian Aker
getTable()
1075
  getTable()->status=error ? STATUS_NOT_FOUND: 0;
1 by brian
clean slate
1076
  return error;
1077
}
1078
481 by Brian Aker
Remove all of uchar.
1079
int ha_myisam::index_read_last_map(unsigned char *buf, const unsigned char *key,
1 by brian
clean slate
1080
                                   key_part_map keypart_map)
1081
{
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
1082
  assert(inited==INDEX);
1273.16.8 by Brian Aker
Remove typedef.
1083
  ha_statistic_increment(&system_status_var::ha_read_key_count);
1 by brian
clean slate
1084
  int error=mi_rkey(file, buf, active_index, key, keypart_map,
1085
                    HA_READ_PREFIX_LAST);
1869.1.5 by Brian Aker
getTable()
1086
  getTable()->status=error ? STATUS_NOT_FOUND: 0;
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
1087
  return(error);
1 by brian
clean slate
1088
}
1089
481 by Brian Aker
Remove all of uchar.
1090
int ha_myisam::index_next(unsigned char *buf)
1 by brian
clean slate
1091
{
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
1092
  assert(inited==INDEX);
1273.16.8 by Brian Aker
Remove typedef.
1093
  ha_statistic_increment(&system_status_var::ha_read_next_count);
1 by brian
clean slate
1094
  int error=mi_rnext(file,buf,active_index);
1869.1.5 by Brian Aker
getTable()
1095
  getTable()->status=error ? STATUS_NOT_FOUND: 0;
1 by brian
clean slate
1096
  return error;
1097
}
1098
481 by Brian Aker
Remove all of uchar.
1099
int ha_myisam::index_prev(unsigned char *buf)
1 by brian
clean slate
1100
{
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
1101
  assert(inited==INDEX);
1273.16.8 by Brian Aker
Remove typedef.
1102
  ha_statistic_increment(&system_status_var::ha_read_prev_count);
1 by brian
clean slate
1103
  int error=mi_rprev(file,buf, active_index);
1869.1.5 by Brian Aker
getTable()
1104
  getTable()->status=error ? STATUS_NOT_FOUND: 0;
1 by brian
clean slate
1105
  return error;
1106
}
1107
481 by Brian Aker
Remove all of uchar.
1108
int ha_myisam::index_first(unsigned char *buf)
1 by brian
clean slate
1109
{
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
1110
  assert(inited==INDEX);
1273.16.8 by Brian Aker
Remove typedef.
1111
  ha_statistic_increment(&system_status_var::ha_read_first_count);
1 by brian
clean slate
1112
  int error=mi_rfirst(file, buf, active_index);
1869.1.5 by Brian Aker
getTable()
1113
  getTable()->status=error ? STATUS_NOT_FOUND: 0;
1 by brian
clean slate
1114
  return error;
1115
}
1116
481 by Brian Aker
Remove all of uchar.
1117
int ha_myisam::index_last(unsigned char *buf)
1 by brian
clean slate
1118
{
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
1119
  assert(inited==INDEX);
1273.16.8 by Brian Aker
Remove typedef.
1120
  ha_statistic_increment(&system_status_var::ha_read_last_count);
1 by brian
clean slate
1121
  int error=mi_rlast(file, buf, active_index);
1869.1.5 by Brian Aker
getTable()
1122
  getTable()->status=error ? STATUS_NOT_FOUND: 0;
1 by brian
clean slate
1123
  return error;
1124
}
1125
481 by Brian Aker
Remove all of uchar.
1126
int ha_myisam::index_next_same(unsigned char *buf,
779.1.27 by Monty Taylor
Got rid of __attribute__((unused)) and the like from the .cc files.
1127
			       const unsigned char *,
1128
			       uint32_t )
1 by brian
clean slate
1129
{
1130
  int error;
51.1.89 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
1131
  assert(inited==INDEX);
1273.16.8 by Brian Aker
Remove typedef.
1132
  ha_statistic_increment(&system_status_var::ha_read_next_count);
1 by brian
clean slate
1133
  do
1134
  {
1135
    error= mi_rnext_same(file,buf);
1136
  } while (error == HA_ERR_RECORD_DELETED);
1869.1.5 by Brian Aker
getTable()
1137
  getTable()->status=error ? STATUS_NOT_FOUND: 0;
1 by brian
clean slate
1138
  return error;
1139
}
1140
1141
int ha_myisam::read_range_first(const key_range *start_key,
1142
		 	        const key_range *end_key,
1143
			        bool eq_range_arg,
1144
                                bool sorted /* ignored */)
1145
{
1146
  int res;
1147
  //if (!eq_range_arg)
163 by Brian Aker
Merge Monty's code.
1148
  //  in_range_read= true;
1 by brian
clean slate
1149
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
1150
  res= Cursor::read_range_first(start_key, end_key, eq_range_arg, sorted);
1 by brian
clean slate
1151
1152
  //if (res)
163 by Brian Aker
Merge Monty's code.
1153
  //  in_range_read= false;
1 by brian
clean slate
1154
  return res;
1155
}
1156
1157
1158
int ha_myisam::read_range_next()
1159
{
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
1160
  int res= Cursor::read_range_next();
1 by brian
clean slate
1161
  //if (res)
163 by Brian Aker
Merge Monty's code.
1162
  //  in_range_read= false;
1 by brian
clean slate
1163
  return res;
1164
}
1165
1166
1491.1.10 by Jay Pipes
ha_rnd_init -> startTableScan, rnd_init -> doStartTableScan, ha_rnd_end -> endTableScan, rnd_end -> doEndTableScan
1167
int ha_myisam::doStartTableScan(bool scan)
1 by brian
clean slate
1168
{
1169
  if (scan)
1170
    return mi_scan_init(file);
1171
  return mi_reset(file);                        // Free buffers
1172
}
1173
481 by Brian Aker
Remove all of uchar.
1174
int ha_myisam::rnd_next(unsigned char *buf)
1 by brian
clean slate
1175
{
1273.16.8 by Brian Aker
Remove typedef.
1176
  ha_statistic_increment(&system_status_var::ha_read_rnd_next_count);
1 by brian
clean slate
1177
  int error=mi_scan(file, buf);
1869.1.5 by Brian Aker
getTable()
1178
  getTable()->status=error ? STATUS_NOT_FOUND: 0;
1 by brian
clean slate
1179
  return error;
1180
}
1181
481 by Brian Aker
Remove all of uchar.
1182
int ha_myisam::rnd_pos(unsigned char *buf, unsigned char *pos)
1 by brian
clean slate
1183
{
1273.16.8 by Brian Aker
Remove typedef.
1184
  ha_statistic_increment(&system_status_var::ha_read_rnd_count);
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
1185
  int error=mi_rrnd(file, buf, internal::my_get_ptr(pos,ref_length));
1869.1.5 by Brian Aker
getTable()
1186
  getTable()->status=error ? STATUS_NOT_FOUND: 0;
1 by brian
clean slate
1187
  return error;
1188
}
1189
1190
779.1.27 by Monty Taylor
Got rid of __attribute__((unused)) and the like from the .cc files.
1191
void ha_myisam::position(const unsigned char *)
1 by brian
clean slate
1192
{
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
1193
  internal::my_off_t row_position= mi_position(file);
1194
  internal::my_store_ptr(ref, ref_length, row_position);
1 by brian
clean slate
1195
}
1196
482 by Brian Aker
Remove uint.
1197
int ha_myisam::info(uint32_t flag)
1 by brian
clean slate
1198
{
1199
  MI_ISAMINFO misam_info;
1200
  char name_buff[FN_REFLEN];
1201
1202
  (void) mi_status(file,&misam_info,flag);
1203
  if (flag & HA_STATUS_VARIABLE)
1204
  {
1205
    stats.records=           misam_info.records;
1206
    stats.deleted=           misam_info.deleted;
1207
    stats.data_file_length=  misam_info.data_file_length;
1208
    stats.index_file_length= misam_info.index_file_length;
1209
    stats.delete_length=     misam_info.delete_length;
1210
    stats.check_time=        misam_info.check_time;
1211
    stats.mean_rec_length=   misam_info.mean_reclength;
1212
  }
1213
  if (flag & HA_STATUS_CONST)
1214
  {
1869.1.5 by Brian Aker
getTable()
1215
    TableShare *share= getTable()->getMutableShare();
1 by brian
clean slate
1216
    stats.max_data_file_length=  misam_info.max_data_file_length;
1217
    stats.max_index_file_length= misam_info.max_index_file_length;
1218
    stats.create_time= misam_info.create_time;
1219
    ref_length= misam_info.reflength;
1220
    share->db_options_in_use= misam_info.options;
1251.2.2 by Jay Pipes
Pulls MyISAM-specific server variables into the MyISAM
1221
    stats.block_size= myisam_key_cache_block_size;        /* record block size */
1 by brian
clean slate
1222
1578.2.10 by Brian Aker
keys and fields partial encapsulation.
1223
    set_prefix(share->keys_in_use, share->sizeKeys());
1095.6.1 by Padraig O'Sullivan
Fix for 32 bit Solaris builds. Issue was with conversion of 64-bit unsigned
1224
    /*
1225
     * Due to bug 394932 (32-bit solaris build failure), we need
1226
     * to convert the uint64_t key_map member of the misam_info
1227
     * structure in to a std::bitset so that we can logically and
1228
     * it with the share->key_in_use key_map.
1229
     */
1230
    ostringstream ostr;
1231
    string binary_key_map;
1232
    uint64_t num= misam_info.key_map;
1233
    /*
1234
     * Convert the uint64_t to a binary
1235
     * string representation of it.
1236
     */
1237
    while (num > 0)
1238
    {
1239
      uint64_t bin_digit= num % 2;
1240
      ostr << bin_digit;
1241
      num/= 2;
1242
    }
1243
    binary_key_map.append(ostr.str());
1244
    /*
1245
     * Now we have the binary string representation of the
1246
     * flags, we need to fill that string representation out
1247
     * with the appropriate number of bits. This is needed
1248
     * since key_map is declared as a std::bitset of a certain bit
1249
     * width that depends on the MAX_INDEXES variable. 
1250
     */
1251
    if (MAX_INDEXES <= 64)
1252
    {
1253
      size_t len= 72 - binary_key_map.length();
1254
      string all_zeros(len, '0');
1255
      binary_key_map.insert(binary_key_map.begin(),
1256
                            all_zeros.begin(),
1257
                            all_zeros.end());
1258
    }
1259
    else
1260
    {
1261
      size_t len= (MAX_INDEXES + 7) / 8 * 8;
1262
      string all_zeros(len, '0');
1263
      binary_key_map.insert(binary_key_map.begin(),
1264
                            all_zeros.begin(),
1265
                            all_zeros.end());
1266
    }
1267
    key_map tmp_map(binary_key_map);
1268
    share->keys_in_use&= tmp_map;
1005.2.6 by Monty Taylor
Re-added bitset<> as a replacement for Bitmap<>
1269
    share->keys_for_keyread&= share->keys_in_use;
1 by brian
clean slate
1270
    share->db_record_offset= misam_info.record_offset;
1271
    if (share->key_parts)
1869.1.5 by Brian Aker
getTable()
1272
      memcpy(getTable()->key_info[0].rec_per_key,
212.6.12 by Mats Kindahl
Removing redundant use of casts in MyISAM storage for memcmp(), memcpy(), memset(), and memmove().
1273
	     misam_info.rec_per_key,
1869.1.5 by Brian Aker
getTable()
1274
	     sizeof(getTable()->key_info[0].rec_per_key)*share->key_parts);
1685.2.2 by Brian Aker
Remove wait condition.
1275
    assert(share->getType() != message::Table::STANDARD);
1 by brian
clean slate
1276
1277
   /*
1278
     Set data_file_name and index_file_name to point at the symlink value
1279
     if table is symlinked (Ie;  Real name is not same as generated name)
1280
   */
1281
    data_file_name= index_file_name= 0;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
1282
    internal::fn_format(name_buff, file->filename, "", MI_NAME_DEXT,
1 by brian
clean slate
1283
              MY_APPEND_EXT | MY_UNPACK_FILENAME);
1284
    if (strcmp(name_buff, misam_info.data_file_name))
1285
      data_file_name=misam_info.data_file_name;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
1286
    internal::fn_format(name_buff, file->filename, "", MI_NAME_IEXT,
1 by brian
clean slate
1287
              MY_APPEND_EXT | MY_UNPACK_FILENAME);
1288
    if (strcmp(name_buff, misam_info.index_file_name))
1289
      index_file_name=misam_info.index_file_name;
1290
  }
1291
  if (flag & HA_STATUS_ERRKEY)
1292
  {
1293
    errkey  = misam_info.errkey;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
1294
    internal::my_store_ptr(dup_ref, ref_length, misam_info.dupp_key_pos);
1 by brian
clean slate
1295
  }
1296
  if (flag & HA_STATUS_TIME)
1297
    stats.update_time = misam_info.update_time;
1298
  if (flag & HA_STATUS_AUTO)
1299
    stats.auto_increment_value= misam_info.auto_increment;
1300
1301
  return 0;
1302
}
1303
1304
1305
int ha_myisam::extra(enum ha_extra_function operation)
1306
{
1307
  return mi_extra(file, operation, 0);
1308
}
1309
1310
int ha_myisam::reset(void)
1311
{
1312
  return mi_reset(file);
1313
}
1314
1315
/* To be used with WRITE_CACHE and EXTRA_CACHE */
1316
61 by Brian Aker
Conversion of handler type.
1317
int ha_myisam::extra_opt(enum ha_extra_function operation, uint32_t cache_size)
1 by brian
clean slate
1318
{
1319
  return mi_extra(file, operation, (void*) &cache_size);
1320
}
1321
1322
int ha_myisam::delete_all_rows()
1323
{
1324
  return mi_delete_all_rows(file);
1325
}
1326
1372.1.4 by Brian Aker
Update to remove cache in enginges for per session (which also means... no
1327
int MyisamEngine::doDropTable(Session &session,
1618.1.1 by Brian Aker
Modify TableIdentifier to be const
1328
                              const TableIdentifier &identifier)
1 by brian
clean slate
1329
{
1372.1.4 by Brian Aker
Update to remove cache in enginges for per session (which also means... no
1330
  session.removeTableMessage(identifier);
1183.1.30 by Brian Aker
Added engine internal locks (instead of the session based....)
1331
1358.1.9 by Brian Aker
Update for std::string
1332
  return mi_delete_table(identifier.getPath().c_str());
1 by brian
clean slate
1333
}
1334
1335
520.1.22 by Brian Aker
Second pass of thd cleanup
1336
int ha_myisam::external_lock(Session *session, int lock_type)
1 by brian
clean slate
1337
{
916.1.35 by Padraig O'Sullivan
Removing the last of LIST from the MyISAM storage engine.
1338
  file->in_use= session;
1869.1.5 by Brian Aker
getTable()
1339
  return mi_lock_database(file, !getTable()->getShare()->getType() ?
1 by brian
clean slate
1340
			  lock_type : ((lock_type == F_UNLCK) ?
1341
				       F_UNLCK : F_EXTRA_LCK));
1342
}
1343
1413 by Brian Aker
doCreateTable() was still taking a pointer instead of a session reference.
1344
int MyisamEngine::doCreateTable(Session &session,
1183.1.18 by Brian Aker
Fixed references to doCreateTable()
1345
                                Table& table_arg,
1618.1.1 by Brian Aker
Modify TableIdentifier to be const
1346
                                const TableIdentifier &identifier,
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
1347
                                message::Table& create_proto)
1 by brian
clean slate
1348
{
1349
  int error;
779.3.10 by Monty Taylor
Turned on -Wshadow.
1350
  uint32_t create_flags= 0, create_records;
1 by brian
clean slate
1351
  char buff[FN_REFLEN];
1352
  MI_KEYDEF *keydef;
1353
  MI_COLUMNDEF *recinfo;
1354
  MI_CREATE_INFO create_info;
1532.1.15 by Brian Aker
Partial encapsulation of TableShare from Table.
1355
  TableShare *share= table_arg.getMutableShare();
482 by Brian Aker
Remove uint.
1356
  uint32_t options= share->db_options_in_use;
1183.1.18 by Brian Aker
Fixed references to doCreateTable()
1357
  if ((error= table2myisam(&table_arg, &keydef, &recinfo, &create_records)))
971.6.11 by Eric Day
Removed purecov messages.
1358
    return(error);
212.6.12 by Mats Kindahl
Removing redundant use of casts in MyISAM storage for memcmp(), memcpy(), memset(), and memmove().
1359
  memset(&create_info, 0, sizeof(create_info));
1183.1.18 by Brian Aker
Fixed references to doCreateTable()
1360
  create_info.max_rows= create_proto.options().max_rows();
1361
  create_info.reloc_rows= create_proto.options().min_rows();
1 by brian
clean slate
1362
  create_info.with_auto_increment= share->next_number_key_offset == 0;
1222.1.5 by Brian Aker
Remove dependency in engines for auto_increment primer to be passed in by
1363
  create_info.auto_increment= (create_proto.options().has_auto_increment_value() ?
1364
                               create_proto.options().auto_increment_value() -1 :
1 by brian
clean slate
1365
                               (uint64_t) 0);
1183.1.18 by Brian Aker
Fixed references to doCreateTable()
1366
  create_info.data_file_length= (create_proto.options().max_rows() *
1367
                                 create_proto.options().avg_row_length());
1121.1.2 by Brian Aker
Fix storing data/index path
1368
  create_info.data_file_name= NULL;
1369
  create_info.index_file_name=  NULL;
1 by brian
clean slate
1370
  create_info.language= share->table_charset->number;
1371
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
1372
  if (create_proto.type() == message::Table::TEMPORARY)
1 by brian
clean slate
1373
    create_flags|= HA_CREATE_TMP_TABLE;
1374
  if (options & HA_OPTION_PACK_RECORD)
1375
    create_flags|= HA_PACK_RECORD;
1376
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
1377
  /* TODO: Check that the following internal::fn_format is really needed */
1358.1.9 by Brian Aker
Update for std::string
1378
  error= mi_create(internal::fn_format(buff, identifier.getPath().c_str(), "", "",
1379
                                       MY_UNPACK_FILENAME|MY_APPEND_EXT),
1578.2.10 by Brian Aker
keys and fields partial encapsulation.
1380
                   share->sizeKeys(), keydef,
779.3.10 by Monty Taylor
Turned on -Wshadow.
1381
                   create_records, recinfo,
1 by brian
clean slate
1382
                   0, (MI_UNIQUEDEF*) 0,
1383
                   &create_info, create_flags);
481 by Brian Aker
Remove all of uchar.
1384
  free((unsigned char*) recinfo);
1183.1.21 by Brian Aker
Fixed temp engines to no longer write out DFE. I have two designs right now
1385
1413 by Brian Aker
doCreateTable() was still taking a pointer instead of a session reference.
1386
  session.storeTableMessage(identifier, create_proto);
1183.1.21 by Brian Aker
Fixed temp engines to no longer write out DFE. I have two designs right now
1387
1388
  return error;
1 by brian
clean slate
1389
}
1390
1391
1618.1.1 by Brian Aker
Modify TableIdentifier to be const
1392
int MyisamEngine::doRenameTable(Session &session, const TableIdentifier &from, const TableIdentifier &to)
1 by brian
clean slate
1393
{
1395.1.1 by Brian Aker
Fixes for alter table to make sure that the proto on disk is valid.
1394
  session.renameTableMessage(from, to);
1391 by Brian Aker
Updating interface.
1395
1390 by Brian Aker
Update interface to use Identifiers directly.
1396
  return mi_rename(from.getPath().c_str(), to.getPath().c_str());
1 by brian
clean slate
1397
}
1398
1399
779.1.27 by Monty Taylor
Got rid of __attribute__((unused)) and the like from the .cc files.
1400
void ha_myisam::get_auto_increment(uint64_t ,
1401
                                   uint64_t ,
1402
                                   uint64_t ,
1 by brian
clean slate
1403
                                   uint64_t *first_value,
1404
                                   uint64_t *nb_reserved_values)
1405
{
1406
  uint64_t nr;
1407
  int error;
481 by Brian Aker
Remove all of uchar.
1408
  unsigned char key[MI_MAX_KEY_LENGTH];
1 by brian
clean slate
1409
1869.1.5 by Brian Aker
getTable()
1410
  if (!getTable()->getShare()->next_number_key_offset)
1 by brian
clean slate
1411
  {						// Autoincrement at key-start
1412
    ha_myisam::info(HA_STATUS_AUTO);
1413
    *first_value= stats.auto_increment_value;
1414
    /* MyISAM has only table-level lock, so reserves to +inf */
163 by Brian Aker
Merge Monty's code.
1415
    *nb_reserved_values= UINT64_MAX;
1 by brian
clean slate
1416
    return;
1417
  }
1418
1419
  /* it's safe to call the following if bulk_insert isn't on */
1869.1.5 by Brian Aker
getTable()
1420
  mi_flush_bulk_insert(file, getTable()->getShare()->next_number_index);
1 by brian
clean slate
1421
1422
  (void) extra(HA_EXTRA_KEYREAD);
1869.1.5 by Brian Aker
getTable()
1423
  key_copy(key, getTable()->getInsertRecord(),
1424
           &getTable()->key_info[getTable()->getShare()->next_number_index],
1425
           getTable()->getShare()->next_number_key_offset);
1426
  error= mi_rkey(file, getTable()->getUpdateRecord(), (int) getTable()->getShare()->next_number_index,
1427
                 key, make_prev_keypart_map(getTable()->getShare()->next_number_keypart),
1 by brian
clean slate
1428
                 HA_READ_PREFIX_LAST);
1429
  if (error)
1430
    nr= 1;
1431
  else
1432
  {
1672.3.6 by Brian Aker
First pass in encapsulating row
1433
    /* Get data from getUpdateRecord() */
1869.1.5 by Brian Aker
getTable()
1434
    nr= ((uint64_t) getTable()->next_number_field->
1435
         val_int_offset(getTable()->getShare()->rec_buff_length)+1);
1 by brian
clean slate
1436
  }
1437
  extra(HA_EXTRA_NO_KEYREAD);
1438
  *first_value= nr;
1439
  /*
1440
    MySQL needs to call us for next row: assume we are inserting ("a",null)
1441
    here, we return 3, and next this statement will want to insert ("b",null):
1442
    there is no reason why ("b",3+1) would be the good row to insert: maybe it
1443
    already exists, maybe 3+1 is too large...
1444
  */
1445
  *nb_reserved_values= 1;
1446
}
1447
1448
1449
/*
1450
  Find out how many rows there is in the given range
1451
1452
  SYNOPSIS
1453
    records_in_range()
1454
    inx			Index to use
1455
    min_key		Start of range.  Null pointer if from first key
1456
    max_key		End of range. Null pointer if to last key
1457
1458
  NOTES
1459
    min_key.flag can have one of the following values:
1460
      HA_READ_KEY_EXACT		Include the key in the range
1461
      HA_READ_AFTER_KEY		Don't include key in range
1462
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1463
    max_key.flag can have one of the following values:
1 by brian
clean slate
1464
      HA_READ_BEFORE_KEY	Don't include key in range
1465
      HA_READ_AFTER_KEY		Include all 'end_key' values in the range
1466
1467
  RETURN
1468
   HA_POS_ERROR		Something is wrong with the index tree.
1469
   0			There is no matching keys in the given range
1470
   number > 0		There is approximately 'number' matching rows in
1471
			the range.
1472
*/
1473
482 by Brian Aker
Remove uint.
1474
ha_rows ha_myisam::records_in_range(uint32_t inx, key_range *min_key,
1 by brian
clean slate
1475
                                    key_range *max_key)
1476
{
1477
  return (ha_rows) mi_records_in_range(file, (int) inx, min_key, max_key);
1478
}
1479
1480
482 by Brian Aker
Remove uint.
1481
uint32_t ha_myisam::checksum() const
1 by brian
clean slate
1482
{
1483
  return (uint)file->state->checksum;
1484
}
1485
971.1.51 by Monty Taylor
New-style plugin registration now works.
1486
static MyisamEngine *engine= NULL;
1487
1530.2.6 by Monty Taylor
Moved plugin::Context to module::Context.
1488
static int myisam_init(module::Context &context)
1677.2.1 by Vijay Samuel
Merge refactored command line for myisam
1489
{ 
1490
  const module::option_map &vm= context.getOptions();
1491
1492
  if (vm.count("max-sort-file-size"))
1493
  {
1494
    if (max_sort_file_size > UINT64_MAX)
1495
    {
1496
      errmsg_printf(ERRMSG_LVL_ERROR, _("Invalid value for max-sort-file-size\n"));
1497
      exit(-1);
1498
    }
1499
  }
1500
1501
  if (vm.count("sort-buffer-size"))
1502
  {
1503
    if (sort_buffer_size < 1024 || sort_buffer_size > SIZE_MAX)
1504
    {
1505
      errmsg_printf(ERRMSG_LVL_ERROR, _("Invalid value for sort-buffer-size\n"));
1506
      exit(-1);
1507
    }
1508
  }
1509
971.1.51 by Monty Taylor
New-style plugin registration now works.
1510
  engine= new MyisamEngine(engine_name);
1324.2.2 by Monty Taylor
Use the plugin::Context everywhere.
1511
  context.add(engine);
971.1.51 by Monty Taylor
New-style plugin registration now works.
1512
1513
  return 0;
1514
}
1515
1 by brian
clean slate
1516
788 by Brian Aker
Move MyISAM bits to myisam plugin
1517
static DRIZZLE_SYSVAR_ULONGLONG(max_sort_file_size, max_sort_file_size,
789 by Brian Aker
MyISAM fix.
1518
                                PLUGIN_VAR_RQCMDARG,
1519
                                N_("Don't use the fast sort index method to created index if the temporary file would get bigger than this."),
1520
                                NULL, NULL, INT32_MAX, 0, UINT64_MAX, 0);
1521
1522
static DRIZZLE_SYSVAR_ULONGLONG(sort_buffer_size, sort_buffer_size,
1523
                                PLUGIN_VAR_RQCMDARG,
1524
                                N_("The buffer that is allocated when sorting the index when doing a REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE."),
779.3.20 by Monty Taylor
Fixed Solaris warnings for MyISAM.
1525
                                NULL, NULL, 8192*1024, 1024, SIZE_MAX, 0);
788 by Brian Aker
Move MyISAM bits to myisam plugin
1526
1677.2.1 by Vijay Samuel
Merge refactored command line for myisam
1527
static void init_options(drizzled::module::option_context &context)
1528
{
1529
  context("max-sort-file-size",
1682.2.5 by Monty Taylor
Fixed a typing issue.
1530
          po::value<uint64_t>(&max_sort_file_size)->default_value(INT32_MAX),
1677.2.1 by Vijay Samuel
Merge refactored command line for myisam
1531
          N_("Don't use the fast sort index method to created index if the temporary file would get bigger than this."));
1532
  context("sort-buffer-size",
1682.2.5 by Monty Taylor
Fixed a typing issue.
1533
          po::value<uint64_t>(&sort_buffer_size)->default_value(8192*1024),
1677.2.1 by Vijay Samuel
Merge refactored command line for myisam
1534
          N_("The buffer that is allocated when sorting the index when doing a REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE."));
1535
}
1536
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
1537
static drizzle_sys_var* sys_variables[]= {
788 by Brian Aker
Move MyISAM bits to myisam plugin
1538
  DRIZZLE_SYSVAR(max_sort_file_size),
789 by Brian Aker
MyISAM fix.
1539
  DRIZZLE_SYSVAR(sort_buffer_size),
753 by Brian Aker
Converted myisam_repair_threads to being in module for MyISAM
1540
  NULL
1541
};
1542
1 by brian
clean slate
1543
1228.1.5 by Monty Taylor
Merged in some naming things.
1544
DRIZZLE_DECLARE_PLUGIN
1 by brian
clean slate
1545
{
1241.10.2 by Monty Taylor
Added support for embedding the drizzle version number in the plugin file.
1546
  DRIZZLE_VERSION_ID,
1 by brian
clean slate
1547
  "MyISAM",
1689.2.21 by Brian Aker
Remove outward sign of Key Cache
1548
  "2.0",
1 by brian
clean slate
1549
  "MySQL AB",
1550
  "Default engine as of MySQL 3.23 with great performance",
1551
  PLUGIN_LICENSE_GPL,
1552
  myisam_init, /* Plugin Init */
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
1553
  sys_variables,           /* system variables */
1677.2.1 by Vijay Samuel
Merge refactored command line for myisam
1554
  init_options                        /* config options                  */
1 by brian
clean slate
1555
}
1228.1.5 by Monty Taylor
Merged in some naming things.
1556
DRIZZLE_DECLARE_PLUGIN_END;