~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_rnext.c

  • Committer: Monty Taylor
  • Date: 2008-09-16 00:00:48 UTC
  • mto: This revision was merged to the branch mainline in revision 391.
  • Revision ID: monty@inaugust.com-20080916000048-3rvrv3gv9l0ad3gs
Fixed copyright headers in drizzled/

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
 
 
16
 
#include "heap_priv.h"
17
 
 
18
 
#include <string.h>
19
 
 
20
 
using namespace drizzled;
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
15
 
 
16
#include "heapdef.h"
21
17
 
22
18
/* Read next record with the same key */
23
19
 
24
 
int heap_rnext(HP_INFO *info, unsigned char *record)
 
20
int heap_rnext(HP_INFO *info, uchar *record)
25
21
{
26
 
  unsigned char *pos;
27
 
  HP_SHARE *share=info->getShare();
 
22
  uchar *pos;
 
23
  HP_SHARE *share=info->s;
28
24
  HP_KEYDEF *keyinfo;
29
 
 
 
25
  
30
26
  if (info->lastinx < 0)
31
 
    return(errno=HA_ERR_WRONG_INDEX);
 
27
    return(my_errno=HA_ERR_WRONG_INDEX);
32
28
 
33
29
  keyinfo = share->keydef + info->lastinx;
 
30
  if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
 
31
  {
 
32
    heap_rb_param custom_arg;
 
33
 
 
34
    if (info->last_pos)
 
35
    {
 
36
      /*
 
37
        We enter this branch for non-DELETE queries after heap_rkey()
 
38
        or heap_rfirst(). As last key position (info->last_pos) is available,
 
39
        we only need to climb the tree using tree_search_next().
 
40
      */
 
41
      pos = tree_search_next(&keyinfo->rb_tree, &info->last_pos,
 
42
                             offsetof(TREE_ELEMENT, left),
 
43
                             offsetof(TREE_ELEMENT, right));
 
44
    }
 
45
    else if (!info->lastkey_len)
 
46
    {
 
47
      /*
 
48
        We enter this branch only for DELETE queries after heap_rfirst(). E.g.
 
49
        DELETE FROM t1 WHERE a<10. As last key position is not available
 
50
        (last key is removed by heap_delete()), we must restart search as it
 
51
        is done in heap_rfirst().
 
52
 
 
53
        It should be safe to handle this situation without this branch. That is
 
54
        branch below should find smallest element in a tree as lastkey_len is
 
55
        zero. tree_search_edge() is a kind of optimisation here as it should be
 
56
        faster than tree_search_key().
 
57
      */
 
58
      pos= tree_search_edge(&keyinfo->rb_tree, info->parents,
 
59
                            &info->last_pos, offsetof(TREE_ELEMENT, left));
 
60
    }
 
61
    else
 
62
    {
 
63
      /*
 
64
        We enter this branch only for DELETE queries after heap_rkey(). E.g.
 
65
        DELETE FROM t1 WHERE a=10. As last key position is not available
 
66
        (last key is removed by heap_delete()), we must restart search as it
 
67
        is done in heap_rkey().
 
68
      */
 
69
      custom_arg.keyseg = keyinfo->seg;
 
70
      custom_arg.key_length = info->lastkey_len;
 
71
      custom_arg.search_flag = SEARCH_SAME | SEARCH_FIND;
 
72
      pos = tree_search_key(&keyinfo->rb_tree, info->lastkey, info->parents, 
 
73
                           &info->last_pos, info->last_find_flag, &custom_arg);
 
74
    }
 
75
    if (pos)
 
76
    {
 
77
      memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos), 
 
78
             sizeof(uchar*));
 
79
      info->current_ptr = pos;
 
80
    }
 
81
    else
 
82
    {
 
83
      my_errno = HA_ERR_KEY_NOT_FOUND;
 
84
    }
 
85
  }
 
86
  else
34
87
  {
35
88
    if (info->current_hash_ptr)
36
 
      pos= hp_search_next(info, keyinfo, &info->lastkey[0],
 
89
      pos= hp_search_next(info, keyinfo, info->lastkey,
37
90
                           info->current_hash_ptr);
38
91
    else
39
92
    {
40
93
      if (!info->current_ptr && (info->update & HA_STATE_NEXT_FOUND))
41
94
      {
42
95
        pos=0;                                  /* Read next after last */
43
 
        errno=HA_ERR_KEY_NOT_FOUND;
 
96
        my_errno=HA_ERR_KEY_NOT_FOUND;
44
97
      }
45
98
      else if (!info->current_ptr)              /* Deleted or first call */
46
 
        pos= hp_search(info, keyinfo, &info->lastkey[0], 0);
 
99
        pos= hp_search(info, keyinfo, info->lastkey, 0);
47
100
      else
48
 
        pos= hp_search(info, keyinfo, &info->lastkey[0], 1);
 
101
        pos= hp_search(info, keyinfo, info->lastkey, 1);
49
102
    }
50
103
  }
51
104
  if (!pos)
52
105
  {
53
106
    info->update=HA_STATE_NEXT_FOUND;           /* For heap_rprev */
54
 
    if (errno == HA_ERR_KEY_NOT_FOUND)
55
 
      errno=HA_ERR_END_OF_FILE;
56
 
    return(errno);
 
107
    if (my_errno == HA_ERR_KEY_NOT_FOUND)
 
108
      my_errno=HA_ERR_END_OF_FILE;
 
109
    return(my_errno);
57
110
  }
58
111
  hp_extract_record(share, record, pos);
59
112
  info->update=HA_STATE_AKTIV | HA_STATE_NEXT_FOUND;