First public contribution.
1 // Copyright (c) 2005-2009 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.
16 #ifndef __SQLITESYMBIAN_H__
17 #define __SQLITESYMBIAN_H__
21 //Forward declarations
23 typedef struct sqlite3 sqlite3;
25 TInt sqlite3SymbianLastOsError(void);
26 TInt sqlite3SymbianLibInit(void);
27 void sqlite3SymbianLibFinalize(void);
28 RFs& sqlite3SymbianFs(void);
30 TInt sqlite3SymbianProfilerStart(TInt aCounterType);
31 TInt sqlite3SymbianProfilerStop(TInt aCounterType);
32 TInt sqlite3SymbianProfilerReset(TInt aCounterType);
33 TInt sqlite3SymbianProfilerQuery(TInt aCounterType, TDes8& aResult);
36 The operation code for registering a free page callback.
38 @see TSqlFreePageCallback
42 const TInt KSqlFcntlRegisterFreePageCallback = 1000001;
45 This structure is used for sending a request (via TVfs::FileControl()) to the OS porting layer to
46 register a free page callback - TSqlFreePageCallback::iCallback, which will be called when the number of
47 the free pages reaches or is above the threshold - TSqlFreePageCallback::iThreshold.
49 @see TSqlFreePageCallback
53 NONSHARABLE_STRUCT(TSqlFreePageCallback)
56 "Free page" callback type definition.
58 typedef void (*TCallback)(void* aThis, TInt aFreePageCount);
60 inline TSqlFreePageCallback();
61 inline TSqlFreePageCallback(void* aThis, TInt aFreePageThreshold, TCallback aCallback);
62 inline TBool IsValid() const;
63 inline void CheckAndCallback(TInt aFreePageCount) const;
65 void* iThis; //"this" pointer of the object that has to be called back
66 TInt iThreshold; //"free page threshold" in pages
67 TCallback iCallback; //a pointer to the callback function
72 Initalizes TSqlFreePageCallback data members with their default values.
74 inline TSqlFreePageCallback::TSqlFreePageCallback() :
82 Initalizes TSqlFreePageCallback data members with the supplied callback values.
84 @param aThis "this" pointer of the object that has to be called back,
85 @param aThreshold "free page threshold" in pages,
86 @param aCallback a pointer to the callback function;
88 inline TSqlFreePageCallback::TSqlFreePageCallback(void* aThis, TInt aFreePageThreshold, TSqlFreePageCallback::TCallback aCallback) :
90 iThreshold(aFreePageThreshold),
96 @return True if this is a valid (initialized) callback object.
98 inline TBool TSqlFreePageCallback::IsValid() const
100 return iThis && iThreshold >= 0 && iCallback;
104 Calls the callback if aFreePageCount value is above the threshold.
106 @param aFreePageCount Database free pages count
108 inline void TSqlFreePageCallback::CheckAndCallback(TInt aFreePageCount) const
110 if(aFreePageCount > 0 && aFreePageCount >= iThreshold)
112 (*iCallback)(iThis, aFreePageCount);
116 #endif//__SQLITESYMBIAN_H__