~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/information_engine/information_share.h

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2009 Sun Microsystems
 
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
 
 
17
#ifndef PLUGIN_INFORMATION_ENGINE_INFORMATION_SHARE_H
 
18
#define PLUGIN_INFORMATION_ENGINE_INFORMATION_SHARE_H
 
19
 
 
20
#include <drizzled/server_includes.h>
 
21
#include <string>
 
22
 
 
23
/*
 
24
  Shared class for correct LOCK operation
 
25
  TODO -> Fix to never remove/etc. We could generate all of these in startup if we wanted to.
 
26
  Tracking count? I'm not sure that is needed at all. We could possibly make this a member of
 
27
  engine as well (should we just hide the share detail?)
 
28
*/
 
29
 
 
30
class InformationCursor;
 
31
 
 
32
class InformationShare {
 
33
  uint32_t count;
 
34
  std::string name;
 
35
 
 
36
public:
 
37
  InformationShare(const char *arg) :
 
38
    count(1),
 
39
    name(arg)
 
40
  {
 
41
    thr_lock_init(&lock);
 
42
  };
 
43
  ~InformationShare() 
 
44
  {
 
45
    thr_lock_delete(&lock);
 
46
  }
 
47
 
 
48
  void inc(void) { count++; }
 
49
  uint32_t dec(void) { return --count; }
 
50
 
 
51
  static InformationShare *get(const char *table_name);
 
52
  static void free(InformationShare *share);
 
53
  static void start(void);
 
54
  static void stop(void);
 
55
  THR_LOCK lock;
 
56
};
 
57
 
 
58
#endif /* PLUGIN_INFORMATION_ENGINE_INFORMATION_SHARE_H */