os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processrfsreplacefile.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processrfsreplacefile.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,70 @@
     1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Helper process with high capability to perform copying of using Rfs
    1.18 +// files for test harness. 
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#include <f32file.h>
    1.23 +#include <e32debug.h>
    1.24 +
    1.25 +
    1.26 +_LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
    1.27 +
    1.28 +TInt DoReplaceFileL(const TDesC& anOld,const TDesC& aNew)
    1.29 +	{
    1.30 +	TInt r = KErrNone;	
    1.31 +	RFs fs;
    1.32 +	r = fs.Connect();
    1.33 +	if (r != KErrNone)
    1.34 +		{
    1.35 +			User::Leave(r);
    1.36 +		}
    1.37 +
    1.38 +	// Ensure the path exists
    1.39 +	TInt err = fs.MkDirAll(aNew);
    1.40 +    // Make the new file writeable 
    1.41 +    err = fs.SetAtt(aNew, 0, KEntryAttReadOnly);
    1.42 +	// Replace
    1.43 +    err = fs.Replace(anOld, aNew);
    1.44 +    RDebug::Print(_L("RFs Replace file %S to %S - err = %d\n"), &anOld, &aNew, err);
    1.45 +    
    1.46 +    fs.Close();
    1.47 +	return err;
    1.48 +	}
    1.49 +
    1.50 +	
    1.51 +// Copy the files specified.  Format of aFileNames is [srcFile]|[dstFile].
    1.52 +static TInt ReplaceFile(const TDesC& aFileNames)
    1.53 +	{	
    1.54 +	TInt pos = aFileNames.Find(KSeparator);
    1.55 +	
    1.56 +	TFileName srcFile(aFileNames.Mid(0,pos));
    1.57 +	TFileName dstFile(aFileNames.Mid(pos+1, aFileNames.Length()-(pos+1)));
    1.58 +			
    1.59 +	TRAPD(err,DoReplaceFileL(srcFile, dstFile));
    1.60 +	return err;
    1.61 +	}
    1.62 +
    1.63 +
    1.64 +GLDEF_C TInt E32Main()
    1.65 +	{
    1.66 +	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    1.67 +	
    1.68 +	TBuf<KMaxFileName*2> names;
    1.69 +	User::CommandLine(names);
    1.70 +	TInt err = ReplaceFile(names);
    1.71 +	delete cleanup;
    1.72 +	return err;
    1.73 +	}