diff -r 9e2d4f7f5028 -r 345b1ca54e88 kerneltest/sdiotest/source/sdio_io.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/kerneltest/sdiotest/source/sdio_io.cpp Wed Sep 15 13:42:27 2010 +0300 @@ -0,0 +1,139 @@ +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of the License "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// LDD for testing SDIO functions +// +// + +#include "sdio_io.h" + +/** Text to replace any overflow in logging */ +_LIT(KEllipses, "..."); + +#if defined(_UNICODE) +void CIOBase::TIOOverflowHandler::Overflow(TDes16 &aDes) + { + // Replace the last three characters with ellipses + aDes.RightTPtr(KEllipses().Length()).Copy(KEllipses); + } +#else +void CIOBase::TIOOverflowHandler::Overflow(TDes8 &aDes) + { + // Replace the last three characters with ellipses + aDes.RightTPtr(KEllipses().Length()).Copy(KEllipses); + } +#endif + +// +// CIOBase +// +void CIOBase::Heading(TRefByValue aFmt,...) + { + FORMAT_TEXT(aFmt); + DoHeading(); + } + +void CIOBase::Instructions(TBool topLine, TRefByValue aFmt,...) + { + FORMAT_TEXT(aFmt); + DoInstructions(topLine); + } + +void CIOBase::Printf(TRefByValue aFmt,...) + { + FORMAT_TEXT(aFmt); + DoPrintf(); + } + +void CIOBase::FormatText(TRefByValue aFmt, VA_LIST aList) + { + iText.Zero(); + iText.AppendFormatList(aFmt, aList, &iOverflowHandler); + } + +// +// CIOConsole +// +CIOConsole::~CIOConsole() + { + iDisplay.Destroy(); + } + +void CIOConsole::CreateL(TPtrC aName) + { + iDisplay.CreateL(aName); + } + +void CIOConsole::DoHeading() + { + iDisplay.Heading(iText); + } + +void CIOConsole::DoInstructions(TBool topLine) + { + iDisplay.Instructions(topLine, iText); + } + +void CIOConsole::DoPrintf() + { + iDisplay.Printf(iText); + } + +void CIOConsole::ReportError(TPtrC errText, TInt anErr) + { + iDisplay.ReportError(errText, anErr); + } + +void CIOConsole::CurserToDataStart() + { + iDisplay.CurserToDataStart(); + } + +TKeyCode CIOConsole::Getch() + { + return iDisplay.Getch(); + } + +void CIOConsole::ClearScreen() + { + iDisplay.ClearScreen(); + } + +// +// CIORDebug +// +void CIORDebug::CreateL(TPtrC aName) + { + RDebug::RawPrint(aName); + } + +void CIORDebug::DoHeading() + { + RDebug::RawPrint(iText); + } + +void CIORDebug::DoPrintf() + { + RDebug::RawPrint(iText); + } + +void CIORDebug::ReportError(TPtrC errText, TInt anErr) + { + RDebug::RawPrint(errText); + RDebug::Printf("Error Code: %d", anErr); + } + +void CIORDebug::ClearScreen() + { + RDebug::Printf("\n\n"); + }