~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/cslib/CSMutex.h

  • Committer: Mark Atwood
  • Date: 2011-12-20 02:32:53 UTC
  • mfrom: (2469.1.1 drizzle-build)
  • Revision ID: me@mark.atwood.name-20111220023253-bvu0kr14kwsdvz7g
mergeĀ lp:~brianaker/drizzle/deprecate-pbms

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2008 PrimeBase Technologies GmbH, Germany
2
 
 *
3
 
 * PrimeBase Media Stream for MySQL
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published by
7
 
 * the Free Software Foundation; either version 2 of the License, or
8
 
 * (at your option) any later version.
9
 
 *
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
 
 *
19
 
 * Original author: Paul McCullagh (H&G2JCtL)
20
 
 * Continued development: Barry Leslie
21
 
 *
22
 
 * 2007-06-06
23
 
 *
24
 
 * CORE SYSTEM:
25
 
 * A basic mutex (mutual exclusion) object.
26
 
 *
27
 
 */
28
 
 
29
 
#pragma once
30
 
#ifndef __CSMUTEX_H__
31
 
#define __CSMUTEX_H__
32
 
 
33
 
#include <pthread.h>
34
 
 
35
 
#include "CSDefs.h"
36
 
 
37
 
class CSThread;
38
 
 
39
 
class CSMutex {
40
 
public:
41
 
        CSMutex();
42
 
        virtual ~CSMutex();
43
 
 
44
 
        virtual void lock();
45
 
        virtual void unlock();
46
 
 
47
 
        friend class CSLock;
48
 
        friend class CSSync;
49
 
 
50
 
private:
51
 
        pthread_mutex_t iMutex;
52
 
#ifdef DEBUG
53
 
        CSThread                *iLocker;
54
 
public:
55
 
        bool                    trace;
56
 
#endif
57
 
};
58
 
 
59
 
class CSLock : public CSMutex {
60
 
public:
61
 
        CSLock();
62
 
        virtual ~CSLock();
63
 
 
64
 
        virtual void lock();
65
 
        virtual void unlock();
66
 
        virtual bool haveLock();
67
 
 
68
 
        friend class CSSync;
69
 
 
70
 
private:
71
 
        CSThread                *iLockingThread;
72
 
        int                             iLockCount;
73
 
};
74
 
 
75
 
class CSSync : public CSLock {
76
 
public:
77
 
        CSSync();
78
 
        virtual ~CSSync();
79
 
        
80
 
        /* Wait for resources on the object
81
 
         * to be freed.
82
 
         *
83
 
         * This function may only be called
84
 
         * if the thread has already locked the
85
 
         * object.
86
 
         */
87
 
        virtual void wait();
88
 
 
89
 
        /* Wait for a certain amount of time, in
90
 
         * milli-seconds (1/1000th of a second).
91
 
         */
92
 
        void wait(time_t mill_sec);
93
 
 
94
 
        /*
95
 
         * Wakeup any waiters.
96
 
         */
97
 
        virtual void wakeup();
98
 
 
99
 
private:
100
 
        pthread_cond_t  iCondition;
101
 
};
102
 
 
103
 
#endif
104