os/persistentdata/persistentstorage/dbms/sdbms/SD_UTL.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-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
#include "SD_STD.H"
sl@0
    17
sl@0
    18
GLDEF_C void Panic(TDbsPanic aPanic)
sl@0
    19
//
sl@0
    20
// Panic the client
sl@0
    21
//
sl@0
    22
	{
sl@0
    23
	_LIT(KCategory,"DBMS-server");
sl@0
    24
	Dbms::Panic(KCategory,aPanic);
sl@0
    25
	}
sl@0
    26
sl@0
    27
// Class Dbms
sl@0
    28
sl@0
    29
EXPORT_C void Dbms::Panic(const TDesC& aCategory,TInt aCode)
sl@0
    30
//
sl@0
    31
// Panic the client
sl@0
    32
// Outside of the server this calls User::Panic, within it calls the server and LEAVES!
sl@0
    33
//
sl@0
    34
	{
sl@0
    35
	__TRACE(aCategory);
sl@0
    36
	__TRACE(aCode);
sl@0
    37
	CDbsServer* server=CDbsServer::Instance();
sl@0
    38
	if (server)
sl@0
    39
		{
sl@0
    40
		server->Panic(aCategory,aCode);
sl@0
    41
		__LEAVE(KDbsLeavePanic);
sl@0
    42
		}
sl@0
    43
	else
sl@0
    44
		User::Panic(aCategory,aCode);
sl@0
    45
	}
sl@0
    46
sl@0
    47
// streaming functions
sl@0
    48
sl@0
    49
GLDEF_C void ExternalizeL(const TDbCol& aCol,RWriteStream& aStream)
sl@0
    50
	{
sl@0
    51
	aStream<<aCol.iName<<TUint8(aCol.iType)<<TInt32(aCol.iMaxLength)<<TUint8(aCol.iAttributes);
sl@0
    52
	}
sl@0
    53
sl@0
    54
GLDEF_C void ExternalizeL(const CDbColSet& aColSet,RWriteStream& aStream)
sl@0
    55
	{
sl@0
    56
	TInt cc=aColSet.Count();
sl@0
    57
	aStream.WriteInt32L(cc);
sl@0
    58
	for (TInt ii=0;++ii<=cc;)
sl@0
    59
		aStream<<aColSet[ii];
sl@0
    60
	}
sl@0
    61
sl@0
    62
GLDEF_C void InternalizeL(CDbColSet& aColSet,RReadStream& aStream)
sl@0
    63
	{
sl@0
    64
	__ASSERT(aColSet.Count()==0);
sl@0
    65
	TDbCol col;
sl@0
    66
	TPtr name(col.iName.Des());
sl@0
    67
	TInt cc=aStream.ReadInt32L();
sl@0
    68
	while (--cc>=0)
sl@0
    69
		{
sl@0
    70
		aStream>>name;
sl@0
    71
		col.iType=TDbColType(aStream.ReadUint8L());
sl@0
    72
		col.iMaxLength=aStream.ReadInt32L();
sl@0
    73
		col.iAttributes=aStream.ReadUint8L();
sl@0
    74
		aColSet.AddL(col);
sl@0
    75
		}
sl@0
    76
	}
sl@0
    77
sl@0
    78
GLDEF_C void ExternalizeL(const CDbKey& aKey,RWriteStream& aStream)
sl@0
    79
	{
sl@0
    80
	TInt cc=aKey.Count();
sl@0
    81
	aStream.WriteInt32L(cc);
sl@0
    82
	for (TInt ii=0;ii<cc;++ii)
sl@0
    83
		{
sl@0
    84
		const TDbKeyCol& col=aKey[ii];
sl@0
    85
		aStream<<col.iName<<TUint8(col.iOrder)<<TInt32(col.iLength);
sl@0
    86
		}
sl@0
    87
	aStream<<TUint8(aKey.Comparison())<<TUint8(aKey.IsUnique());
sl@0
    88
	}
sl@0
    89
sl@0
    90
