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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "sqlite3.h"
|
sl@0
|
17 |
#include "SqlAssert.h"
|
sl@0
|
18 |
#include "SqlSrvBlob.h"
|
sl@0
|
19 |
#include "SqliteSymbian.h"
|
sl@0
|
20 |
#include "SqlSrvUtil.h"
|
sl@0
|
21 |
#include "SqlSrvStrings.h"
|
sl@0
|
22 |
#include "SqlDb.h"
|
sl@0
|
23 |
#include "OstTraceDefinitions.h"
|
sl@0
|
24 |
#ifdef OST_TRACE_COMPILER_IN_USE
|
sl@0
|
25 |
#include "SqlSrvBlobTraces.h"
|
sl@0
|
26 |
#endif
|
sl@0
|
27 |
#include "SqlTraceDef.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
#define UNUSED_VAR(var) var = var
|
sl@0
|
30 |
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
Creates a new HBlobBuf instance.
|
sl@0
|
33 |
|
sl@0
|
34 |
@param aDb The database handle
|
sl@0
|
35 |
@param aDbName The database name, zero-terminated. If the blob belongs to one of the attached databases,
|
sl@0
|
36 |
then the attached database name should be used as the value of aDbName, otherwise the
|
sl@0
|
37 |
value should be "main"
|
sl@0
|
38 |
@param aTableName The name of the table to which the blob belongs, zero-terminated.
|
sl@0
|
39 |
@param aColumnName The name of the blob column, zero-terminated.
|
sl@0
|
40 |
@param aRowId The ROWID of the row to which the blob belongs
|
sl@0
|
41 |
@param aMode Specifies the blob access mode, either HBlobBuf::EReadOnly or HBlobBuf::EReadWrite
|
sl@0
|
42 |
|
sl@0
|
43 |
@leave KErrNoMemory, An out of memory condition has occurred;
|
sl@0
|
44 |
Note that the function may also leave with some other system wide errors or
|
sl@0
|
45 |
database specific errors categorised as ESqlDbError.
|
sl@0
|
46 |
|
sl@0
|
47 |
@return A pointer to the created HBlobBuf instance
|
sl@0
|
48 |
|
sl@0
|
49 |
@panic SqlDb 4 In _DEBUG mode. NULL aDb parameter.
|
sl@0
|
50 |
@panic SqlDb 4 In _DEBUG mode. Negative or zero aRowId.
|
sl@0
|
51 |
@panic SqlDb 4 In _DEBUG mode. aMode parameter is not HBlobBuf::EReadOnly or HBlobBuf::EReadWrite.
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
HBlobBuf* HBlobBuf::NewL(sqlite3* aDb, const TDesC8& aDbName, const TDesC8& aTableName, const TDesC8& aColumnName, TInt64 aRowId, TMode aMode)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
__SQLTRACE_BLOBVAR(TBuf<100> des16prnbuf);
|
sl@0
|
56 |
SQL_TRACE_BLOB(OstTraceExt4(TRACE_INTERNALS, HBLOBBUF_NEWL_ENTRY1, "Entry;0;HBlobBuf::NewL;sqlite3*=0x%X;aDbName=%s;aRowId=%lld;aMode=%d", (TUint)aDb, __SQLPRNSTR8(aDbName, des16prnbuf), aRowId, (TInt)aMode));
|
sl@0
|
57 |
SQL_TRACE_BLOB(OstTraceExt1(TRACE_INTERNALS, HBLOBBUF_NEWL_ENTRY2, "Entry;0;HBlobBuf::NewL;aTableName=%s", __SQLPRNSTR8(aTableName, des16prnbuf)));
|
sl@0
|
58 |
SQL_TRACE_BLOB(OstTraceExt1(TRACE_INTERNALS, HBLOBBUF_NEWL_ENTRY3, "Entry;0;HBlobBuf::NewL;aColumnName=%s", __SQLPRNSTR8(aColumnName, des16prnbuf)));
|
sl@0
|
59 |
__ASSERT_DEBUG(aDb != NULL, __SQLPANIC2(ESqlPanicBadArgument));
|
sl@0
|
60 |
__ASSERT_DEBUG(aRowId > 0, __SQLPANIC2(ESqlPanicBadArgument));
|
sl@0
|
61 |
__ASSERT_DEBUG(aMode == HBlobBuf::EReadOnly || aMode == HBlobBuf::EReadWrite, __SQLPANIC2(ESqlPanicBadArgument));
|
sl@0
|
62 |
|
sl@0
|
63 |
HBlobBuf* self = new (ELeave) HBlobBuf;
|
sl@0
|
64 |
CleanupStack::PushL(self);
|
sl@0
|
65 |
self->ConstructL(aDb, aDbName, aTableName, aColumnName, aRowId, aMode);
|
sl@0
|
66 |
CleanupStack::Pop(self);
|
sl@0
|
67 |
SQL_TRACE_BLOB(OstTraceExt2(TRACE_INTERNALS, HBLOBBUF_NEWL_EXIT, "Exit;0x%X;HBlobBuf::NewL;sqlite3_blob*=0x%X", (TUint)self, (TUint)self->iBlobHandle));
|
sl@0
|
68 |
return self;
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
Initializes HBlobBuf data members with their default values.
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
HBlobBuf::HBlobBuf() :
|
sl@0
|
75 |
iBlobHandle(NULL),
|
sl@0
|
76 |
iWrPos(KMinTInt),
|
sl@0
|
77 |
iRdPos(KMinTInt)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
/**
|
sl@0
|
82 |
Initializes a new HBlobBuf instance.
|
sl@0
|
83 |
|
sl@0
|
84 |
@param aDb The database handle
|
sl@0
|
85 |
@param aDbName The database name, zero-terminated. If the blob belongs to one of the attached databases,
|
sl@0
|
86 |
then the attached database name should be used as a value of aDbName, otherwise the
|
sl@0
|
87 |
value should be "main"
|
sl@0
|
88 |
@param aTableName The name of the table to which the blob belongs, zero-terminated.
|
sl@0
|
89 |
@param aColumnName The name of the blob column, zero-terminated.
|
sl@0
|
90 |
@param aRowId The ROWID of the row to which the blob belongs
|
sl@0
|
91 |
@param aMode Specifies the blob access mode, either HBlobBuf::EReadOnly or HBlobBuf::EReadWrite
|
sl@0
|
92 |
|
sl@0
|
93 |
@leave KErrNoMemory, An out of memory condition has occurred;
|
sl@0
|
94 |
Note that the function may also leave with some other system wide errors or
|
sl@0
|
95 |
database specific errors categorised as ESqlDbError.
|
sl@0
|
96 |
|
sl@0
|
97 |
@panic SqlDb 4 In _DEBUG mode. NULL aDb parameter.
|
sl@0
|
98 |
@panic SqlDb 4 In _DEBUG mode. Negative or zero aRowId.
|
sl@0
|
99 |
@panic SqlDb 4 In _DEBUG mode. aMode parameter is not HBlobBuf::EReadOnly or HBlobBuf::EReadWrite.
|
sl@0
|
100 |
@panic SqlDb 7 In _DEBUG mode. NULL blob handle.
|
sl@0
|
101 |
*/
|
sl@0
|
102 |
void HBlobBuf::ConstructL(sqlite3* aDb, const TDesC8& aDbName, const TDesC8& aTableName, const TDesC8& aColumnName, TInt64 aRowId, TMode aMode)
|
sl@0
|
103 |
{
|
sl@0
|
104 |
__ASSERT_DEBUG(aDb != NULL, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
105 |
__ASSERT_DEBUG(aRowId > 0, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
106 |
__ASSERT_DEBUG(aMode == HBlobBuf::EReadOnly || aMode == HBlobBuf::EReadWrite, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
107 |
|
sl@0
|
108 |
(void)sqlite3SymbianLastOsError();//clear last OS error
|
sl@0
|
109 |
|
sl@0
|
110 |
TInt err = sqlite3_blob_open(aDb, (const char*)aDbName.Ptr(), (const char*)aTableName.Ptr(), (const char*)aColumnName.Ptr(),
|
sl@0
|
111 |
aRowId, aMode & HBlobBuf::EReadWrite, &iBlobHandle);
|
sl@0
|
112 |
__SQLLEAVE_IF_ERROR(::Sql2OsErrCode(err, sqlite3SymbianLastOsError()));
|
sl@0
|
113 |
__ASSERT_DEBUG(iBlobHandle != NULL, __SQLPANIC(ESqlPanicInternalError));
|
sl@0
|
114 |
iBlobSize = sqlite3_blob_bytes(iBlobHandle);
|
sl@0
|
115 |
iWrPos = iRdPos = 0;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
/**
|
sl@0
|
119 |
Closes the blob handle as part of the HBlobBuf object being destroyed.
|
sl@0
|
120 |
*/
|
sl@0
|
121 |
void HBlobBuf::DoRelease()
|
sl@0
|
122 |
{
|
sl@0
|
123 |
SQL_TRACE_BLOB(OstTraceExt2(TRACE_INTERNALS, HBLOBBUF_DORELEASE_ENTRY, "Entry;0x%X;HBlobBuf::DoRelease;sqlite3_blob*=0x%X", (TUint)this, (TUint)iBlobHandle));
|
sl@0
|
124 |
TRAPD(err, DoSynchL());
|
sl@0
|
125 |
SQL_TRACE_BLOB(OstTraceExt2(TRACE_INTERNALS, HBLOBBUF_DORELEASE_EXIT, "Exit;0x%X;HBlobBuf::DoRelease;err=%d", (TUint)this, err));
|
sl@0
|
126 |
UNUSED_VAR(err);
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
/**
|
sl@0
|
130 |
Closes the blob handle.
|
sl@0
|
131 |
Any buffered data is delivered to the stream.
|
sl@0
|
132 |
*/
|
sl@0
|
133 |
void HBlobBuf::DoSynchL()
|
sl@0
|
134 |
{
|
sl@0
|
135 |
if(iBlobHandle)
|
sl@0
|
136 |
{
|
sl@0
|
137 |
TInt err = sqlite3_blob_close(iBlobHandle);
|
sl@0
|
138 |
SQL_TRACE_BLOB(OstTraceExt2(TRACE_INTERNALS, HBLOBBUF_DOSYNCHL, "0x%X;HBlobBuf::DoSynchL;err=%d", (TUint)this, err));
|
sl@0
|
139 |
iBlobHandle = NULL; // the close is unconditional, even if an error occurs
|
sl@0
|
140 |
__SQLLEAVE_IF_ERROR(::Sql2OsErrCode(err, sqlite3SymbianLastOsError()));
|
sl@0
|
141 |
}
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
/**
|
sl@0
|
145 |
Reads a data block from the blob with the specified length.
|
sl@0
|
146 |
|
sl@0
|
147 |
@param aPtr Pointer to the location where the blob data will be copied
|
sl@0
|
148 |
@param aMaxLength The length of the data block to be read
|
sl@0
|
149 |
|
sl@0
|
150 |
@leave KErrNoMemory, An out of memory condition has occurred;
|
sl@0
|
151 |
KErrEof, An attempt has been made to read beyond the end of the blob;
|
sl@0
|
152 |
KErrBadHandle, NULL blob handle;
|
sl@0
|
153 |
Note that the function may also leave with some other system
|
sl@0
|
154 |
wide errors or database specific errors categorised as ESqlDbError.
|
sl@0
|
155 |
|
sl@0
|
156 |
@return The number of bytes read.
|
sl@0
|
157 |
|
sl@0
|
158 |
@panic SqlDb 4 In _DEBUG mode. NULL aPtr parameter.
|
sl@0
|
159 |
@panic SqlDb 4 In _DEBUG mode. Negative aMaxLength parameter.
|
sl@0
|
160 |
@panic SqlDb 2 In _DEBUG mode. NULL iBlobHandle.
|
sl@0
|
161 |
*/
|
sl@0
|
162 |
TInt HBlobBuf::DoReadL(TAny* aPtr, TInt aMaxLength)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
__ASSERT_DEBUG(aPtr != NULL, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
165 |
__ASSERT_DEBUG(aMaxLength >= 0, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
166 |
__ASSERT_DEBUG(iBlobHandle != NULL, __SQLPANIC(ESqlPanicInvalidObj));
|
sl@0
|
167 |
|
sl@0
|
168 |
SQL_TRACE_BLOB(OstTraceExt5(TRACE_INTERNALS, HBLOBBUF_DOREADL, "0x%X;HBlobBuf::DoReadL;aMaxLength=%d;iBlobSize=%d;iWrPos=%d;iRdPos=%d", (TUint)this, aMaxLength, iBlobSize, iWrPos, iRdPos));
|
sl@0
|
169 |
|
sl@0
|
170 |
if(aMaxLength <= 0)
|
sl@0
|
171 |
{
|
sl@0
|
172 |
return 0;
|
sl@0
|
173 |
}
|
sl@0
|
174 |
|
sl@0
|
175 |
(void)sqlite3SymbianLastOsError();//clear last OS error
|
sl@0
|
176 |
|
sl@0
|
177 |
if(iRdPos >= iBlobSize)
|
sl@0
|
178 |
{
|
sl@0
|
179 |
__SQLLEAVE(KErrEof);
|
sl@0
|
180 |
}
|
sl@0
|
181 |
if((aMaxLength + iRdPos) > iBlobSize)
|
sl@0
|
182 |
{
|
sl@0
|
183 |
aMaxLength = iBlobSize - iRdPos;
|
sl@0
|
184 |
}
|
sl@0
|
185 |
TInt err = sqlite3_blob_read(BlobHandleL(), aPtr, aMaxLength, iRdPos);
|
sl@0
|
186 |
__SQLLEAVE_IF_ERROR(::Sql2OsErrCode(err, sqlite3SymbianLastOsError()));
|
sl@0
|
187 |
iRdPos += aMaxLength;
|
sl@0
|
188 |
return aMaxLength;
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
/**
|
sl@0
|
192 |
Writes a data block with the specified length to the blob.
|
sl@0
|
193 |
|
sl@0
|
194 |
@param aPtr Pointer to the location with the blob data to be written
|
sl@0
|
195 |
@param aLength The length of the data block to be written
|
sl@0
|
196 |
|
sl@0
|
197 |
@leave KErrNoMemory, An out of memory condition has occurred;
|
sl@0
|
198 |
KErrEof, An attempt has been made to write beyond the end of the blob;
|
sl@0
|
199 |
KErrBadHandle, NULL blob handle;
|
sl@0
|
200 |
Note that the function may also leave with some other system
|
sl@0
|
201 |
wide errors or database specific errors categorised as ESqlDbError.
|
sl@0
|
202 |
|
sl@0
|
203 |
@panic SqlDb 4 In _DEBUG mode. NULL aPtr parameter.
|
sl@0
|
204 |
@panic SqlDb 4 In _DEBUG mode. Negative aLength parameter.
|
sl@0
|
205 |
@panic SqlDb 2 In _DEBUG mode. NULL iBlobHandle.
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
void HBlobBuf::DoWriteL(const TAny* aPtr, TInt aLength)
|
sl@0
|
208 |
{
|
sl@0
|
209 |
__ASSERT_DEBUG(aPtr != NULL, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
210 |
__ASSERT_DEBUG(aLength >= 0, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
211 |
__ASSERT_DEBUG(iBlobHandle != NULL, __SQLPANIC(ESqlPanicInvalidObj));
|
sl@0
|
212 |
|
sl@0
|
213 |
SQL_TRACE_BLOB(OstTraceExt5(TRACE_INTERNALS, HBLOBBUF_DOWRITEL, "0x%X;HBlobBuf::DoWriteL;aLength=%d;iBlobSize=%d;iWrPos=%d;iRdPos=%d", (TUint)this, aLength, iBlobSize, iWrPos, iRdPos));
|
sl@0
|
214 |
|
sl@0
|
215 |
if(aLength <= 0)
|
sl@0
|
216 |
{
|
sl@0
|
217 |
return;
|
sl@0
|
218 |
}
|
sl@0
|
219 |
|
sl@0
|
220 |
if((iWrPos + aLength) > iBlobSize)
|
sl@0
|
221 |
{
|
sl@0
|
222 |
__SQLLEAVE(KErrEof);
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
(void)sqlite3SymbianLastOsError();//clear last OS error
|
sl@0
|
226 |
TInt err = sqlite3_blob_write(BlobHandleL(), aPtr, aLength, iWrPos);
|
sl@0
|
227 |
err = ::Sql2OsErrCode(err, sqlite3SymbianLastOsError());
|
sl@0
|
228 |
|
sl@0
|
229 |
__SQLLEAVE_IF_ERROR(err);
|
sl@0
|
230 |
iWrPos += aLength;
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
/**
|
sl@0
|
234 |
Positions the mark(s) indicated by aMark at aOffset from aLocation.
|
sl@0
|
235 |
|
sl@0
|
236 |
@leave KErrEof, An attempt has been made to seek beyond the end of the blob;
|
sl@0
|
237 |
KErrBadHandle, NULL blob handle;
|
sl@0
|
238 |
Note that the function may also leave with some other system wide errors or
|
sl@0
|
239 |
database specific errors categorised as ESqlDbError.
|
sl@0
|
240 |
|
sl@0
|
241 |
@return The new stream position (read or write)
|
sl@0
|
242 |
|
sl@0
|
243 |
@panic SqlDb 2 In _DEBUG mode. NULL iBlobHandle.
|
sl@0
|
244 |
@panic SqlDb 4 In _DEBUG mode. Negative aOffset parameter.
|
sl@0
|
245 |
@panic SqlDb 8 In _DEBUG mode. Invalid aMark parameter.
|
sl@0
|
246 |
@panic SqlDb 9 In _DEBUG mode. Invalid aLocation parameter.
|
sl@0
|
247 |
*/
|
sl@0
|
248 |
TStreamPos HBlobBuf::DoSeekL(MStreamBuf::TMark aMark, TStreamLocation aLocation, TInt aOffset)
|
sl@0
|
249 |
{
|
sl@0
|
250 |
SQL_TRACE_BLOB(OstTraceExt5(TRACE_INTERNALS, HBLOBBUF_DOSEEKL, "0x%X;HBlobBuf::DoSeekL;aMark=%d;aLocation=%d;aOffset=%d;iBlobSize=%d", (TUint)this, (TInt)aMark, (TInt)aLocation, aOffset, iBlobSize));
|
sl@0
|
251 |
__ASSERT_ALWAYS(!(aMark & ~(ERead | EWrite)), __SQLPANIC(ESqlPanicStreamMarkInvalid));
|
sl@0
|
252 |
__ASSERT_DEBUG(aOffset >= 0, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
253 |
__ASSERT_DEBUG(iBlobHandle != NULL, __SQLPANIC(ESqlPanicInvalidObj));
|
sl@0
|
254 |
|
sl@0
|
255 |
TInt newPos = 0;
|
sl@0
|
256 |
switch(aLocation)
|
sl@0
|
257 |
{
|
sl@0
|
258 |
case EStreamBeginning:
|
sl@0
|
259 |
newPos = aOffset;
|
sl@0
|
260 |
break;
|
sl@0
|
261 |
case EStreamMark:
|
sl@0
|
262 |
newPos = (aMark & MStreamBuf::EWrite ? iWrPos : iRdPos) + aOffset;
|
sl@0
|
263 |
break;
|
sl@0
|
264 |
case EStreamEnd:
|
sl@0
|
265 |
newPos = iBlobSize + aOffset;
|
sl@0
|
266 |
break;
|
sl@0
|
267 |
default:
|
sl@0
|
268 |
__ASSERT_DEBUG(0, __SQLPANIC(ESqlPanicStreamLocationInvalid));
|
sl@0
|
269 |
newPos = -1;
|
sl@0
|
270 |
break;
|
sl@0
|
271 |
}
|
sl@0
|
272 |
if(newPos < 0 || newPos > iBlobSize)
|
sl@0
|
273 |
{
|
sl@0
|
274 |
__SQLLEAVE(KErrEof);
|
sl@0
|
275 |
}
|
sl@0
|
276 |
if(aMark & MStreamBuf::EWrite)
|
sl@0
|
277 |
{
|
sl@0
|
278 |
iWrPos = newPos;
|
sl@0
|
279 |
}
|
sl@0
|
280 |
else if(aMark & MStreamBuf::ERead)
|
sl@0
|
281 |
{
|
sl@0
|
282 |
iRdPos = newPos;
|
sl@0
|
283 |
}
|
sl@0
|
284 |
return TStreamPos(newPos);
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
/**
|
sl@0
|
288 |
Returns the blob handle, if it is not NULL.
|
sl@0
|
289 |
|
sl@0
|
290 |
@leave KErrBadHandle, The blob handle is NULL.
|
sl@0
|
291 |
|
sl@0
|
292 |
@return The blob handle
|
sl@0
|
293 |
*/
|
sl@0
|
294 |
sqlite3_blob* HBlobBuf::BlobHandleL()
|
sl@0
|
295 |
{
|
sl@0
|
296 |
if(!iBlobHandle)
|
sl@0
|
297 |
{
|
sl@0
|
298 |
__SQLLEAVE(KErrBadHandle);
|
sl@0
|
299 |
}
|
sl@0
|
300 |
return iBlobHandle;
|
sl@0
|
301 |
}
|