~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

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 */