os/graphics/graphicsresourceservices/graphicsresourceadaptation/inc/sgdriverimpl.h
Update contrib.
1 // Copyright (c) 2007-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.
21 #ifndef SGDRIVERIMPL_H
22 #define SGDRIVERIMPL_H
24 #include "sgresourceadapter.h"
25 #include <graphics/surfacemanager.h>
31 The category name of the panics raised by Graphics Resource Adapter.
33 _LIT(KSgResourceAdapterPanicCategory, "SGRES-ADAPTER");
37 The reason numbers of the panics raised by Graphics Resource Adapter.
39 enum TSgResourceAdapterPanicReason
44 SGRES-ADAPTER 1 In debug builds, an instance of TSgImageInfo is invalid.
46 ESgPanicBadImageInfo = 1,
50 SGRES-ADAPTER 2 In debug builds, the reference count of an object is invalid.
52 ESgPanicBadReferenceCount = 2,
56 SGRES-ADAPTER 3 In debug builds, an internal function in the Graphics Resource
57 driver has been called without proper inter-thread synchronisation.
59 ESgPanicMutexNotHeld = 3,
64 SGRES-ADAPTER 4 In debug builds, an image has not been prepared for CPU access
67 ESgPanicNoCpuAccess = 4,
71 SGRES-ADAPTER 5 In debug builds, an internal function has failed unexpectedly.
73 ESgPanicResourceAdapterGeneral = 5
80 Panics the current thread specifying a panic reason from Graphics Resource Adapter.
82 inline void Panic(TSgResourceAdapterPanicReason aReason);
88 Calculates the minimum number of bytes between rows of pixel data for a given
89 pixel width and pixel format, regardless of alignment.
91 TInt SgMinDataStride(TInt aWidth, TUidPixelFormat aPixelFormat);
97 Calculates the number of bytes between rows of pixel data given the width in
98 pixels and the pixel format, taking into consideration the alignment
99 requirements of the hardware platform.
101 TInt SgAlignedDataStride(TInt aWidthInPixels, TUidPixelFormat aPixelFormat);
107 Calculates the offset in bytes from the base of the underlying memory chunk to
108 the first buffer of a surface used to store images.
110 TInt SgOffsetToFirstBuffer(TInt aMetaDataSize);
116 Calculates the size in bytes of a buffer able to store an image with the given
117 row size in bytes and number of rows.
119 TInt SgOffsetBetweenBuffers(TInt aDataStride, TInt aScanLineCount);
125 Tests whether an instance of TSgImageInfo is valid.
127 TBool SgIsValidImageInfo(const TSgImageInfo& aInfo);
133 Tests whether an instance of TSgImageInfo specifies mutable images.
135 TBool SgIsMutableImage(const TSgImageInfo& aInfo);
141 Tests whether an instance of TSgImageInfo specifies CPU-cached images.
143 TBool SgIsCachedImage(const TSgImageInfo& aInfo);
151 Base class for all reference-counted classes to be instantiated on the heap for
152 adapter objects. Instances of derived classes must be allocated on the heap first
153 and then initialised using the placement new operator.
156 - Initialisation of instances of derived classes to binary zeroes through a
157 specialised placement new operator.
158 - A virtual destructor and a Delete() function that allow instances of derived
159 classes to be properly destroyed and deallocated through a pointer to this class.
167 inline void IncRefCount();
168 inline TInt DecRefCount();
169 inline TInt RefCount() const;
170 inline TAny* operator new(TUint aSize, TAny* aBase);
172 inline XSgBase(XSgDriverImpl& aDriverImpl);
174 XSgBase(const XSgBase&);
175 const XSgBase& operator =(const XSgBase&);
176 TAny* operator new(TUint);
178 XSgDriverImpl& iDriverImpl;
187 An entry in the pixel format support table.
189 class TSgPixelFormatTableEntry
192 TBool IsMatch(const TSgImageInfo& aInfo) const;
193 TBool IsMatchIgnoringPixelFormat(const TSgImageInfo& aInfo) const;
194 TBool IsMatchIgnoringUsage(const TSgImageInfo& aInfo) const;
197 The supported pixel format.
199 TUidPixelFormat iPixelFormat;
201 The supported usages.
205 The supported CPU access.
207 TSgCpuAccess iCpuAccess;
209 The supported screens. A value of -1 is interpreted as meaning that all screens
210 are supported. Zero and positive values are interpreted as meaning that only
211 the specified screen is supported.
217 class XSgImageImplBase;
218 class XSgImageCollectionImpl;
223 The Graphics Resource Adapter singleton class. The initialisation of the Graphics
224 Resource Adapter singleton consists of the following steps:
225 - The heap for adapter objects is created.
226 - An instance of the singleton class is allocated on the heap for adapter objects.
227 - The C++ constructor is called using the placement new operator and ownership
228 of the heap for adapter objects is transferred to the singleton.
229 - The second-phase constructor is called to complete construction of the singleton.
231 This class owns a single mutex and provides Wait() and Signal() functions to synchronise
232 access to all the adapter objects. An alternative could be for each adapter object to
233 have an associated mutex, but the possible improvement in concurrency does not justify
234 the costs in systems with only one CPU.
236 class XSgDriverImpl: public MSgDriverAdapter
239 inline XSgDriverImpl(RHeap* aHeap);
242 inline TAny* operator new(TUint aSize, TAny* aBase);
244 inline void Signal();
245 inline TBool IsMutexHeld() const;
246 inline TAny* Alloc(TInt aSize);
247 inline void Free(TAny* aCell);
248 inline TInt CreateSurface(const RSurfaceManager::TSurfaceCreationAttributesBuf& aReqs, TSurfaceId& aSurfaceId);
249 inline TInt CreateSurface(const RSurfaceManager::TSurfaceCreationAttributesBuf& aReqs, TSurfaceId& aSurfaceId, const RChunk& aChunk);
250 inline TInt OpenSurface(const TSurfaceId& aSurfaceId);
251 inline TInt CloseSurface(const TSurfaceId& aSurfaceId);
252 TInt MapSurface(const TSurfaceId& aSurfaceId, RChunk& aChunk);
253 inline TInt SurfaceInfo(const TSurfaceId& aSurfaceId, RSurfaceManager::TInfoBuf& aInfo);
254 inline TInt SynchronizeCache(const TSurfaceId& aSurfaceId, TInt aBuffer, RSurfaceManager::TSyncOperation aOperation);
255 inline TInt GetSurfaceHint(const TSurfaceId& aSurfaceId, RSurfaceManager::THintPair& aHint);
256 TArray<TSgPixelFormatTableEntry> PixelFormatTable() const;
257 TInt CanCreateImage(const TSgImageInfo& aInfo) const;
258 TInt OpenImage(const TSgDrawableId& aId, TUint32 aMode, MSgDrawableAdapter*& aResult);
259 void DeleteImage(XSgImageImplBase* aImage);
260 void DeleteImageCollection(XSgImageCollectionImpl* aImageCollection);
261 // From MSgDriverAdapter
263 TInt GetPixelFormats(const TSgImageInfo& aInfo, TUidPixelFormat* aPixelFormats, TInt& aCount);
264 TInt CreateImage(const TSgImageInfo& aInfo, const TAny* aDataAddress, TInt aDataStride, MSgDrawableAdapter*& aResult);
265 TInt CreateImage(const TSgImageInfo& aInfo, MSgImageAdapter* aImage, MSgDrawableAdapter*& aResult);
266 TInt CreateImageCollection(const TSgImageInfo& aInfo, TInt aImageCount, MSgImageCollectionAdapter*& aResult);
267 TInt CreateImageCollections(const TSgImageInfo aInfos[], TInt aImageCount,
268 MSgImageCollectionAdapter* aCollections[], TInt aCollectionCount);
269 TInt OpenDrawable(const TSgDrawableId& aId, TUint32 aMode, TUid aHandleType, MSgDrawableAdapter*& aResult);
270 TBool CheckDrawable(const MSgResourceAdapter& aDrawable) const;
271 TBool CheckImage(const MSgResourceAdapter& aImage) const;
272 TBool CheckImageCollection(const MSgResourceAdapter& aImageCollection) const;
273 TInt ResourceCount() const;
274 void AllocMarkStart();
275 void AllocMarkEnd(TInt aCount);
276 void SetAllocFail(RAllocator::TAllocFail aType, TInt aRate);
277 TInt GetBufferOffset(const TSurfaceId& aSurfaceID, TInt aBuffer, TInt &aOffset);
278 TInt GetSurfaceManagerAttrib(RSurfaceManager::TSurfaceManagerAttrib aAttrib, TInt& aValue);
280 XSgDriverImpl(const XSgDriverImpl&);
281 TInt ConstructPixelFormatTable();
282 const XSgDriverImpl& operator =(const XSgDriverImpl&);
283 TAny* operator new(TUint);
285 /** Handle to the mutex used to synchronize access to the adapter objects. */
286 mutable RMutex iMutex;
287 /** Heap on which the adapter objects are allocated. */
289 /** Handle to the surface manager. */
290 RSurfaceManager iSurfaceManager;
291 /** Pixel format support table. */
292 RArray<TSgPixelFormatTableEntry> iPixelFormatTable;
293 /** Image adapter objects ordered by identifier. */
294 RPointerArray<XSgImageImplBase> iImages;
295 /** Image collection adapter objects ordered by address. */
296 RPointerArray<XSgImageCollectionImpl> iImageCollections;
297 /** Size in pixels passed in the last call to GetPixelFormats(). */
298 TSize iLastSizeInPixels;
299 /** Usage passed in the last call to GetPixelFormats(). */
301 /** CPU access passed in the last call to GetPixelFormats(). */
302 TSgCpuAccess iLastCpuAccess;
303 /** Screen identifier passed in the last call to GetPixelFormats(). */
305 /** Results of the last call to GetPixelFormats(). */
306 RArray<TUidPixelFormat> iLastPixelFormats;
310 #include "sgdriverimpl.inl"
313 #endif // SGDRIVERIMPL_H