~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_rnext.c

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2000-2004 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
#include "myisamdef.h"
 
17
 
 
18
#include "rt_index.h"
 
19
 
 
20
        /*
 
21
           Read next row with the same key as previous read
 
22
           One may have done a write, update or delete of the previous row.
 
23
           NOTE! Even if one changes the previous row, the next read is done
 
24
           based on the position of the last used key!
 
25
        */
 
26
 
 
27
int mi_rnext(MI_INFO *info, uchar *buf, int inx)
 
28
{
 
29
  int error,changed;
 
30
  uint flag;
 
31
  int res= 0;
 
32
  DBUG_ENTER("mi_rnext");
 
33
 
 
34
  if ((inx = _mi_check_index(info,inx)) < 0)
 
35
    DBUG_RETURN(my_errno);
 
36
  flag=SEARCH_BIGGER;                           /* Read next */
 
37
  if (info->lastpos == HA_OFFSET_ERROR && info->update & HA_STATE_PREV_FOUND)
 
38
    flag=0;                                     /* Read first */
 
39
 
 
40
  if (fast_mi_readinfo(info))
 
41
    DBUG_RETURN(my_errno);
 
42
  if (info->s->concurrent_insert)
 
43
    rw_rdlock(&info->s->key_root_lock[inx]);
 
44
  changed=_mi_test_if_changed(info);
 
45
  if (!flag)
 
46
  {
 
47
    switch(info->s->keyinfo[inx].key_alg){
 
48
#ifdef HAVE_RTREE_KEYS
 
49
    case HA_KEY_ALG_RTREE:
 
50
      error=rtree_get_first(info,inx,info->lastkey_length);
 
51
      break;
 
52
#endif
 
53
    case HA_KEY_ALG_BTREE:
 
54
    default:
 
55
      error=_mi_search_first(info,info->s->keyinfo+inx,
 
56
                           info->s->state.key_root[inx]);
 
57
      break;
 
58
    }
 
59
  }
 
60
  else
 
61
  {
 
62
    switch (info->s->keyinfo[inx].key_alg) {
 
63
#ifdef HAVE_RTREE_KEYS
 
64
    case HA_KEY_ALG_RTREE:
 
65
      /*
 
66
        Note that rtree doesn't support that the table
 
67
        may be changed since last call, so we do need
 
68
        to skip rows inserted by other threads like in btree
 
69
      */
 
70
      error= rtree_get_next(info,inx,info->lastkey_length);
 
71
      break;
 
72
#endif
 
73
    case HA_KEY_ALG_BTREE:
 
74
    default:
 
75
      if (!changed)
 
76
        error= _mi_search_next(info,info->s->keyinfo+inx,info->lastkey,
 
77
                               info->lastkey_length,flag,
 
78
                               info->s->state.key_root[inx]);
 
79
      else
 
80
        error= _mi_search(info,info->s->keyinfo+inx,info->lastkey,
 
81
                          USE_WHOLE_KEY,flag, info->s->state.key_root[inx]);
 
82
    }
 
83
  }
 
84
 
 
85
  if (!error)
 
86
  {
 
87
    while ((info->s->concurrent_insert &&
 
88
            info->lastpos >= info->state->data_file_length) ||
 
89
           (info->index_cond_func &&
 
90
           !(res= mi_check_index_cond(info, inx, buf))))
 
91
    {
 
92
      /* Skip rows inserted by other threads since we got a lock */
 
93
      if  ((error=_mi_search_next(info,info->s->keyinfo+inx,
 
94
                                  info->lastkey,
 
95
                                  info->lastkey_length,
 
96
                                  SEARCH_BIGGER,
 
97
                                  info->s->state.key_root[inx])))
 
98
        break;
 
99
    }
 
100
    if (!error && res == 2)
 
101
    {
 
102
      if (info->s->concurrent_insert)
 
103
        rw_unlock(&info->s->key_root_lock[inx]);
 
104
      info->lastpos= HA_OFFSET_ERROR;
 
105
      DBUG_RETURN(my_errno= HA_ERR_END_OF_FILE);
 
106
    }
 
107
  }
 
108
  
 
109
  if (info->s->concurrent_insert)
 
110
    rw_unlock(&info->s->key_root_lock[inx]);
 
111
 
 
112
        /* Don't clear if database-changed */
 
113
  info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
 
114
  info->update|= HA_STATE_NEXT_FOUND;
 
115
 
 
116
  if (error)
 
117
  {
 
118
    if (my_errno == HA_ERR_KEY_NOT_FOUND)
 
119
      my_errno=HA_ERR_END_OF_FILE;
 
120
  }
 
121
  else if (!buf)
 
122
  {
 
123
    DBUG_RETURN(info->lastpos==HA_OFFSET_ERROR ? my_errno : 0);
 
124
  }
 
125
  else if (!(*info->read_record)(info,info->lastpos,buf))
 
126
  {
 
127
    info->update|= HA_STATE_AKTIV;              /* Record is read */
 
128
    DBUG_RETURN(0);
 
129
  }
 
130
  DBUG_PRINT("error",("Got error: %d,  errno: %d",error, my_errno));
 
131
  DBUG_RETURN(my_errno);
 
132
} /* mi_rnext */