sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2006-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 "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 |
* Name : consolestream.h
|
sl@0
|
16 |
* Part of : stdio server
|
sl@0
|
17 |
* To handle console read and write
|
sl@0
|
18 |
*
|
sl@0
|
19 |
*
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
|
sl@0
|
25 |
#ifndef _CONSOLESTREAM_H_
|
sl@0
|
26 |
#define _CONSOLESTREAM_H_
|
sl@0
|
27 |
|
sl@0
|
28 |
#include "streambase.h" //CStreamBase
|
sl@0
|
29 |
#include "ReadRequestHandler.h" //MRead and CReadRequestHandler
|
sl@0
|
30 |
#include <e32keys.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
|
sl@0
|
33 |
class CConsoleBase;
|
sl@0
|
34 |
|
sl@0
|
35 |
//Enumerations for the console echo - server side
|
sl@0
|
36 |
enum TConsoleEcho
|
sl@0
|
37 |
{
|
sl@0
|
38 |
EOff = 0, //Turn Off the echo
|
sl@0
|
39 |
EOn = 1, //Turn On the echo
|
sl@0
|
40 |
EPrintValid = 33, //Printable ascii character set <33-126>
|
sl@0
|
41 |
EPrintInvalid=127
|
sl@0
|
42 |
};
|
sl@0
|
43 |
|
sl@0
|
44 |
//-----------------------------------------------------------------------
|
sl@0
|
45 |
//Class name: CConsoleStream
|
sl@0
|
46 |
//Description: This class represents the console stream abstraction.
|
sl@0
|
47 |
// It is created through the factory class CConsoleStreamFactory
|
sl@0
|
48 |
//-----------------------------------------------------------------------
|
sl@0
|
49 |
class CConsoleStream : public CStreamBase
|
sl@0
|
50 |
{
|
sl@0
|
51 |
public:
|
sl@0
|
52 |
static CConsoleStream* NewL(TInt aWidth, TInt aHeight);
|
sl@0
|
53 |
virtual void WriteL(TDes8& aDes);
|
sl@0
|
54 |
virtual void Read(TRequestStatus& aStatus, const TInt aLength);
|
sl@0
|
55 |
~CConsoleStream();
|
sl@0
|
56 |
virtual void ReadCancel();
|
sl@0
|
57 |
TDes8& Buf();
|
sl@0
|
58 |
TInt SetEcho(TUint8 aEcho);
|
sl@0
|
59 |
TStreamType Type() { return EConsole;}
|
sl@0
|
60 |
|
sl@0
|
61 |
private:
|
sl@0
|
62 |
CConsoleStream();
|
sl@0
|
63 |
void ConstructL(TSize aConsoleSize);
|
sl@0
|
64 |
CConsoleBase* iConsole;
|
sl@0
|
65 |
TInt iBufPos;
|
sl@0
|
66 |
TUint8 iEchoVal; //decides what to echo
|
sl@0
|
67 |
void HandleBuf(TKeyCode & key);
|
sl@0
|
68 |
TBuf8<1> iTbuf;
|
sl@0
|
69 |
};
|
sl@0
|
70 |
|
sl@0
|
71 |
#endif //_CONSOLESTREAM_H_
|