os/persistentdata/persistentstorage/dbms/sdbms/Sd_DbList2.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Sd_DbList.cpp
    15 // CDbNamesFactory class
    16 // "DBMS security" related - full DBMS security support
    17 // 
    18 //
    19 
    20 #include "SD_STD.H"
    21 #include "Sd_DbList.h"
    22 
    23 using namespace DBSC;
    24 
    25 extern TBool CheckDrivesL(const TDesC& aPath1, const TDesC& aPath2);
    26 
    27 /**
    28 A global method, which can be used to check presence of the drive, supplied as
    29 a parameter.
    30 @param aFs File session instance.
    31 @param aDriveNumber Number of the drive, which will be checked. If there is no such drive
    32                     in the system, the function leaves with KErrNotReady error code.
    33 @internalComponent.
    34 */
    35 void CheckDriveL(RFs& aFs, TDriveNumber aDriveNumber)
    36 	{
    37 	TDriveInfo driveInfo;
    38 	__LEAVE_IF_ERROR(aFs.Drive(driveInfo, aDriveNumber));
    39 	if(driveInfo.iType == EMediaNotPresent)
    40 		{
    41 		__LEAVE(KErrNotReady);
    42 		}
    43 	}
    44 
    45 /**
    46 Standard phase-one factory method for CDbNamesFactory instances.
    47 @return A pointer to created CDbNamesFactory instance.
    48 */
    49 CDbNamesFactory* CDbNamesFactory::NewLC()
    50 	{
    51 	CDbNamesFactory* self = new (ELeave) CDbNamesFactory;
    52 	CleanupStack::PushL(self);
    53 	return self;
    54 	}
    55 
    56 /**
    57 */
    58 CDbNamesFactory::~CDbNamesFactory()
    59 	{
    60 	}
    61 
    62 /**
    63 Extracts the parameters from an EDbsDatabaseList aMessage.
    64 @param aMessage EDbsDatabaseList message
    65 @param aDriveNumber An output parameter, referencing the location, where the drive number will be stored.
    66 @param aDbPolicyRequest An output parameter, referencing the location, where the constructed 
    67                         TDbPolicyRequest will be stored.
    68 */
    69 void CDbNamesFactory::ExtractArgs(const RMessage2& aMessage, 
    70 								  TDriveNumber& aDriveNumber, 
    71 								  TDbPolicyRequest& aDbPolicyRequest)
    72 	{
    73 	aDriveNumber = static_cast <TDriveNumber> (aMessage.Int0());
    74 	aDbPolicyRequest.iUid = TUid::Uid(aMessage.Int1());
    75 	aDbPolicyRequest.iAccessType = EATSecure;
    76 	}
    77 
    78 /**
    79 Creates CDbDatabaseNames instance and return it.
    80 @param aDriveNumber The drive number to be searched.
    81 @param aDbPolicyRequest A const reference to an object packing the security policy UID and the 
    82                   request type - secure/nonsecure.
    83 @param aDbPropsFactory A const reference to RDbPropsFactory instance, which methods will be used
    84                   in the process of constructing the list of CDbDatabaseNames names.
    85 @param aFs A file session instance.
    86 @return A pointer to the created CDbDatabaseNames instance.
    87 */
    88 CDbDatabaseNames* CDbNamesFactory::DbNamesLC(TDriveNumber& aDriveNumber, 
    89 										     const TDbPolicyRequest& aDbPolicyRequest, 
    90 											 const RDbPropsFactory& aDbPropsFactory, 
    91 											 RFs& aFs)
    92 	{
    93 	::CheckDriveL(aFs, aDriveNumber);
    94 	aDbPropsFactory.GetPrivatePathL(aDriveNumber, iDbPath);
    95 	ConstructSearchPattern(aDbPolicyRequest);
    96 	CDbDatabaseNames* dbNames = CDbDatabaseNames::NewLC();
    97 	SearchL(aFs, dbNames);
    98 	return dbNames;
    99 	}
   100 
   101 /**
   102 */
   103 CDbNamesFactory::CDbNamesFactory()
   104 	{
   105 	}
   106 
   107 /**
   108 Constructs search pattern for the database file names.
   109 iDbPath & iDbNameCmnPart data members get initialized after the call.
   110 @param aDbPolicyRequest A const reference to an object packing the security policy UID and the 
   111                   request type - secure/nonsecure.
   112 */
   113 void CDbNamesFactory::ConstructSearchPattern(const TDbPolicyRequest& aDbPolicyRequest)
   114 	{
   115 	__ASSERT(iDbPath.Length() > 0);
   116 	RDbPropsFactory::ConstructCommonPart(aDbPolicyRequest.iUid, iDbNameCmnPart);
   117 	iDbNameCmnPart.Append('*');
   118 	__ASSERT(iDbNameCmnPart.Length() > 0);
   119 	}
   120 
   121 /**
   122 Searches for databases in DBMS private directory and fill aDbNames container.
   123 @param aFs A file session instance.
   124 @param aDbNames An output parameter, where the database names will be stored.
   125 @leave One of the system-wide error codes, excluding KErrNotFound.
   126 */
   127 void CDbNamesFactory::SearchL(RFs& aFs, CDbDatabaseNames* aDbNames)
   128 	{
   129 	__ASSERT(aDbNames);
   130 	TFindFile findFile(aFs);
   131 	CDir* paths = NULL;
   132 	TInt err = findFile.FindWildByDir(iDbNameCmnPart, iDbPath, paths);
   133 	if(err == KErrNone)
   134 		{
   135 		__ASSERT(paths);
   136 		CleanupStack::PushL(paths);
   137 		if(::CheckDrivesL(iDbPath, findFile.File()))
   138 			{
   139 			TInt cnt = paths->Count();
   140 			for(TInt i=0;i<cnt;++i)
   141 				{
   142 				const ::TEntry& entry = (*paths)[i];
   143 				//Reuse iDbPath, it is not needed anymore
   144 				TDes& name = iDbPath;
   145 				name.Copy(entry.iName);
   146 				RDbPropsFactory::StripCommonPart(name);
   147 				if (name.Length()<=KDbMaxName)
   148 				    {
   149 				    aDbNames->AddL(name);
   150 				    }
   151 				}
   152 			}
   153 		CleanupStack::PopAndDestroy(paths);
   154 		}
   155 	else if(err != KErrNotFound)
   156 		{
   157 		__LEAVE(err);
   158 		}
   159 	}