~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/listen.h

  • Committer: devananda
  • Date: 2009-06-30 14:27:54 UTC
  • mfrom: (1030.2.4 trunk)
  • mto: (1093.1.7 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090630142754-vm9w374yxkf1pikc
mergeĀ fromĀ lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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:
 
32
  std::vector<const Listen *> listen_list;
 
33
  std::vector<const Listen *> listen_fd_list;
 
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
   */
 
45
  void addListen(const Listen &listen_obj);
 
46
 
 
47
  /**
 
48
   * Remove a Listen object from the list of listeners we manage.
 
49
   */
 
50
  void removeListen(const Listen &listen_obj);
 
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
   */
 
61
  Protocol *getProtocol(void) const;
 
62
 
 
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
   */
 
68
  Protocol *getTmpProtocol(void) const;
 
69
 
 
70
  /**
 
71
   * Wakeup the listen loop from another thread.
 
72
   */
 
73
  void wakeup(void);
 
74
};
 
75
 
 
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. */
 
81
void listen_abort(void);
 
82
 
 
83
#endif /* DRIZZLED_LISTEN_H */