First public contribution.
2 * Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #ifndef __T_OUTPUT_H__
20 #define __T_OUTPUT_H__
28 * Astract base class for classes that provide logging of test output.
32 class Output : public CBase
36 IMPORT_C void writeString(const TDesC& aString);
37 IMPORT_C void writeString(const TDesC8& aString);
38 IMPORT_C void write(TRefByValue<const TDesC16> aFmt, ...);
39 IMPORT_C void writeSpaces(TInt aSpaces);
40 IMPORT_C void writeNewLine();
41 IMPORT_C void writeNum(TInt aNum);
42 IMPORT_C void writeHex(TInt aHex);
43 IMPORT_C void writeError(TInt aError);
44 IMPORT_C void writeOctetString(const TDesC8& aString);
45 IMPORT_C void writeOctetStringL(const TDesC8& aString);
46 IMPORT_C void writeBoolL(TBool aBool);
47 IMPORT_C void writeCapabilityL(TCapability aCap);
48 IMPORT_C void writeCapabilitySetL(const TCapabilitySet& aCap);
49 IMPORT_C void writeSecurityPolicyL(const TSecurityPolicy& aPolicy);
52 // Implemented by subclasses
53 virtual void DoWriteL(const TDesC& aString) = 0;
56 void FixNewlinesAndWriteL(const TDesC& aString);
60 * Implementation of Output that throws away its output.
62 class NullOutput : public Output
65 IMPORT_C NullOutput();
66 virtual void DoWriteL(const TDesC& aString);
70 * Implementation of Output that writes its output to a file.
72 * There used to be a comment here "Writes narrow on WINS, wide on target".
73 * This was not true because the implementation always wrote strings in 8 bits
74 * regardless - resulting in log files containing a mixture of 8 and 16 bit
75 * data. Now this always writes as 8 bit - if this is a problem it can be
76 * changed easily enough.
78 class FileOutput : public Output
81 IMPORT_C FileOutput(RFile& aFile);
82 virtual void DoWriteL(const TDesC& aString);
88 * Implementation of Output that prints the output to a console.
90 class ConsoleOutput : public Output
93 IMPORT_C ConsoleOutput(CConsoleBase& aConsole);
94 virtual void DoWriteL(const TDesC& aString);
96 CConsoleBase& iConsole;
100 * Implementation of Output that writes to multiple other Output objects (a bit
101 * like the unix tee command). Use to log output to console and to file.
104 class COutputTee : public Output
109 /// Add a new child object - takes ownership
110 void AddChildL(Output* aChild);
111 virtual void DoWriteL(const TDesC& aString);
113 RPointerArray<Output> iChildren;