~ubuntu-branches/ubuntu/jaunty/psi/jaunty

« back to all changes in this revision

Viewing changes to third-party/qca/qca/src/botantools/botan/mutex.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-04-14 18:57:30 UTC
  • mfrom: (2.1.9 hardy)
  • Revision ID: james.westby@ubuntu.com-20080414185730-528re3zp0m2hdlhi
Tags: 0.11-8
* added CONFIG -= link_prl to .pro files and removed dependencies
  which are made unnecessary by this change
* Fix segfault when closing last chat tab with qt4.4
  (This is from upstream svn, rev. 1101) (Closes: Bug#476122)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (C) 1999-2007 The Botan Project. All rights reserved.
 
3
 
 
4
Redistribution and use in source and binary forms, for any use, with or without
 
5
modification, is permitted provided that the following conditions are met:
 
6
 
 
7
1. Redistributions of source code must retain the above copyright notice, this
 
8
list of conditions, and the following disclaimer.
 
9
 
 
10
2. Redistributions in binary form must reproduce the above copyright notice,
 
11
this list of conditions, and the following disclaimer in the documentation
 
12
and/or other materials provided with the distribution.
 
13
 
 
14
THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) "AS IS" AND ANY EXPRESS OR IMPLIED
 
15
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 
16
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
 
17
 
 
18
IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) BE LIABLE FOR ANY DIRECT,
 
19
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 
20
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
21
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 
22
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 
23
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 
24
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
25
*/
 
26
// LICENSEHEADER_END
 
27
namespace QCA { // WRAPNS_LINE
 
28
/*************************************************
 
29
* Mutex Source File                              *
 
30
* (C) 1999-2007 The Botan Project                *
 
31
*************************************************/
 
32
 
 
33
} // WRAPNS_LINE
 
34
#include <stdlib.h>
 
35
namespace QCA { // WRAPNS_LINE
 
36
} // WRAPNS_LINE
 
37
#include <botan/mutex.h>
 
38
namespace QCA { // WRAPNS_LINE
 
39
#ifndef BOTAN_NO_LIBSTATE
 
40
} // WRAPNS_LINE
 
41
#include <botan/libstate.h>
 
42
namespace QCA { // WRAPNS_LINE
 
43
#endif
 
44
 
 
45
namespace Botan {
 
46
 
 
47
/*************************************************
 
48
* Mutex_Holder Constructor                       *
 
49
*************************************************/
 
50
Mutex_Holder::Mutex_Holder(Mutex* m) : mux(m)
 
51
   {
 
52
   if(!mux)
 
53
      throw Invalid_Argument("Mutex_Holder: Argument was NULL");
 
54
   mux->lock();
 
55
   }
 
56
 
 
57
/*************************************************
 
58
* Mutex_Holder Destructor                        *
 
59
*************************************************/
 
60
Mutex_Holder::~Mutex_Holder()
 
61
   {
 
62
   mux->unlock();
 
63
   }
 
64
 
 
65
#ifndef BOTAN_NO_LIBSTATE
 
66
/*************************************************
 
67
* Named_Mutex_Holder Constructor                 *
 
68
*************************************************/
 
69
Named_Mutex_Holder::Named_Mutex_Holder(const std::string& name) :
 
70
   mutex_name(name)
 
71
   {
 
72
   global_state().get_named_mutex(mutex_name)->lock();
 
73
   }
 
74
 
 
75
/*************************************************
 
76
* Named_Mutex_Holder Destructor                  *
 
77
*************************************************/
 
78
Named_Mutex_Holder::~Named_Mutex_Holder()
 
79
   {
 
80
   global_state().get_named_mutex(mutex_name)->unlock();
 
81
   }
 
82
#endif
 
83
 
 
84
/*************************************************
 
85
* Default Mutex Factory                          *
 
86
*************************************************/
 
87
#ifdef BOTAN_FIX_GDB
 
88
namespace {
 
89
#else
 
90
Mutex* Default_Mutex_Factory::make()
 
91
   {
 
92
#endif
 
93
   class Default_Mutex : public Mutex
 
94
      {
 
95
      public:
 
96
         class Mutex_State_Error : public Internal_Error
 
97
            {
 
98
            public:
 
99
               Mutex_State_Error(const std::string& where) :
 
100
                  Internal_Error("Default_Mutex::" + where + ": " +
 
101
                                 "Mutex is already " + where + "ed") {}
 
102
            };
 
103
 
 
104
         void lock()
 
105
            {
 
106
            if(locked)
 
107
               throw Mutex_State_Error("lock");
 
108
            locked = true;
 
109
            }
 
110
 
 
111
         void unlock()
 
112
            {
 
113
            if(!locked)
 
114
               throw Mutex_State_Error("unlock");
 
115
            locked = false;
 
116
            }
 
117
 
 
118
         Default_Mutex() { locked = false; }
 
119
      private:
 
120
         bool locked;
 
121
      };
 
122
 
 
123
#ifdef BOTAN_FIX_GDB
 
124
   } // end unnamed namespace
 
125
Mutex* Default_Mutex_Factory::make()
 
126
   {
 
127
#endif
 
128
 
 
129
   return new Default_Mutex;
 
130
   }
 
131
 
 
132
}
 
133
} // WRAPNS_LINE