Ardour  8.12
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 #ifndef __selectable_h__
20 #define __selectable_h__
21 
22 #include <list>
23 #include <string>
24 #include <stdio.h>
25 
26 #include <sigc++/sigc++.h>
27 
28 #include <sys/types.h>
29 
30 #include "pbd/libpbd_visibility.h"
31 
32 namespace Select {
34  Readable = 0x1,
35  Writable = 0x2,
36  Exception = 0x4
37  };
38 
39 class LIBPBD_API Selectable : public sigc::trackable
40 
41 {
42  public:
43  Selectable (int fd);
44  Selectable (const std::string &, int flags, int mode = 0);
47 
48  sigc::signal<void,Selectable *,Select::Condition> readable;
49  sigc::signal<void,Selectable *,Select::Condition> writable;
50  sigc::signal<void,Selectable *,Select::Condition> exceptioned;
51 
52  int fd() { return _fd; }
53  bool ok() { return _ok; }
54 
55  protected:
56  void selected (unsigned int condition);
57  int condition;
58  int _fd;
59 
60  friend class Selector;
61 
62  private:
63  enum {
66  fromFILE
67  };
68 
69  bool _ok;
70  int _type;
71  std::string path;
72 };
73 
75  private:
76  int post_select (fd_set *, fd_set *, fd_set *);
77  int _max_fd;
78 
79  typedef std::list<Selectable *> Selectables;
81  pthread_mutex_t list_lock;
82 
83  static bool use_list_lock;
84 
85  public:
87 
88  void multithreaded (bool yn) {
89  use_list_lock = yn;
90  }
91 
92  void add (int condition, Selectable *s);
93  void remove (Selectable *);
94  int select (unsigned long usecs);
95 };
96 
97 
98 
99 } /* namespace */
100 
101 
102 #endif // __selectable_h__
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