os/persistentdata/persistentstorage/sql/SQLite364/os_common.h
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
** 2004 May 22
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 file contains macros and a little bit of code that is common to
sl@0
    14
** all of the platform-specific files (os_*.c) and is #included into those
sl@0
    15
** files.
sl@0
    16
**
sl@0
    17
** This file should be #included by the os_*.c files only.  It is not a
sl@0
    18
** general purpose header file.
sl@0
    19
**
sl@0
    20
** $Id: os_common.h,v 1.37 2008/05/29 20:22:37 shane Exp $
sl@0
    21
*/
sl@0
    22
#ifndef _OS_COMMON_H_
sl@0
    23
#define _OS_COMMON_H_
sl@0
    24
sl@0
    25
/*
sl@0
    26
** At least two bugs have slipped in because we changed the MEMORY_DEBUG
sl@0
    27
** macro to SQLITE_DEBUG and some older makefiles have not yet made the
sl@0
    28
** switch.  The following code should catch this problem at compile-time.
sl@0
    29
*/
sl@0
    30
#ifdef MEMORY_DEBUG
sl@0
    31
# error "The MEMORY_DEBUG macro is obsolete.  Use SQLITE_DEBUG instead."
sl@0
    32
#endif
sl@0
    33
sl@0
    34
sl@0
    35
/*
sl@0
    36
 * When testing, this global variable stores the location of the
sl@0
    37
 * pending-byte in the database file.
sl@0
    38
 */
sl@0
    39
#ifdef SQLITE_TEST
sl@0
    40
unsigned int sqlite3_pending_byte = 0x40000000;
sl@0
    41
#endif
sl@0
    42
sl@0
    43
#ifdef SQLITE_DEBUG
sl@0
    44
int sqlite3OSTrace = 0;
sl@0
    45
#define OSTRACE1(X)         if( sqlite3OSTrace ) sqlite3DebugPrintf(X)
sl@0
    46
#define OSTRACE2(X,Y)       if( sqlite3OSTrace ) sqlite3DebugPrintf(X,Y)
sl@0
    47
#define OSTRACE3(X,Y,Z)     if( sqlite3OSTrace ) sqlite3DebugPrintf(X,Y,Z)
sl@0
    48
#define OSTRACE4(X,Y,Z,A)   if( sqlite3OSTrace ) sqlite3DebugPrintf(X,Y,Z,A)
sl@0
    49
#define OSTRACE5(X,Y,Z,A,B) if( sqlite3OSTrace ) sqlite3DebugPrintf(X,Y,Z,A,B)
sl@0
    50
#define OSTRACE6(X,Y,Z,A,B,C) \
sl@0
    51
    if(sqlite3OSTrace) sqlite3DebugPrintf(X,Y,Z,A,B,C)
sl@0
    52
#define OSTRACE7(X,Y,Z,A,B,C,D) \
sl@0
    53
    if(sqlite3OSTrace) sqlite3DebugPrintf(X,Y,Z,A,B,C,D)
sl@0
    54
#else
sl@0
    55
#define OSTRACE1(X)
sl@0
    56
#define OSTRACE2(X,Y)
sl@0
    57
#define OSTRACE3(X,Y,Z)
sl@0
    58
#define OSTRACE4(X,Y,Z,A)
sl@0
    59
#define OSTRACE5(X,Y,Z,A,B)
sl@0
    60
#define OSTRACE6(X,Y,Z,A,B,C)
sl@0
    61
#define OSTRACE7(X,Y,Z,A,B,C,D)
sl@0
    62
#endif
sl@0
    63
sl@0
    64
/*
sl@0
    65
** Macros for performance tracing.  Normally turned off.  Only works
sl@0
    66
** on i486 hardware.
sl@0
    67
*/
sl@0
    68
#ifdef SQLITE_PERFORMANCE_TRACE
sl@0
    69
sl@0
    70
