sl@0: // Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "t_logutil.h" sl@0: sl@0: _LIT(KSeparator, ";"); // Invalid filepath char used to separate filenames sl@0: sl@0: RTest TheTest(_L("t_logapi_helper")); sl@0: sl@0: /* sl@0: This method helps to do operations on files and folders, like copy, delete, rename, create directory (MkDir) sl@0: This process has a capabilities to write in all files of the system. sl@0: -param: anOld: source file sl@0: -param: aNew : destination file sl@0: -param: aCode: The operation to do. sl@0: */ sl@0: void OperationOnFilesAndFolders(const TDesC& anOld, const TDesC& aNew, TInt aCode) sl@0: { sl@0: RFs fs; sl@0: TInt err = fs.Connect(); sl@0: TEST2(err, KErrNone); sl@0: sl@0: CFileMan* fileMan = NULL; sl@0: TRAP(err, fileMan = CFileMan::NewL(fs)); sl@0: TEST2(err, KErrNone); sl@0: sl@0: switch(aCode) sl@0: { sl@0: case 0: sl@0: TheTest.Printf(_L("Copying source file: %S %S\r\n"), &anOld, &aNew); sl@0: err = fileMan->Copy(anOld, aNew); sl@0: TEST2(err, KErrNone); sl@0: break; sl@0: sl@0: case 1: sl@0: TheTest.Printf(_L("Renaming file: %S %S\r\n"), &anOld, &aNew); sl@0: err = fileMan->Rename(anOld, aNew); sl@0: TEST2(err, KErrNone); sl@0: break; sl@0: sl@0: case 2: sl@0: TheTest.Printf(_L("Deleting file: %S\r\n"), &anOld); sl@0: err = fileMan->Attribs(anOld, 0, KEntryAttReadOnly, 0, CFileMan::EOverWrite); sl@0: if(err == KErrNone) sl@0: { sl@0: err = fileMan->Delete(anOld); sl@0: } sl@0: TEST(err == KErrNone || err == KErrNotFound); sl@0: break; sl@0: case 3: sl@0: TheTest.Printf(_L("Creating folder: %S\r\n"), &anOld); sl@0: err = fs.MkDir(anOld); sl@0: TEST(err == KErrNone || err == KErrAlreadyExists); sl@0: break; sl@0: default: sl@0: break; sl@0: } sl@0: delete fileMan; sl@0: fs.Close(); sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: CTrapCleanup* tc = CTrapCleanup::New(); sl@0: TheTest(tc != NULL); sl@0: sl@0: __UHEAP_MARK; sl@0: sl@0: TheTest.Start(_L("Start: t_logapi_helper process started... ")); sl@0: TheTest.Title(); sl@0: sl@0: TBuf<100> args; sl@0: User::CommandLine(args); sl@0: TInt cmdLength = User::CommandLineLength(); sl@0: sl@0: TInt pos = args.Find(KSeparator); sl@0: TBuf<50> oldName(args.Mid(0,pos)); sl@0: TInt oldNameLength = oldName.Length(); sl@0: TInt remainderLength = cmdLength - oldNameLength; sl@0: sl@0: TBuf<50> remainder(args.Mid(pos+1, remainderLength-1)); sl@0: pos = remainder.Find(KSeparator); sl@0: sl@0: TDigitType digitType; sl@0: TInt length; sl@0: TBuf<50> newName(remainder.Mid(0, pos)); sl@0: TBuf<1> code = remainder.Mid(pos+1, 1); sl@0: TInt numberLength = code.Length(); sl@0: sl@0: TInt operationMode = NumberConversion::ConvertFirstNumber(code, length, digitType); sl@0: sl@0: OperationOnFilesAndFolders(oldName, newName, operationMode); sl@0: sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: delete tc; sl@0: sl@0: return 0; sl@0: } sl@0: