sl@0
|
1 |
// Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
|
sl@0
|
17 |
#include <f32file.h>
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
#include <e32test.h>
|
sl@0
|
20 |
#include <s32file.h>
|
sl@0
|
21 |
#include <numberconversion.h>
|
sl@0
|
22 |
#include "t_logutil.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
_LIT(KSeparator, ";"); // Invalid filepath char used to separate filenames
|
sl@0
|
25 |
|
sl@0
|
26 |
RTest TheTest(_L("t_logapi_helper"));
|
sl@0
|
27 |
|
sl@0
|
28 |
/*
|
sl@0
|
29 |
This method helps to do operations on files and folders, like copy, delete, rename, create directory (MkDir)
|
sl@0
|
30 |
This process has a capabilities to write in all files of the system.
|
sl@0
|
31 |
-param: anOld: source file
|
sl@0
|
32 |
-param: aNew : destination file
|
sl@0
|
33 |
-param: aCode: The operation to do.
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
void OperationOnFilesAndFolders(const TDesC& anOld, const TDesC& aNew, TInt aCode)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
RFs fs;
|
sl@0
|
38 |
TInt err = fs.Connect();
|
sl@0
|
39 |
TEST2(err, KErrNone);
|
sl@0
|
40 |
|
sl@0
|
41 |
CFileMan* fileMan = NULL;
|
sl@0
|
42 |
TRAP(err, fileMan = CFileMan::NewL(fs));
|
sl@0
|
43 |
TEST2(err, KErrNone);
|
sl@0
|
44 |
|
sl@0
|
45 |
switch(aCode)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
case 0:
|
sl@0
|
48 |
TheTest.Printf(_L("Copying source file: %S %S\r\n"), &anOld, &aNew);
|
sl@0
|
49 |
err = fileMan->Copy(anOld, aNew);
|
sl@0
|
50 |
TEST2(err, KErrNone);
|
sl@0
|
51 |
break;
|
sl@0
|
52 |
|
sl@0
|
53 |
case 1:
|
sl@0
|
54 |
TheTest.Printf(_L("Renaming file: %S %S\r\n"), &anOld, &aNew);
|
sl@0
|
55 |
err = fileMan->Rename(anOld, aNew);
|
sl@0
|
56 |
TEST2(err, KErrNone);
|
sl@0
|
57 |
break;
|
sl@0
|
58 |
|
sl@0
|
59 |
case 2:
|
sl@0
|
60 |
TheTest.Printf(_L("Deleting file: %S\r\n"), &anOld);
|
sl@0
|
61 |
err = fileMan->Attribs(anOld, 0, KEntryAttReadOnly, 0, CFileMan::EOverWrite);
|
sl@0
|
62 |
if(err == KErrNone)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
err = fileMan->Delete(anOld);
|
sl@0
|
65 |
}
|
sl@0
|
66 |
TEST(err == KErrNone || err == KErrNotFound);
|
sl@0
|
67 |
break;
|
sl@0
|
68 |
case 3:
|
sl@0
|
69 |
TheTest.Printf(_L("Creating folder: %S\r\n"), &anOld);
|
sl@0
|
70 |
err = fs.MkDir(anOld);
|
sl@0
|
71 |
TEST(err == KErrNone || err == KErrAlreadyExists);
|
sl@0
|
72 |
break;
|
sl@0
|
73 |
default:
|
sl@0
|
74 |
break;
|
sl@0
|
75 |
}
|
sl@0
|
76 |
delete fileMan;
|
sl@0
|
77 |
fs.Close();
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
TInt E32Main()
|
sl@0
|
81 |
{
|
sl@0
|
82 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
83 |
TheTest(tc != NULL);
|
sl@0
|
84 |
|
sl@0
|
85 |
__UHEAP_MARK;
|
sl@0
|
86 |
|
sl@0
|
87 |
TheTest.Start(_L("Start: t_logapi_helper process started... "));
|
sl@0
|
88 |
TheTest.Title();
|
sl@0
|
89 |
|
sl@0
|
90 |
TBuf<100> args;
|
sl@0
|
91 |
User::CommandLine(args);
|
sl@0
|
92 |
TInt cmdLength = User::CommandLineLength();
|
sl@0
|
93 |
|
sl@0
|
94 |
TInt pos = args.Find(KSeparator);
|
sl@0
|
95 |
TBuf<50> oldName(args.Mid(0,pos));
|
sl@0
|
96 |
TInt oldNameLength = oldName.Length();
|
sl@0
|
97 |
TInt remainderLength = cmdLength - oldNameLength;
|
sl@0
|
98 |
|
sl@0
|
99 |
TBuf<50> remainder(args.Mid(pos+1, remainderLength-1));
|
sl@0
|
100 |
pos = remainder.Find(KSeparator);
|
sl@0
|
101 |
|
sl@0
|
102 |
TDigitType digitType;
|
sl@0
|
103 |
TInt length;
|
sl@0
|
104 |
TBuf<50> newName(remainder.Mid(0, pos));
|
sl@0
|
105 |
TBuf<1> code = remainder.Mid(pos+1, 1);
|
sl@0
|
106 |
TInt numberLength = code.Length();
|
sl@0
|
107 |
|
sl@0
|
108 |
TInt operationMode = NumberConversion::ConvertFirstNumber(code, length, digitType);
|
sl@0
|
109 |
|
sl@0
|
110 |
OperationOnFilesAndFolders(oldName, newName, operationMode);
|
sl@0
|
111 |
|
sl@0
|
112 |
TheTest.End();
|
sl@0
|
113 |
TheTest.Close();
|
sl@0
|
114 |
|
sl@0
|
115 |
__UHEAP_MARKEND;
|
sl@0
|
116 |
|
sl@0
|
117 |
delete tc;
|
sl@0
|
118 |
|
sl@0
|
119 |
return 0;
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|