os/persistentdata/persistentstorage/dbms/sdbms/SD_CLI.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
// DBMS client/server session class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "SD_STD.H"
sl@0
    19
sl@0
    20
const TInt KTimesToRetryConnection = 2;
sl@0
    21
sl@0
    22
sl@0
    23
// Class RDbs
sl@0
    24
sl@0
    25
/** Returns the version of the DBMS server.
sl@0
    26
sl@0
    27
@return Version information. */
sl@0
    28
EXPORT_C TVersion RDbs::Version()
sl@0
    29
	{
sl@0
    30
	return TVersion(KDbmsMajorVersion,KDbmsMinorVersion,KDbmsBuildVersion);
sl@0
    31
	}
sl@0
    32
sl@0
    33
/** Makes a connection with the DBMS server. This function causes the server to 
sl@0
    34
start, if it is not already running.
sl@0
    35
sl@0
    36
This should be the first function called on an RDbs object after it is created.
sl@0
    37
sl@0
    38
Once a connection has been established, databases can be opened through the 
sl@0
    39
server.
sl@0
    40
sl@0
    41
Note that:
sl@0
    42
sl@0
    43
Threads can make any number of simultaneous connections to the DBMS server.
sl@0
    44
sl@0
    45
The session must stay open until all DBMS objects opened through the server 
sl@0
    46
have been closed.
sl@0
    47
sl@0
    48
The session is terminated by calling the Close() member function provided 
sl@0
    49
by the RSessionBase class.
sl@0
    50
sl@0
    51
@return KErrNone if successful, otherwise another of the system-wide error 
sl@0
    52
codes. */
sl@0
    53
EXPORT_C TInt RDbs::Connect()
sl@0
    54
	{
sl@0
    55
	TInt retry = KTimesToRetryConnection;
sl@0
    56
	for (;;)
sl@0
    57
		{
sl@0
    58
		TInt r=DoConnect();
sl@0
    59
		if (r!=KErrNotFound && r!=KErrServerTerminated)
sl@0
    60
			return r;
sl@0
    61
		if (--retry==0)
sl@0
    62
			return r;
sl@0
    63
		r=Dbs::Start();
sl@0
    64
		if (r!=KErrNone && r!=KErrAlreadyExists)
sl@0
    65
			return r;
sl@0
    66
		}
sl@0
    67
	}
sl@0
    68
sl@0
    69
/** Marks the start point for checking the number of DBMS objects allocated in 
sl@0
    70
this session.
sl@0
    71
sl@0
    72
The function takes the current number of allocated DBMS objects as its benchmark 
sl@0
    73
number.
sl@0
    74
sl@0
    75
A call to this function is normally followed by a later call to ResourceCheck() 
sl@0
    76
which expects that the number of allocated DBMS objects to be the same as 
sl@0
    77
this benchmark number. */
sl@0
    78
EXPORT_C void RDbs::ResourceMark()
sl@0
    79
	{
sl@0
    80
	SessionMessage(EDbsResourceMark);
sl@0
    81
	}
sl@0
    82
sl@0
    83
/** Checks that the number of DBMS objects allocated in this session is the same 
sl@0
    84
as the benchmark number recorded by an earlier call to ResourceMark().
sl@0
    85
sl@0
    86
The function raises a CSession 2 panic if the current number of DBMS objects 
sl@0
    87
is not the same as that recorded by an earlier call to ResourceMark(). */
sl@0
    88
EXPORT_C void RDbs::ResourceCheck()
sl@0
    89
	{
sl@0
    90
	SessionMessage(EDbsResourceCheck);
sl@0
    91
	}
sl@0
    92
sl@0
    93
/** Returns the number of DBMS objects allocated in this session.
sl@0
    94
sl@0
    95
@return The number of DBMS allocated objects. */
sl@0
    96
EXPORT_C TInt RDbs::ResourceCount()
sl@0
    97
	{
sl@0
    98
	return SessionMessage(EDbsResourceCount);
sl@0
    99
	}
