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 "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 |
|
sl@0
|
16 |
#include "Graphics/WSGRAPHICMSGBUF.H"
|
sl@0
|
17 |
#include "DrawSection.h"
|
sl@0
|
18 |
|
sl@0
|
19 |
const TInt KBufferSize = 1000;
|
sl@0
|
20 |
|
sl@0
|
21 |
/**
|
sl@0
|
22 |
This uid is used to identify a drawsection in the messagebuffer that is used for IPC.
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
const TUid KDrawSection = {0x101F63B2};
|
sl@0
|
25 |
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
Creates and returns new drawsection.
|
sl@0
|
28 |
|
sl@0
|
29 |
@return A new instance of CDrawSection.
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
CDrawSection* CDrawSection::NewL()
|
sl@0
|
32 |
{
|
sl@0
|
33 |
return new (ELeave) CDrawSection;
|
sl@0
|
34 |
}
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
Creates and returns new drawsection.
|
sl@0
|
38 |
|
sl@0
|
39 |
@param aDrawRect The drawrect of the drawsection.
|
sl@0
|
40 |
@param aBoundingRect The boundingrect of the drawcommands of this section.
|
sl@0
|
41 |
@param aHasBitmapCommand ETrue if the commandbuffer of this drawsection includes a bitmap command of any sort.
|
sl@0
|
42 |
@return A new instance of CDrawSection.
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
CDrawSection* CDrawSection::NewL(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
return new (ELeave) CDrawSection(aDrawRect, aBoundingRect, aHasBitmapCommand);
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
CDrawSection::CDrawSection()
|
sl@0
|
50 |
{
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
CDrawSection::CDrawSection(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand) : iDrawRect(aDrawRect),
|
sl@0
|
54 |
iBoundingRect(aBoundingRect), iHasBitmapCommand(aHasBitmapCommand), iHasBeenExternalized(EFalse)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
CDrawSection::~CDrawSection()
|
sl@0
|
59 |
{
|
sl@0
|
60 |
delete iSectionSegBuf;
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
Sets this drawsection's segmented commandbuffer and takes the ownership of the allocated memory.
|
sl@0
|
65 |
|
sl@0
|
66 |
@param aSegbuf This section's segmented commandbuffer.
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
void CDrawSection::SetBuffer(CBufBase* aSegBuf)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
__ASSERT_DEBUG(aSegBuf, User::Invariant());
|
sl@0
|
71 |
iSectionSegBuf = aSegBuf;
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
Returns this drawsection's segmented commandbuffer.
|
sl@0
|
76 |
|
sl@0
|
77 |
@return this drawsection's segmented commandbuffer.
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
CBufBase* CDrawSection::Buffer() const
|
sl@0
|
80 |
{
|
sl@0
|
81 |
return iSectionSegBuf;
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
/**
|
sl@0
|
85 |
Sets if this drawsection has been externalized anytime. This is used for partial IPC updates.
|
sl@0
|
86 |
|
sl@0
|
87 |
@param aHasBeenExternalized ETrue if this drawsection has been externalized, otherwise EFalse.
|
sl@0
|
88 |
*/
|
sl@0
|
89 |
void CDrawSection::SetHasBeenExternalized(TBool aHasBeenExternalized)
|
sl@0
|
90 |
{
|
sl@0
|
91 |
iHasBeenExternalized = aHasBeenExternalized;
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
/**
|
sl@0
|
95 |
Returns ETrue if this drawsection has been externalized, otherwise EFalse.
|
sl@0
|
96 |
|
sl@0
|
97 |
@return ETrue if this drawsection has been externalized, otherwise EFalse.
|
sl@0
|
98 |
*/
|
sl@0
|
99 |
TBool CDrawSection::HasBeenExternalized() const
|
sl@0
|
100 |
{
|
sl@0
|
101 |
return iHasBeenExternalized;
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
/**
|
sl@0
|
105 |
Compares this drawsection to aDrawSection and check if they are identical.
|
sl@0
|
106 |
|
sl@0
|
107 |
@param aDrawSection The drawsection to compare with.
|
sl@0
|
108 |
@return ETrue if the drawsections are identical, otherwise EFalse.
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
TBool CDrawSection::IsIdentical(const CDrawSection& aDrawSection) const
|
sl@0
|
111 |
{
|
sl@0
|
112 |
const TRect drawRect = aDrawSection.DrawRect();
|
sl@0
|
113 |
CBufBase* segBuf = aDrawSection.Buffer();
|
sl@0
|
114 |
if(!iHasBitmapCommand && iDrawRect.iTl == drawRect.iTl && iDrawRect.iBr == drawRect.iBr && segBuf->Size() == iSectionSegBuf->Size())
|
sl@0
|
115 |
{
|
sl@0
|
116 |
const TInt count = iSectionSegBuf->Size();
|
sl@0
|
117 |
for(TInt i = 0; i < count; i++)
|
sl@0
|
118 |
{
|
sl@0
|
119 |
const TPtr8 comparePtr = segBuf->Ptr(i);
|
sl@0
|
120 |
if(iSectionSegBuf->Ptr(i).CompareC(segBuf->Ptr(i))) //Not identical
|
sl@0
|
121 |
return EFalse;
|
sl@0
|
122 |
|
sl@0
|
123 |
i += comparePtr.Size();
|
sl@0
|
124 |
}
|
sl@0
|
125 |
return ETrue;
|
sl@0
|
126 |
}
|
sl@0
|
127 |
return EFalse;
|
sl@0
|
128 |
}
|
sl@0
|
129 |
|
sl@0
|
130 |
/**
|
sl@0
|
131 |
Returns the drawrect of this drawsection.
|
sl@0
|
132 |
|
sl@0
|
133 |
@return The drawrect of this drawsection.
|
sl@0
|
134 |
*/
|
sl@0
|
135 |
TRect CDrawSection::DrawRect() const
|
sl@0
|
136 |
{
|
sl@0
|
137 |
return iDrawRect;
|
sl@0
|
138 |
}
|
sl@0
|
139 |
|
sl@0
|
140 |
/**
|
sl@0
|
141 |
Externalizes this drawsection to a message buffer to send over IPC.
|
sl@0
|
142 |
|
sl@0
|
143 |
@param aMsgBuf The message buffer to add this drawsection to.
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
void CDrawSection::ExternalizeL(RWsGraphicMsgBuf& aMsgBuf)
|
sl@0
|
146 |
{
|
sl@0
|
147 |
const TInt length = sizeof(TRect)*2 + iSectionSegBuf->Size();
|
sl@0
|
148 |
TPtr8 msgPtr(NULL, 0);
|
sl@0
|
149 |
User::LeaveIfError(aMsgBuf.Append(KDrawSection, length, msgPtr));
|
sl@0
|
150 |
|
sl@0
|
151 |
// Add drawRect to aMsgBuf
|
sl@0
|
152 |
const TPckgBuf<TRect> drawRect(iDrawRect);
|
sl@0
|
153 |
msgPtr.Append(drawRect);
|
sl@0
|
154 |
|
sl@0
|
155 |
// Add boundingRect to aMsgBuf
|
sl@0
|
156 |
const TPckgBuf<TRect> boundingRect(iBoundingRect);
|
sl@0
|
157 |
msgPtr.Append(boundingRect);
|
sl@0
|
158 |
|
sl@0
|
159 |
// Add drawcommands to aMsgBuf
|
sl@0
|
160 |
TInt count = 0;
|
sl@0
|
161 |
const TInt sectionSegBufSize = iSectionSegBuf->Size();
|
sl@0
|
162 |
while(count < sectionSegBufSize)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
TPtr8 ptr = iSectionSegBuf->Ptr(count);
|
sl@0
|
165 |
msgPtr.Append(ptr);
|
sl@0
|
166 |
count += ptr.Size();
|
sl@0
|
167 |
}
|
sl@0
|
168 |
}
|
sl@0
|
169 |
|
sl@0
|
170 |
/**
|
sl@0
|
171 |
Loads a drawsection from externalized data.
|
sl@0
|
172 |
|
sl@0
|
173 |
@param aData The parser for the externalized data.
|
sl@0
|
174 |
@param aIndex The index of the drawsection in CCommandBuffer::iDrawSections to load from the externalized data.
|
sl@0
|
175 |
*/
|
sl@0
|
176 |
TInt CDrawSection::LoadL(const TWsGraphicMsgBufParser& aData, TInt aIndex)
|
sl@0
|
177 |
{
|
sl@0
|
178 |
if(aData.Uid(aIndex).iUid != KDrawSection.iUid)
|
sl@0
|
179 |
{
|
sl@0
|
180 |
return KErrArgument;
|
sl@0
|
181 |
}
|
sl@0
|
182 |
|
sl@0
|
183 |
const TPtrC8 pckg = aData.Data(aIndex);
|
sl@0
|
184 |
const TPtrC8 drawRectPtr = pckg.Left(sizeof(TRect));
|
sl@0
|
185 |
const TPtrC8 boundingRectPtr = pckg.Mid(sizeof(TRect), sizeof(TRect));
|
sl@0
|
186 |
const TPtrC8 segBufPtr = pckg.Mid(sizeof(TRect)*2);
|
sl@0
|
187 |
|
sl@0
|
188 |
Mem::Copy(&iDrawRect, drawRectPtr.Ptr(), sizeof(TRect));
|
sl@0
|
189 |
Mem::Copy(&iBoundingRect, boundingRectPtr.Ptr(), sizeof(TRect));
|
sl@0
|
190 |
|
sl@0
|
191 |
if(iSectionSegBuf)
|
sl@0
|
192 |
delete iSectionSegBuf;
|
sl@0
|
193 |
|
sl@0
|
194 |
iSectionSegBuf = CBufSeg::NewL(KBufferSize);
|
sl@0
|
195 |
iSectionSegBuf->InsertL(0, segBufPtr);
|
sl@0
|
196 |
return KErrNone;
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|