sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include "UD_STD.H" sl@0: #include sl@0: #include sl@0: sl@0: // Class CDbContext sl@0: sl@0: inline void CDbContext::Open() sl@0: { sl@0: ++iRef; sl@0: } sl@0: sl@0: // sl@0: // Attach an object to this context sl@0: // sl@0: void CDbContext::Attach(CDbObject* aObject) sl@0: { sl@0: if (aObject && aObject->iContext!=this) sl@0: { sl@0: __ASSERT(!aObject->iContext); sl@0: aObject->iContext=this; sl@0: Open(); sl@0: } sl@0: } sl@0: sl@0: // sl@0: // self destruct when we are no longer referenced sl@0: // sl@0: void CDbContext::Close() sl@0: { sl@0: __ASSERT(iRef>0); sl@0: if (--iRef==0) sl@0: Idle(); sl@0: } sl@0: sl@0: // sl@0: // default implementation is to delete ourself sl@0: // sl@0: void CDbContext::Idle() sl@0: { sl@0: delete this; sl@0: } sl@0: sl@0: // Class CDbObject sl@0: sl@0: // sl@0: // Attach aObject to the same context as it's factory sl@0: // sl@0: CDbObject* CDbObject::Attach(CDbObject* aObject) sl@0: { sl@0: CDbContext* context=iContext; sl@0: if (context) sl@0: context->Attach(aObject); sl@0: return aObject; sl@0: } sl@0: sl@0: // sl@0: // Library safe destruction of a implementation object sl@0: // This ensures that all objects from a Driver are deleted BEFORE the library is unloaded sl@0: // sl@0: void CDbObject::Destroy(CDbObject* aObject) sl@0: { sl@0: if (aObject) sl@0: { sl@0: CDbContext* context=aObject->iContext; sl@0: delete aObject; sl@0: if (context) sl@0: context->Close(); sl@0: } sl@0: } sl@0: sl@0: // sl@0: // Library safe cleanup-stack function sl@0: // sl@0: void CDbObject::PushL() sl@0: { sl@0: CleanupStack::PushL(TCleanupItem(TCleanupOperation(Destroy),this)); sl@0: } sl@0: sl@0: sl@0: // Class CDbSource sl@0: sl@0: //SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version of the method. sl@0: // Encapsulate the 2-phase construction for client access sl@0: // sl@0: CDbDatabase* CDbSource::OpenL() sl@0: { sl@0: return AuthenticateL(); sl@0: } sl@0: sl@0: // Class RDbNamedDatabase sl@0: sl@0: //SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version of the method. sl@0: LOCAL_C CDbDatabase* OpenDatabaseL(TDbFormat::TOpen aMode, RFs& aFs, const TDesC& aSource, sl@0: const TDesC& /*aFormat*/) sl@0: { sl@0: CDbSource* source=KBuiltinDriver.iFormats[0].OpenL(aFs,aSource,aMode); sl@0: CleanupStack::PushL(source); sl@0: CDbDatabase* db=source->OpenL(); sl@0: CleanupStack::PopAndDestroy(); // source (not needed) sl@0: return db; sl@0: } sl@0: sl@0: //SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version of the method. sl@0: //The method may be used in the other cpp files too sl@0: CDbDatabase* CreateDatabaseL(TDbFormat::TCreate aMode, RFs& aFs, const TDesC& aSource, sl@0: const TDesC& aFormat) sl@0: { sl@0: const TDbFormat& fmt=KBuiltinDriver.iFormats[0]; sl@0: sl@0: TUid policyId = KNullUid; sl@0: TPtrC uidName; sl@0: sl@0: ::ExtractUidAndName(aFormat, policyId, uidName); sl@0: sl@0: CDbDatabase* db=fmt.CreateL(aFs,aSource,aMode, sl@0: TUidType(TUid::Uid(fmt.iUid[0]),TUid::Uid(fmt.iUid[1]),policyId)); sl@0: sl@0: return db; sl@0: } sl@0: sl@0: sl@0: /** sl@0: Creates a new non-secure database. sl@0: sl@0: In this "single client" mode, the database cannot be shared with the other clients. sl@0: The database server is not involved in the operations with the database, the client side sl@0: database library (edbms.dll) will be used. sl@0: If the database has to be shared, the following example shows how this may be accomplished: sl@0: @code sl@0: RFs fs; sl@0: TInt err = fs.Connect(); sl@0: sl@0: _LIT(KDatabaseName, _L("C:\\A.DB")); sl@0: RDbNamedDatabase db; sl@0: err = db.Create(fs, KDatabaseName); //Step 1 - create the database using the RFs object sl@0: sl@0: db.Close(); //Step 2 - close the database sl@0: RDbs dbs; sl@0: err = dbs.Connect(); sl@0: sl@0: err = db.Open(dbs, KDatabaseName); //Step 3 - reopen the database using the RDbs object sl@0: sl@0: ... sl@0: @endcode sl@0: sl@0: Max allowed database name length (with the extension) is KDbMaxName symbols. sl@0: sl@0: For creating a new secure shared database, see RDbNamedDatabase::Create(), which first argument sl@0: is a RDbs reference. sl@0: sl@0: @param aFs Handle to a file server session. sl@0: @param aSource Database file name. sl@0: @param aFormat Database format string. It can be omitted in which case the default parameter sl@0: value (TPtrC()) will be used. sl@0: @return KErrNone if successful otherwise one of the system-wide error codes, including: sl@0: KErrAlreadyExists - the database already exists; sl@0: KErrArgument - bad argument, including null/invaluid uids, the database name includes a null; sl@0: sl@0: @see RDbNamedDatabase::Create(RDbs& aDbs, const TDesC& aDatabase, const TDesC& aFormat) sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: EXPORT_C TInt RDbNamedDatabase::Create(RFs& aFs, const TDesC& aSource, const TDesC& aFormat) sl@0: { sl@0: TRAPD(r,iDatabase=CreateDatabaseL(TDbFormat::ECreate,aFs,aSource,aFormat)); sl@0: return r; sl@0: } sl@0: sl@0: sl@0: /** sl@0: Creates a new non-secure database. sl@0: If a database with the same file name exists, it will be replased. sl@0: sl@0: In this "single client" mode, the database cannot be shared with the other clients. sl@0: The database server is not involved in the operations with the database, the client side sl@0: database library (edbms.dll) will be used. sl@0: If the database has to be shared, the following example shows how this may be accomplished: sl@0: @code sl@0: RFs fs; sl@0: TInt err = fs.Connect(); sl@0: sl@0: _LIT(KDatabaseName, _L("C:\\A.DB")); sl@0: RDbNamedDatabase db; sl@0: err = db.Replace(fs, KDatabaseName); //Step 1 - create the database using the RFs object sl@0: sl@0: db.Close(); //Step 2 - close the database sl@0: RDbs dbs; sl@0: err = dbs.Connect(); sl@0: sl@0: err = db.Open(dbs, KDatabaseName); //Step 3 - reopen the database using the RDbs object sl@0: sl@0: ... sl@0: @endcode sl@0: sl@0: Max allowed database name length (with the extension) is KDbMaxName symbols. sl@0: sl@0: For creating a new secure shared database, see RDbNamedDatabase::Create(), which first argument sl@0: is a RDbs reference. sl@0: sl@0: @param aFs Handle to a file server session. sl@0: @param aSource Database name. The name format is: :. sl@0: @param aFormat Database format string. It can be omitted in which case the default parameter sl@0: value (TPtrC()) will be used. sl@0: @return KErrNone if successful otherwise one of the system-wide error codes, including: sl@0: KErrArgument - bad argument, including null/invaluid uids, the database name includes a null; sl@0: sl@0: @see RDbNamedDatabase::Create(RDbs& aDbs, const TDesC& aDatabase, const TDesC& aFormat) sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: EXPORT_C TInt RDbNamedDatabase::Replace(RFs& aFs, const TDesC& aSource, const TDesC& aFormat) sl@0: { sl@0: TRAPD(r,iDatabase=CreateDatabaseL(TDbFormat::EReplace,aFs,aSource,aFormat)); sl@0: return r; sl@0: } sl@0: sl@0: /** sl@0: Opens an existing non-secure database. sl@0: sl@0: In this "single client" mode, the database cannot be shared with the other clients. sl@0: The database server is not involved in the operations with the database, the client side sl@0: database library (edbms.dll) will be used. sl@0: sl@0: For opening a new secure shared database, see RDbNamedDatabase::Open(), which first argument sl@0: is a RDbs reference. sl@0: sl@0: @param aFs Handle to a file server session. sl@0: @param aSource Database name. The name format is: :. sl@0: @param aFormat Database format string. It can be omitted in which case the default parameter sl@0: value (TPtrC()) will be used. sl@0: @param aMode The mode in which the database is to be accessed. The mode is sl@0: defined by the TAccess type. sl@0: @return KErrNone if successful otherwise one of the system-wide error codes, including: sl@0: KErrNotFound - the database is not found; sl@0: KErrPathNotFound - the path of database is not found sl@0: KErrNotSupported - the format is not supported. sl@0: KErrArgument - bad argument,including null/invaluid uids,the database name is null; sl@0: KErrPermissionDenied - the caller has not enough rights to do the operation; sl@0: sl@0: @see RDbNamedDatabase::Open(RDbs& aDbs, const TDesC& aDatabase, const TDesC& aFormat) sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: EXPORT_C TInt RDbNamedDatabase::Open(RFs& aFs, const TDesC& aSource, const TDesC& aFormat, sl@0: TAccess aMode) sl@0: { sl@0: TRAPD(r,iDatabase=OpenDatabaseL(TDbFormat::TOpen(aMode),aFs,aSource,aFormat)); sl@0: return r; sl@0: } sl@0: sl@0: sl@0: CDbNotifier* CDbSource::NotifierL() sl@0: { sl@0: return AttachContext(this,OpenNotifierL()); sl@0: }