sl@0
   100
sl@0
   101
EXPORT_C void RDbs::SetHeapFailure(TInt aTAllocFail,TInt aRate)
sl@0
   102
	{
sl@0
   103
	SendReceive(DbsMessage(EDbsSetHeapFailure,KDbsSessionHandle),TIpcArgs(aTAllocFail,aRate));
sl@0
   104
	}
sl@0
   105
sl@0
   106
TInt RDbs::SessionMessage(TInt aFunction)
sl@0
   107
	{
sl@0
   108
	return SendReceive(DbsMessage(aFunction,KDbsSessionHandle));
sl@0
   109
	}
sl@0
   110
sl@0
   111
// Create the session
sl@0
   112
TInt RDbs::DoConnect()
sl@0
   113
	{
sl@0
   114
	return CreateSession(KDbsServerName,Version());
sl@0
   115
	}
sl@0
   116
sl@0
   117
/**
sl@0
   118
Reserves a prederfined amount of disk space on aDrive drive. 
sl@0
   119
At the moment the max possible amount, allowed by the file server, is reserved on aDrive drive.
sl@0
   120
sl@0
   121
Use this call to ensure that if your "delete records" transaction fails because of "out of
sl@0
   122
disk space" circumstances, you can get an access to the already reserved disk space and 
sl@0
   123
complete your transaction successfully the second time.
sl@0
   124
sl@0
   125
There is no strong, 100% guarantee, that the reserved disk space will always help the client
sl@0
   126
in "low memory" situations.
sl@0
   127
sl@0
   128
@param aDriveNo Drive number to reserve space on
sl@0
   129
@param aSpace This parameter is not used at the moment. The caller shall set it to 0.
sl@0
   130
@return KErrNoMemory Out of memory
sl@0
   131
        KErrArgument Invalid aDriveNo.
sl@0
   132
        KErrInUse The space has already been reserved
sl@0
   133
        RFs::ReserveDriveSpace() return value
sl@0
   134
@see RFs::ReserveDriveSpace()
sl@0
   135
*/
sl@0
   136
EXPORT_C TInt RDbs::ReserveDriveSpace(TInt aDriveNo, TInt /*aSpace*/)
sl@0
   137
	{
sl@0
   138
	return SendReceive(DbsMessage(EDbsReserveDriveSpace, KDbsSessionHandle), TIpcArgs(aDriveNo));
sl@0
   139
	}
sl@0
   140
sl@0
   141
/**
sl@0
   142
The method frees the reserved by the DBMS session disk space.
sl@0
   143
sl@0
   144
@param aDriveNo Drive number, which reserved space has to be freed.
sl@0
   145
@panic In debug mode there will be a panic with the line number as an error code if 
sl@0
   146
       there is no reserved disk space for aDrive. 
sl@0
   147
@panic In debug mode there will be a panic with the line number as an error code if 
sl@0
   148
       the reserved disk space is granted but not released.
sl@0
   149
*/
sl@0
   150
EXPORT_C void RDbs::FreeReservedSpace(TInt aDriveNo)
sl@0
   151
    {
sl@0
   152
	(void)SendReceive(DbsMessage(EDbsFreeReservedSpace, KDbsSessionHandle), TIpcArgs(aDriveNo));
sl@0
   153
    }
sl@0
   154
sl@0
   155
/**
sl@0
   156
Grants access to a given area on a given drive for RDbs session.
sl@0
   157
Note this session must have reserved space on this particular drive in order to be 
sl@0
   158
granted access to the reserved area.
sl@0
   159
sl@0
   160
@param aDriveNo Drive number with a reserved disk space, an access to which is requested.
sl@0
   161
@return KErrArgument Invalid drive or there is no reserved disk space on aDriveNo.
sl@0
   162
        KErrInUse An access to the reserved space has already been given.
sl@0
   163
        RFs::GetReserveAccess() return values
sl@0
   164
@see RFs::GetReserveAccess()
sl@0
   165
*/
sl@0
   166
