1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/dbms/udbms/UD_INCR.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,429 @@
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 +// Client incremental class
1.18 +//
1.19 +//
1.20 +
1.21 +#include "UD_STD.H"
1.22 +
1.23 +// Class RDbIncremental
1.24 +
1.25 +/** Releases the resources used by the incremental operations object. If the operation
1.26 +is not yet complete, then the operation is abandoned and the database is rolled
1.27 +back to its state before the operation started. */
1.28 +EXPORT_C void RDbIncremental::Close()
1.29 + {
1.30 + iState.Close();
1.31 + }
1.32 +
1.33 +/** Performs the next step in the incremental operation, returning when the step
1.34 +is complete.
1.35 +
1.36 +@param aStep Initially, contains the value returned from any of the initiating
1.37 +functions or the last call to perform an operational step. On return, contains
1.38 +a value which is less than or equal to the initial value. If it equals 0,
1.39 +then the operation has completed successfully and the incremental object should
1.40 +be closed.
1.41 +@return KErrNone if successful, or one of the DBMS database error codes. If
1.42 +this indicates an error, then the incremental object should be closed and
1.43 +the operation aborted. */
1.44 +EXPORT_C TInt RDbIncremental::Next(TInt& aStep)
1.45 + {
1.46 + __ASSERT_ALWAYS(aStep>0,Panic(EDbInvalidIncrementalStep));
1.47 + TRAPD(r,iState->NextL(aStep));
1.48 + return r;
1.49 + }
1.50 +
1.51 +/** Performs the next step in the incremental operation, returning immediately
1.52 +and signalling the request status when the step is complete.
1.53 +
1.54 +This function is most effectively used when the incremental operation is packaged
1.55 +as an active object.
1.56 +
1.57 +Note that the step parameter is packaged to enable this API to work for asynchronous
1.58 +calls in client/server implementations of DBMS.
1.59 +
1.60 +@param aStep Initially, contains the value returned from any of the initiating
1.61 +functions or the last call to perform an operational step. On return, contains
1.62 +a value which is less than or equal to the initial value. If it equals 0,
1.63 +then the operation has completed successfully and the incremental object should
1.64 +be closed.
1.65 +@param aStatus The request status used to contain completion information for
1.66 +the function. On completion, contains the completion status or one of the
1.67 +DBMS database error codes. If this indicates an error, then the incremental
1.68 +object should be closed and the operation aborted.
1.69 +@see TPckgBuf */
1.70 +EXPORT_C void RDbIncremental::Next(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus)
1.71 + {
1.72 + __ASSERT_ALWAYS(aStep.operator()()>0,Panic(EDbInvalidIncrementalStep));
1.73 + iState->Next(aStep,aStatus);
1.74 + }
1.75 +
1.76 +LOCAL_C TInt Utility(RDbHandle<CDbIncremental>& aInc
1.77 + ,RDbHandle<CDbDatabase>& aDb,TInt& aStep
1.78 + ,CDbDatabase::TUtility aType)
1.79 + {
1.80 + TRAPD(r,aInc=aDb->UtilityL(aType,aStep));
1.81 + return r;
1.82 + }
1.83 +
1.84 +/** Initiates a database recovery operation.
1.85 +
1.86 +This is the incremental version of RDbDatabase::Recover().
1.87 +Recover() will try to rebuild database indexes if they are broken.
1.88 +If the database data is corrupted, it cannot be recovered.
1.89 +
1.90 +@param aDatabase The database to recover.
1.91 +@param aStep On return, contains the initial step count for the incremental
1.92 +operation. This value should be passed in to subsequent calls to NextL().
1.93 +
1.94 +@return KErrNone if successful, or one of the DBMS database error codes. If
1.95 +recovery fails with either KErrNoMemory or KErrDiskFull, then recovery may
1.96 +be attempted again when more memory or disk space is available.
1.97 +
1.98 +@see RDbDatabase::Recover()
1.99 +
1.100 +@capability Note For a secure shared database, the caller must satisfy the schema
1.101 + access policy for the database.
1.102 +*/
1.103 +EXPORT_C TInt RDbIncremental::Recover(RDbDatabase& aDatabase,TInt& aStep)
1.104 + {
1.105 + return Utility(iState,aDatabase.iDatabase,aStep,CDbDatabase::ERecover);
1.106 + }
1.107 +
1.108 +/** Initiates the operation of calculating and updating database statistics.
1.109 +
1.110 +This is the incremental form of RDbDatabase::UpdateStats()
1.111 +
1.112 +@param aDatabase The database whose statistics are to be updated.
1.113 +@param aStep On return, contains the initial step count for the incremental
1.114 +operation. This value should be passed in to subsequent calls to Next() to
1.115 +continue the operation.
1.116 +@return KErrNone if successful, otherwise another of the system-wide error
1.117 +codes.
1.118 +@see RDbDatabase::UpdateStats()
1.119 +
1.120 +@capability Note For a secure shared database, the caller must satisfy the schema
1.121 + access policy for the database.
1.122 +*/
1.123 +EXPORT_C TInt RDbIncremental::UpdateStats(RDbDatabase& aDatabase,TInt& aStep)
1.124 + {
1.125 + return Utility(iState,aDatabase.iDatabase,aStep,CDbDatabase::EStats);
1.126 + }
1.127 +
1.128 +/** Initiates the operation of compacting a database. This is the incremental form
1.129 +of RDbDatabase::Compact().
1.130 +
1.131 +@param aDatabase The database to compact.
1.132 +@param aStep On return, contains the initial step count for the incremental
1.133 +operation. This value should be passed in to subsequent calls to Next() to
1.134 +continue the operation.
1.135 +@return KErrNone if successful, otherwise another of the system-wide error
1.136 +codes.
1.137 +@see RDbDatabase::Compact()
1.138 +
1.139 +@capability Note For a secure shared database, the caller must satisfy the schema
1.140 + access policy for the database.
1.141 +*/
1.142 +EXPORT_C TInt RDbIncremental::Compact(RDbDatabase& aDatabase,TInt& aStep)
1.143 + {
1.144 + return Utility(iState,aDatabase.iDatabase,aStep,CDbDatabase::ECompact);
1.145 + }
1.146 +
1.147 +/** Initiates a table discard operation on a database. All indexes belonging to
1.148 +the table are also discarded as part of this operation.
1.149 +
1.150 +This is the incremental version of RDbDatabase::DropTable().
1.151 +
1.152 +@param aDatabase The database from which to drop the table.
1.153 +@param aTable The name of the table to drop.
1.154 +@param aStep On return, contains the initial step count for the incremental
1.155 +operation. This value should be passed in to subsequent calls to NextL().
1.156 +@return KErrNone if successful, or one of the DBMS database error codes. The
1.157 +Store database always returns KErrNotSupported for this function.
1.158 +@see RDbDatabase::DropTable()
1.159 +
1.160 +@capability Note For a secure shared database, the caller must satisfy the schema
1.161 + access policy for the database.
1.162 +*/
1.163 +EXPORT_C TInt RDbIncremental::DropTable(RDbDatabase& aDatabase,const TDesC& aTable,TInt& aStep)
1.164 + {
1.165 + TRAPD(r,iState=aDatabase.iDatabase->DropTableL(aTable,aStep));
1.166 + return r;
1.167 + }
1.168 +
1.169 +/** Initiates a table alteration operation on a database. This is the incremental
1.170 +form of RDbDatabase::AlterTable().
1.171 +
1.172 +@param aDatabase The database which has the table to be altered.
1.173 +@param aTable The name of the table which is to be altered.
1.174 +@param aNewDef A column set describing the new definition for the table.
1.175 +@param aStep On return, contains the initial step count for the incremental
1.176 +operation. This value should be passed in to subsequent calls to NextL().
1.177 +@return KErrNone if successful, or one of the DBMS database error codes. Specifically,
1.178 +the function returns: KErrNotFound, if the table does not exist in the database.
1.179 +KErrBadName if a column name is invalid. KErrArgument if the new column set
1.180 +is empty, or there are duplicate column names, or if a column's maximum length
1.181 +is non-positive but not KDbUndefinedLength, or a non-numeric column has the
1.182 +auto-increment attribute, or an indexed column has been dropped, or a column
1.183 +has changed its type or attributes, or a not-null or auto-increment column
1.184 +has been added to a table which is not empty. KErrNotSupported if a column
1.185 +type is out of the recognised range, or an unknown attribute bit is set, or
1.186 +the maximum length for a Text8, Text16 or Binary column is more than 255.
1.187 +KErrTooBig if the resulting record size can be larger than 8200 bytes.
1.188 +@see RDbDatabase::AlterTable()
1.189 +
1.190 +@capability Note For a secure shared database, the caller must satisfy the schema
1.191 + access policy for the database.
1.192 +*/
1.193 +EXPORT_C TInt RDbIncremental::AlterTable(RDbDatabase& aDatabase,const TDesC& aTable,const CDbColSet& aNewDef,TInt& aStep)
1.194 + {
1.195 + TRAPD(r,iState=aDatabase.iDatabase->AlterTableL(aTable,aNewDef,aStep));
1.196 + return r;
1.197 + }
1.198 +
1.199 +/** Initiates an index creation operation on a database. This is the incremental
1.200 +form of RDbDatabase::CreateIndex().
1.201 +
1.202 +@param aDatabase The database on which to create the index.
1.203 +@param aName A name for the created index.
1.204 +@param aTable The name of the table on which to create the index.
1.205 +@param aKey The key for the new index.
1.206 +@param aStep On return, contains the initial step count for the incremental
1.207 +operation. This value should be passed in to subsequent calls to NextL().
1.208 +@return KErrNone if successful, or one of the DBMS database error codes. Specifically,
1.209 +the function returns: KErrNotFound if the table does not exist in the database
1.210 +or a key column is not found in the table. KErrAlreadyExists if an index of
1.211 +the same name already exists on table or a duplicate key is present when building
1.212 +an index. Note that it is not possible to tell the difference between the
1.213 +possible causes of this error if index creation is not carried out incrementally.
1.214 +KErrBadName if an index or column name is invalid. KErrArgument if the key
1.215 +has no key columns or a fixed width column has a truncation length specified,
1.216 +or an invalid truncation length has been specified for a key column, or a
1.217 +LongText8 or LongText16 key column has no truncation length specified, or
1.218 +the key contains a Binary or LongBinary column. KErrNotSupported if a truncated
1.219 +key column is not the last one. KErrTooBig if the resulting key size is too
1.220 +big.
1.221 +@see RDbDatabase::CreateIndex()
1.222 +
1.223 +@capability Note For a secure shared database, the caller must satisfy the schema
1.224 + access policy for the database.
1.225 +*/
1.226 +EXPORT_C TInt RDbIncremental::CreateIndex(RDbDatabase& aDatabase,const TDesC& aName,const TDesC& aTable,const CDbKey& aKey,TInt& aStep)
1.227 + {
1.228 + TRAPD(r,iState=aDatabase.iDatabase->CreateIndexL(aName,aTable,aKey,aStep));
1.229 + return r;
1.230 + }
1.231 +
1.232 +/** Initiates an index discard operation on the database. This is the incremental
1.233 +form of RDbDatabase::DropIndex().
1.234 +
1.235 +@param aDatabase The database from which to drop the index.
1.236 +@param aName The name of the index to drop.
1.237 +@param aTable The name of the table which has the index.
1.238 +@param aStep On return, contains the initial step count for the incremental
1.239 +operation. This value should be passed in to subsequent calls to NextL().
1.240 +@return KErrNone if successful, or one of the DBMS database error codes. Specifically,
1.241 +the function returns KErrNotFound if the table or index does not exist
1.242 +@see RDbDatabase::DropIndex()
1.243 +
1.244 +@capability Note For a secure shared database, the caller must satisfy the schema
1.245 + access policy for the database.
1.246 +*/
1.247 +EXPORT_C TInt RDbIncremental::DropIndex(RDbDatabase& aDatabase,const TDesC& aName,const TDesC& aTable,TInt& aStep)
1.248 + {
1.249 + TRAPD(r,iState=aDatabase.iDatabase->DropIndexL(aName,aTable,aStep));
1.250 + return r;
1.251 + }
1.252 +
1.253 +//
1.254 +// Incremental SQL Data definition execution
1.255 +//
1.256 +LOCAL_C CDbIncremental* ExecuteDDLL(CDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison,TInt& aStep)
1.257 + {
1.258 + CDbIncremental* inc=aDatabase.ExecuteL(aSql,aComparison,aStep);
1.259 + if ((inc==NULL)!=(aStep==0))
1.260 + {
1.261 + CDbObject::Destroy(inc);
1.262 + __LEAVE(KErrArgument);
1.263 + }
1.264 + return inc;
1.265 + }
1.266 +
1.267 +/** Initiates the execution of a DDL (SQL schema update) statement on the database,
1.268 +specifing additional comparison operations for some SQL statements.
1.269 +
1.270 +This is the incremental form of RDbDatabase::Execute().
1.271 +
1.272 +Note that to begin executing a DML (SQL data update) statement incrementally,
1.273 +use the RDbUpdate class.
1.274 +
1.275 +@param aDatabase The database on which the DDL (SQL schema update) statement
1.276 +is to execute.
1.277 +@param aSql The DDL SQL statement to be executed on the database.
1.278 +@param aComparison This argument is used in the execution of some SQL statements,
1.279 +and is ignored in all other SQL statements. Specifically: in CREATE INDEX
1.280 +statements, it specifies the comparison operation used for text columns in
1.281 +the index key. In UPDATE and DELETE statements, it specifies the comparison
1.282 +operation used to evaluate the WHERE clause.
1.283 +@param aStep On return, contains the initial step count for the incremental
1.284 +operation. This value should be passed in to subsequent calls to Next() to
1.285 +continue the operation.
1.286 +@return KErrNone if successful, otherwise another of the system-wide error
1.287 +codes.
1.288 +@see RDbDatabase::Execute()
1.289 +@see RDbUpdate
1.290 +
1.291 +@capability Note For a secure shared database, the caller must satisfy:
1.292 + - the schema access policy for the database, if the SQL statement is
1.293 + CREATE/DROP/ALTER;
1.294 + - the write access policy for the table in the SQL, if the SQL statement is
1.295 + INSERT/UPDATE/DELETE;
1.296 +*/
1.297 +EXPORT_C TInt RDbIncremental::Execute(RDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison,TInt& aStep)
1.298 + {
1.299 + TRAPD(r,iState=ExecuteDDLL(*aDatabase.iDatabase,aSql,aComparison,aStep));
1.300 + return r;
1.301 + }
1.302 +
1.303 +// Class RDbUpdate
1.304 +
1.305 +//
1.306 +// Incremental SQL Data definition execution
1.307 +//
1.308 +LOCAL_C CDbIncremental* ExecuteDMLL(CDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison,TInt& aRows)
1.309 + {
1.310 + CDbIncremental* inc=aDatabase.ExecuteL(aSql,aComparison,aRows);
1.311 + if ((inc==NULL)==(aRows==0))
1.312 + {
1.313 + CDbObject::Destroy(inc);
1.314 + __LEAVE(KErrArgument);
1.315 + }
1.316 + return inc;
1.317 + }
1.318 +
1.319 +/** Initiates the incremental execution of a DML (SQL data update) statement on
1.320 +the database. This is similar to RDbDatabase::Execute().
1.321 +
1.322 +Note that to begin executing a DDL (SQL schema update) statement incrementally,
1.323 +use the RDbIncremental class.
1.324 +
1.325 +@param aDatabase The database on which the DML (SQL data update) statement
1.326 +is to execute.
1.327 +@param aSql A reference to a descriptor containing the DML statement to be
1.328 +executed.
1.329 +@param aComparison This argument is only used in the execution of some SQL
1.330 +statements. By default the comparison is EDbCompareNormal. For more information
1.331 +see RDbDatabase::Execute().
1.332 +@return KErrNone, if the operation is complete or 1, if the operation requires
1.333 +further incremental execution or another of the system-wide error codes.
1.334 +@see RDbIncremental
1.335 +@see RDbDatabase::Execute()
1.336 +
1.337 +@capability Note For a secure shared database, the caller must satisfy:
1.338 + - the schema access policy for the database, if the SQL statement is
1.339 + CREATE/DROP/ALTER;
1.340 + - the write access policy for the table in the SQL, if the SQL statement is
1.341 + INSERT/UPDATE/DELETE;
1.342 +*/
1.343 +EXPORT_C TInt RDbUpdate::Execute(RDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison)
1.344 + {
1.345 + TRAPD(r,iUpdate=ExecuteDMLL(*aDatabase.iDatabase,aSql,aComparison,iRows()));
1.346 + return r;
1.347 + }
1.348 +
1.349 +/** Releases the resources used by this incremental operation object. If the operation
1.350 +is not yet complete, then the operation is abandoned and the database is rolled
1.351 +back to its state before the operation started. */
1.352 +EXPORT_C void RDbUpdate::Close()
1.353 + {
1.354 + iUpdate.Close();
1.355 + }
1.356 +
1.357 +/** Performs the next step in the incremental execution of the DML (SQL data update)
1.358 +statement synchronously. The function returns when the step is complete.
1.359 +
1.360 +Note that if the incremental step fails, then the incremental object should
1.361 +be closed and the operation abandoned.
1.362 +
1.363 +@return KErrNone if execution of the DML statement is complete or 1 if another
1.364 +step in the execution of the DML statement is needed. or another of the system-wide
1.365 +error codes is returned if the incremental step fails. */
1.366 +EXPORT_C TInt RDbUpdate::Next()
1.367 + {
1.368 + TRAPD(r,r=iUpdate->NextL(iRows()));
1.369 + return r;
1.370 + }
1.371 +
1.372 +/** Performs the next step in the incremental execution of the DML (SQL data update)
1.373 +statement asynchronously.
1.374 +
1.375 +The function returns immediately and signals when the step is complete.
1.376 +
1.377 +This function is most effectively used when the incremental operation is packaged
1.378 +as an active object.
1.379 +
1.380 +Note that if the incremental step fails, then the incremental object should
1.381 +be closed, and the operation abandoned.
1.382 +
1.383 +@param aStatus The request status used to contain completion information for
1.384 +the operation. On completion, it contains:KErrNone, if execution of the DML
1.385 +statement is complete or 1, if another step in the execution of the DML statement
1.386 +is needed. or another of the system-wide error codes, if the incremental step
1.387 +fails. */
1.388 +EXPORT_C void RDbUpdate::Next(TRequestStatus& aStatus)
1.389 + {
1.390 + iUpdate->Next(iRows,aStatus);
1.391 + }
1.392 +
1.393 +/** Returns the number of rows currently affected by the execution of the DML (SQL
1.394 +data update) statement on the database.
1.395 +
1.396 +Once execution of the DML statement is complete, the value returned is the
1.397 +final total number of rows affected.
1.398 +
1.399 +@return The current/final number of rows affected by the execution of the
1.400 +DML statement. */
1.401 +EXPORT_C TInt RDbUpdate::RowCount() const
1.402 + {
1.403 + return CONST_CAST(TPckgBuf<TInt>&,iRows)();
1.404 + }
1.405 +
1.406 +// Class CDbSyncIncremental
1.407 +
1.408 +//
1.409 +// Implement the asynchronous step in terms of the synchronous form
1.410 +//
1.411 +EXPORT_C void CDbSyncIncremental::Next(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus)
1.412 + {
1.413 + TRequestStatus* pStatus=&aStatus;
1.414 + TRAPD(r,r=NextL(aStep.operator()())); // MSVC issue!!! cannot use aStep() directly
1.415 + User::RequestComplete(pStatus,r);
1.416 + }
1.417 +
1.418 +// Class CDbAsyncIncremental
1.419 +
1.420 +//
1.421 +// Implement the synchronous step in terms of the asynchronous form
1.422 +//
1.423 +EXPORT_C TBool CDbAsyncIncremental::NextL(TInt& aStep)
1.424 + {
1.425 + TRequestStatus status;
1.426 + TPckgBuf<TInt> step=aStep;
1.427 + Next(step,status);
1.428 + User::WaitForRequest(status);
1.429 + aStep=step();
1.430 + return __LEAVE_IF_ERROR(status.Int());
1.431 + }
1.432 +