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