os/persistentdata/persistentstorage/sql/SRC/Server/SqlSrvStatement.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2006-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
// ///////////////                HSqlSrvStmtParamBuf                        ////////////////////////////
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 
sl@0
    20
 Creates a new HSqlSrvStmtParamBuf instance.
sl@0
    21
 
sl@0
    22
 @param aStatement A reference to the CSqlSrvStatement object, which needs the parameter data.
sl@0
    23
 @param aParamIndex Parameter index, zero based.
sl@0
    24
 @param aDataType Parameter value type - binary, text8 or text16.
sl@0
    25
 @param aBufType IPC stream buffer or a simple "bind param" buffer
sl@0
    26
 
sl@0
    27
 @return A pointer to the created HSqlSrvStmtParamBuf instance.
sl@0
    28
 
sl@0
    29
 @leave KErrNoMemory, an out of memory condition has occurred;
sl@0
    30
 
sl@0
    31
 @panic SqlDb 4 In _DEBUG mode. Parameter index negative.
sl@0
    32
*/
sl@0
    33
inline HSqlSrvStmtParamBuf* HSqlSrvStmtParamBuf::NewL(CSqlSrvStatement& aStatement, TInt aParamIndex, 
sl@0
    34
													  HSqlSrvStmtParamBuf::TDataType aDataType, HSqlSrvStmtParamBuf::TBufType aBufType)
sl@0
    35
	{
sl@0
    36
	__ASSERT_DEBUG(aParamIndex >= 0, __SQLPANIC2(ESqlPanicBadArgument));
sl@0
    37
	HSqlSrvStmtParamBuf* self = new (ELeave) HSqlSrvStmtParamBuf(aStatement, aParamIndex, aDataType, aBufType);
sl@0
    38
	self->PushL();
sl@0
    39
	self->ConstructL();
sl@0
    40
	CleanupStack::Pop();
sl@0
    41
	return self;
sl@0
    42
	}
sl@0
    43
sl@0
    44
/**
sl@0
    45
Resets the current HSqlSrvStmtParamBuf instance.
sl@0
    46
sl@0
    47
The internal buffer will be resized, if its capacity is bigger than HSqlSrvStmtParamBuf::EExpandSize * 2 bytes.
sl@0
    48
sl@0
    49
@param aDataType Parameter value type - binary, text8 or text16.
sl@0
    50
@param aBufType IPC stream buffer or a simple "bind param" buffer
sl@0
    51
sl@0
    52
@panic SqlDb 2 In _DEBUG mode. Invalid HSqlSrvStmtParamBuf object.
sl@0
    53
*/
sl@0
    54
inline void HSqlSrvStmtParamBuf::Reset(HSqlSrvStmtParamBuf::TDataType aDataType, HSqlSrvStmtParamBuf::TBufType aBufType)
sl@0
    55
	{
sl@0
    56
	__ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInvalidObj));
sl@0
    57
	
sl@0
    58
	iStatementFinalized = EFalse;
sl@0
    59
	iAlive = ETrue;
sl@0
    60
	iDataType = aDataType;
sl@0
    61
	iBufType = aBufType;
sl@0
    62
	iSynchDone = EFalse;
sl@0
    63
	
sl@0
    64
	iBuf->Delete(0, iBuf->Size());
sl@0
    65
	if(iBuf->Capacity() > (HSqlSrvStmtParamBuf::EExpandSize * 2))
sl@0
    66
		{
sl@0
    67
		TRAPD(err, iBuf->SetReserveL(HSqlSrvStmtParamBuf::EExpandSize * 2));//the buffer size is minimized, the call can't fail
sl@0
    68
		__ASSERT_ALWAYS(err == KErrNone, __SQLPANIC(ESqlPanicInternalError));
sl@0
    69
		}
sl@0
    70
	Set(*iBuf, 0, MStreamBuf::ERead | MStreamBuf::EWrite);
sl@0
    71
	}
sl@0
    72
sl@0
    73
/**
sl@0
    74
Stores the aData into the buffer, from position 0.
sl@0
    75
This function is used when the buffer type is not IPC.
sl@0
    76
sl@0
    77
@param aData The data to be stored into the buffer
sl@0
    78
sl@0
    79
@leave KErrNoMemory, an out of memory condition has occurred;
sl@0
    80
sl@0
    81
@panic SqlDb 2 In _DEBUG mode. Invalid HSqlSrvStmtParamBuf object.
sl@0
    82
@panic SqlDb 7 In _DEBUG mode. The buffer type is not HSqlSrvStmtParamBuf::EBufSimpleBind
sl@0
    83
*/
sl@0
    84
