1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_output.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,116 @@
1.4 +/*
1.5 +* Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of the License "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#ifndef __T_OUTPUT_H__
1.23 +#define __T_OUTPUT_H__
1.24 +
1.25 +#include <f32file.h>
1.26 +#include <e32base.h>
1.27 +#include <e32std.h>
1.28 +#include <e32cons.h>
1.29 +
1.30 +/**
1.31 + * Astract base class for classes that provide logging of test output.
1.32 + *
1.33 + *
1.34 + */
1.35 +class Output : public CBase
1.36 + {
1.37 +public:
1.38 + // Public interface
1.39 + IMPORT_C void writeString(const TDesC& aString);
1.40 + IMPORT_C void writeString(const TDesC8& aString);
1.41 + IMPORT_C void write(TRefByValue<const TDesC16> aFmt, ...);
1.42 + IMPORT_C void writeSpaces(TInt aSpaces);
1.43 + IMPORT_C void writeNewLine();
1.44 + IMPORT_C void writeNum(TInt aNum);
1.45 + IMPORT_C void writeHex(TInt aHex);
1.46 + IMPORT_C void writeError(TInt aError);
1.47 + IMPORT_C void writeOctetString(const TDesC8& aString);
1.48 + IMPORT_C void writeOctetStringL(const TDesC8& aString);
1.49 + IMPORT_C void writeBoolL(TBool aBool);
1.50 + IMPORT_C void writeCapabilityL(TCapability aCap);
1.51 + IMPORT_C void writeCapabilitySetL(const TCapabilitySet& aCap);
1.52 + IMPORT_C void writeSecurityPolicyL(const TSecurityPolicy& aPolicy);
1.53 +
1.54 +protected:
1.55 + // Implemented by subclasses
1.56 + virtual void DoWriteL(const TDesC& aString) = 0;
1.57 +
1.58 +private:
1.59 + void FixNewlinesAndWriteL(const TDesC& aString);
1.60 + };
1.61 +
1.62 +/**
1.63 + * Implementation of Output that throws away its output.
1.64 + */
1.65 +class NullOutput : public Output
1.66 + {
1.67 +public:
1.68 + IMPORT_C NullOutput();
1.69 + virtual void DoWriteL(const TDesC& aString);
1.70 + };
1.71 +
1.72 +/**
1.73 + * Implementation of Output that writes its output to a file.
1.74 + *
1.75 + * There used to be a comment here "Writes narrow on WINS, wide on target".
1.76 + * This was not true because the implementation always wrote strings in 8 bits
1.77 + * regardless - resulting in log files containing a mixture of 8 and 16 bit
1.78 + * data. Now this always writes as 8 bit - if this is a problem it can be
1.79 + * changed easily enough.
1.80 + */
1.81 +class FileOutput : public Output
1.82 + {
1.83 +public:
1.84 + IMPORT_C FileOutput(RFile& aFile);
1.85 + virtual void DoWriteL(const TDesC& aString);
1.86 +private:
1.87 + RFile iFile;
1.88 + };
1.89 +
1.90 +/**
1.91 + * Implementation of Output that prints the output to a console.
1.92 + */
1.93 +class ConsoleOutput : public Output
1.94 + {
1.95 +public:
1.96 + IMPORT_C ConsoleOutput(CConsoleBase& aConsole);
1.97 + virtual void DoWriteL(const TDesC& aString);
1.98 +private:
1.99 + CConsoleBase& iConsole;
1.100 + };
1.101 +
1.102 +/**
1.103 + * Implementation of Output that writes to multiple other Output objects (a bit
1.104 + * like the unix tee command). Use to log output to console and to file.
1.105 + */
1.106 +
1.107 +class COutputTee : public Output
1.108 + {
1.109 +public:
1.110 + COutputTee();
1.111 + ~COutputTee();
1.112 + /// Add a new child object - takes ownership
1.113 + void AddChildL(Output* aChild);
1.114 + virtual void DoWriteL(const TDesC& aString);
1.115 +private:
1.116 + RPointerArray<Output> iChildren;
1.117 + };
1.118 +
1.119 +#endif