os/persistentdata/loggingservices/eventlogger/test/src/t_logapi_helper.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 
    17 #include <f32file.h>
    18 #include <e32std.h>
    19 #include <e32test.h>
    20 #include <s32file.h>
    21 #include <numberconversion.h>
    22 #include "t_logutil.h"
    23 
    24 _LIT(KSeparator, ";"); // Invalid filepath char used to separate filenames
    25 
    26 RTest TheTest(_L("t_logapi_helper"));
    27 
    28 /*
    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. 
    34 */
    35 void OperationOnFilesAndFolders(const TDesC& anOld, const TDesC& aNew, TInt aCode)
    36 	{
    37 	RFs fs;
    38 	TInt err = fs.Connect();
    39 	TEST2(err, KErrNone);
    40 	
    41 	CFileMan* fileMan = NULL; 
    42 	TRAP(err, fileMan = CFileMan::NewL(fs));
    43     TEST2(err, KErrNone);
    44     
    45 	switch(aCode)
    46 		{
    47 		case 0:
    48 			TheTest.Printf(_L("Copying source file: %S %S\r\n"), &anOld, &aNew);
    49 			err = fileMan->Copy(anOld, aNew);		
    50 			TEST2(err, KErrNone);
    51 			break;
    52 
    53 		case 1:
    54 			TheTest.Printf(_L("Renaming file: %S %S\r\n"), &anOld, &aNew);
    55 			err = fileMan->Rename(anOld, aNew);
    56             TEST2(err, KErrNone);
    57 			break;
    58 
    59 		case 2:
    60 			TheTest.Printf(_L("Deleting file: %S\r\n"), &anOld);
    61 			err = fileMan->Attribs(anOld, 0, KEntryAttReadOnly, 0, CFileMan::EOverWrite);
    62 			if(err == KErrNone)
    63 			    {
    64 			    err = fileMan->Delete(anOld);
    65 			    }
    66             TEST(err == KErrNone || err == KErrNotFound);
    67 			break;
    68 		case 3:
    69 			TheTest.Printf(_L("Creating folder: %S\r\n"), &anOld);
    70 			err = fs.MkDir(anOld);		
    71 			TEST(err == KErrNone || err == KErrAlreadyExists);
    72 			break;
    73 		default: 
    74 		    break;
    75 		}
    76 	delete fileMan;
    77 	fs.Close();
    78 	}
    79 
    80 TInt E32Main()
    81 	{
    82 	CTrapCleanup* tc = CTrapCleanup::New();
    83 	TheTest(tc != NULL);
    84 	
    85 	__UHEAP_MARK;
    86 	
    87 	TheTest.Start(_L("Start: t_logapi_helper process started... "));
    88 	TheTest.Title();
    89 	
    90 	TBuf<100> args;
    91 	User::CommandLine(args);
    92 	TInt cmdLength = User::CommandLineLength();
    93 	
    94 	TInt pos = args.Find(KSeparator);
    95 	TBuf<50> oldName(args.Mid(0,pos));
    96 	TInt oldNameLength = oldName.Length();
    97 	TInt remainderLength = cmdLength - oldNameLength;
    98 	
    99 	TBuf<50> remainder(args.Mid(pos+1, remainderLength-1));
   100 	pos = remainder.Find(KSeparator);
   101 	
   102 	TDigitType digitType;
   103 	TInt length;
   104 	TBuf<50> newName(remainder.Mid(0, pos));
   105 	TBuf<1> code = remainder.Mid(pos+1, 1);
   106 	TInt numberLength = code.Length();
   107 	
   108 	TInt operationMode = NumberConversion::ConvertFirstNumber(code, length, digitType);
   109 	
   110 	OperationOnFilesAndFolders(oldName, newName, operationMode);
   111 	
   112     TheTest.End();
   113     TheTest.Close();
   114 	
   115 	__UHEAP_MARKEND;
   116 	
   117 	delete tc;
   118 	
   119 	return 0;
   120 	}
   121