os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemancopyfile.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemancopyfile.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,78 @@
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 files for
1.18 +// test harnesses.
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 +
1.29 +// Copy the files specified.
1.30 +void CopyFileL(const TDesC& anOld, const TDesC& aNew)
1.31 + {
1.32 + TInt r = KErrNone;
1.33 + RFs fs;
1.34 + r = fs.Connect();
1.35 + if (r != KErrNone)
1.36 + {
1.37 + User::Leave(r);
1.38 + }
1.39 + CleanupClosePushL(fs);
1.40 +
1.41 + CFileMan* fileMan = CFileMan::NewL(fs);
1.42 + CleanupStack::PushL(fileMan);
1.43 +
1.44 + // Ensure the path exists
1.45 + TInt err = fs.MkDirAll(aNew);
1.46 + if ((err != KErrNone) && (err != KErrAlreadyExists))
1.47 + User::Leave(err);
1.48 +
1.49 + // Make the destination file writeable
1.50 + err = fileMan->Attribs(aNew, 0, KEntryAttReadOnly, TTime(0), 0);
1.51 + if ((err != KErrNone) && (err != KErrNotFound))
1.52 + User::Leave(err);
1.53 +
1.54 + // Do the file copy
1.55 + User::LeaveIfError(fileMan->Copy(anOld, aNew));
1.56 +
1.57 + CleanupStack::PopAndDestroy(2);
1.58 + }
1.59 +
1.60 +
1.61 +// Format of aFileNames is [srcFile]|[dstFile]
1.62 +GLDEF_C TInt E32Main()
1.63 + {
1.64 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.65 +
1.66 + TBuf<KMaxFileName*2> names;
1.67 + User::CommandLine(names);
1.68 + TInt pos = names.Find(KSeparator);
1.69 + TFileName srcFile(names.Mid(0,pos));
1.70 + TFileName dstFile(names.Mid(pos+1, names.Length()-(pos+1)));
1.71 +
1.72 + TInt err = KErrNone;
1.73 + TRAP(err,CopyFileL(srcFile, dstFile));
1.74 + if (err == KErrNone)
1.75 + RDebug::Print(_L("CFileMan Copy file '%S' to '%S' succeeded.\n"), &srcFile, &dstFile);
1.76 + else
1.77 + RDebug::Print(_L("CFileMan Copy file '%S' to '%S' failed with error = %d.\n"), &srcFile, &dstFile, err);
1.78 +
1.79 + delete cleanup;
1.80 + return err;
1.81 + }