~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_panic.cc

  • Committer: Brian Aker
  • Date: 2009-12-29 01:38:38 UTC
  • mfrom: (1251.1.1 drizzle)
  • Revision ID: brian@gaz-20091229013838-03kb2z5xbqw03ddt
Merge of Diego fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#include "myisamdef.h"
 
16
#include "myisam_priv.h"
 
17
 
 
18
using namespace std;
17
19
 
18
20
        /* if flag == HA_PANIC_CLOSE then all misam files are closed */
19
21
        /* if flag == HA_PANIC_WRITE then all misam files are unlocked and
26
28
int mi_panic(enum ha_panic_function flag)
27
29
{
28
30
  int error=0;
29
 
  LIST *list_element,*next_open;
30
31
  MI_INFO *info;
31
32
 
32
33
  pthread_mutex_lock(&THR_LOCK_myisam);
33
 
  for (list_element=myisam_open_list ; list_element ; list_element=next_open)
 
34
  list<MI_INFO *>::iterator it= myisam_open_list.begin();
 
35
  while (it != myisam_open_list.end())
34
36
  {
35
 
    next_open=list_element->next;               /* Save if close */
36
 
    info=(MI_INFO*) list_element->data;
 
37
    info= *it;
37
38
    switch (flag) {
38
39
    case HA_PANIC_CLOSE:
39
40
      pthread_mutex_unlock(&THR_LOCK_myisam);   /* Not exactly right... */
40
41
      if (mi_close(info))
41
 
        error=my_errno;
 
42
        error=errno;
42
43
      pthread_mutex_lock(&THR_LOCK_myisam);
43
44
      break;
44
45
    case HA_PANIC_WRITE:                /* Do this to free databases */
47
48
        break;
48
49
#endif
49
50
      if (flush_key_blocks(info->s->key_cache, info->s->kfile, FLUSH_RELEASE))
50
 
        error=my_errno;
 
51
        error=errno;
51
52
      if (info->opt_flag & WRITE_CACHE_USED)
52
53
        if (flush_io_cache(&info->rec_cache))
53
 
          error=my_errno;
 
54
          error=errno;
54
55
      if (info->opt_flag & READ_CACHE_USED)
55
56
      {
56
57
        if (flush_io_cache(&info->rec_cache))
57
 
          error=my_errno;
 
58
          error=errno;
58
59
        reinit_io_cache(&info->rec_cache,READ_CACHE,0,
59
60
                       (bool) (info->lock_type != F_UNLCK),1);
60
61
      }
62
63
      {
63
64
        info->was_locked=info->lock_type;
64
65
        if (mi_lock_database(info,F_UNLCK))
65
 
          error=my_errno;
 
66
          error=errno;
66
67
      }
67
68
#ifdef CANT_OPEN_FILES_TWICE
68
69
      if (info->s->kfile >= 0 && my_close(info->s->kfile,MYF(0)))
69
 
        error = my_errno;
 
70
        error = errno;
70
71
      if (info->dfile >= 0 && my_close(info->dfile,MYF(0)))
71
 
        error = my_errno;
 
72
        error = errno;
72
73
      info->s->kfile=info->dfile= -1;   /* Files aren't open anymore */
73
74
      break;
74
75
#endif
80
81
          if ((info->s->kfile= my_open(fn_format(name_buff,info->filename,"",
81
82
                                              N_NAME_IEXT,4),info->mode,
82
83
                                    MYF(MY_WME))) < 0)
83
 
            error = my_errno;
 
84
            error = errno;
84
85
        if (info->dfile < 0)
85
86
        {
86
87
          if ((info->dfile= my_open(fn_format(name_buff,info->filename,"",
87
88
                                              N_NAME_DEXT,4),info->mode,
88
89
                                    MYF(MY_WME))) < 0)
89
 
            error = my_errno;
 
90
            error = errno;
90
91
          info->rec_cache.file=info->dfile;
91
92
        }
92
93
      }
94
95
      if (info->was_locked)
95
96
      {
96
97
        if (mi_lock_database(info, info->was_locked))
97
 
          error=my_errno;
 
98
          error=errno;
98
99
        info->was_locked=0;
99
100
      }
100
101
      break;
101
102
    }
 
103
    ++it;
102
104
  }
103
105
  pthread_mutex_unlock(&THR_LOCK_myisam);
104
106
  if (!error)
105
107
    return(0);
106
 
  return(my_errno=error);
 
108
  return(errno=error);
107
109
} /* mi_panic */