sl@0: // Copyright (c) 2005-2009 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: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: _LIT(KConsoleName, "Ecom Server Ini File Writer"); sl@0: _LIT(KFailedMessage, "failed: leave code=%d \n[press any key]"); sl@0: _LIT(KOkMessage, "ok \n[press any key]"); sl@0: sl@0: // ini file sl@0: _LIT(KIniFileName, "_:\\EComSrvr.ini"); sl@0: static TBuf<15> IniFileName(KIniFileName); sl@0: sl@0: static TInt32 KEComUid = 0x10009D8F; sl@0: static TInt32 KSsaUid = 0x00000001; sl@0: static TInt8 KSsaEnabled = 0x01; sl@0: static TInt8 KSsaDisabled = 0x00; sl@0: sl@0: /** sl@0: @fn void WriteIniFileL() sl@0: Open the ini file and store the values sl@0: */ sl@0: LOCAL_C void WriteIniFileL() sl@0: { sl@0: RFs fileSession; sl@0: User::LeaveIfError(fileSession.Connect()); sl@0: CleanupClosePushL(fileSession); sl@0: sl@0: // create folder path sl@0: fileSession.MkDirAll(IniFileName); sl@0: sl@0: RFileWriteStream fileWriteStream; sl@0: User::LeaveIfError(fileWriteStream.Create(fileSession, IniFileName ,EFileWrite)); sl@0: CleanupClosePushL(fileWriteStream); sl@0: sl@0: //write the KEComUid to the stream sl@0: fileWriteStream.WriteInt32L(KEComUid); sl@0: sl@0: //write the KSsaUid to the stream sl@0: fileWriteStream.WriteInt32L(KSsaUid); sl@0: sl@0: //write the SSA value to the stream sl@0: fileWriteStream.WriteInt8L(KSsaDisabled); sl@0: sl@0: //commit changes to the stream sl@0: fileWriteStream.CommitL(); sl@0: sl@0: // close: fileSession, fileWriteStream sl@0: CleanupStack::PopAndDestroy(2); sl@0: } sl@0: sl@0: /** sl@0: @fn void ReadIniFileL() sl@0: Open the ini file and read the contents. Intended for manually testing the sl@0: write code. sl@0: */ sl@0: LOCAL_C void ReadIniFileL() sl@0: { sl@0: RFs fileSession; sl@0: User::LeaveIfError(fileSession.Connect()); sl@0: CleanupClosePushL(fileSession); sl@0: sl@0: RFileReadStream fileReadStream; sl@0: User::LeaveIfError(fileReadStream.Open(fileSession, IniFileName, EFileRead)); sl@0: CleanupClosePushL(fileReadStream); sl@0: sl@0: TInt32 value1 = 0; sl@0: TInt8 value2 = 0; sl@0: sl@0: //read the KEComUid and KSsaUid sl@0: value1 = fileReadStream.ReadInt32L(); sl@0: value1 = fileReadStream.ReadInt32L(); sl@0: value2 = fileReadStream.ReadInt8L(); sl@0: sl@0: // close: fileSession, fileReadStream sl@0: CleanupStack::PopAndDestroy(2); sl@0: } sl@0: sl@0: /** sl@0: @fn void StartConsoleL() sl@0: Start the console and create the ini file, then call the read method sl@0: to manually test the contents. sl@0: */ sl@0: LOCAL_C void StartConsoleL() sl@0: { sl@0: // set INI file drive sl@0: IniFileName[0] = 'A' + static_cast(RFs::GetSystemDrive()); sl@0: sl@0: // Create the console and put it on the cleanup stack sl@0: CConsoleBase* console = sl@0: Console::NewL(KConsoleName, TSize(KConsFullScreen, KConsFullScreen)); sl@0: CleanupStack::PushL(console); sl@0: sl@0: // Call the main function and trap the result sl@0: TRAPD(error, WriteIniFileL()); // create the ini file sl@0: if(!error) sl@0: { sl@0: TRAPD(error2, ReadIniFileL()); // perform test sl@0: error = error2; sl@0: } sl@0: if (error) sl@0: console->Printf(KFailedMessage, error); sl@0: else sl@0: console->Printf(KOkMessage); sl@0: sl@0: CleanupStack::PopAndDestroy(console); // close console sl@0: } sl@0: sl@0: /** sl@0: @fn TInt E32Main() sl@0: Main entry point to the console app called by E32 sl@0: */ sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: CTrapCleanup* cleanupStack = CTrapCleanup::New();// create clean-up stack sl@0: TRAP_IGNORE(StartConsoleL()); // start program sl@0: delete cleanupStack; // destroy clean-up stack sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: return KErrNone; // and return No Error sl@0: } sl@0: