sl@0
|
1 |
// Copyright (c) 2006-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 |
// // RSqlBufFlat class //
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
|
sl@0
|
20 |
@return Flat buffer elements count
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
inline TInt RSqlBufFlat::Count() const
|
sl@0
|
23 |
{
|
sl@0
|
24 |
SQLFLATBUF_INVARIANT();
|
sl@0
|
25 |
return iBuf->iCount;
|
sl@0
|
26 |
}
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
@return Flat buffer size (this is not the max size. It refers only to the used part of the flat buffer)
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
inline TInt RSqlBufFlat::Size() const
|
sl@0
|
32 |
{
|
sl@0
|
33 |
SQLFLATBUF_INVARIANT();
|
sl@0
|
34 |
return iBuf->iSize;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
@return Flat buffer max size
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
inline TInt RSqlBufFlat::MaxSize() const
|
sl@0
|
41 |
{
|
sl@0
|
42 |
SQLFLATBUF_INVARIANT();
|
sl@0
|
43 |
return iMaxSize;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
@return A pointer to the beginning of the flat buffer header
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
inline RSqlBufFlat::TCell* RSqlBufFlat::Header()
|
sl@0
|
50 |
{
|
sl@0
|
51 |
return reinterpret_cast <RSqlBufFlat::TCell*> (iBuf + 1);
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
/**
|
sl@0
|
55 |
@return A const pointer to the beginning of the flat buffer header
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
inline const RSqlBufFlat::TCell* RSqlBufFlat::Header() const
|
sl@0
|
58 |
{
|
sl@0
|
59 |
return reinterpret_cast <const RSqlBufFlat::TCell*> (iBuf + 1);
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
/**
|
sl@0
|
63 |
@return The avaliable space in the flat buffer
|
sl@0
|
64 |
*/
|
sl@0
|
65 |
inline TInt RSqlBufFlat::Available() const
|
sl@0
|
66 |
{
|
sl@0
|
67 |
return iMaxSize - iBuf->iSize;
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
/**
|
sl@0
|
71 |
This function returns a const reference to a descriptor object pointing to the internal buffer.
|
sl@0
|
72 |
BufDes() guarantees to return a const descriptor, whose lifetime is the same as the flat buffer lifetime.
|
sl@0
|
73 |
(useful when making asynchronous IPC calls)
|
sl@0
|
74 |
|
sl@0
|
75 |
@return A reference to a descriptor object pointing to the internal buffer.
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
inline const TDesC8& RSqlBufFlat::BufDes() const
|
sl@0
|
78 |
{
|
sl@0
|
79 |
SQLFLATBUF_INVARIANT();
|
sl@0
|
80 |
iBufPtrC.Set(reinterpret_cast <const TUint8*> (iBuf), iBuf->iSize);
|
sl@0
|
81 |
return iBufPtrC;
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
/**
|
sl@0
|
85 |
This function returns a modifiable reference to a descriptor object pointing to the internal buffer.
|
sl@0
|
86 |
BufPtr() guarantees to return a modifiable descriptor, whose lifetime is the same as the flat buffer lifetime.
|
sl@0
|
87 |
(useful when making asynchronous IPC calls)
|
sl@0
|
88 |
|
sl@0
|
89 |
@return A reference to a modifiable descriptor object pointing to the internal buffer.
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
inline TPtr8& RSqlBufFlat::BufPtr()
|
sl@0
|
92 |
{
|
sl@0
|
93 |
SQLFLATBUF_INVARIANT();
|
sl@0
|
94 |
iBufPtr.Set(reinterpret_cast <TUint8*> (iBuf), iBuf->iSize, iMaxSize);
|
sl@0
|
95 |
return iBufPtr;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
/**
|
sl@0
|
99 |
@return The minimal allowed buffer size: sizeof(TBufFlat) + size of the header
|
sl@0
|
100 |
*/
|
sl@0
|
101 |
inline TInt RSqlBufFlat::SysDataSize() const
|
sl@0
|
102 |
{
|
sl@0
|
103 |
return iBuf->iHeaderSize + sizeof(RSqlBufFlat::TBufFlat);
|
sl@0
|
104 |
}
|