Update contrib.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 #if !defined(__KERNEL_H__)
25 #include <kernel/kernel.h>
30 const TInt KIdBase = 0x0;
34 class DPipeDevice : public DLogicalDevice
36 The factory class is derived from Dlogical device. The user side calls
37 User::LoadLogicalDevice() to load the LDD dll and create the LDD
38 factory object in the kernel heap.
44 Set the version number
50 // Inherited from DLogicalDevice
52 Second stage constructor and at least set a name for the
55 virtual TInt Install();
58 virtual void GetCaps(TDes8& aDes) const;
61 Called by the Kernel's Device driver framework to create a logical
62 Channel. This called in the context of the user thread. which requested
63 the creation of the logical channel.It checks if maximum pipe creation
64 has reached before creating a new Kernel pipe object.
65 @param aChannel Set to point to the created logical channel
67 @return KErrNone if successful, otherwise system wide error codes.
69 virtual TInt Create(DLogicalChannelBase*& aChannel);
73 Called by the Logical channel instance to create DPipe and
76 TInt CreatePipe(const TDesC& aName, TInt aSize, DPipe*& aPipe, TAny* aCapCheck = NULL);
78 DPipe* CreatePipe(TInt aSize);
80 DPipe* FindNamedPipe(const TDesC* aName);
82 DPipe* FindUnnamedPipe(const TInt aId);
84 TInt Destroy(const TDesC* aName);
89 inline DMutex& Mutex()
96 Kern::MutexWait(*iMutex);
101 Kern::MutexSignal(*iMutex);
107 TInt AddPipe(DPipe* aObj);
109 void RemovePipe(DPipe** aObj);
113 //! Represents the Data in a pipe.
128 class DPipeChannel : public DLogicalChannelBase
130 DPipe Channel provides the Kernel interface to the DPipe. The request from the RPipe handler
131 in the context of user thread, is transfered to DPipeChannel class. This is the interface
132 between the DPipe kernel object and the user request through RPipe handler.
139 virtual ~DPipeChannel();
141 // inherited from DObject
142 virtual TInt RequestUserHandle (DThread* aThread, TOwnerType aType);
144 // inherited from DLogicalChannelBase
145 virtual TInt DoCreate (TInt aUnit, const TDesC8* anInfo, const TVersion& aVer);
147 virtual TInt Request(TInt aReqNo, TAny* a1, TAny* a2);
152 // The user request is mapped
153 TInt DoControl(TInt aFunction, TAny* a1, TAny* a2);
155 TInt DoRequest(TInt aReqNo, TRequestStatus* aStatus, TAny* a1,
158 // This function will be called under DoControl()
159 TInt PipeCreate(TAny* a1, TAny* a2);
161 TInt PipeCreate(TInt aSize);
163 TInt PipeOpen(const TDesC* aName, RPipe::TChannelType aType);
165 TInt PipeOpen (const TInt aId);
167 TInt OpenOnReader(const TDesC* aName);
169 TInt PipeDestroy(const TDesC* aName);
171 TInt Read (TAny* aBuff, TInt aSize);
173 TInt Write (TAny* aBuff, TInt aSize);
181 // Registration of the Asynchronous request
182 TInt NotifySpaceAvailable (TInt aSize, TRequestStatus* aStat, TBool aAllowDisconnected);
184 TInt NotifyDataAvailable (TRequestStatus* aStat, TBool aAllowDisconnected);
186 TInt WaitNotification (TRequestStatus* aStat, TAny* aName , TInt aChoice);
190 TBool ValidCancellation(TInt aReqType);
193 void CancelRequest (TInt aReqType);
195 void DoRequestCallback();
198 /////// Accessed within pipe mutex ///////
200 DThread *iRequestThread; ///< The thread awaiting notification.
201 TClientRequest* iClientRequest;
203 //Allows us to tell if a request cancellation is valid
204 TInt iRequestType; ///< Access within Pipe Mutex
206 //////////////////////////////////////////
209 // Reference to the DPipe
212 //Effectively constant
213 RPipe::TChannelType iChannelType;
218 class DPipe:public DBase
220 This class represent the actual Kernel side Pipe. An instance of this class is constructed
221 when ever user creates a named/un-named pipe through the methods provided by user handler RPipe.
222 The owner of a DPipe instance is the DPipeDevice factory object and associates this DPipe
223 instance to the appropriate DPipeChannel instance. Each DPipe object is associated with two
224 DPipeChannel instances for read and writes operation
229 friend class DPipeChannel;
230 friend class DPipeDevice;
235 // Creates a Named pipe
236 static DPipe* CreatePipe(const TDesC& aName, TInt aSize, TAny* aPolicy = NULL);
238 // check if the name referring to a created pipe is valid.
239 TBool MatchName(const TDesC* aName);
241 // Check if the id referring to a created pipe is valid.
242 TBool MatchId(const TInt aId);
245 // Check if Buffer is Empty
246 TInt IsBufferEmpty();
249 TInt Write(TAny* aBuf, TInt aSize);
252 TInt Read(TAny* aBuf, TInt aSize);
254 void SetReadEnd(DPipeChannel * aChannel);
256 void SetWriteEnd(DPipeChannel * aChannel);
259 // Registering Notification from client thread
260 TInt RegisterSpaceAvailableNotification(TInt aSize);
262 TInt RegisterDataAvailableNotification();
264 TInt RegisterWaitNotification(TInt aChoice);
266 //! Cancellation methods
267 void CancelSpaceAvailable();
269 void CancelDataAvailable();
271 void CancelWaitNotifier();
275 TInt CloseWriteEnd();
281 TBool IsPipeClosed();
283 TBool IsReadEndOpened();
285 TBool IsWriteEndOpened();
291 void SetId(TInt aId);
295 TInt AvailableDataCount();
297 inline TSecurityPolicy* GetCap(){ return &iPolicy;}
301 TInt ConstructPipe(const TDesC& aName, TInt aSize,TAny* aPolicy = NULL);
305 Kern::MutexWait(*iPipeMutex);
306 DATAPAGING_TEST(Kern::SetRealtimeState(ERealtimeStateOn);)
311 DATAPAGING_TEST(Kern::SetRealtimeState(ERealtimeStateOff);)
312 Kern::MutexSignal(*iPipeMutex);
315 void MaybeCompleteSpaceNotification();
317 inline DMutex& Mutex()
325 DPipeChannel *iReadChannel;
327 DPipeChannel *iWriteChannel;
329 TKName iName; //! TBuf<KMaxKernelName> TKName
333 //! Members for Ring buffer
344 //! Signify the presence of read and write channel
346 TBool iSpaceAvailableRequest;
348 TBool iDataAvailableRequest;
352 TInt iSpaceAvailableSize;
359 TSecurityPolicy iPolicy;
364 Acquire the given lock on construction and release
372 inline TAutoWait(T& aLock)
385 TAutoWait(TAutoWait&);
386 TAutoWait& operator= (TAutoWait&);
388 //disallow allocating on the heap since
389 //this won't do what we want
390 void* operator new(TUint aSize);
393 inline void Signal();
399 void TAutoWait<DMutex>::Wait()
401 NKern::ThreadEnterCS();
402 Kern::MutexWait(iLock);
406 void TAutoWait<DMutex>::Signal()
408 Kern::MutexSignal(iLock);
409 NKern::ThreadLeaveCS();