os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processrfsreplacefile.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 // Helper process with high capability to perform copying of using Rfs
    15 // files for test harness. 
    16 // 
    17 //
    18 
    19 #include <f32file.h>
    20 #include <e32debug.h>
    21 
    22 
    23 _LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
    24 
    25 TInt DoReplaceFileL(const TDesC& anOld,const TDesC& aNew)
    26 	{
    27 	TInt r = KErrNone;	
    28 	RFs fs;
    29 	r = fs.Connect();
    30 	if (r != KErrNone)
    31 		{
    32 			User::Leave(r);
    33 		}
    34 
    35 	// Ensure the path exists
    36 	TInt err = fs.MkDirAll(aNew);
    37     // Make the new file writeable 
    38     err = fs.SetAtt(aNew, 0, KEntryAttReadOnly);
    39 	// Replace
    40     err = fs.Replace(anOld, aNew);
    41     RDebug::Print(_L("RFs Replace file %S to %S - err = %d\n"), &anOld, &aNew, err);
    42     
    43     fs.Close();
    44 	return err;
    45 	}
    46 
    47 	
    48 // Copy the files specified.  Format of aFileNames is [srcFile]|[dstFile].
    49 static TInt ReplaceFile(const TDesC& aFileNames)
    50 	{	
    51 	TInt pos = aFileNames.Find(KSeparator);
    52 	
    53 	TFileName srcFile(aFileNames.Mid(0,pos));
    54 	TFileName dstFile(aFileNames.Mid(pos+1, aFileNames.Length()-(pos+1)));
    55 			
    56 	TRAPD(err,DoReplaceFileL(srcFile, dstFile));
    57 	return err;
    58 	}
    59 
    60 
    61 GLDEF_C TInt E32Main()
    62 	{
    63 	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    64 	
    65 	TBuf<KMaxFileName*2> names;
    66 	User::CommandLine(names);
    67 	TInt err = ReplaceFile(names);
    68 	delete cleanup;
    69 	return err;
    70 	}