~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/events_ms.h

  • Committer: Brian Aker
  • Date: 2010-06-28 16:17:36 UTC
  • mfrom: (1637.4.1 drizzle)
  • Revision ID: brian@gaz-20100628161736-eormhb2mnd551i2h
MergeĀ unused

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
  *  Copyright (C) 2010 PrimeBase Technologies GmbH, Germany
3
 
 *
4
 
 *  This program is free software; you can redistribute it and/or modify
5
 
 *  it under the terms of the GNU General Public License as published by
6
 
 *  the Free Software Foundation; version 2 of the License.
7
 
 *
8
 
 *  This program is distributed in the hope that it will be useful,
9
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
 *  GNU General Public License for more details.
12
 
 *
13
 
 *  You should have received a copy of the GNU General Public License
14
 
 *  along with this program; if not, write to the Free Software
15
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
16
 
 *
17
 
 * Barry Leslie
18
 
 *
19
 
 * 2010-06-01
20
 
 */
21
 
 
22
 
#ifndef PLUGIN_PBMS_PEVENTS_MS_H
23
 
#define PLUGIN_PBMS_PEVENTS_MS_H
24
 
 
25
 
#include <drizzled/plugin/event_observer.h>
26
 
#include "parameters_ms.h"
27
 
 
28
 
namespace drizzled
29
 
{
30
 
 
31
 
namespace plugin
32
 
{
33
 
class PBMSEvents: public EventObserver
34
 
{
35
 
public:
36
 
 
37
 
  PBMSEvents(): EventObserver(std::string("PBMSEvents"))
38
 
  {
39
 
        // Databases that I never want to observe events in.
40
 
        PBMSParameters::blackListedDB("pbms");
41
 
        PBMSParameters::blackListedDB("DATA_DICTIONARY");
42
 
        PBMSParameters::blackListedDB("INFORMATION_SCHEMA");
43
 
  }
44
 
 
45
 
  void registerTableEventsDo(TableShare &table_share, EventObserverList &observers);
46
 
  void registerSchemaEventsDo(const std::string &db, EventObserverList &observers);
47
 
  void registerSessionEventsDo(Session &session, EventObserverList &observers);
48
 
 
49
 
  bool observeEventDo(EventData &);
50
 
 
51
 
};
52
 
} /* namespace plugin */
53
 
} /* namespace drizzled */
54
 
#endif /* PLUGIN_PBMS_PEVENTS_MS_H */