inline const TPtrC8 HSqlSrvStmtParamBuf::SetDataL(const TDesC8& aData)
sl@0
    85
	{
sl@0
    86
	__ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInvalidObj));
sl@0
    87
	__ASSERT_DEBUG(iBufType == HSqlSrvStmtParamBuf::EBufSimpleBind, __SQLPANIC(ESqlPanicInternalError));
sl@0
    88
	iBuf->ResizeL(aData.Length());
sl@0
    89
	iBuf->Write(0, aData);
sl@0
    90
	//If the size is 0, then return KNullDesC8, where an empty string is hold, not a null one ("" instead of NULL)
sl@0
    91
	// was return iBuf->Size() == 0 ? KNullDesC8() : iBuf->Ptr(0);
sl@0
    92
	if (iBuf->Size() == 0)
sl@0
    93
		{
sl@0
    94
		return KNullDesC8();
sl@0
    95
		}
sl@0
    96
	return iBuf->Ptr(0);
sl@0
    97
	}
sl@0
    98
sl@0
    99
/**
sl@0
   100
Returns a 8-bit pointer to the parameter data.
sl@0
   101
sl@0
   102
@return 8-bit pointer to the parameter data.
sl@0
   103
sl@0
   104
@panic SqlDb 2 In _DEBUG mode. Invalid HSqlSrvStmtParamBuf object.
sl@0
   105
*/
sl@0
   106
inline const TPtrC8 HSqlSrvStmtParamBuf::Data() const
sl@0
   107
	{
sl@0
   108
	__ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInvalidObj));
sl@0
   109
	//If the size is 0, then return KNullDesC8, where an empty string is hold, not a null one ("" instead of NULL)
sl@0
   110
	// was return iBuf->Size() == 0 ? KNullDesC8() : iBuf->Ptr(0);
sl@0
   111
	if (iBuf->Size() == 0)
sl@0
   112
		{
sl@0
   113
		return KNullDesC8();
sl@0
   114
		}
sl@0
   115
	return iBuf->Ptr(0);
sl@0
   116
	}
sl@0
   117
sl@0
   118
/**
sl@0
   119
@return Buffered parameter value type - binary, text8 or text16.
sl@0
   120
*/
sl@0
   121
inline HSqlSrvStmtParamBuf::TDataType HSqlSrvStmtParamBuf::DataType() const
sl@0
   122
	{
sl@0
   123
	return iDataType;		
sl@0
   124
	}
sl@0
   125
sl@0
   126
/**
sl@0
   127
Returns the parameter index.
sl@0
   128
sl@0
   129
@panic SqlDb 7 In _DEBUG mode. Negative parameter index.
sl@0
   130
sl@0
   131
@return Parameter index, zero based.
sl@0
   132
*/
sl@0
   133
inline TInt HSqlSrvStmtParamBuf::ParamIndex() const
sl@0
   134
	{
sl@0
   135
	__ASSERT_DEBUG(iParamIndex >= 0, __SQLPANIC(ESqlPanicInternalError));
sl@0
   136
	return iParamIndex;
sl@0
   137
	}
sl@0
   138
sl@0
   139
/**
sl@0
   140
Initializes the HSqlSrvStmtParamBuf instance data members.
sl@0
   141
sl@0
   142
@param aStatement A reference to the CSqlSrvStatement object, which needs the parameter data.
sl@0
   143
@param aParameterIndex Parameter index, zero based.
sl@0
   144
@param aDataType Parameter value type - binary, text8 or text16.
sl@0
   145
@param aBufType IPC stream buffer or a simple "bind param" buffer
sl@0
   146
*/
sl@0
   147
inline HSqlSrvStmtParamBuf::HSqlSrvStmtParamBuf(CSqlSrvStatement& aStatement, TInt aParamIndex, 
sl@0
   148
												HSqlSrvStmtParamBuf::TDataType aDataType, HSqlSrvStmtParamBuf::TBufType aBufType) :
sl@0
   149
	iStatement(aStatement),
sl@0
   150
	iBuf(NULL),
sl@0
   151
	iParamIndex(aParamIndex),
sl@0
   152
	iStatementFinalized(EFalse),
sl@0
   153
	iAlive(EFalse),
sl@0
   154
	iDataType(aDataType),
sl@0
   155
	iBufType(aBufType),
