~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to storage/heap/hp_rprev.c

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2000-2002 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA */
 
15
 
 
16
#include "heapdef.h"
 
17
 
 
18
        /* Read prev record for key */
 
19
 
 
20
 
 
21
int heap_rprev(HP_INFO *info, uchar *record)
 
22
{
 
23
  uchar *pos;
 
24
  HP_SHARE *share=info->s;
 
25
  HP_KEYDEF *keyinfo;
 
26
  DBUG_ENTER("heap_rprev");
 
27
 
 
28
  if (info->lastinx < 0)
 
29
    DBUG_RETURN(my_errno=HA_ERR_WRONG_INDEX);
 
30
  keyinfo = share->keydef + info->lastinx;
 
31
  if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
 
32
  {
 
33
    heap_rb_param custom_arg;
 
34
 
 
35
    /* If no active record and last was not deleted */
 
36
    if (!(info->update & (HA_STATE_AKTIV | HA_STATE_NO_KEY |
 
37
                          HA_STATE_DELETED)))
 
38
    {
 
39
      if (info->update & HA_STATE_PREV_FOUND)
 
40
        pos= 0;                            /* Can't search before first row */
 
41
      else
 
42
      {
 
43
        /* Last was 'next' after last record; search after last record */
 
44
        pos= tree_search_edge(&keyinfo->rb_tree, info->parents,
 
45
                              &info->last_pos, offsetof(TREE_ELEMENT, right));
 
46
      }
 
47
    }
 
48
    else if (info->last_pos)
 
49
      pos = tree_search_next(&keyinfo->rb_tree, &info->last_pos,
 
50
                             offsetof(TREE_ELEMENT, right),
 
51
                             offsetof(TREE_ELEMENT, left));
 
52
    else
 
53
    {
 
54
      custom_arg.keyseg = keyinfo->seg;
 
55
      custom_arg.key_length = keyinfo->length;
 
56
      custom_arg.search_flag = SEARCH_SAME;
 
57
      info->last_find_flag= HA_READ_KEY_OR_PREV;
 
58
      pos = tree_search_key(&keyinfo->rb_tree, info->lastkey, info->parents, 
 
59
                           &info->last_pos, info->last_find_flag, &custom_arg);
 
60
    }
 
61
    if (pos)
 
62
    {
 
63
      memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos),
 
64
             sizeof(uchar*));
 
65
      info->current_ptr = pos;
 
66
    }
 
67
    else
 
68
    {
 
69
      my_errno = HA_ERR_KEY_NOT_FOUND;
 
70
    }
 
71
  }
 
72
  else
 
73
  {
 
74
    if (info->current_ptr || (info->update & HA_STATE_NEXT_FOUND))
 
75
    {
 
76
      if ((info->update & HA_STATE_DELETED))
 
77
        pos= hp_search(info, share->keydef + info->lastinx, info->lastkey, 3);
 
78
      else
 
79
        pos= hp_search(info, share->keydef + info->lastinx, info->lastkey, 2);
 
80
    }
 
81
    else
 
82
    {
 
83
      pos=0;                                    /* Read next after last */
 
84
      my_errno=HA_ERR_KEY_NOT_FOUND;
 
85
    }
 
86
  }
 
87
  if (!pos)
 
88
  {
 
89
    info->update=HA_STATE_PREV_FOUND;           /* For heap_rprev */
 
90
    if (my_errno == HA_ERR_KEY_NOT_FOUND)
 
91
      my_errno=HA_ERR_END_OF_FILE;
 
92
    DBUG_RETURN(my_errno);
 
93
  }
 
94
  memcpy(record,pos,(size_t) share->reclength);
 
95
  info->update=HA_STATE_AKTIV | HA_STATE_PREV_FOUND;
 
96
  DBUG_RETURN(0);
 
97
}