os/ossrv/lowlevellibsandfws/pluginfw/Tools/EcomSvrIniWriter/EComSrvrIniWriter.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Tools/EcomSvrIniWriter/EComSrvrIniWriter.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,142 @@
1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <e32base.h>
1.20 +#include <f32file.h>
1.21 +#include <s32file.h>
1.22 +#include <s32stor.h>
1.23 +#include <e32cons.h>
1.24 +#include <e32std.h>
1.25 +
1.26 +_LIT(KConsoleName, "Ecom Server Ini File Writer");
1.27 +_LIT(KFailedMessage, "failed: leave code=%d \n[press any key]");
1.28 +_LIT(KOkMessage, "ok \n[press any key]");
1.29 +
1.30 +// ini file
1.31 +_LIT(KIniFileName, "_:\\EComSrvr.ini");
1.32 +static TBuf<15> IniFileName(KIniFileName);
1.33 +
1.34 +static TInt32 KEComUid = 0x10009D8F;
1.35 +static TInt32 KSsaUid = 0x00000001;
1.36 +static TInt8 KSsaEnabled = 0x01;
1.37 +static TInt8 KSsaDisabled = 0x00;
1.38 +
1.39 +/**
1.40 + @fn void WriteIniFileL()
1.41 + Open the ini file and store the values
1.42 + */
1.43 +LOCAL_C void WriteIniFileL()
1.44 + {
1.45 + RFs fileSession;
1.46 + User::LeaveIfError(fileSession.Connect());
1.47 + CleanupClosePushL(fileSession);
1.48 +
1.49 + // create folder path
1.50 + fileSession.MkDirAll(IniFileName);
1.51 +
1.52 + RFileWriteStream fileWriteStream;
1.53 + User::LeaveIfError(fileWriteStream.Create(fileSession, IniFileName ,EFileWrite));
1.54 + CleanupClosePushL(fileWriteStream);
1.55 +
1.56 + //write the KEComUid to the stream
1.57 + fileWriteStream.WriteInt32L(KEComUid);
1.58 +
1.59 + //write the KSsaUid to the stream
1.60 + fileWriteStream.WriteInt32L(KSsaUid);
1.61 +
1.62 + //write the SSA value to the stream
1.63 + fileWriteStream.WriteInt8L(KSsaDisabled);
1.64 +
1.65 + //commit changes to the stream
1.66 + fileWriteStream.CommitL();
1.67 +
1.68 + // close: fileSession, fileWriteStream
1.69 + CleanupStack::PopAndDestroy(2);
1.70 + }
1.71 +
1.72 +/**
1.73 + @fn void ReadIniFileL()
1.74 + Open the ini file and read the contents. Intended for manually testing the
1.75 + write code.
1.76 + */
1.77 +LOCAL_C void ReadIniFileL()
1.78 + {
1.79 + RFs fileSession;
1.80 + User::LeaveIfError(fileSession.Connect());
1.81 + CleanupClosePushL(fileSession);
1.82 +
1.83 + RFileReadStream fileReadStream;
1.84 + User::LeaveIfError(fileReadStream.Open(fileSession, IniFileName, EFileRead));
1.85 + CleanupClosePushL(fileReadStream);
1.86 +
1.87 + TInt32 value1 = 0;
1.88 + TInt8 value2 = 0;
1.89 +
1.90 + //read the KEComUid and KSsaUid
1.91 + value1 = fileReadStream.ReadInt32L();
1.92 + value1 = fileReadStream.ReadInt32L();
1.93 + value2 = fileReadStream.ReadInt8L();
1.94 +
1.95 + // close: fileSession, fileReadStream
1.96 + CleanupStack::PopAndDestroy(2);
1.97 + }
1.98 +
1.99 +/**
1.100 + @fn void StartConsoleL()
1.101 + Start the console and create the ini file, then call the read method
1.102 + to manually test the contents.
1.103 + */
1.104 +LOCAL_C void StartConsoleL()
1.105 + {
1.106 + // set INI file drive
1.107 + IniFileName[0] = 'A' + static_cast<TInt>(RFs::GetSystemDrive());
1.108 +
1.109 + // Create the console and put it on the cleanup stack
1.110 + CConsoleBase* console =
1.111 + Console::NewL(KConsoleName, TSize(KConsFullScreen, KConsFullScreen));
1.112 + CleanupStack::PushL(console);
1.113 +
1.114 + // Call the main function and trap the result
1.115 + TRAPD(error, WriteIniFileL()); // create the ini file
1.116 + if(!error)
1.117 + {
1.118 + TRAPD(error2, ReadIniFileL()); // perform test
1.119 + error = error2;
1.120 + }
1.121 + if (error)
1.122 + console->Printf(KFailedMessage, error);
1.123 + else
1.124 + console->Printf(KOkMessage);
1.125 +
1.126 + CleanupStack::PopAndDestroy(console); // close console
1.127 + }
1.128 +
1.129 +/**
1.130 + @fn TInt E32Main()
1.131 + Main entry point to the console app called by E32
1.132 +*/
1.133 +GLDEF_C TInt E32Main()
1.134 + {
1.135 + __UHEAP_MARK;
1.136 +
1.137 + CTrapCleanup* cleanupStack = CTrapCleanup::New();// create clean-up stack
1.138 + TRAP_IGNORE(StartConsoleL()); // start program
1.139 + delete cleanupStack; // destroy clean-up stack
1.140 +
1.141 + __UHEAP_MARKEND;
1.142 +
1.143 + return KErrNone; // and return No Error
1.144 + }
1.145 +