summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/threadutil.h
blob: f97a18b5c4b08b401ff34cfcd3cf75203e694e30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/* This file is part of the KDE project
   Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.
*/

#ifndef THREADUTIL_H
#define THREADUTIL_H

#include <qvaluelist.h>
#include <qobject.h>
#include <qguardedptr.h>

class QSocketNotifier;

namespace ThreadUtil
{

    class Mutex
    {
        friend class WaitCondition;
    public:
        Mutex();
        ~Mutex();

        void lock();
        void unlock();
        bool tryLock();
        bool isLocked();

    private:
        struct Data;
        Data *d;

        Mutex( const Mutex & );
        Mutex &operator=( const Mutex & );
    };

    class AutoLock
    {
    public:
        AutoLock( Mutex &mutex ) : m_mutex( mutex ) { m_mutex.lock(); }
        ~AutoLock() { m_mutex.unlock(); }

        Mutex *operator &() const { return &m_mutex; }

    private:
        Mutex &m_mutex;
    };

    class WaitCondition
    {
    public:
        WaitCondition();
        ~WaitCondition();

        bool wait();
        bool wait( Mutex &mutex );

        void wakeOne();
        void wakeAll();

    private:
        struct Data;
        Data *d;

        WaitCondition( const WaitCondition & );
        WaitCondition &operator=( const WaitCondition & );
    };

    class Thread
    {
    public:
        struct Data;
        friend struct Data;

        Thread();
        virtual ~Thread();

        void start();
        void terminate();

        bool wait();

        bool isRunning() const;

        static void exit();
    protected:
        virtual void run() = 0;

    private:
        Data *d;
    };

    class OnewayNotifier : public QObject
    {
        Q_OBJECT
    public:
        OnewayNotifier();
        ~OnewayNotifier();

        void notify();

    signals:
        void awake();

    private slots:
        void wakeUp();

    private:
        int m_readFd;
        int m_writeFd;
        QSocketNotifier *m_notifier;
    };


    class Channel;

    class ChannelMessage
    {
        friend class Channel;
    public:
	ChannelMessage( int type = -1, int data = -1, const char* msg = 0 );
        virtual ~ChannelMessage();

        int type() const { return m_type; }
	int data() const { return m_data; }
	const char* msg()const { return m_msg;  }

        void reply();

    private:
        ChannelMessage( const ChannelMessage & );
        ChannelMessage &operator=( const ChannelMessage );

        int m_type;
	int m_data;
	const char *m_msg;
        bool m_isCall : 1;
        bool m_replied : 1;
        bool m_inEventHandler : 1;
        Mutex m_guard;
        WaitCondition m_condition;
    };

    class Channel : public QObject
    {
        Q_OBJECT
    public:
        enum SendType { OneWay, WaitForReply };
        Channel( QObject *parent = 0, const char *name = 0 );
        virtual ~Channel();

        void send( ChannelMessage *message, SendType type );

    protected:
        virtual void receiveMessage( ChannelMessage *message, SendType type ) = 0;

    private slots:
        void deliver();

    private:
        OnewayNotifier m_notifier;

        struct MsgEnvelope
        {
            MsgEnvelope() : type( OneWay ), msg( 0 ) {}
            MsgEnvelope( SendType _type , ChannelMessage *_msg )
                : type( _type ), msg( _msg ) {}

            SendType type;
            ChannelMessage *msg;
        };

        void deliverOne( const MsgEnvelope &envelope );

        typedef QValueList<MsgEnvelope> MsgEnvelopeList;

        MsgEnvelopeList m_pendingMessages;
        Mutex m_pendingMessagesGuard;

        struct Private;
        Private *d;
    };

}

#endif // THREADUTIL_H
/* vim: et sw=4 ts=4
 */