EXPORT_C TInt RDbs::GetReserveAccess(TInt aDriveNo)
sl@0
   167
	{
sl@0
   168
	return SendReceive(DbsMessage(EDbsReserveGetAccess, KDbsSessionHandle), TIpcArgs(aDriveNo));
sl@0
   169
	}
sl@0
   170
sl@0
   171
/**
sl@0
   172
Revokes access on a given drive for RDbs session.
sl@0
   173
sl@0
   174
@param aDriveNo Drive number with a reserved disk space, the access to which has to be released.
sl@0
   175
@return KErrNone.
sl@0
   176
@panic In debug mode there will be a panic with the line number as an error code if 
sl@0
   177
       there is no reserved disk space for aDrive. 
sl@0
   178
@panic In debug mode there will be a panic with the line number as an error code if 
sl@0
   179
       there is no granted access to the reserved disk space. 
sl@0
   180
*/
sl@0
   181
EXPORT_C TInt RDbs::ReleaseReserveAccess(TInt aDriveNo)
sl@0
   182
	{
sl@0
   183
	(void)SendReceive(DbsMessage(EDbsReserveReleaseAccess, KDbsSessionHandle), TIpcArgs(aDriveNo));
sl@0
   184
    return KErrNone;
sl@0
   185
	}
sl@0
   186
sl@0
   187
// Class RDbNamedDatabase
sl@0
   188
sl@0
   189
sl@0
   190
/**
sl@0
   191
Opens an existing shared secure or non-secure database.
sl@0
   192
Max allowed database name length (with the extension) is KDbMaxName symbols.
sl@0
   193
sl@0
   194
In this "client-server" mode the database can be shared with the other clients.
sl@0
   195
sl@0
   196
For opening a single, non-shareable connection to the database, see RDbNamedDatabase::Open(), which first
sl@0
   197
argument is a RFs reference.
sl@0
   198
sl@0
   199
@param aDbs A reference to DBMS session instance.
sl@0
   200
@param aDatabase The name of the file that hosts the database. If this is
sl@0
   201
                 a secure database, then the format of the name must be:
sl@0
   202
                 \<drive\>:\<database file name excluding the path\>.
sl@0
   203
                 If this is a non-secure database, then aDatabase has to be the full database file name.
sl@0
   204
@param aFormat Database format string. For shared secure databases the string format is: "SECURE[UID]", 
sl@0
   205
			   where UID is the database security policy UID. "SECURE" keyword is case insensitive.
sl@0
   206
			   For shared non-secure databases, the default parameter value (TPtrC()) can be used.
sl@0
   207
@return KErrNone if successful otherwise one of the system-wide error codes, including:
sl@0
   208
		KErrNotFound - the database is not found;
sl@0
   209
		KErrArgument - bad argument, including null/invaluid uids, the database name includes a path;
sl@0
   210
		KErrPermissionDenied - the caller has not enough rights to do the operation;
sl@0
   211
sl@0
   212
@capability Note For a secure shared database, the caller must satisfy the read,
sl@0
   213
            the write or the schema access policy for the database.
sl@0
   214
sl@0
   215
@see RDbNamedDatabase::Open(RFs& aFs, const TDesC& aSource, const TDesC& aFormat, TAccess aMode).
sl@0
   216
sl@0
   217
@publishedAll
sl@0
   218
@released
sl@0
   219
*/
sl@0
   220
EXPORT_C TInt RDbNamedDatabase::Open(RDbs& aDbs, const TDesC& aDatabase, const TDesC& aFormat)
sl@0
   221
	{
sl@0
   222
	TRAPD(r,iDatabase=CDbsDatabase::NewL(aDbs,aDatabase,aFormat));
sl@0
   223
	return r;
sl@0
   224
	}
sl@0
   225