os/kernelhwsrv/kernel/eka/include/rpipe.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    16
//          to change without notice. Such APIs should therefore not be used
sl@0
    17
//          outside the Kernel and Hardware Services package.
sl@0
    18
//
sl@0
    19
sl@0
    20
sl@0
    21
sl@0
    22
sl@0
    23
sl@0
    24
#ifndef __RPIPE_H__
sl@0
    25
#define __RPIPE_H__
sl@0
    26
sl@0
    27
#include <e32cmn.h>
sl@0
    28
#include <e32ver.h>
sl@0
    29
#ifndef __KERNEL_MODE__
sl@0
    30
#include <e32std.h>
sl@0
    31
#endif
sl@0
    32
sl@0
    33
#if defined(DATAPAGING_TEST_ON)
sl@0
    34
#define DATAPAGING_TEST(s) s
sl@0
    35
#else
sl@0
    36
#define DATAPAGING_TEST(s)
sl@0
    37
#endif
sl@0
    38
sl@0
    39
sl@0
    40
class RPipe: public RBusLogicalChannel
sl@0
    41
/**
sl@0
    42
RPipe class object represent the user side handle.  It is derived from RBusLogicalChannel 
sl@0
    43
which is the base class for handle to the kernel side device driver instance. It encapsulates
sl@0
    44
both named and unnamed pipe methods. 
sl@0
    45
@internalTechnology
sl@0
    46
*/
sl@0
    47
    {
sl@0
    48
public:
sl@0
    49
sl@0
    50
    /**
sl@0
    51
    Structure for holding driver capabilities information
sl@0
    52
    (Just a version number.)
sl@0
    53
    */
sl@0
    54
    class TCaps
sl@0
    55
        {
sl@0
    56
    public:
sl@0
    57
        TVersion iVersion;
sl@0
    58
        };
sl@0
    59
sl@0
    60
sl@0
    61
	/**
sl@0
    62
	Enumeration for the modes of opening a pipe.
sl@0
    63
	*/
sl@0
    64
	enum TMode
sl@0
    65
	{
sl@0
    66
		EOpenToRead,
sl@0
    67
		EOpenToWrite,
sl@0
    68
		EOpenToWriteNamedPipeButFailOnNoReaders	
sl@0
    69
	};
sl@0
    70
	
sl@0
    71
	enum TChannelType
sl@0
    72
	{
sl@0
    73
		EChannelUnset = 0x0,
sl@0
    74
		EReadChannel = 0x1,
sl@0
    75
		EWriteChannel = 0x2
sl@0
    76
	};
sl@0
    77
	
sl@0
    78
	class TPipeInfo
sl@0
    79
        {
sl@0
    80
    public:
sl@0
    81
        TInt isize;
sl@0
    82
        TBuf8<KMaxKernelName> iName;
sl@0
    83
     
sl@0
    84
        };
sl@0
    85
    typedef TPckgBuf<TPipeInfo> TPipeInfoBuf;
sl@0
    86
sl@0
    87
sl@0
    88
public:
sl@0
    89
sl@0
    90
	/**
sl@0
    91
	 Returns the version information of the  DPipe Factory object
sl@0
    92
	 */
sl@0
    93
    inline static TVersion VersionRequired();
sl@0
    94
sl@0
    95
	/**
sl@0
    96
	 Returns the name of the DPipe factory object
sl@0
    97
	 */
sl@0
    98
	inline static const TDesC& Name();
sl@0
    99
sl@0
   100
  
sl@0
   101
	/**
sl@0
   102
	 Support for un-named pipe
sl@0
   103
	 */
sl@0
   104
	 IMPORT_C static TInt Create( TInt aSize, RPipe& aReader, RPipe& aWriter, TOwnerType aTypeR = EOwnerProcess,  TOwnerType aTypeW = EOwnerProcess);
sl@0
   105
	
sl@0
   106
	 TInt Create(const TInt sSize,  TOwnerType aType = EOwnerProcess);
sl@0
   107
sl@0
   108
	 TInt Open(const RPipe& aWriter, TOwnerType  aType = EOwnerProcess);
sl@0
   109
sl@0
   110
sl@0
   111
	/**
sl@0
   112
	Support for named pipe
sl@0
   113
	*/
sl@0
   114
	
sl@0
   115
	IMPORT_C static TInt Define( const TDesC& aName, TInt aSize);
sl@0
   116
	
sl@0
   117
	IMPORT_C static TInt Define( const  TDesC& aName, TInt aSize, const TSecurityPolicy& aPolicy);
sl@0
   118
								
sl@0
   119
sl@0
   120
	IMPORT_C static TInt Destroy(const TDesC& aName);
sl@0
   121
sl@0
   122
	IMPORT_C TInt Open(const TDesC& aName, TMode aMode);
sl@0
   123
sl@0
   124
	IMPORT_C TInt Open(TInt aArgumentIndex, TOwnerType aType=EOwnerProcess);
sl@0
   125
	
sl@0
   126
	IMPORT_C TInt Open(RMessagePtr2 aMessage, TInt aParam, TOwnerType aType=EOwnerProcess);
sl@0
   127
	
sl@0
   128
	IMPORT_C static TInt Init();
sl@0
   129
  	
sl@0
   130
	/**
sl@0
   131
	 Non-blocking read/write operations
sl@0
   132
	 */
sl@0
   133
	IMPORT_C TInt Read ( TDes8& aData, TInt aSize);
sl@0
   134
sl@0
   135
	IMPORT_C TInt Write( const TDesC8& aBuf, TInt aSize);
sl@0
   136
sl@0
   137
	/** 
sl@0
   138
	Blocking read/write operations
sl@0
   139
	*/
sl@0
   140
	IMPORT_C TInt ReadBlocking(TDes8& aData, TInt aSize);
sl@0
   141
sl@0
   142
	IMPORT_C TInt WriteBlocking (const TDesC8& aBuf, TInt aSize);
sl@0
   143
sl@0
   144
	IMPORT_C TInt Size();
sl@0
   145
sl@0
   146
	IMPORT_C void NotifySpaceAvailable( TInt aSize, TRequestStatus&);
sl@0
   147
sl@0
   148
    IMPORT_C void NotifyDataAvailable( TRequestStatus&); 
sl@0
   149
	
sl@0
   150
	IMPORT_C void Wait(const TDesC& aName, TRequestStatus& aStatus);
sl@0
   151
	
sl@0
   152
	IMPORT_C TInt MaxSize();
sl@0
   153
sl@0
   154
sl@0
   155
	IMPORT_C TInt CancelSpaceAvailable();
sl@0
   156
sl@0
   157
	IMPORT_C TInt CancelDataAvailable();
sl@0
   158
sl@0
   159
	IMPORT_C void CancelWait();
sl@0
   160
sl@0
   161
	IMPORT_C void Flush();
sl@0
   162
sl@0
   163
	IMPORT_C void Close();    
sl@0
   164
	
sl@0
   165
	IMPORT_C TInt HandleType()const;
sl@0
   166
sl@0
   167
	TInt PipeHandle()const;
sl@0
   168
	
sl@0
   169
	IMPORT_C void WaitForReader(const TDesC& aName, TRequestStatus& aStatus);
sl@0
   170
	
sl@0
   171
	IMPORT_C void WaitForWriter(const TDesC& aName, TRequestStatus& aStatus);
sl@0
   172
	    
sl@0
   173
    /*
sl@0
   174
     Enumeration of Request messages.
sl@0
   175
    */
sl@0
   176
    enum TRequest
sl@0
   177
        {
sl@0
   178
		EDefineNamedPipe,
sl@0
   179
		EOpenToReadNamedPipe,
sl@0
   180
		EOpenToWriteNamedPipe,
sl@0
   181
		EOpenToWriteButFailOnNoReaderNamedPipe,
sl@0
   182
		EDestroyNamedPipe,
sl@0
   183
		ECreateUnNamedPipe,
sl@0
   184
		EOpenUnNamedPipe,
sl@0
   185
		ERead,
sl@0
   186
        	EWrite,
sl@0
   187
	    	ESize,
sl@0
   188
	        EReadBlocking,
sl@0
   189
		EWriteBlocking,  	
sl@0
   190
		EDataAvailable,
sl@0
   191
		EDataAvailableCount,
sl@0
   192
		ESpaceAvailable,
sl@0
   193
		EWaitNotification,
sl@0
   194
		EWaitNotificationCheck,
sl@0
   195
		ECancelSpaceAvailable,
sl@0
   196
		ECancelDataAvailable,
sl@0
   197
		ECancelWaitNotification,
sl@0
   198
		EFlushPipe,
sl@0
   199
		EClosePipe,
sl@0
   200
		EGetPipeInfo
sl@0
   201
	   };
sl@0
   202
	/*
sl@0
   203
     Enumeration of Wait Request.
sl@0
   204
    */   
sl@0
   205
	enum TWaitRequest
sl@0
   206
		{
sl@0
   207
		EWaitForReader,
sl@0
   208
		EWaitForWriter
sl@0
   209
		};
sl@0
   210
		
sl@0
   211
	private:
sl@0
   212
	
sl@0
   213
	void Wait(const TDesC& aName, TRequestStatus& aStatus, TInt aChoice);
sl@0
   214
	
sl@0
   215
	void ReqComplete(TRequestStatus& aState, TInt aval);
sl@0
   216
	TInt iHandleType;
sl@0
   217
	TInt iSize;
sl@0
   218
	TInt iPipeHandle;
sl@0
   219
};
sl@0
   220
sl@0
   221
sl@0
   222
sl@0
   223
inline TVersion RPipe::VersionRequired()
sl@0
   224
{
sl@0
   225
	// Just a number 
sl@0
   226
    const TInt KMajorVersionNumber=1;
sl@0
   227
    const TInt KMinorVersionNumber=0;
sl@0
   228
    const TInt KBuildVersionNumber=1;
sl@0
   229
    return         
sl@0
   230
    TVersion (KMajorVersionNumber, KMinorVersionNumber, KBuildVersionNumber);
sl@0
   231
}
sl@0
   232
sl@0
   233
inline const TDesC& RPipe::Name()
sl@0
   234
{
sl@0
   235
	_LIT(KRpipeDevice, "SymbianPipe");
sl@0
   236
	return KRpipeDevice;
sl@0
   237
}
sl@0
   238
sl@0
   239
sl@0
   240
#endif // __RPIPE_H__