1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/dbms/sdbms/SD_CLI.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,225 @@
1.4 +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// DBMS client/server session class
1.18 +//
1.19 +//
1.20 +
1.21 +#include "SD_STD.H"
1.22 +
1.23 +const TInt KTimesToRetryConnection = 2;
1.24 +
1.25 +
1.26 +// Class RDbs
1.27 +
1.28 +/** Returns the version of the DBMS server.
1.29 +
1.30 +@return Version information. */
1.31 +EXPORT_C TVersion RDbs::Version()
1.32 + {
1.33 + return TVersion(KDbmsMajorVersion,KDbmsMinorVersion,KDbmsBuildVersion);
1.34 + }
1.35 +
1.36 +/** Makes a connection with the DBMS server. This function causes the server to
1.37 +start, if it is not already running.
1.38 +
1.39 +This should be the first function called on an RDbs object after it is created.
1.40 +
1.41 +Once a connection has been established, databases can be opened through the
1.42 +server.
1.43 +
1.44 +Note that:
1.45 +
1.46 +Threads can make any number of simultaneous connections to the DBMS server.
1.47 +
1.48 +The session must stay open until all DBMS objects opened through the server
1.49 +have been closed.
1.50 +
1.51 +The session is terminated by calling the Close() member function provided
1.52 +by the RSessionBase class.
1.53 +
1.54 +@return KErrNone if successful, otherwise another of the system-wide error
1.55 +codes. */
1.56 +EXPORT_C TInt RDbs::Connect()
1.57 + {
1.58 + TInt retry = KTimesToRetryConnection;
1.59 + for (;;)
1.60 + {
1.61 + TInt r=DoConnect();
1.62 + if (r!=KErrNotFound && r!=KErrServerTerminated)
1.63 + return r;
1.64 + if (--retry==0)
1.65 + return r;
1.66 + r=Dbs::Start();
1.67 + if (r!=KErrNone && r!=KErrAlreadyExists)
1.68 + return r;
1.69 + }
1.70 + }
1.71 +
1.72 +/** Marks the start point for checking the number of DBMS objects allocated in
1.73 +this session.
1.74 +
1.75 +The function takes the current number of allocated DBMS objects as its benchmark
1.76 +number.
1.77 +
1.78 +A call to this function is normally followed by a later call to ResourceCheck()
1.79 +which expects that the number of allocated DBMS objects to be the same as
1.80 +this benchmark number. */
1.81 +EXPORT_C void RDbs::ResourceMark()
1.82 + {
1.83 + SessionMessage(EDbsResourceMark);
1.84 + }
1.85 +
1.86 +/** Checks that the number of DBMS objects allocated in this session is the same
1.87 +as the benchmark number recorded by an earlier call to ResourceMark().
1.88 +
1.89 +The function raises a CSession 2 panic if the current number of DBMS objects
1.90 +is not the same as that recorded by an earlier call to ResourceMark(). */
1.91 +EXPORT_C void RDbs::ResourceCheck()
1.92 + {
1.93 + SessionMessage(EDbsResourceCheck);
1.94 + }
1.95 +
1.96 +/** Returns the number of DBMS objects allocated in this session.
1.97 +
1.98 +@return The number of DBMS allocated objects. */
1.99 +EXPORT_C TInt RDbs::ResourceCount()
1.100 + {
1.101 + return SessionMessage(EDbsResourceCount);
1.102 + }
1.103 +
1.104 +EXPORT_C void RDbs::SetHeapFailure(TInt aTAllocFail,TInt aRate)
1.105 + {
1.106 + SendReceive(DbsMessage(EDbsSetHeapFailure,KDbsSessionHandle),TIpcArgs(aTAllocFail,aRate));
1.107 + }
1.108 +
1.109 +TInt RDbs::SessionMessage(TInt aFunction)
1.110 + {
1.111 + return SendReceive(DbsMessage(aFunction,KDbsSessionHandle));
1.112 + }
1.113 +
1.114 +// Create the session
1.115 +TInt RDbs::DoConnect()
1.116 + {
1.117 + return CreateSession(KDbsServerName,Version());
1.118 + }
1.119 +
1.120 +/**
1.121 +Reserves a prederfined amount of disk space on aDrive drive.
1.122 +At the moment the max possible amount, allowed by the file server, is reserved on aDrive drive.
1.123 +
1.124 +Use this call to ensure that if your "delete records" transaction fails because of "out of
1.125 +disk space" circumstances, you can get an access to the already reserved disk space and
1.126 +complete your transaction successfully the second time.
1.127 +
1.128 +There is no strong, 100% guarantee, that the reserved disk space will always help the client
1.129 +in "low memory" situations.
1.130 +
1.131 +@param aDriveNo Drive number to reserve space on
1.132 +@param aSpace This parameter is not used at the moment. The caller shall set it to 0.
1.133 +@return KErrNoMemory Out of memory
1.134 + KErrArgument Invalid aDriveNo.
1.135 + KErrInUse The space has already been reserved
1.136 + RFs::ReserveDriveSpace() return value
1.137 +@see RFs::ReserveDriveSpace()
1.138 +*/
1.139 +EXPORT_C TInt RDbs::ReserveDriveSpace(TInt aDriveNo, TInt /*aSpace*/)
1.140 + {
1.141 + return SendReceive(DbsMessage(EDbsReserveDriveSpace, KDbsSessionHandle), TIpcArgs(aDriveNo));
1.142 + }
1.143 +
1.144 +/**
1.145 +The method frees the reserved by the DBMS session disk space.
1.146 +
1.147 +@param aDriveNo Drive number, which reserved space has to be freed.
1.148 +@panic In debug mode there will be a panic with the line number as an error code if
1.149 + there is no reserved disk space for aDrive.
1.150 +@panic In debug mode there will be a panic with the line number as an error code if
1.151 + the reserved disk space is granted but not released.
1.152 +*/
1.153 +EXPORT_C void RDbs::FreeReservedSpace(TInt aDriveNo)
1.154 + {
1.155 + (void)SendReceive(DbsMessage(EDbsFreeReservedSpace, KDbsSessionHandle), TIpcArgs(aDriveNo));
1.156 + }
1.157 +
1.158 +/**
1.159 +Grants access to a given area on a given drive for RDbs session.
1.160 +Note this session must have reserved space on this particular drive in order to be
1.161 +granted access to the reserved area.
1.162 +
1.163 +@param aDriveNo Drive number with a reserved disk space, an access to which is requested.
1.164 +@return KErrArgument Invalid drive or there is no reserved disk space on aDriveNo.
1.165 + KErrInUse An access to the reserved space has already been given.
1.166 + RFs::GetReserveAccess() return values
1.167 +@see RFs::GetReserveAccess()
1.168 +*/
1.169 +EXPORT_C TInt RDbs::GetReserveAccess(TInt aDriveNo)
1.170 + {
1.171 + return SendReceive(DbsMessage(EDbsReserveGetAccess, KDbsSessionHandle), TIpcArgs(aDriveNo));
1.172 + }
1.173 +
1.174 +/**
1.175 +Revokes access on a given drive for RDbs session.
1.176 +
1.177 +@param aDriveNo Drive number with a reserved disk space, the access to which has to be released.
1.178 +@return KErrNone.
1.179 +@panic In debug mode there will be a panic with the line number as an error code if
1.180 + there is no reserved disk space for aDrive.
1.181 +@panic In debug mode there will be a panic with the line number as an error code if
1.182 + there is no granted access to the reserved disk space.
1.183 +*/
1.184 +EXPORT_C TInt RDbs::ReleaseReserveAccess(TInt aDriveNo)
1.185 + {
1.186 + (void)SendReceive(DbsMessage(EDbsReserveReleaseAccess, KDbsSessionHandle), TIpcArgs(aDriveNo));
1.187 + return KErrNone;
1.188 + }
1.189 +
1.190 +// Class RDbNamedDatabase
1.191 +
1.192 +
1.193 +/**
1.194 +Opens an existing shared secure or non-secure database.
1.195 +Max allowed database name length (with the extension) is KDbMaxName symbols.
1.196 +
1.197 +In this "client-server" mode the database can be shared with the other clients.
1.198 +
1.199 +For opening a single, non-shareable connection to the database, see RDbNamedDatabase::Open(), which first
1.200 +argument is a RFs reference.
1.201 +
1.202 +@param aDbs A reference to DBMS session instance.
1.203 +@param aDatabase The name of the file that hosts the database. If this is
1.204 + a secure database, then the format of the name must be:
1.205 + \<drive\>:\<database file name excluding the path\>.
1.206 + If this is a non-secure database, then aDatabase has to be the full database file name.
1.207 +@param aFormat Database format string. For shared secure databases the string format is: "SECURE[UID]",
1.208 + where UID is the database security policy UID. "SECURE" keyword is case insensitive.
1.209 + For shared non-secure databases, the default parameter value (TPtrC()) can be used.
1.210 +@return KErrNone if successful otherwise one of the system-wide error codes, including:
1.211 + KErrNotFound - the database is not found;
1.212 + KErrArgument - bad argument, including null/invaluid uids, the database name includes a path;
1.213 + KErrPermissionDenied - the caller has not enough rights to do the operation;
1.214 +
1.215 +@capability Note For a secure shared database, the caller must satisfy the read,
1.216 + the write or the schema access policy for the database.
1.217 +
1.218 +@see RDbNamedDatabase::Open(RFs& aFs, const TDesC& aSource, const TDesC& aFormat, TAccess aMode).
1.219 +
1.220 +@publishedAll
1.221 +@released
1.222 +*/
1.223 +EXPORT_C TInt RDbNamedDatabase::Open(RDbs& aDbs, const TDesC& aDatabase, const TDesC& aFormat)
1.224 + {
1.225 + TRAPD(r,iDatabase=CDbsDatabase::NewL(aDbs,aDatabase,aFormat));
1.226 + return r;
1.227 + }
1.228 +