~drizzle-trunk/drizzle/development

971.3.48 by Eric Day
New Listen interface about done, not quite compiling yet, but need a backup.
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2008 Sun Microsystems
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; version 2 of the License.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, write to the Free Software
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
19
20
#ifndef DRIZZLED_LISTEN_H
21
#define DRIZZLED_LISTEN_H
22
23
#include <drizzled/plugin/listen.h>
24
#include <drizzled/plugin/protocol.h>
25
26
/**
27
 * Class to handle all Listen plugin objects.
28
 */
29
class ListenHandler
30
{
31
private:
971.3.51 by Eric Day
Finished up new Listen plugin interface.
32
  std::vector<const Listen *> listen_list;
33
  std::vector<const Listen *> listen_fd_list;
971.3.48 by Eric Day
New Listen interface about done, not quite compiling yet, but need a backup.
34
  struct pollfd *fd_list;
35
  uint32_t fd_count;
36
  int wakeup_pipe[2];
37
38
public:
39
  ListenHandler();
40
  ~ListenHandler();
41
42
  /**
43
   * Add a new Listen object to the list of listeners we manage.
44
   */
971.3.51 by Eric Day
Finished up new Listen plugin interface.
45
  void addListen(const Listen &listen_obj);
971.3.48 by Eric Day
New Listen interface about done, not quite compiling yet, but need a backup.
46
47
  /**
48
   * Remove a Listen object from the list of listeners we manage.
49
   */
971.3.51 by Eric Day
Finished up new Listen plugin interface.
50
  void removeListen(const Listen &listen_obj);
971.3.48 by Eric Day
New Listen interface about done, not quite compiling yet, but need a backup.
51
52
  /**
53
   * Bind to all configured listener interfaces.
54
   */
55
  bool bindAll(const char *host, uint32_t bind_timeout);
56
57
  /**
58
   * Accept a new connection (Protocol object) on one of the configured
59
   * listener interfaces.
60
   */
971.3.53 by Eric Day
Cleaned up error messages and a few other things from Jay's review.
61
  Protocol *getProtocol(void) const;
971.3.48 by Eric Day
New Listen interface about done, not quite compiling yet, but need a backup.
62
971.3.51 by Eric Day
Finished up new Listen plugin interface.
63
  /**
64
   * Some internal functions drizzled require a temporary Protocol object to
65
   * create a valid session object, this just returns an instance of the first
66
   * protocol object.
67
   */
971.3.52 by Eric Day
Fixed a few thinks Padraig pointed out.
68
  Protocol *getTmpProtocol(void) const;
971.3.49 by Eric Day
Listen plugin working now, still some cleanup left.
69
971.3.48 by Eric Day
New Listen interface about done, not quite compiling yet, but need a backup.
70
  /**
71
   * Wakeup the listen loop from another thread.
72
   */
73
  void wakeup(void);
74
};
75
971.3.51 by Eric Day
Finished up new Listen plugin interface.
76
/* Functions required by plugin_registry. */
77
void add_listen(const Listen &listen_obj);
78
void remove_listen(const Listen &listen_obj);
79
80
/* Convenience function for signal handlers. */
971.3.48 by Eric Day
New Listen interface about done, not quite compiling yet, but need a backup.
81
void listen_abort(void);
82
83
#endif /* DRIZZLED_LISTEN_H */