sl@0
|
1 |
// Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// The Symbian OS porting layer - multi-threaded implementation.
|
sl@0
|
15 |
// Platform dependend implementation of the static mutexes and the file session API.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
#include "os_symbian.h"
|
sl@0
|
23 |
#include "SqliteUtil.h"
|
sl@0
|
24 |
#include "OstTraceDefinitions.h"
|
sl@0
|
25 |
#ifdef OST_TRACE_COMPILER_IN_USE
|
sl@0
|
26 |
#include "os_symbian_hrdwTraces.h"
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
#include "SqliteTraceDef.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
#ifdef SQLITE_OS_SYMBIAN
|
sl@0
|
31 |
|
sl@0
|
32 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
33 |
////////////////////////// TStaticFs /////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
34 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
Single global RFs instance
|
sl@0
|
38 |
|
sl@0
|
39 |
@see TStaticFs
|
sl@0
|
40 |
|
sl@0
|
41 |
@internalComponent
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
static TStaticFs TheFs;
|
sl@0
|
44 |
|
sl@0
|
45 |
/**
|
sl@0
|
46 |
Connects the RFs.
|
sl@0
|
47 |
If the operation fails, the program will be terminated.
|
sl@0
|
48 |
|
sl@0
|
49 |
@see TStaticFs
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
TStaticFs::TStaticFs()
|
sl@0
|
52 |
{
|
sl@0
|
53 |
TInt err = Connect();
|
sl@0
|
54 |
if(err != KErrNone)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
SQLITE_TRACE_OS(OstTraceExt2(TRACE_INTERNALS, TSTATICFS_TSTATICFS, "OS;0x%X;TStaticFs::TStaticFs;err=%d", (TUint)this, err));
|
sl@0
|
57 |
User::Exit(err);
|
sl@0
|
58 |
}
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
Returns a reference to the already created global RFs object.
|
sl@0
|
63 |
|
sl@0
|
64 |
@return RFs reference
|
sl@0
|
65 |
|
sl@0
|
66 |
@panic SqliteMt 3 Invalid RFs handle
|
sl@0
|
67 |
|
sl@0
|
68 |
@see TStaticFs
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
RFs& TStaticFs::Fs()
|
sl@0
|
71 |
{
|
sl@0
|
72 |
__ASSERT_DEBUG(TheFs.iFs.Handle() != KNullHandle, __SQLITEPANIC2(ESqliteOsPanicInvalidFs));
|
sl@0
|
73 |
return TheFs.iFs;
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
77 |
////////////////////////// TStaticMutex //////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
78 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
79 |
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
Global array of static mutexes.
|
sl@0
|
82 |
|
sl@0
|
83 |
@see TStaticMutex
|
sl@0
|
84 |
|
sl@0
|
85 |
@internalComponent
|
sl@0
|
86 |
*/
|
sl@0
|
87 |
static TStaticMutex TheStaticMutex[KStaticMutexCount];
|
sl@0
|
88 |
|
sl@0
|
89 |
/**
|
sl@0
|
90 |
Creates the static mutexes.
|
sl@0
|
91 |
If the creation fails, the program will be terminated.
|
sl@0
|
92 |
|
sl@0
|
93 |
@see TStaticMutex
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
TStaticMutex::TStaticMutex()
|
sl@0
|
96 |
{
|
sl@0
|
97 |
TInt err = Create();
|
sl@0
|
98 |
if(err != KErrNone)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
SQLITE_TRACE_OS(OstTraceExt2(TRACE_INTERNALS, TSTATICMUTEX_TSTATICMUTEX, "OS;0x%X;TStaticMutex::TStaticMutex;err=%d", (TUint)this, err));
|
sl@0
|
101 |
User::Exit(err);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
sqlite3_mutex* StaticMutex(TInt aType)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
__ASSERT_ALWAYS((TUint)aType < (sizeof(TheStaticMutex)/sizeof(TheStaticMutex[0])), __SQLITEPANIC2(ESqliteOsPanicInvalidMutexType));
|
sl@0
|
108 |
return &TheStaticMutex[aType];
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
112 |
////////////////////////// sqlite3_vfs ///////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
113 |
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
114 |
|
sl@0
|
115 |
/**
|
sl@0
|
116 |
Global sqlite3_vfs object.
|
sl@0
|
117 |
|
sl@0
|
118 |
@see VfsApi
|
sl@0
|
119 |
@see TVfs
|
sl@0
|
120 |
|
sl@0
|
121 |
@internalComponent
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
static sqlite3_vfs TheVfsApi =
|
sl@0
|
124 |
{
|
sl@0
|
125 |
/*iVersion =*/ 1,
|
sl@0
|
126 |
/*szOsFile =*/ sizeof(TDbFile),
|
sl@0
|
127 |
/*mxPathname =*/ KMaxFileName,
|
sl@0
|
128 |
/*pNext =*/ NULL,
|
sl@0
|
129 |
/*zName =*/ "SymbianSqliteMt",
|
sl@0
|
130 |
/*pAppData =*/ NULL,
|
sl@0
|
131 |
/*xOpen =*/ &TVfs::Open,
|
sl@0
|
132 |
/*xDelete =*/ &TVfs::Delete,
|
sl@0
|
133 |
/*xAccess =*/ &TVfs::Access,
|
sl@0
|
134 |
/*xFullPathname =*/ &TVfs::FullPathName,
|
sl@0
|
135 |
/*xDlOpen =*/ NULL,
|
sl@0
|
136 |
/*xDlError =*/ NULL,
|
sl@0
|
137 |
/*xDlSym =*/ NULL,
|
sl@0
|
138 |
/*xDlClose =*/ NULL,
|
sl@0
|
139 |
/*xRandomness =*/ &TVfs::Randomness,
|
sl@0
|
140 |
/*xSleep =*/ &TVfs::Sleep,
|
sl@0
|
141 |
/*xCurrentTime =*/ &TVfs::CurrentTime,
|
sl@0
|
142 |
/*xGetLastError =*/ &TVfs::GetLastError
|
sl@0
|
143 |
};
|
sl@0
|
144 |
|
sl@0
|
145 |
sqlite3_vfs* VfsApi()
|
sl@0
|
146 |
{
|
sl@0
|
147 |
return &TheVfsApi;
|
sl@0
|
148 |
}
|
sl@0
|
149 |
|
sl@0
|
150 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
151 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
152 |
|
sl@0
|
153 |
#endif//SQLITE_OS_SYMBIAN
|