--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cryptomgmtlibs/securitytestfw/test/testutil/client/testutilsdpclient.h Wed Jul 08 11:25:26 2009 +0100
@@ -0,0 +1,112 @@
+/*
+* 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