sl@0
|
1 |
// Copyright (c) 2008-2009 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 |
#ifndef __SQLSRVBLOB_H__
|
sl@0
|
17 |
#define __SQLSRVBLOB_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <s32buf.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
//Forward declarations
|
sl@0
|
22 |
struct sqlite3_blob;
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
Stream buffer class with no intermediate buffering capabilities.
|
sl@0
|
26 |
|
sl@0
|
27 |
The primary purpose of this class is:
|
sl@0
|
28 |
- to read/write from/to a blob column using sqlite3_blob_read()/sqlite3_blob_write() SQLite functions;
|
sl@0
|
29 |
- to serve as an IPC buffer for streaming the blob content from/to the client side dll;
|
sl@0
|
30 |
|
sl@0
|
31 |
The class overrides the following virtual MStreamBuf functions:
|
sl@0
|
32 |
- DoRelease();
|
sl@0
|
33 |
- DoSynchL();
|
sl@0
|
34 |
- DoReadL();
|
sl@0
|
35 |
- DoWriteL();
|
sl@0
|
36 |
- DoSeekL();
|
sl@0
|
37 |
|
sl@0
|
38 |
@internalComponent
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
NONSHARABLE_CLASS(HBlobBuf) : public MStreamBuf
|
sl@0
|
41 |
{
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
enum TMode
|
sl@0
|
44 |
{
|
sl@0
|
45 |
EReadOnly,
|
sl@0
|
46 |
EReadWrite
|
sl@0
|
47 |
};
|
sl@0
|
48 |
|
sl@0
|
49 |
public:
|
sl@0
|
50 |
static HBlobBuf* NewL(sqlite3* aDb, const TDesC8& aDbName, const TDesC8& aTableName, const TDesC8& aColumnName, TInt64 aRowId, TMode aMode);
|
sl@0
|
51 |
|
sl@0
|
52 |
private:
|
sl@0
|
53 |
HBlobBuf();
|
sl@0
|
54 |
void ConstructL(sqlite3* aDb, const TDesC8& aDbName, const TDesC8& aTableName, const TDesC8& aColumnName, TInt64 aRowId, TMode aMode);
|
sl@0
|
55 |
|
sl@0
|
56 |
virtual void DoRelease();
|
sl@0
|
57 |
virtual void DoSynchL();
|
sl@0
|
58 |
virtual TInt DoReadL(TAny* aPtr, TInt aMaxLength);
|
sl@0
|
59 |
virtual void DoWriteL(const TAny* aPtr, TInt aLength);
|
sl@0
|
60 |
virtual TStreamPos DoSeekL(MStreamBuf::TMark aMark, TStreamLocation aLocation, TInt aOffset);
|
sl@0
|
61 |
|
sl@0
|
62 |
sqlite3_blob* BlobHandleL();
|
sl@0
|
63 |
|
sl@0
|
64 |
private:
|
sl@0
|
65 |
sqlite3_blob* iBlobHandle;
|
sl@0
|
66 |
TInt iBlobSize;
|
sl@0
|
67 |
TInt iWrPos;
|
sl@0
|
68 |
TInt iRdPos;
|
sl@0
|
69 |
|
sl@0
|
70 |
};
|
sl@0
|
71 |
|
sl@0
|
72 |
#endif//__SQLSRVBLOB_H__
|