os/persistentdata/persistentstorage/sqlite3api/SQLite/mutex_os2.c
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
** 2007 August 28
sl@0
     3
**
sl@0
     4
** The author disclaims copyright to this source code.  In place of
sl@0
     5
** a legal notice, here is a blessing:
sl@0
     6
**
sl@0
     7
**    May you do good and not evil.
sl@0
     8
**    May you find forgiveness for yourself and forgive others.
sl@0
     9
**    May you share freely, never taking more than you give.
sl@0
    10
**
sl@0
    11
*************************************************************************
sl@0
    12
** This file contains the C functions that implement mutexes for OS/2
sl@0
    13
**
sl@0
    14
** $Id: mutex_os2.c,v 1.10 2008/06/23 22:13:28 pweilbacher Exp $
sl@0
    15
*/
sl@0
    16
#include "sqliteInt.h"
sl@0
    17
sl@0
    18
/*
sl@0
    19
** The code in this file is only used if SQLITE_MUTEX_OS2 is defined.
sl@0
    20
** See the mutex.h file for details.
sl@0
    21
*/
sl@0
    22
#ifdef SQLITE_MUTEX_OS2
sl@0
    23
sl@0
    24
/********************** OS/2 Mutex Implementation **********************
sl@0
    25
**
sl@0
    26
** This implementation of mutexes is built using the OS/2 API.
sl@0
    27
*/
sl@0
    28
sl@0
    29
/*
sl@0
    30
** The mutex object
sl@0
    31
** Each recursive mutex is an instance of the following structure.
sl@0
    32
*/
sl@0
    33
struct sqlite3_mutex {
sl@0
    34
  HMTX mutex;       /* Mutex controlling the lock */
sl@0
    35
  int  id;          /* Mutex type */
sl@0
    36
  int  nRef;        /* Number of references */
sl@0
    37
  TID  owner;       /* Thread holding this mutex */
sl@0
    38
};
sl@0
    39
sl@0
    40
#define OS2_MUTEX_INITIALIZER   0,0,0,0
sl@0
    41
sl@0
    42
/*
sl@0
    43
** Initialize and deinitialize the mutex subsystem.
sl@0
    44
*/
sl@0
    45
static int os2MutexInit(void){ return SQLITE_OK; }
sl@0
    46
static int os2MutexEnd(void){ return SQLITE_OK; }
sl@0
    47
sl@0
    48
/*
sl@0
    49
** The sqlite3_mutex_alloc() routine allocates a new
sl@0
    50
** mutex and returns a pointer to it.  If it returns NULL
sl@0
    51
** that means that a mutex could not be allocated. 
sl@0
    52
** SQLite will unwind its stack and return an error.  The argument
sl@0
    53
** to sqlite3_mutex_alloc() is one of these integer constants:
sl@0
    54
**
sl@0
    55
** <ul>
sl@0
    56
** <li>  SQLITE_MUTEX_FAST               0
sl@0
    57
** <li>  SQLITE_MUTEX_RECURSIVE          1
sl@0
    58
** <li>  SQLITE_MUTEX_STATIC_MASTER      2
sl@0
    59
** <li>  SQLITE_MUTEX_STATIC_MEM         3
sl@0
    60
** <li>  SQLITE_MUTEX_STATIC_PRNG        4
sl@0
    61
** </ul>
sl@0
    62
**
sl@0
    63
** The first two constants cause sqlite3_mutex_alloc() to create
sl@0
    64
** a new mutex.  The new mutex is recursive when SQLITE_MUTEX_RECURSIVE
sl@0
    65
** is used but not necessarily so when SQLITE_MUTEX_FAST is used.
sl@0
    66
** The mutex implementation does not need to make a distinction
sl@0
    67
** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does
sl@0
    68
** not want to.  But SQLite will only request a recursive mutex in
sl@0
    69
** cases where it really needs one.  If a faster non-recursive mutex
sl@0
    70
** implementation is available on the host platform, the mutex subsystem
sl@0
    71
** might return such a mutex in response to SQLITE_MUTEX_FAST.
sl@0
    72
**
sl@0
    73
** The other allowed parameters to sqlite3_mutex_alloc() each return
sl@0
    74
** a pointer to a static preexisting mutex.  Three static mutexes are
sl@0
    75
** used by the current version of SQLite.  Future versions of SQLite
sl@0
    76
** may add additional static mutexes.  Static mutexes are for internal
sl@0
    77
** use by SQLite only.  Applications that use SQLite mutexes should
sl@0
    78
** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or
sl@0
    79
** SQLITE_MUTEX_RECURSIVE.
sl@0
    80
**
sl@0
    81
** Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST
sl@0
    82
** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
sl@0
    83
** returns a different mutex on every call.  But for the static
sl@0
    84
** mutex types, the same mutex is returned on every call that has
sl@0
    85
** the same type number.
sl@0
    86
*/
sl@0
    87
