~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lock.h

  • Committer: Monty Taylor
  • Date: 2010-01-12 21:34:24 UTC
  • mto: This revision was merged to the branch mainline in revision 1268.
  • Revision ID: mordred@inaugust.com-20100112213424-6mslywtlca49mvnk
Updated to pandora-buld v0.94

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
20
20
#ifndef DRIZZLED_LOCK_H
21
21
#define DRIZZLED_LOCK_H
22
22
 
23
 
#include <vector>
24
 
#include <drizzled/thr_lock.h>
25
 
#include <drizzled/locking/global.h>
26
 
 
27
 
namespace drizzled
28
 
{
 
23
#include "drizzled/thr_lock.h"
29
24
 
30
25
class Session;
31
26
class Table;
32
27
class TableList;
33
 
 
34
 
class DrizzleLock
35
 
{
36
 
public:
37
 
  Table **getTable()
38
 
  {
39
 
    return &table[0];
40
 
  }
41
 
 
42
 
  THR_LOCK_DATA **getLocks()
43
 
  {
44
 
    return &locks[0];
45
 
  }
46
 
 
47
 
  size_t sizeTable() const
48
 
  {
49
 
    return table.size();
50
 
  }
51
 
 
52
 
  void resizeTable(size_t arg)
53
 
  {
54
 
    table.resize(arg);
55
 
  }
56
 
 
57
 
  size_t sizeLock() const
58
 
  {
59
 
    return lock_count;
60
 
  }
61
 
 
62
 
  void resetLock()
63
 
  {
64
 
    lock_count= 0;
65
 
  }
66
 
 
67
 
  void setLock(size_t arg)
68
 
  {
69
 
    lock_count= arg;
70
 
  }
71
 
 
72
 
  void reset(void);
73
 
  void unlock(uint32_t count);
74
 
 
75
 
  DrizzleLock(size_t table_count_arg)
76
 
  {
77
 
    table.resize(table_count_arg);
78
 
    lock_count= table_count_arg * 2;
79
 
    locks.resize(lock_count);
80
 
  }
81
 
 
82
 
private:
83
 
  uint32_t lock_count;
84
 
 
85
 
  std::vector<Table *> table;
86
 
  std::vector<THR_LOCK_DATA *> locks;
87
 
  std::vector<THR_LOCK_DATA *> copy_of;
88
 
};
89
 
 
90
 
/* lockTables() and open_table() flags bits */
 
28
typedef struct drizzled_lock_st DRIZZLE_LOCK;
 
29
 
 
30
DRIZZLE_LOCK *mysql_lock_tables(Session *session, Table **table, uint32_t count,
 
31
                                uint32_t flags, bool *need_reopen);
 
32
/* mysql_lock_tables() and open_table() flags bits */
91
33
#define DRIZZLE_LOCK_IGNORE_GLOBAL_READ_LOCK      0x0001
92
34
#define DRIZZLE_LOCK_IGNORE_FLUSH                 0x0002
93
35
#define DRIZZLE_LOCK_NOTIFY_IF_NEED_REOPEN        0x0004
94
36
#define DRIZZLE_OPEN_TEMPORARY_ONLY               0x0008
95
37
 
96
 
} /* namespace drizzled */
 
38
void mysql_unlock_tables(Session *session, DRIZZLE_LOCK *sql_lock);
 
39
void mysql_unlock_read_tables(Session *session, DRIZZLE_LOCK *sql_lock);
 
40
void mysql_unlock_some_tables(Session *session, Table **table, uint32_t count);
 
41
void mysql_lock_remove(Session *session, Table *table);
 
42
void mysql_lock_abort(Session *session, Table *table);
 
43
bool mysql_lock_abort_for_thread(Session *session, Table *table);
 
44
bool lock_global_read_lock(Session *session);
 
45
void unlock_global_read_lock(Session *session);
 
46
bool wait_if_global_read_lock(Session *session, bool abort_on_refresh,
 
47
                              bool is_not_commit);
 
48
void start_waiting_global_read_lock(Session *session);
 
49
bool make_global_read_lock_block_commit(Session *session);
 
50
bool set_protect_against_global_read_lock(void);
 
51
void unset_protect_against_global_read_lock(void);
 
52
void broadcast_refresh(void);
 
53
 
 
54
/* Lock based on name */
 
55
int lock_table_name(Session *session, TableList *table_list, bool check_in_use);
 
56
void unlock_table_name(TableList *table_list);
 
57
bool wait_for_locked_table_names(Session *session, TableList *table_list);
 
58
bool lock_table_names(Session *session, TableList *table_list);
 
59
void unlock_table_names(TableList *table_list, TableList *last_table);
 
60
bool lock_table_names_exclusively(Session *session, TableList *table_list);
97
61
 
98
62
#endif /* DRIZZLED_LOCK_H */