GLDEF_C void InternalizeL(CDbKey& aKey,RReadStream& aStream)
sl@0
    91
	{
sl@0
    92
	__ASSERT(aKey.Count()==0);
sl@0
    93
	TDbKeyCol col;
sl@0
    94
	TPtr name(col.iName.Des());
sl@0
    95
	TInt cc=aStream.ReadInt32L();
sl@0
    96
	while (--cc>=0)
sl@0
    97
		{
sl@0
    98
		aStream>>name;
sl@0
    99
		TUint8 uInt = aStream.ReadUint8L();
sl@0
   100
		col.iOrder=TDbKeyCol::TOrder(uInt);
sl@0
   101
		col.iLength=aStream.ReadInt32L();
sl@0
   102
		aKey.AddL(col);
sl@0
   103
		}
sl@0
   104
	aKey.SetComparison(TDbTextComparison(aStream.ReadUint8L()));
sl@0
   105
	if (aStream.ReadUint8L())
sl@0
   106
		aKey.MakeUnique();
sl@0
   107
	}
sl@0
   108
sl@0
   109
GLDEF_C void ExternalizeL(const CDbNames& aNames,RWriteStream& aStream)
sl@0
   110
	{
sl@0
   111
	TInt cc=aNames.Count();
sl@0
   112
	aStream.WriteInt32L(cc);
sl@0
   113
	for (TInt ii=0;ii<cc;++ii)
sl@0
   114
		aStream<<aNames[ii];
sl@0
   115
	}
sl@0
   116
sl@0
   117
GLDEF_C void InternalizeL(CDbNames& aNames,RReadStream& aStream)
sl@0
   118
	{
sl@0
   119
	__ASSERT(aNames.Count()==0);
sl@0
   120
	TDbName name;
sl@0
   121
	TInt cc=aStream.ReadInt32L();
sl@0
   122
	while (--cc>=0)
sl@0
   123
		{
sl@0
   124
		aStream>>name;
sl@0
   125
		aNames.AddL(name);
sl@0
   126
		}
sl@0
   127
	}
sl@0
   128
sl@0
   129
/**
sl@0
   130
A helper function, used in
sl@0
   131
"RWriteStream& operator<<(RWriteStream& aStream,const CDbStrings& aStrings)".
sl@0
   132
@internalComponent
sl@0
   133
*/
sl@0
   134
GLDEF_C void ExternalizeL(const CDbStrings& aStrings,RWriteStream& aStream)
sl@0
   135
	{
sl@0
   136
	TInt cc=aStrings.Count();
sl@0
   137
	aStream.WriteInt32L(cc);
sl@0
   138
	for (TInt ii=0;ii<cc;++ii)
sl@0
   139
		aStream<<aStrings[ii];
sl@0
   140
	}
sl@0
   141
sl@0
   142
/** 
sl@0
   143
Represents a generic read/write DBMS string. It maps to a modifiable buffer descriptor 
sl@0
   144
with maximum size KDbMaxStrLen.
sl@0
   145
sl@0
   146
@see TBuf 
sl@0
   147
@internalComponent
sl@0
   148
*/
sl@0
   149
typedef TBuf<KDbMaxStrLen> TDbString;
sl@0
   150
sl@0
   151
/**
sl@0
   152
A helper function, used in
sl@0
   153
"RReadStream& operator>>(RReadStream& aStream,CDbStrings& aStrings)".
sl@0
   154
@internalComponent
sl@0
   155
*/
sl@0
   156
GLDEF_C void InternalizeL(CDbStrings& aStrings,RReadStream& aStream)
sl@0
   157
	{
sl@0
   158
	__ASSERT(aStrings.Count()==0);
sl@0
   159
	TDbString str;
sl@0
   160
	TInt cc=aStream.ReadInt32L();
sl@0
   161
	while (--cc>=0)
sl@0
   162
		{
sl@0
   163
		aStream>>str;
sl@0
   164
		aStrings.AddL(str);
sl@0
   165
		}
sl@0
   166
	}