sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __T_OUTPUT_H__
|
sl@0
|
20 |
#define __T_OUTPUT_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <f32file.h>
|
sl@0
|
23 |
#include <e32base.h>
|
sl@0
|
24 |
#include <e32std.h>
|
sl@0
|
25 |
#include <e32cons.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
* Astract base class for classes that provide logging of test output.
|
sl@0
|
29 |
*
|
sl@0
|
30 |
*
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
class Output : public CBase
|
sl@0
|
33 |
{
|
sl@0
|
34 |
public:
|
sl@0
|
35 |
// Public interface
|
sl@0
|
36 |
IMPORT_C void writeString(const TDesC& aString);
|
sl@0
|
37 |
IMPORT_C void writeString(const TDesC8& aString);
|
sl@0
|
38 |
IMPORT_C void write(TRefByValue<const TDesC16> aFmt, ...);
|
sl@0
|
39 |
IMPORT_C void writeSpaces(TInt aSpaces);
|
sl@0
|
40 |
IMPORT_C void writeNewLine();
|
sl@0
|
41 |
IMPORT_C void writeNum(TInt aNum);
|
sl@0
|
42 |
IMPORT_C void writeHex(TInt aHex);
|
sl@0
|
43 |
IMPORT_C void writeError(TInt aError);
|
sl@0
|
44 |
IMPORT_C void writeOctetString(const TDesC8& aString);
|
sl@0
|
45 |
IMPORT_C void writeOctetStringL(const TDesC8& aString);
|
sl@0
|
46 |
IMPORT_C void writeBoolL(TBool aBool);
|
sl@0
|
47 |
IMPORT_C void writeCapabilityL(TCapability aCap);
|
sl@0
|
48 |
IMPORT_C void writeCapabilitySetL(const TCapabilitySet& aCap);
|
sl@0
|
49 |
IMPORT_C void writeSecurityPolicyL(const TSecurityPolicy& aPolicy);
|
sl@0
|
50 |
|
sl@0
|
51 |
protected:
|
sl@0
|
52 |
// Implemented by subclasses
|
sl@0
|
53 |
virtual void DoWriteL(const TDesC& aString) = 0;
|
sl@0
|
54 |
|
sl@0
|
55 |
private:
|
sl@0
|
56 |
void FixNewlinesAndWriteL(const TDesC& aString);
|
sl@0
|
57 |
};
|
sl@0
|
58 |
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
* Implementation of Output that throws away its output.
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
class NullOutput : public Output
|
sl@0
|
63 |
{
|
sl@0
|
64 |
public:
|
sl@0
|
65 |
IMPORT_C NullOutput();
|
sl@0
|
66 |
virtual void DoWriteL(const TDesC& aString);
|
sl@0
|
67 |
};
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
* Implementation of Output that writes its output to a file.
|
sl@0
|
71 |
*
|
sl@0
|
72 |
* There used to be a comment here "Writes narrow on WINS, wide on target".
|
sl@0
|
73 |
* This was not true because the implementation always wrote strings in 8 bits
|
sl@0
|
74 |
* regardless - resulting in log files containing a mixture of 8 and 16 bit
|
sl@0
|
75 |
* data. Now this always writes as 8 bit - if this is a problem it can be
|
sl@0
|
76 |
* changed easily enough.
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
class FileOutput : public Output
|
sl@0
|
79 |
{
|
sl@0
|
80 |
public:
|
sl@0
|
81 |
IMPORT_C FileOutput(RFile& aFile);
|
sl@0
|
82 |
virtual void DoWriteL(const TDesC& aString);
|
sl@0
|
83 |
private:
|
sl@0
|
84 |
RFile iFile;
|
sl@0
|
85 |
};
|
sl@0
|
86 |
|
sl@0
|
87 |
/**
|
sl@0
|
88 |
* Implementation of Output that prints the output to a console.
|
sl@0
|
89 |
*/
|
sl@0
|
90 |
class ConsoleOutput : public Output
|
sl@0
|
91 |
{
|
sl@0
|
92 |
public:
|
sl@0
|
93 |
IMPORT_C ConsoleOutput(CConsoleBase& aConsole);
|
sl@0
|
94 |
virtual void DoWriteL(const TDesC& aString);
|
sl@0
|
95 |
private:
|
sl@0
|
96 |
CConsoleBase& iConsole;
|
sl@0
|
97 |
};
|
sl@0
|
98 |
|
sl@0
|
99 |
/**
|
sl@0
|
100 |
* Implementation of Output that writes to multiple other Output objects (a bit
|
sl@0
|
101 |
* like the unix tee command). Use to log output to console and to file.
|
sl@0
|
102 |
*/
|
sl@0
|
103 |
|
sl@0
|
104 |
class COutputTee : public Output
|
sl@0
|
105 |
{
|
sl@0
|
106 |
public:
|
sl@0
|
107 |
COutputTee();
|
sl@0
|
108 |
~COutputTee();
|
sl@0
|
109 |
/// Add a new child object - takes ownership
|
sl@0
|
110 |
void AddChildL(Output* aChild);
|
sl@0
|
111 |
virtual void DoWriteL(const TDesC& aString);
|
sl@0
|
112 |
private:
|
sl@0
|
113 |
RPointerArray<Output> iChildren;
|
sl@0
|
114 |
};
|
sl@0
|
115 |
|
sl@0
|
116 |
#endif
|