sl@0
   156
	iSynchDone(EFalse)
sl@0
   157
	{
sl@0
   158
	}
sl@0
   159
sl@0
   160
/**
sl@0
   161
HSqlSrvStmtParamBuf - second phase construction.
sl@0
   162
Constructs the internal CFlatBuf object.
sl@0
   163
sl@0
   164
@leave KErrNoMemory, an out of memory condition has occurred;
sl@0
   165
*/
sl@0
   166
inline void HSqlSrvStmtParamBuf::ConstructL()
sl@0
   167
	{
sl@0
   168
	iBuf = CBufFlat::NewL(EExpandSize);
sl@0
   169
	Set(*iBuf, 0, MStreamBuf::ERead | MStreamBuf::EWrite);
sl@0
   170
	iAlive = ETrue;
sl@0
   171
	}
sl@0
   172
sl@0
   173
//////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   174
/////////////////////////////   CSqlSrvStatement class    ////////////////////////////////////////////
sl@0
   175
//////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   176
sl@0
   177
/**
sl@0
   178
Executes the SQL statement moving the cursor to the next row if there is a row available.
sl@0
   179
sl@0
   180
@return KSqlErrStmtExpired, statement expired (if new functions or collating sequences are 
sl@0
   181
							registered or if an authorizer function is added or changed);
sl@0
   182
		KErrNone, the operation completed successfully;
sl@0
   183
		KSqlAtRow, the next record data is ready for processing by the caller;
sl@0
   184
		KSqlAtEnd, no more records;
sl@0
   185
		KSqlErrBusy, database file is locked;
sl@0
   186
		KSqlErrGeneral, run-time error. Next() should not be called anymore;
sl@0
   187
		KSqlErrMisuse, Next() called after KSqlAtEnd or KSqlErrGeneral returned by the previous Next() call;
sl@0
   188
		KErrNoMemory, an out of memory condition has occurred. The statement will be reset.
sl@0
   189
sl@0
   190
@panic SqlDb 2 In _DEBUG mode. Invalid (not created) CSqlSrvStatement object.
sl@0
   191
@panic SqlDb 7 In _DEBUG mode. SQLITE internal error. (SQLITE_ERROR, followed by a sqlite3_reset(), which returns SQLITE_OK)
sl@0
   192
*/	
sl@0
   193
inline TInt CSqlSrvStatement::Next()
sl@0
   194
	{
sl@0
   195
	__ASSERT_DEBUG(iStmtHandle != NULL, __SQLPANIC(ESqlPanicInvalidObj));
sl@0
   196
	TInt err = ::StmtNext(iStmtHandle);
sl@0
   197
	iBufFlatType = static_cast <TSqlBufFlatType> (-1);
sl@0
   198
	iBufFlat.ResetAndMinimize();
sl@0
   199
	return err;
sl@0
   200
	}
sl@0
   201
sl@0
   202
/**
sl@0
   203
Resets the prepared SQL statement to its initial state and makes it ready to be executed again.
sl@0
   204
sl@0
   205
Any SQL statement parameters that had values bound to them, retain their values.
sl@0
   206
sl@0
   207
@return KErrNone,  the operation completed successfully;
sl@0
   208
		KSqlErrStmtExpired, Statement expired (if new functions or collating sequences are 
sl@0
   209
							registered or if an authorizer function is added or changed)
sl@0
   210
sl@0
   211
@panic SqlDb 2 In _DEBUG mode. Invalid (not created) CSqlSrvStatement object.
sl@0
   212
*/	
sl@0
   213
inline TInt CSqlSrvStatement::Reset()
sl@0
   214
	{
sl@0
   215
	__ASSERT_DEBUG(iStmtHandle != NULL, __SQLPANIC(ESqlPanicInvalidObj));
sl@0
   216
	iBufFlatType = static_cast <TSqlBufFlatType> (-1);
sl@0
   217
	iBufFlat.ResetAndMinimize();
sl@0
   218
	return ::StmtReset(iStmtHandle);
sl@0
   219
	}
sl@0
   220
sl@0
   221
/**
sl@0
   222
Executes the prepared SQL statement.
sl@0
   223
sl@0
   224
@return KErrNone, the operation completed successfully;
sl@0
   225
		KSqlErrStmtExpired, statement expired (if new functions or collating sequences are 
sl@0
   226
							registered or if an authorizer function is added or changed);
sl@0
   227
		KErrNoMemory, an out of memory condition has occurred. The statement will be reset.
sl@0
   228
sl@0
   229
@panic SqlDb 2 In _DEBUG mode. Invalid (not created) CSqlSrvStatement object.
sl@0
   230
@panic SqlDb 7 In _DEBUG mode. SQLITE internal error. (SQLITE_ERROR, followed by a sqlite3_reset(), which returns SQLITE_OK)
sl@0
   231
*/	
sl@0
   232
