Update contrib.
1 // Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The Symbian OS porting layer - multi-threaded implementation.
15 // Platform dependend implementation of the static mutexes and the file session API.
22 #include "os_symbian.h"
23 #include "SqliteUtil.h"
24 #include "OstTraceDefinitions.h"
25 #ifdef OST_TRACE_COMPILER_IN_USE
26 #include "os_symbian_hrdwTraces.h"
28 #include "SqliteTraceDef.h"
30 #ifdef SQLITE_OS_SYMBIAN
32 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
33 ////////////////////////// TStaticFs /////////////////////////////////////////////////////////////////////////////////////////
34 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
37 Single global RFs instance
43 static TStaticFs TheFs;
47 If the operation fails, the program will be terminated.
51 TStaticFs::TStaticFs()
56 SQLITE_TRACE_OS(OstTraceExt2(TRACE_INTERNALS, TSTATICFS_TSTATICFS, "OS;0x%X;TStaticFs::TStaticFs;err=%d", (TUint)this, err));
62 Returns a reference to the already created global RFs object.
66 @panic SqliteMt 3 Invalid RFs handle
72 __ASSERT_DEBUG(TheFs.iFs.Handle() != KNullHandle, __SQLITEPANIC2(ESqliteOsPanicInvalidFs));
76 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
77 ////////////////////////// TStaticMutex //////////////////////////////////////////////////////////////////////////////////////
78 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
81 Global array of static mutexes.
87 static TStaticMutex TheStaticMutex[KStaticMutexCount];
90 Creates the static mutexes.
91 If the creation fails, the program will be terminated.
95 TStaticMutex::TStaticMutex()
100 SQLITE_TRACE_OS(OstTraceExt2(TRACE_INTERNALS, TSTATICMUTEX_TSTATICMUTEX, "OS;0x%X;TStaticMutex::TStaticMutex;err=%d", (TUint)this, err));
105 sqlite3_mutex* StaticMutex(TInt aType)
107 __ASSERT_ALWAYS((TUint)aType < (sizeof(TheStaticMutex)/sizeof(TheStaticMutex[0])), __SQLITEPANIC2(ESqliteOsPanicInvalidMutexType));
108 return &TheStaticMutex[aType];
111 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
112 ////////////////////////// sqlite3_vfs ///////////////////////////////////////////////////////////////////////////////////
113 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
116 Global sqlite3_vfs object.
123 static sqlite3_vfs TheVfsApi =
126 /*szOsFile =*/ sizeof(TDbFile),
127 /*mxPathname =*/ KMaxFileName,
129 /*zName =*/ "SymbianSqliteMt",
131 /*xOpen =*/ &TVfs::Open,
132 /*xDelete =*/ &TVfs::Delete,
133 /*xAccess =*/ &TVfs::Access,
134 /*xFullPathname =*/ &TVfs::FullPathName,
139 /*xRandomness =*/ &TVfs::Randomness,
140 /*xSleep =*/ &TVfs::Sleep,
141 /*xCurrentTime =*/ &TVfs::CurrentTime,
142 /*xGetLastError =*/ &TVfs::GetLastError
145 sqlite3_vfs* VfsApi()
150 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
151 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
153 #endif//SQLITE_OS_SYMBIAN