os/persistentdata/persistentstorage/sql/SQLite/status.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
** 2008 June 18
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
**
sl@0
    13
** This module implements the sqlite3_status() interface and related
sl@0
    14
** functionality.
sl@0
    15
**
sl@0
    16
** $Id: status.c,v 1.7 2008/08/05 17:53:23 drh Exp $
sl@0
    17
*/
sl@0
    18
#include "sqliteInt.h"
sl@0
    19
sl@0
    20
/*
sl@0
    21
** Variables in which to record status information.
sl@0
    22
*/
sl@0
    23
static struct {
sl@0
    24
  int nowValue[9];         /* Current value */
sl@0
    25
  int mxValue[9];          /* Maximum value */
sl@0
    26
} sqlite3Stat;
sl@0
    27
sl@0
    28
sl@0
    29
/*
sl@0
    30
** Reset the status records.  This routine is called by
sl@0
    31
** sqlite3_initialize().
sl@0
    32
*/
sl@0
    33
void sqlite3StatusReset(void){
sl@0
    34
  memset(&sqlite3Stat, 0, sizeof(sqlite3Stat));
sl@0
    35
}
sl@0
    36
sl@0
    37
/*
sl@0
    38
** Return the current value of a status parameter.
sl@0
    39
*/
sl@0
    40
int sqlite3StatusValue(int op){
sl@0
    41
  assert( op>=0 && op<ArraySize(sqlite3Stat.nowValue) );
sl@0
    42
  return sqlite3Stat.nowValue[op];
sl@0
    43
}
sl@0
    44
sl@0
    45
/*
sl@0
    46
** Add N to the value of a status record.  It is assumed that the
sl@0
    47
** caller holds appropriate locks.
sl@0
    48
*/
sl@0
    49
void sqlite3StatusAdd(int op, int N){
sl@0
    50
  assert( op>=0 && op<ArraySize(sqlite3Stat.nowValue) );
sl@0
    51
  sqlite3Stat.nowValue[op] += N;
sl@0
    52
  if( sqlite3Stat.nowValue[op]>sqlite3Stat.mxValue[op] ){
sl@0
    53
    sqlite3Stat.mxValue[op] = sqlite3Stat.nowValue[op];
sl@0
    54
  }
sl@0
    55
}
sl@0
    56
sl@0
    57
/*
sl@0
    58
** Set the value of a status to X.
sl@0
    59
*/
sl@0
    60
void sqlite3StatusSet(int op, int X){
sl@0
    61
  assert( op>=0 && op<ArraySize(sqlite3Stat.nowValue) );
sl@0
    62
  sqlite3Stat.nowValue[op] = X;
sl@0
    63
  if( sqlite3Stat.nowValue[op]>sqlite3Stat.mxValue[op] ){
sl@0
    64
    sqlite3Stat.mxValue[op] = sqlite3Stat.nowValue[op];
sl@0
    65
  }
sl@0
    66
}
sl@0
    67
sl@0
    68
/*
sl@0
    69
** Query status information.
sl@0
    70
**
sl@0
    71
** This implementation assumes that reading or writing an aligned
sl@0
    72
** 32-bit integer is an atomic operation.  If that assumption is not true,
sl@0
    73
** then this routine is not threadsafe.
sl@0
    74
*/
sl@0
    75
int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){
sl@0
    76
  if( op<0 || op>=ArraySize(sqlite3Stat.nowValue) ){
sl@0
    77
    return SQLITE_MISUSE;
sl@0
    78
  }
sl@0
    79
  *pCurrent = sqlite3Stat.nowValue[op];
sl@0
    80
  *pHighwater = sqlite3Stat.mxValue[op];
sl@0
    81
  if( resetFlag ){
sl@0
    82
    sqlite3Stat.mxValue[op] = sqlite3Stat.nowValue[op];
sl@0
    83
  }
sl@0
    84
  return SQLITE_OK;
sl@0
    85
}
sl@0
    86
sl@0
    87
/*
sl@0
    88
** Query status information for a single database connection
sl@0
    89
*/
sl@0
    90
int sqlite3_db_status(
sl@0
    91
  sqlite3 *db,          /* The database connection whose status is desired */
sl@0
    92
  int op,               /* Status verb */
sl@0
    93
  int *pCurrent,        /* Write current value here */
sl@0
    94
  int *pHighwater,      /* Write high-water mark here */
sl@0
    95
  int resetFlag         /* Reset high-water mark if true */
sl@0
    96
){
sl@0
    97
  switch( op ){
sl@0
    98
    case SQLITE_DBSTATUS_LOOKASIDE_USED: {
sl@0
    99
      *pCurrent = db->lookaside.nOut;
sl@0
   100
      *pHighwater = db->lookaside.mxOut;
sl@0
   101
      if( resetFlag ){
sl@0
   102
        db->lookaside.mxOut = db->lookaside.nOut;
sl@0
   103
      }
sl@0
   104
      break;
sl@0
   105
    }
sl@0
   106
    default: {
sl@0
   107
      return SQLITE_ERROR;
sl@0
   108
    }
sl@0
   109
  }
sl@0
   110
  return SQLITE_OK;
sl@0
   111
}