Ardour  9.0-pre0-350-gf17a656217
libs/pbd/pbd/selectable.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1998-2013 Paul Davis <paul@linuxaudiosystems.com>
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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 #pragma once
20 
21 #include <list>
22 #include <string>
23 #include <stdio.h>
24 
25 #include <sigc++/sigc++.h>
26 
27 #include <sys/types.h>
28 
29 #include "pbd/libpbd_visibility.h"
30 
31 namespace Select {
33  Readable = 0x1,
34  Writable = 0x2,
35  Exception = 0x4
36  };
37 
38 class LIBPBD_API Selectable : public sigc::trackable
39 
40 {
41  public:
42  Selectable (int fd);
43  Selectable (const std::string &, int flags, int mode = 0);
46 
47  sigc::signal<void,Selectable *,Select::Condition> readable;
48  sigc::signal<void,Selectable *,Select::Condition> writable;
49  sigc::signal<void,Selectable *,Select::Condition> exceptioned;
50 
51  int fd() { return _fd; }
52  bool ok() { return _ok; }
53 
54  protected:
55  void selected (unsigned int condition);
56  int condition;
57  int _fd;
58 
59  friend class Selector;
60 
61  private:
62  enum {
65  fromFILE
66  };
67 
68  bool _ok;
69  int _type;
70  std::string path;
71 };
72 
74  private:
75  int post_select (fd_set *, fd_set *, fd_set *);
76  int _max_fd;
77 
78  typedef std::list<Selectable *> Selectables;
80  pthread_mutex_t list_lock;
81 
82  static bool use_list_lock;
83 
84  public:
86 
87  void multithreaded (bool yn) {
88  use_list_lock = yn;
89  }
90 
91  void add (int condition, Selectable *s);
92  void remove (Selectable *);
93  int select (unsigned long usecs);
94 };
95 
96 
97 
98 } /* namespace */
99 
100 
void selected(unsigned int condition)
sigc::signal< void, Selectable *, Select::Condition > writable
sigc::signal< void, Selectable *, Select::Condition > readable
sigc::signal< void, Selectable *, Select::Condition > exceptioned
Selectable(const std::string &, int flags, int mode=0)
int select(unsigned long usecs)
pthread_mutex_t list_lock
std::list< Selectable * > Selectables
int post_select(fd_set *, fd_set *, fd_set *)
void add(int condition, Selectable *s)
void remove(Selectable *)
#define LIBPBD_API
GTKMM_API const Gtk::BuiltinStockID FILE