~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/hp_update.cc

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-13 01:03:01 UTC
  • mto: (1126.9.2 captain-20090915-01)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: osullivan.padraig@gmail.com-20090913010301-tcvvezipx1124acy
Added calls to the dtrace delete begin/end probes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2000-2002, 2004-2005 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
14
 
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
 
 
16
 
/* Update current record in heap-database */
17
 
 
18
 
#include "heap_priv.h"
19
 
 
20
 
using namespace drizzled;
21
 
 
22
 
int heap_update(HP_INFO *info, const unsigned char *old_record, const unsigned char *new_record)
23
 
{
24
 
  HP_KEYDEF *keydef, *end, *p_lastinx;
25
 
  unsigned char *pos;
26
 
  bool auto_key_changed= 0;
27
 
  HP_SHARE *share= info->s;
28
 
  uint32_t old_length, new_length;
29
 
  uint32_t old_chunk_count, new_chunk_count;
30
 
 
31
 
  test_active(info);
32
 
  pos=info->current_ptr;
33
 
 
34
 
  if (info->opt_flag & READ_CHECK_USED && hp_rectest(info,old_record))
35
 
    return(errno);                              /* Record changed */
36
 
 
37
 
  old_length = hp_get_encoded_data_length(share, old_record, &old_chunk_count);
38
 
  new_length = hp_get_encoded_data_length(share, new_record, &new_chunk_count);
39
 
 
40
 
  if (new_chunk_count > old_chunk_count) {
41
 
    /* extend the old chunkset size as necessary, but do not shrink yet */
42
 
    if (hp_reallocate_chunkset(&share->recordspace, new_chunk_count, pos)) {
43
 
      return(errno);                          /* Out of memory or table space */
44
 
    }
45
 
  }
46
 
 
47
 
  if (--(share->records) < share->blength >> 1) share->blength>>= 1;
48
 
  share->changed=1;
49
 
 
50
 
  p_lastinx= share->keydef + info->lastinx;
51
 
  for (keydef= share->keydef, end= keydef + share->keys; keydef < end; keydef++)
52
 
  {
53
 
    if (hp_rec_key_cmp(keydef, old_record, new_record, 0))
54
 
    {
55
 
      if ((*keydef->delete_key)(info, keydef, old_record, pos, keydef == p_lastinx) ||
56
 
          (*keydef->write_key)(info, keydef, new_record, pos))
57
 
        goto err;
58
 
      if (share->auto_key == (uint) (keydef - share->keydef + 1))
59
 
        auto_key_changed= 1;
60
 
    }
61
 
  }
62
 
  hp_copy_record_data_to_chunkset(share, new_record, pos);
63
 
  if (++(share->records) == share->blength) share->blength+= share->blength;
64
 
 
65
 
  if (new_chunk_count < old_chunk_count) {
66
 
    /* Shrink the chunkset to its new size */
67
 
    hp_reallocate_chunkset(&share->recordspace, new_chunk_count, pos);
68
 
  }
69
 
 
70
 
  if (auto_key_changed)
71
 
    heap_update_auto_increment(info, new_record);
72
 
  return(0);
73
 
 
74
 
 err:
75
 
  if (errno == HA_ERR_FOUND_DUPP_KEY)
76
 
  {
77
 
    info->errkey = (int) (keydef - share->keydef);
78
 
    if (keydef->algorithm == HA_KEY_ALG_BTREE)
79
 
    {
80
 
      /* we don't need to delete non-inserted key from rb-tree */
81
 
      if ((*keydef->write_key)(info, keydef, old_record, pos))
82
 
      {
83
 
        if (++(share->records) == share->blength)
84
 
          share->blength+= share->blength;
85
 
        return(errno);
86
 
      }
87
 
      keydef--;
88
 
    }
89
 
    while (keydef >= share->keydef)
90
 
    {
91
 
      if (hp_rec_key_cmp(keydef, old_record, new_record, 0))
92
 
      {
93
 
        if ((*keydef->delete_key)(info, keydef, new_record, pos, 0) ||
94
 
            (*keydef->write_key)(info, keydef, old_record, pos))
95
 
          break;
96
 
      }
97
 
      keydef--;
98
 
    }
99
 
  }
100
 
 
101
 
  if (++(share->records) == share->blength)
102
 
    share->blength+= share->blength;
103
 
 
104
 
  if (new_chunk_count > old_chunk_count) {
105
 
    /* Shrink the chunkset to its original size */
106
 
    hp_reallocate_chunkset(&share->recordspace, old_chunk_count, pos);
107
 
  }
108
 
 
109
 
  return(errno);
110
 
} /* heap_update */