static sqlite3_mutex *os2MutexAlloc(int iType){
sl@0
    88
  sqlite3_mutex *p = NULL;
sl@0
    89
  switch( iType ){
sl@0
    90
    case SQLITE_MUTEX_FAST:
sl@0
    91
    case SQLITE_MUTEX_RECURSIVE: {
sl@0
    92
      p = sqlite3MallocZero( sizeof(*p) );
sl@0
    93
      if( p ){
sl@0
    94
        p->id = iType;
sl@0
    95
        if( DosCreateMutexSem( 0, &p->mutex, 0, FALSE ) != NO_ERROR ){
sl@0
    96
          sqlite3_free( p );
sl@0
    97
          p = NULL;
sl@0
    98
        }
sl@0
    99
      }
sl@0
   100
      break;
sl@0
   101
    }
sl@0
   102
    default: {
sl@0
   103
      static volatile int isInit = 0;
sl@0
   104
      static sqlite3_mutex staticMutexes[] = {
sl@0
   105
        { OS2_MUTEX_INITIALIZER, },
sl@0
   106
        { OS2_MUTEX_INITIALIZER, },
sl@0
   107
        { OS2_MUTEX_INITIALIZER, },
sl@0
   108
        { OS2_MUTEX_INITIALIZER, },
sl@0
   109
        { OS2_MUTEX_INITIALIZER, },
sl@0
   110
        { OS2_MUTEX_INITIALIZER, },
sl@0
   111
      };
sl@0
   112
      if ( !isInit ){
sl@0
   113
        APIRET rc;
sl@0
   114
        PTIB ptib;
sl@0
   115
        PPIB ppib;
sl@0
   116
        HMTX mutex;
sl@0
   117
        char name[32];
sl@0
   118
        DosGetInfoBlocks( &ptib, &ppib );
sl@0
   119
        sqlite3_snprintf( sizeof(name), name, "\\SEM32\\SQLITE%04x",
sl@0
   120
                          ppib->pib_ulpid );
sl@0
   121
        while( !isInit ){
sl@0
   122
          mutex = 0;
sl@0
   123
          rc = DosCreateMutexSem( name, &mutex, 0, FALSE);
sl@0
   124
          if( rc == NO_ERROR ){
sl@0
   125
            int i;
sl@0
   126
            if( !isInit ){
sl@0
   127
              for( i = 0; i < sizeof(staticMutexes)/sizeof(staticMutexes[0]); i++ ){
sl@0
   128
                DosCreateMutexSem( 0, &staticMutexes[i].mutex, 0, FALSE );
sl@0
   129
              }
sl@0
   130
              isInit = 1;
sl@0
   131
            }
sl@0
   132
            DosCloseMutexSem( mutex );
sl@0
   133
          }else if( rc == ERROR_DUPLICATE_NAME ){
sl@0
   134
            DosSleep( 1 );
sl@0
   135
          }else{
sl@0
   136
            return p;
sl@0
   137
          }
sl@0
   138
        }
sl@0
   139
      }
sl@0
   140
      assert( iType-2 >= 0 );
sl@0
   141
      assert( iType-2 < sizeof(staticMutexes)/sizeof(staticMutexes[0]) );
sl@0
   142
      p = &staticMutexes[iType-2];
sl@0
   143
      p->id = iType;
sl@0
   144
      break;
sl@0
   145
    }
sl@0
   146
  }
sl@0
   147
  return p;
sl@0
   148
}
sl@0
   149
sl@0
   150
sl@0
   151
/*
sl@0
   152
** This routine deallocates a previously allocated mutex.
sl@0
   153
** SQLite is careful to deallocate every mutex that it allocates.
sl@0
   154
*/
sl@0
   155
static void os2MutexFree(sqlite3_mutex *p){
sl@0
   156
  if( p==0 ) return;
sl@0
   157
  assert( p->nRef==0 );
sl@0
   158
  assert( p->id==SQLITE_MUTEX_FAST || p->id==SQLITE_MUTEX_RECURSIVE );
sl@0
   159
  DosCloseMutexSem( p->mutex );
sl@0
   160
  sqlite3_free( p );
sl@0
   161
}
sl@0
   162
sl@0
   163
/*
sl@0
   164
** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
sl@0
   165
** to enter a mutex.  If another thread is already within the mutex,
sl@0
   166
** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
sl@0
   167
** SQLITE_BUSY.  The sqlite3_mutex_try() interface returns SQLITE_OK
sl@0
   168
** upon successful entry.  Mutexes created using SQLITE_MUTEX_RECURSIVE can
sl@0
   169
** be entered multiple times by the same thread.  In such cases the,
sl@0
   170
** mutex must be exited an equal number of times before another thread
sl@0
   171
** can enter.  If the same thread tries to enter any other kind of mutex
sl@0
   172
** more than once, the behavior is undefined.
sl@0
   173
*/
sl@0
   174
