[go: up one dir, main page]

File: locking.h

package info (click to toggle)
coolkey 1.1.0-12
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,452 kB
  • sloc: sh: 8,197; cpp: 6,933; ansic: 4,384; makefile: 113
file content (94 lines) | stat: -rw-r--r-- 2,164 bytes parent folder | download | duplicates (6)
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
/* ***** BEGIN COPYRIGHT BLOCK *****
 * Copyright (C) 2005 Red Hat, Inc.
 * All rights reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation version
 * 2.1 of the License.
 *
 * 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 * ***** END COPYRIGHT BLOCK *****/

#ifndef COOLKEY_LOCKING_H
#define COOLKEY_LOCKING_H

#include "mypkcs11.h"
#include <assert.h>

class Mutex {
  public:
    virtual ~Mutex() { }
    virtual void lock()=0;
    virtual void unlock()=0;
};

class MutexFactory {

  public:
    MutexFactory(const CK_C_INITIALIZE_ARGS* initArgs);
    ~MutexFactory();
    Mutex* createMutex() const;
    
  private:
    CK_C_INITIALIZE_ARGS *initArgs;
};

class Guardable;

class Guard {
  public:
    Guard(Mutex& mutex_) : mutex(&mutex_) { mutex->lock(); }
    Guard(Mutex* mutex_) : mutex(mutex_) { mutex->lock(); }
    Guard(Guardable& g);
    Guard(Guardable* g);
    ~Guard() { if( mutex ) mutex->unlock(); }

    Guard(Guard& g) {
        mutex = g.mutex;
        g.mutex = 0;
    }
    Guard& operator=(Guard&g) {
        mutex = g.mutex;
        g.mutex = 0;
        return *this;
    }

    void unlock() { if( mutex ) mutex->unlock(); mutex = 0; }
  private:
    Mutex* mutex;
};

class Guardable {
  private:
    friend class Guard;
    Mutex *mutex;
  public:
    Guardable(const MutexFactory* mutexFactory) {
        mutex = mutexFactory->createMutex();
    }
    ~Guardable() {
        delete mutex;
    }
};

inline
Guard::Guard(Guardable& g) {
    mutex = g.mutex;
    mutex->lock();
}

inline
Guard::Guard(Guardable* g) {
    mutex = g->mutex;
    mutex->lock();
}

#endif