First public contribution.
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 "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.
16 #include "Graphics/WSGRAPHICMSGBUF.H"
17 #include "DrawSection.h"
19 const TInt KBufferSize = 1000;
22 This uid is used to identify a drawsection in the messagebuffer that is used for IPC.
24 const TUid KDrawSection = {0x101F63B2};
27 Creates and returns new drawsection.
29 @return A new instance of CDrawSection.
31 CDrawSection* CDrawSection::NewL()
33 return new (ELeave) CDrawSection;
37 Creates and returns new drawsection.
39 @param aDrawRect The drawrect of the drawsection.
40 @param aBoundingRect The boundingrect of the drawcommands of this section.
41 @param aHasBitmapCommand ETrue if the commandbuffer of this drawsection includes a bitmap command of any sort.
42 @return A new instance of CDrawSection.
44 CDrawSection* CDrawSection::NewL(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand)
46 return new (ELeave) CDrawSection(aDrawRect, aBoundingRect, aHasBitmapCommand);
49 CDrawSection::CDrawSection()
53 CDrawSection::CDrawSection(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand) : iDrawRect(aDrawRect),
54 iBoundingRect(aBoundingRect), iHasBitmapCommand(aHasBitmapCommand), iHasBeenExternalized(EFalse)
58 CDrawSection::~CDrawSection()
60 delete iSectionSegBuf;
64 Sets this drawsection's segmented commandbuffer and takes the ownership of the allocated memory.
66 @param aSegbuf This section's segmented commandbuffer.
68 void CDrawSection::SetBuffer(CBufBase* aSegBuf)
70 __ASSERT_DEBUG(aSegBuf, User::Invariant());
71 iSectionSegBuf = aSegBuf;
75 Returns this drawsection's segmented commandbuffer.
77 @return this drawsection's segmented commandbuffer.
79 CBufBase* CDrawSection::Buffer() const
81 return iSectionSegBuf;
85 Sets if this drawsection has been externalized anytime. This is used for partial IPC updates.
87 @param aHasBeenExternalized ETrue if this drawsection has been externalized, otherwise EFalse.
89 void CDrawSection::SetHasBeenExternalized(TBool aHasBeenExternalized)
91 iHasBeenExternalized = aHasBeenExternalized;
95 Returns ETrue if this drawsection has been externalized, otherwise EFalse.
97 @return ETrue if this drawsection has been externalized, otherwise EFalse.
99 TBool CDrawSection::HasBeenExternalized() const
101 return iHasBeenExternalized;
105 Compares this drawsection to aDrawSection and check if they are identical.
107 @param aDrawSection The drawsection to compare with.
108 @return ETrue if the drawsections are identical, otherwise EFalse.
110 TBool CDrawSection::IsIdentical(const CDrawSection& aDrawSection) const
112 const TRect drawRect = aDrawSection.DrawRect();
113 CBufBase* segBuf = aDrawSection.Buffer();
114 if(!iHasBitmapCommand && iDrawRect.iTl == drawRect.iTl && iDrawRect.iBr == drawRect.iBr && segBuf->Size() == iSectionSegBuf->Size())
116 const TInt count = iSectionSegBuf->Size();
117 for(TInt i = 0; i < count; i++)
119 const TPtr8 comparePtr = segBuf->Ptr(i);
120 if(iSectionSegBuf->Ptr(i).CompareC(segBuf->Ptr(i))) //Not identical
123 i += comparePtr.Size();
131 Returns the drawrect of this drawsection.
133 @return The drawrect of this drawsection.
135 TRect CDrawSection::DrawRect() const
141 Externalizes this drawsection to a message buffer to send over IPC.
143 @param aMsgBuf The message buffer to add this drawsection to.
145 void CDrawSection::ExternalizeL(RWsGraphicMsgBuf& aMsgBuf)
147 const TInt length = sizeof(TRect)*2 + iSectionSegBuf->Size();
148 TPtr8 msgPtr(NULL, 0);
149 User::LeaveIfError(aMsgBuf.Append(KDrawSection, length, msgPtr));
151 // Add drawRect to aMsgBuf
152 const TPckgBuf<TRect> drawRect(iDrawRect);
153 msgPtr.Append(drawRect);
155 // Add boundingRect to aMsgBuf
156 const TPckgBuf<TRect> boundingRect(iBoundingRect);
157 msgPtr.Append(boundingRect);
159 // Add drawcommands to aMsgBuf
161 const TInt sectionSegBufSize = iSectionSegBuf->Size();
162 while(count < sectionSegBufSize)
164 TPtr8 ptr = iSectionSegBuf->Ptr(count);
171 Loads a drawsection from externalized data.
173 @param aData The parser for the externalized data.
174 @param aIndex The index of the drawsection in CCommandBuffer::iDrawSections to load from the externalized data.
176 TInt CDrawSection::LoadL(const TWsGraphicMsgBufParser& aData, TInt aIndex)
178 if(aData.Uid(aIndex).iUid != KDrawSection.iUid)
183 const TPtrC8 pckg = aData.Data(aIndex);
184 const TPtrC8 drawRectPtr = pckg.Left(sizeof(TRect));
185 const TPtrC8 boundingRectPtr = pckg.Mid(sizeof(TRect), sizeof(TRect));
186 const TPtrC8 segBufPtr = pckg.Mid(sizeof(TRect)*2);
188 Mem::Copy(&iDrawRect, drawRectPtr.Ptr(), sizeof(TRect));
189 Mem::Copy(&iBoundingRect, boundingRectPtr.Ptr(), sizeof(TRect));
192 delete iSectionSegBuf;
194 iSectionSegBuf = CBufSeg::NewL(KBufferSize);
195 iSectionSegBuf->InsertL(0, segBufPtr);