Update contrib.
1 // Copyright (c) 2008-2010 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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
21 #include <numberconversion.h>
22 #include "t_logutil.h"
24 _LIT(KSeparator, ";"); // Invalid filepath char used to separate filenames
26 RTest TheTest(_L("t_logapi_helper"));
29 This method helps to do operations on files and folders, like copy, delete, rename, create directory (MkDir)
30 This process has a capabilities to write in all files of the system.
31 -param: anOld: source file
32 -param: aNew : destination file
33 -param: aCode: The operation to do.
35 void OperationOnFilesAndFolders(const TDesC& anOld, const TDesC& aNew, TInt aCode)
38 TInt err = fs.Connect();
41 CFileMan* fileMan = NULL;
42 TRAP(err, fileMan = CFileMan::NewL(fs));
48 TheTest.Printf(_L("Copying source file: %S %S\r\n"), &anOld, &aNew);
49 err = fileMan->Copy(anOld, aNew);
54 TheTest.Printf(_L("Renaming file: %S %S\r\n"), &anOld, &aNew);
55 err = fileMan->Rename(anOld, aNew);
60 TheTest.Printf(_L("Deleting file: %S\r\n"), &anOld);
61 err = fileMan->Attribs(anOld, 0, KEntryAttReadOnly, 0, CFileMan::EOverWrite);
64 err = fileMan->Delete(anOld);
66 TEST(err == KErrNone || err == KErrNotFound);
69 TheTest.Printf(_L("Creating folder: %S\r\n"), &anOld);
70 err = fs.MkDir(anOld);
71 TEST(err == KErrNone || err == KErrAlreadyExists);
82 CTrapCleanup* tc = CTrapCleanup::New();
87 TheTest.Start(_L("Start: t_logapi_helper process started... "));
91 User::CommandLine(args);
92 TInt cmdLength = User::CommandLineLength();
94 TInt pos = args.Find(KSeparator);
95 TBuf<50> oldName(args.Mid(0,pos));
96 TInt oldNameLength = oldName.Length();
97 TInt remainderLength = cmdLength - oldNameLength;
99 TBuf<50> remainder(args.Mid(pos+1, remainderLength-1));
100 pos = remainder.Find(KSeparator);
102 TDigitType digitType;
104 TBuf<50> newName(remainder.Mid(0, pos));
105 TBuf<1> code = remainder.Mid(pos+1, 1);
106 TInt numberLength = code.Length();
108 TInt operationMode = NumberConversion::ConvertFirstNumber(code, length, digitType);
110 OperationOnFilesAndFolders(oldName, newName, operationMode);