static void os2MutexEnter(sqlite3_mutex *p){
sl@0
   175
  TID tid;
sl@0
   176
  PID holder1;
sl@0
   177
  ULONG holder2;
sl@0
   178
  if( p==0 ) return;
sl@0
   179
  assert( p->id==SQLITE_MUTEX_RECURSIVE || os2MutexNotheld(p) );
sl@0
   180
  DosRequestMutexSem(p->mutex, SEM_INDEFINITE_WAIT);
sl@0
   181
  DosQueryMutexSem(p->mutex, &holder1, &tid, &holder2);
sl@0
   182
  p->owner = tid;
sl@0
   183
  p->nRef++;
sl@0
   184
}
sl@0
   185
static int os2MutexTry(sqlite3_mutex *p){
sl@0
   186
  int rc;
sl@0
   187
  TID tid;
sl@0
   188
  PID holder1;
sl@0
   189
  ULONG holder2;
sl@0
   190
  if( p==0 ) return SQLITE_OK;
sl@0
   191
  assert( p->id==SQLITE_MUTEX_RECURSIVE || os2MutexNotheld(p) );
sl@0
   192
  if( DosRequestMutexSem(p->mutex, SEM_IMMEDIATE_RETURN) == NO_ERROR) {
sl@0
   193
    DosQueryMutexSem(p->mutex, &holder1, &tid, &holder2);
sl@0
   194
    p->owner = tid;
sl@0
   195
    p->nRef++;
sl@0
   196
    rc = SQLITE_OK;
sl@0
   197
  } else {
sl@0
   198
    rc = SQLITE_BUSY;
sl@0
   199
  }
sl@0
   200
sl@0
   201
  return rc;
sl@0
   202
}
sl@0
   203
sl@0
   204
/*
sl@0
   205
** The sqlite3_mutex_leave() routine exits a mutex that was
sl@0
   206
** previously entered by the same thread.  The behavior
sl@0
   207
** is undefined if the mutex is not currently entered or
sl@0
   208
** is not currently allocated.  SQLite will never do either.
sl@0
   209
*/
sl@0
   210
static void os2MutexLeave(sqlite3_mutex *p){
sl@0
   211
  TID tid;
sl@0
   212
  PID holder1;
sl@0
   213
  ULONG holder2;
sl@0
   214
  if( p==0 ) return;
sl@0
   215
  assert( p->nRef>0 );
sl@0
   216
  DosQueryMutexSem(p->mutex, &holder1, &tid, &holder2);
sl@0
   217
  assert( p->owner==tid );
sl@0
   218
  p->nRef--;
sl@0
   219
  assert( p->nRef==0 || p->id==SQLITE_MUTEX_RECURSIVE );
sl@0
   220
  DosReleaseMutexSem(p->mutex);
sl@0
   221
}
sl@0
   222
sl@0
   223
#ifdef SQLITE_DEBUG
sl@0
   224
/*
sl@0
   225
** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routine are
sl@0
   226
** intended for use inside assert() statements.
sl@0
   227
*/
sl@0
   228
static int os2MutexHeld(sqlite3_mutex *p){
sl@0
   229
  TID tid;
sl@0
   230
  PID pid;
sl@0
   231
  ULONG ulCount;
sl@0
   232
  PTIB ptib;
sl@0
   233
  if( p!=0 ) {
sl@0
   234
    DosQueryMutexSem(p->mutex, &pid, &tid, &ulCount);
sl@0
   235
  } else {
sl@0
   236
    DosGetInfoBlocks(&ptib, NULL);
sl@0
   237
    tid = ptib->tib_ptib2->tib2_ultid;
sl@0
   238
  }
sl@0
   239
  return p==0 || (p->nRef!=0 && p->owner==tid);
sl@0
   240
}
sl@0
   241
static int os2MutexNotheld(sqlite3_mutex *p){
sl@0
   242
  TID tid;
sl@0
   243
  PID pid;
sl@0
   244
  ULONG ulCount;
sl@0
   245
  PTIB ptib;
sl@0
   246
  if( p!= 0 ) {
sl@0
   247
    DosQueryMutexSem(p->mutex, &pid, &tid, &ulCount);
sl@0
   248
  } else {
sl@0
   249
    DosGetInfoBlocks(&ptib, NULL);
sl@0
   250
    tid = ptib->tib_ptib2->tib2_ultid;
sl@0
   251
  }
sl@0
   252
  return p==0 || p->nRef==0 || p->owner!=tid;
sl@0
   253
}
sl@0
   254
#endif
sl@0
   255
sl@0
   256
sqlite3_mutex_methods *sqlite3DefaultMutex(void){
sl@0
   257
  static sqlite3_mutex_methods sMutex = {
sl@0
   258
    os2MutexInit,
sl@0
   259
    os2MutexEnd,
sl@0
   260
    os2MutexAlloc,
sl@0
   261
    os2MutexFree,
sl@0
   262
    os2MutexEnter,
sl@0
   263
    os2MutexTry,
sl@0
   264
    os2MutexLeave,
sl@0
   265
#ifdef SQLITE_DEBUG
sl@0
   266
    os2MutexHeld,
sl@0
   267
    os2MutexNotheld
sl@0
   268
#endif
sl@0
   269
  };
sl@0
   270
sl@0
   271
  return &sMutex;
sl@0
   272
}
sl@0
   273
#endif /* SQLITE_MUTEX_OS2 */