Update contrib.
1 // Copyright (c) 1999-2010 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 "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.
14 // Window server client side local header file
21 #include <e32hashtab.h>
23 #if defined(_DEBUG) && defined(__WINS__)
24 //#define __AUTO_FLUSH //Define this for test purposes only, it hard codes auto flushing
27 /** Panics the client. This will result in the client thread being destroyed. */
28 GLREF_C void Panic(TW32Panic aPanic);
29 GLREF_C void Assert(TW32Assert aPanic);
31 class TReadDescriptorType;
32 class TWriteDescriptorType;
36 friend class RWsSession;
40 EDefBufferSize=EClientBufferSize,
41 EMinBufferSize=EClientBufferSize,
42 EMaxBufferSize=EClientBufferMaxSize
45 RWsBuffer(RWsSession *aSession);
49 TInt Connect(TUint32 handle);
50 TInt WriteReplyWs(TUint opcode);
51 TInt WriteReplyWs(const TAny *pData, TInt length,TUint opcode);
52 TInt WriteReplyWs(const TAny *pData, TInt length, const TAny *pData2, TInt length2, TUint opcode);
53 void SetBufferSizeL(TInt aBufSize);
54 void SetMaxBufferSizeL(TInt aMaxBufSize);
55 TInt Flush(const TIpcArgs* aIpcArgs=NULL,TBool aRequestFinish=EFalse);
56 TBool SetAutoFlush(TBool aState);
57 void Write(TInt aHandle, TUint aOpcode, const TAny *aData, TInt aLength, const TAny *aData2, TInt aLength2, const TIpcArgs* aIpcArgs=NULL);
58 void Write(TInt aHandle, TUint aOpcode, const TAny *aData, TInt aLength, const TIpcArgs* aIpcArgs=NULL);
59 void Write(TInt handle,TUint opcode);
60 void AppendData(const TAny *aData, TInt aLength, TBool aFinished);
61 TInt WriteReply(TInt handle,TUint opcode, const TIpcArgs* aIpcArgs=NULL);
62 TInt WriteReply(TInt handle,TUint opcode,const TAny *buf, TInt bufLen, const TIpcArgs* aIpcArgs=NULL);
63 TInt WriteReply(TInt handle,TUint opcode,const TAny *buf, TInt bufLen,const TAny *buf2, TInt buflen2, const TIpcArgs* aIpcArgs=NULL);
64 TInt WriteReplyP(TInt aHandle,TUint aOpcode,const TWriteDescriptorType& aReplyBuffer);
65 TInt WriteReplyP(TInt aHandle,TUint aOpcode,const TAny *aData,TInt aLength,const TWriteDescriptorType& aReplyBuffer);
66 TInt WriteReplyP(TInt aHandle,TUint aOpcode,const TAny *aData1,TInt aLengthData1,const TAny *aData2,TInt aLengthData2,const TWriteDescriptorType& aReplyBuffer);
67 TInt WriteReplyByProvidingRemoteReadAccess(TInt aHandle,TUint aOpcode,const TAny *aData, TInt aLength,const TReadDescriptorType& aRemoteReadBuffer);
69 inline TInt BufferSize() const;
70 inline TBool IsEmpty() const;
71 inline RWsSession* Session() {return iSession;}
72 static void FlushAllBuffers(TInt aBitmapHandle);
74 void CancelCallBack();
75 void AddToBitmapArray(TInt aBitmapHandle);
77 void SetWsGraphicManager(CWsGraphic::CManager* aManager);
78 static CWsGraphic::CManager* WsGraphicManager();
80 void AsyncRequest(TInt aHandle, TUint aOpcode, TRequestStatus& aStatus);
82 void EnableWindowSizeCacheL();
83 inline TBool WindowSizeCacheEnabled() const;
84 inline void MarkWindowSizeCacheDirty(TInt aHandle);
85 inline void RefreshWindowSizeCache(TInt aHandle, const TSize& aNewSize);
86 inline TInt CachedWindowSize(TInt aHandle, TSize& aSize);
87 inline void DestroyWindowSizeCacheEntry(TInt aHandle);
90 TInt DoWrite(TInt aHandle, TUint aOpcode, TBool aFlush, const TIpcArgs* aIpcArgs, const TAny* aData1=NULL, TInt aLength1=0, const TAny* aData2=NULL, TInt aLength2=0);
91 inline void SetAndLimitMaxBufSize(TInt aMaxBufSize);
92 void ReAllocBufferL(TInt aNewSize);
93 TBool ReAllocBuffer(TInt aNewSize);
94 void GrowBuffer(TInt aRequiredSpace, TInt aMsgSize);
98 CWsGraphic::CManager* iManager;
102 TInt iPreviousHandle;
103 TInt iBufSize; // current buffer size, DoWrite can expand this up to iMaxBufize
104 TInt iMaxBufSize; // maximum buffer size, set by SetBufferSizeL or SetMaxBufferSizeL
106 TInt iAppendDataLength;
108 private: //Added here as adding it to RWsSession breaks BC.
109 TInt iDirectAcessCount;
110 RArray<TInt> iBitmapArray;
111 TBool iInvalidBitmapArray;
113 class TWindowSizeCacheEntry
116 inline TWindowSizeCacheEntry(const TSize& aSize);
122 RHashMap<TInt, TWindowSizeCacheEntry>* iWindowSizeCache;
126 inline TInt RWsBuffer::BufferSize() const
127 {return(iBuf.MaxLength());}
129 inline TBool RWsBuffer::IsEmpty() const
130 {return iBuf.Length()==0;}
132 inline RWsBuffer::TWindowSizeCacheEntry::TWindowSizeCacheEntry(const TSize& aSize)
133 : iSize(aSize), iDirty(EFalse)
137 inline TBool RWsBuffer::WindowSizeCacheEnabled() const
139 return iWindowSizeCache ? ETrue : EFalse;
142 inline void RWsBuffer::MarkWindowSizeCacheDirty(TInt aHandle)
144 __ASSERT_ALWAYS(iWindowSizeCache != NULL, Assert(EW32AssertWindowSizeCacheFailure));
145 RWsBuffer::TWindowSizeCacheEntry* entry = iWindowSizeCache->Find(aHandle);
148 entry->iDirty = ETrue;
152 inline void RWsBuffer::RefreshWindowSizeCache(TInt aHandle, const TSize& aNewSize)
154 __ASSERT_ALWAYS(iWindowSizeCache != NULL, Assert(EW32AssertWindowSizeCacheFailure));
155 RWsBuffer::TWindowSizeCacheEntry* entry = iWindowSizeCache->Find(aHandle);
158 iWindowSizeCache->Insert(aHandle, RWsBuffer::TWindowSizeCacheEntry(aNewSize));
162 entry->iSize = aNewSize;
163 entry->iDirty = EFalse;
167 inline TInt RWsBuffer::CachedWindowSize(TInt aHandle, TSize& aSize)
169 __ASSERT_ALWAYS(iWindowSizeCache != NULL, Assert(EW32AssertWindowSizeCacheFailure));
170 RWsBuffer::TWindowSizeCacheEntry* entry = iWindowSizeCache->Find(aHandle);
171 if ( entry && !(entry->iDirty) )
173 aSize = entry->iSize;
178 // return KErrNotFound when either entry not found for aHandle, or entry is dirty
183 inline void RWsBuffer::DestroyWindowSizeCacheEntry(TInt aHandle)
185 __ASSERT_ALWAYS(iWindowSizeCache != NULL, Assert(EW32AssertWindowSizeCacheFailure));
186 TInt err = iWindowSizeCache->Remove(aHandle);
187 // If there is a window size cache entry, then err == KErrNone.
188 // Otherwise, there isn't a size cache entry, and err == KErrNotFound.
189 __ASSERT_DEBUG(err == KErrNone || err == KErrNotFound, Assert(EW32AssertWindowSizeCacheFailure));