os/ossrv/lowlevellibsandfws/pluginfw/Tools/EcomSvrIniWriter/EComSrvrIniWriter.cpp
First public contribution.
1 // Copyright (c) 2005-2009 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.
23 _LIT(KConsoleName, "Ecom Server Ini File Writer");
24 _LIT(KFailedMessage, "failed: leave code=%d \n[press any key]");
25 _LIT(KOkMessage, "ok \n[press any key]");
28 _LIT(KIniFileName, "_:\\EComSrvr.ini");
29 static TBuf<15> IniFileName(KIniFileName);
31 static TInt32 KEComUid = 0x10009D8F;
32 static TInt32 KSsaUid = 0x00000001;
33 static TInt8 KSsaEnabled = 0x01;
34 static TInt8 KSsaDisabled = 0x00;
37 @fn void WriteIniFileL()
38 Open the ini file and store the values
40 LOCAL_C void WriteIniFileL()
43 User::LeaveIfError(fileSession.Connect());
44 CleanupClosePushL(fileSession);
47 fileSession.MkDirAll(IniFileName);
49 RFileWriteStream fileWriteStream;
50 User::LeaveIfError(fileWriteStream.Create(fileSession, IniFileName ,EFileWrite));
51 CleanupClosePushL(fileWriteStream);
53 //write the KEComUid to the stream
54 fileWriteStream.WriteInt32L(KEComUid);
56 //write the KSsaUid to the stream
57 fileWriteStream.WriteInt32L(KSsaUid);
59 //write the SSA value to the stream
60 fileWriteStream.WriteInt8L(KSsaDisabled);
62 //commit changes to the stream
63 fileWriteStream.CommitL();
65 // close: fileSession, fileWriteStream
66 CleanupStack::PopAndDestroy(2);
70 @fn void ReadIniFileL()
71 Open the ini file and read the contents. Intended for manually testing the
74 LOCAL_C void ReadIniFileL()
77 User::LeaveIfError(fileSession.Connect());
78 CleanupClosePushL(fileSession);
80 RFileReadStream fileReadStream;
81 User::LeaveIfError(fileReadStream.Open(fileSession, IniFileName, EFileRead));
82 CleanupClosePushL(fileReadStream);
87 //read the KEComUid and KSsaUid
88 value1 = fileReadStream.ReadInt32L();
89 value1 = fileReadStream.ReadInt32L();
90 value2 = fileReadStream.ReadInt8L();
92 // close: fileSession, fileReadStream
93 CleanupStack::PopAndDestroy(2);
97 @fn void StartConsoleL()
98 Start the console and create the ini file, then call the read method
99 to manually test the contents.
101 LOCAL_C void StartConsoleL()
103 // set INI file drive
104 IniFileName[0] = 'A' + static_cast<TInt>(RFs::GetSystemDrive());
106 // Create the console and put it on the cleanup stack
107 CConsoleBase* console =
108 Console::NewL(KConsoleName, TSize(KConsFullScreen, KConsFullScreen));
109 CleanupStack::PushL(console);
111 // Call the main function and trap the result
112 TRAPD(error, WriteIniFileL()); // create the ini file
115 TRAPD(error2, ReadIniFileL()); // perform test
119 console->Printf(KFailedMessage, error);
121 console->Printf(KOkMessage);
123 CleanupStack::PopAndDestroy(console); // close console
128 Main entry point to the console app called by E32
130 GLDEF_C TInt E32Main()
134 CTrapCleanup* cleanupStack = CTrapCleanup::New();// create clean-up stack
135 TRAP_IGNORE(StartConsoleL()); // start program
136 delete cleanupStack; // destroy clean-up stack
140 return KErrNone; // and return No Error