/* 
sl@0
    71
** hwtime.h contains inline assembler code for implementing 
sl@0
    72
** high-performance timing routines.
sl@0
    73
*/
sl@0
    74
#include "hwtime.h"
sl@0
    75
sl@0
    76
static sqlite_uint64 g_start;
sl@0
    77
static sqlite_uint64 g_elapsed;
sl@0
    78
#define TIMER_START       g_start=sqlite3Hwtime()
sl@0
    79
#define TIMER_END         g_elapsed=sqlite3Hwtime()-g_start
sl@0
    80
#define TIMER_ELAPSED     g_elapsed
sl@0
    81
#else
sl@0
    82
#define TIMER_START
sl@0
    83
#define TIMER_END
sl@0
    84
#define TIMER_ELAPSED     ((sqlite_uint64)0)
sl@0
    85
#endif
sl@0
    86
sl@0
    87
/*
sl@0
    88
** If we compile with the SQLITE_TEST macro set, then the following block
sl@0
    89
** of code will give us the ability to simulate a disk I/O error.  This
sl@0
    90
** is used for testing the I/O recovery logic.
sl@0
    91
*/
sl@0
    92
#ifdef SQLITE_TEST
sl@0
    93
int sqlite3_io_error_hit = 0;            /* Total number of I/O Errors */
sl@0
    94
int sqlite3_io_error_hardhit = 0;        /* Number of non-benign errors */
sl@0
    95
int sqlite3_io_error_pending = 0;        /* Count down to first I/O error */
sl@0
    96
int sqlite3_io_error_persist = 0;        /* True if I/O errors persist */
sl@0
    97
int sqlite3_io_error_benign = 0;         /* True if errors are benign */
sl@0
    98
int sqlite3_diskfull_pending = 0;
sl@0
    99
int sqlite3_diskfull = 0;
sl@0
   100
#define SimulateIOErrorBenign(X) sqlite3_io_error_benign=(X)
sl@0
   101
#define SimulateIOError(CODE)  \
sl@0
   102
  if( (sqlite3_io_error_persist && sqlite3_io_error_hit) \
sl@0
   103
       || sqlite3_io_error_pending-- == 1 )  \
sl@0
   104
              { local_ioerr(); CODE; }
sl@0
   105
static void local_ioerr(){
sl@0
   106
  IOTRACE(("IOERR\n"));
sl@0
   107
  sqlite3_io_error_hit++;
sl@0
   108
  if( !sqlite3_io_error_benign ) sqlite3_io_error_hardhit++;
sl@0
   109
}
sl@0
   110
#define SimulateDiskfullError(CODE) \
sl@0
   111
   if( sqlite3_diskfull_pending ){ \
sl@0
   112
     if( sqlite3_diskfull_pending == 1 ){ \
sl@0
   113
       local_ioerr(); \
sl@0
   114
       sqlite3_diskfull = 1; \
sl@0
   115
       sqlite3_io_error_hit = 1; \
sl@0
   116
       CODE; \
sl@0
   117
     }else{ \
sl@0
   118
       sqlite3_diskfull_pending--; \
sl@0
   119
     } \
sl@0
   120
   }
sl@0
   121
#else
sl@0
   122
#define SimulateIOErrorBenign(X)
sl@0
   123
#define SimulateIOError(A)
sl@0
   124
#define SimulateDiskfullError(A)
sl@0
   125
#endif
sl@0
   126
sl@0
   127
/*
sl@0
   128
** When testing, keep a count of the number of open files.
sl@0
   129
*/
sl@0
   130
#ifdef SQLITE_TEST
sl@0
   131
int sqlite3_open_file_count = 0;
sl@0
   132
#define OpenCounter(X)  sqlite3_open_file_count+=(X)
sl@0
   133
#else
sl@0
   134
#define OpenCounter(X)
sl@0
   135
#endif
sl@0
   136
sl@0
   137
#endif /* !defined(_OS_COMMON_H_) */