inline TInt CSqlSrvStatement::Exec()
sl@0
   233
	{
sl@0
   234
	__ASSERT_DEBUG(iStmtHandle != NULL, __SQLPANIC(ESqlPanicInvalidObj));
sl@0
   235
	TInt err = ::StmtExec(iStmtHandle);
sl@0
   236
	iBufFlatType = static_cast <TSqlBufFlatType> (-1);
sl@0
   237
	iBufFlat.ResetAndMinimize();
sl@0
   238
	return err;
sl@0
   239
	}
sl@0
   240
sl@0
   241
/**
sl@0
   242
@panic SqlDb 2 In _DEBUG mode. Invalid (not created) CSqlSrvStatement object.
sl@0
   243
*/
sl@0
   244
inline const RSqlBufFlat& CSqlSrvStatement::BufFlatL(TSqlBufFlatType aWhat) const
sl@0
   245
	{
sl@0
   246
	__ASSERT_DEBUG(iStmtHandle != NULL, __SQLPANIC(ESqlPanicInvalidObj));
sl@0
   247
	if(aWhat != iBufFlatType)
sl@0
   248
		{
sl@0
   249
		__SQLLEAVE(KErrArgument);
sl@0
   250
		}
sl@0
   251
	return iBufFlat;
sl@0
   252
	}
sl@0
   253
			
sl@0
   254
/**
sl@0
   255
*/	
sl@0
   256
inline CSqlSrvStatement::CSqlSrvStatement()
sl@0
   257
	{
sl@0
   258
	}
sl@0
   259
sl@0
   260
/**
sl@0
   261
Initializes CSqlSrvStatement instance.
sl@0
   262
sl@0
   263
@param aDbHandle The database handle
sl@0
   264
@param aSqlStmt 16-bit SQL statement, zero-terminated string
sl@0
   265
sl@0
   266
@leave KErrNoMemory, an out of memory condition has occurred;
sl@0
   267
	   KErrArgument, bad argument, for example - the SQL string contains more than one SQL statements;
sl@0
   268
                  Note that the function may also leave with some other database specific 
sl@0
   269
                  errors categorised as ESqlDbError.
sl@0
   270
sl@0
   271
@panic SqlDb 4 In _DEBUG mode. aDbHandle is NULL.
sl@0
   272
*/	
sl@0
   273
inline void CSqlSrvStatement::ConstructL(sqlite3* aDbHandle, const TDesC16& aSqlStmt)
sl@0
   274
	{
sl@0
   275
	__ASSERT_DEBUG(aDbHandle != NULL, __SQLPANIC(ESqlPanicBadArgument));
sl@0
   276
	iStmtHandle = ::StmtPrepare16L(aDbHandle, aSqlStmt);
sl@0
   277
	DoCommonConstructL();
sl@0
   278
	}
sl@0
   279
	
sl@0
   280
/**
sl@0
   281
Initializes CSqlSrvStatement instance.
sl@0
   282
sl@0
   283
@param aDbHandle The database handle
sl@0
   284
@param aSqlStmt 8-bit SQL statement, zero-terminated string
sl@0
   285
sl@0
   286
@leave KErrNoMemory, an out of memory condition has occurred;
sl@0
   287
	   KErrArgument, bad argument, for example - the SQL string contains more than one SQL statements;
sl@0
   288
                  Note that the function may also leave with some other database specific 
sl@0
   289
                  errors categorised as ESqlDbError.
sl@0
   290
sl@0
   291
@panic SqlDb 4 In _DEBUG mode. aDbHandle is NULL.
sl@0
   292
*/	
sl@0
   293
inline void CSqlSrvStatement::ConstructL(sqlite3* aDbHandle, const TDesC8& aSqlStmt)
sl@0
   294
	{
sl@0
   295
	__ASSERT_DEBUG(aDbHandle != NULL, __SQLPANIC(ESqlPanicBadArgument));
sl@0
   296
	iStmtHandle = ::StmtPrepare8L(aDbHandle, aSqlStmt);
sl@0
   297
	DoCommonConstructL();
sl@0
   298
	}