cryptomgmtlibs/securitytestfw/test/testutil/client/testutilsdpclient.h
author Santosh V Patil <santosh.v.patil@nokia.com>
Fri, 14 Aug 2009 22:14:14 +0530
changeset 4 8e4b1aa36db9
parent 0 2c201484c85f
permissions -rw-r--r--
Added python script to import Mozilla certificates into Symbian OS (Bug 287). Also added the Mozilla certificate store file.

/*
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
* TestUtil - client interface
*
*/




/**
 @file 
 @test
 @internalComponent
*/

#ifndef __TESTUTILSDPCLIENT_H__
#define __TESTUTILSDPCLIENT_H__

#include <e32std.h>
#include <f32file.h>

class RTestUtilSession : public RSessionBase
	{
public:
	IMPORT_C TInt Connect();
	IMPORT_C TInt Copy(const TDesC& aSourceFile, const TDesC& aDestinationFile);
	IMPORT_C TInt Move(const TDesC& aSourceFile, const TDesC& aDestinationFile);
	IMPORT_C TInt Delete(const TDesC& aFileName);
	IMPORT_C TInt MkDirAll(const TDesC& aFileName);
	IMPORT_C TInt RmDir(const TDesC& aFileName);
	IMPORT_C TBool FileExistsL(const TDesC& aFileName);
	IMPORT_C TBool FileExistsL(const TDesC& aFileName, TInt aMsecTimeout);

	/**
	 * Format the specified drive
	 *
	 * If the drive is NOT mounted the format will fail with error -18 KErrNotReady
	 *
	 * nb. Formating a drive looks like an MMC insertion 
	 * (it does NOT look like a remove followed by an insert).
	 */
	IMPORT_C TInt FormatDrive(TInt aDrive, TBool aFormatFatTableOnly = EFalse);
	/**
	 * Mount the specified drive
	 *
	 * Mounting an already mounted drive fails with error -21 KErrAccessDenied
	 * 
	 * Mounting an unmounted drive looks exactly like a MMC card
	 * insertion 
	 *
	 * for a non-existent file on the drive being watched. It then checks if it can read
	 * the Volume info to decide if media has been inserted or
	 * removed.]
	 */
	IMPORT_C TInt MountDrive(TInt aDrive);
	/**
	 * UnMount the specified drive
	 *
	 * Un-mounting an already un-mounted drive fails with error -18 KErrNotReady
	 *
	 * Unmounting an mounted drive looks exactly like a MMC card
	 * removal 
	 *
	 * Will fail if there are any open file descriptors on the drive.
	 */
	IMPORT_C TInt UnMountDrive(TInt aDrive);

	IMPORT_C TInt Lock(const TDesC& aFileName);
	IMPORT_C TInt Unlock(const TDesC& aFileName);

	/**
	 * Set or clear the read only attribute for the specified file.
	 * Set the attribut if aSetReadOnly is non-zero, clear otherwise.
	 */	
	IMPORT_C TInt SetReadOnly(const TDesC& aFileName, TInt aSetReadOnly = 1);

	/**
	 * Get a file handle opened for reading for the specified filename - used
	 * to access files in private directories.
	 */	
	IMPORT_C TInt GetFileHandle(const TDesC& aFileName, RFile &aRFile);

	/**
	 *
	 * Proxy file change notify request (RFS::NotifyChange needs AllFiles)
	 *
	 */
	IMPORT_C void WatchFile(const TDesC& aFileName, TRequestStatus& aStatus);

	/**
	 *
	 * Cancel outstanding file watch request.
	 *
	 */
	IMPORT_C void WatchFileCancelL();

	IMPORT_C TInt GetNumFilesL(const TDesC& aDirName);
	};

#endif