Fixed i18n system.
[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     $Id$
19 */
20
21 #ifndef __selectable_h__
22 #define __selectable_h__
23
24 #include <list>
25 #include <string>
26 #include <stdio.h>
27
28 #include <sigc++/sigc++.h>
29
30 #include <sys/types.h>
31
32 namespace Select {
33     enum Condition {
34                 Readable = 0x1,
35                 Writable = 0x2,
36                 Exception = 0x4
37     };
38
39 class Selectable : public sigc::trackable
40
41 {
42   public:
43         Selectable (int fd);
44         Selectable (const std::string &, int flags, int mode = 0);
45         Selectable (FILE *);
46         ~Selectable ();
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 {
64                 fromFD,
65                 fromPath,
66                 fromFILE
67         };
68                 
69         bool _ok;
70         int _type;
71         std::string path;
72 };
73
74 class Selector {
75   private:
76         int post_select (fd_set *, fd_set *, fd_set *);
77         int _max_fd;
78
79         typedef std::list<Selectable *> Selectables;
80         Selectables selectables;
81         pthread_mutex_t list_lock;
82
83         static bool use_list_lock;
84
85   public:
86         Selector ();
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__