tweak transport bar spacing
[ardour.git] / libs / pbd / pbd / selectable.h
1 /*
2     Copyright (C) 1998-99 Paul Barton-Davis
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
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __selectable_h__
21 #define __selectable_h__
22
23 #include <list>
24 #include <string>
25 #include <stdio.h>
26
27 #include <sigc++/sigc++.h>
28
29 #include <sys/types.h>
30
31 namespace Select {
32     enum Condition {
33                 Readable = 0x1,
34                 Writable = 0x2,
35                 Exception = 0x4
36     };
37
38 class Selectable : public sigc::trackable
39
40 {
41   public:
42         Selectable (int fd);
43         Selectable (const std::string &, int flags, int mode = 0);
44         Selectable (FILE *);
45         ~Selectable ();
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 {
63                 fromFD,
64                 fromPath,
65                 fromFILE
66         };
67                 
68         bool _ok;
69         int _type;
70         std::string path;
71 };
72
73 class Selector {
74   private:
75         int post_select (fd_set *, fd_set *, fd_set *);
76         int _max_fd;
77
78         typedef std::list<Selectable *> Selectables;
79         Selectables selectables;
80         pthread_mutex_t list_lock;
81
82         static bool use_list_lock;
83
84   public:
85         Selector ();
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
101 #endif // __selectable_h__