sl@0
|
1 |
// Copyright (c) 2005-2009 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 |
#include <e32base.h>
|
sl@0
|
17 |
#include <f32file.h>
|
sl@0
|
18 |
#include <s32file.h>
|
sl@0
|
19 |
#include <s32stor.h>
|
sl@0
|
20 |
#include <e32cons.h>
|
sl@0
|
21 |
#include <e32std.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
_LIT(KConsoleName, "Ecom Server Ini File Writer");
|
sl@0
|
24 |
_LIT(KFailedMessage, "failed: leave code=%d \n[press any key]");
|
sl@0
|
25 |
_LIT(KOkMessage, "ok \n[press any key]");
|
sl@0
|
26 |
|
sl@0
|
27 |
// ini file
|
sl@0
|
28 |
_LIT(KIniFileName, "_:\\EComSrvr.ini");
|
sl@0
|
29 |
static TBuf<15> IniFileName(KIniFileName);
|
sl@0
|
30 |
|
sl@0
|
31 |
static TInt32 KEComUid = 0x10009D8F;
|
sl@0
|
32 |
static TInt32 KSsaUid = 0x00000001;
|
sl@0
|
33 |
static TInt8 KSsaEnabled = 0x01;
|
sl@0
|
34 |
static TInt8 KSsaDisabled = 0x00;
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
@fn void WriteIniFileL()
|
sl@0
|
38 |
Open the ini file and store the values
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
LOCAL_C void WriteIniFileL()
|
sl@0
|
41 |
{
|
sl@0
|
42 |
RFs fileSession;
|
sl@0
|
43 |
User::LeaveIfError(fileSession.Connect());
|
sl@0
|
44 |
CleanupClosePushL(fileSession);
|
sl@0
|
45 |
|
sl@0
|
46 |
// create folder path
|
sl@0
|
47 |
fileSession.MkDirAll(IniFileName);
|
sl@0
|
48 |
|
sl@0
|
49 |
RFileWriteStream fileWriteStream;
|
sl@0
|
50 |
User::LeaveIfError(fileWriteStream.Create(fileSession, IniFileName ,EFileWrite));
|
sl@0
|
51 |
CleanupClosePushL(fileWriteStream);
|
sl@0
|
52 |
|
sl@0
|
53 |
//write the KEComUid to the stream
|
sl@0
|
54 |
fileWriteStream.WriteInt32L(KEComUid);
|
sl@0
|
55 |
|
sl@0
|
56 |
//write the KSsaUid to the stream
|
sl@0
|
57 |
fileWriteStream.WriteInt32L(KSsaUid);
|
sl@0
|
58 |
|
sl@0
|
59 |
//write the SSA value to the stream
|
sl@0
|
60 |
fileWriteStream.WriteInt8L(KSsaDisabled);
|
sl@0
|
61 |
|
sl@0
|
62 |
//commit changes to the stream
|
sl@0
|
63 |
fileWriteStream.CommitL();
|
sl@0
|
64 |
|
sl@0
|
65 |
// close: fileSession, fileWriteStream
|
sl@0
|
66 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
@fn void ReadIniFileL()
|
sl@0
|
71 |
Open the ini file and read the contents. Intended for manually testing the
|
sl@0
|
72 |
write code.
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
LOCAL_C void ReadIniFileL()
|
sl@0
|
75 |
{
|
sl@0
|
76 |
RFs fileSession;
|
sl@0
|
77 |
User::LeaveIfError(fileSession.Connect());
|
sl@0
|
78 |
CleanupClosePushL(fileSession);
|
sl@0
|
79 |
|
sl@0
|
80 |
RFileReadStream fileReadStream;
|
sl@0
|
81 |
User::LeaveIfError(fileReadStream.Open(fileSession, IniFileName, EFileRead));
|
sl@0
|
82 |
CleanupClosePushL(fileReadStream);
|
sl@0
|
83 |
|
sl@0
|
84 |
TInt32 value1 = 0;
|
sl@0
|
85 |
TInt8 value2 = 0;
|
sl@0
|
86 |
|
sl@0
|
87 |
//read the KEComUid and KSsaUid
|
sl@0
|
88 |
value1 = fileReadStream.ReadInt32L();
|
sl@0
|
89 |
value1 = fileReadStream.ReadInt32L();
|
sl@0
|
90 |
value2 = fileReadStream.ReadInt8L();
|
sl@0
|
91 |
|
sl@0
|
92 |
// close: fileSession, fileReadStream
|
sl@0
|
93 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
/**
|
sl@0
|
97 |
@fn void StartConsoleL()
|
sl@0
|
98 |
Start the console and create the ini file, then call the read method
|
sl@0
|
99 |
to manually test the contents.
|
sl@0
|
100 |
*/
|
sl@0
|
101 |
LOCAL_C void StartConsoleL()
|
sl@0
|
102 |
{
|
sl@0
|
103 |
// set INI file drive
|
sl@0
|
104 |
IniFileName[0] = 'A' + static_cast<TInt>(RFs::GetSystemDrive());
|
sl@0
|
105 |
|
sl@0
|
106 |
// Create the console and put it on the cleanup stack
|
sl@0
|
107 |
CConsoleBase* console =
|
sl@0
|
108 |
Console::NewL(KConsoleName, TSize(KConsFullScreen, KConsFullScreen));
|
sl@0
|
109 |
CleanupStack::PushL(console);
|
sl@0
|
110 |
|
sl@0
|
111 |
// Call the main function and trap the result
|
sl@0
|
112 |
TRAPD(error, WriteIniFileL()); // create the ini file
|
sl@0
|
113 |
if(!error)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
TRAPD(error2, ReadIniFileL()); // perform test
|
sl@0
|
116 |
error = error2;
|
sl@0
|
117 |
}
|
sl@0
|
118 |
if (error)
|
sl@0
|
119 |
console->Printf(KFailedMessage, error);
|
sl@0
|
120 |
else
|
sl@0
|
121 |
console->Printf(KOkMessage);
|
sl@0
|
122 |
|
sl@0
|
123 |
CleanupStack::PopAndDestroy(console); // close console
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
/**
|
sl@0
|
127 |
@fn TInt E32Main()
|
sl@0
|
128 |
Main entry point to the console app called by E32
|
sl@0
|
129 |
*/
|
sl@0
|
130 |
GLDEF_C TInt E32Main()
|
sl@0
|
131 |
{
|
sl@0
|
132 |
__UHEAP_MARK;
|
sl@0
|
133 |
|
sl@0
|
134 |
CTrapCleanup* cleanupStack = CTrapCleanup::New();// create clean-up stack
|
sl@0
|
135 |
TRAP_IGNORE(StartConsoleL()); // start program
|
sl@0
|
136 |
delete cleanupStack; // destroy clean-up stack
|
sl@0
|
137 |
|
sl@0
|
138 |
__UHEAP_MARKEND;
|
sl@0
|
139 |
|
sl@0
|
140 |
return KErrNone; // and return No Error
|
sl@0
|
141 |
}
|
sl@0
|
142 |
|