os/graphics/graphicsresourceservices/graphicsresourceadaptation/inc/sgimageimpl.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-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
/**
sl@0
    17
 @file
sl@0
    18
 @internalComponent
sl@0
    19
*/
sl@0
    20
sl@0
    21
#ifndef SGIMAGEIMPL_H
sl@0
    22
#define SGIMAGEIMPL_H
sl@0
    23
sl@0
    24
#include "sgimageadapter.h"
sl@0
    25
#include "sgdriverimpl.h"
sl@0
    26
#include "sgimage_sw.h"
sl@0
    27
#include "sgimage_chunk.h"
sl@0
    28
sl@0
    29
sl@0
    30
/**
sl@0
    31
@internalComponent
sl@0
    32
sl@0
    33
This class encapsulates the adapter-specific metadata associated with an image.
sl@0
    34
User attributes are excluded.
sl@0
    35
*/
sl@0
    36
class TSgImageMetaData
sl@0
    37
	{
sl@0
    38
public:
sl@0
    39
	TSgImageMetaData(const TSgImageInfo& aInfo, TArray<TSgPixelFormatTableEntry> aPixelFormatTable, TBool aIsCached = ETrue);
sl@0
    40
	void GetInfo(TSgImageInfo& aInfo, TBool aGetPotentialUsage = EFalse) const;
sl@0
    41
public:
sl@0
    42
	/**
sl@0
    43
	The identifier of the process that created the image.
sl@0
    44
	*/
sl@0
    45
	TProcessId iCreatorProcess;
sl@0
    46
	/**
sl@0
    47
	The size of the image in pixels.
sl@0
    48
	*/
sl@0
    49
	TSize iSizeInPixels;
sl@0
    50
	/**
sl@0
    51
	The pixel format of the image.
sl@0
    52
	*/
sl@0
    53
	TUidPixelFormat iPixelFormat;
sl@0
    54
	/**
sl@0
    55
	The intended usage of the image as requested during creation.
sl@0
    56
	*/
sl@0
    57
	TUint32 iRequestedUsage;
sl@0
    58
	/**
sl@0
    59
	The potential usage of the image as allowed by the implementation of the Graphics
sl@0
    60
	subsystem. This is calculated from the image attributes, excluding the requested
sl@0
    61
	usage, and the pixel format support table.
sl@0
    62
	*/
sl@0
    63
	TUint32 iPotentialUsage;
sl@0
    64
	/**
sl@0
    65
	Whether the image is shareable between processes.
sl@0
    66
	*/
sl@0
    67
	TBool iShareable;
sl@0
    68
	/**
sl@0
    69
	Whether and how the image is mappable for CPU access.
sl@0
    70
	*/
sl@0
    71
	TSgCpuAccess iCpuAccess;
sl@0
    72
	/**
sl@0
    73
	The identifier of the screen on which the image is usable or -1 if the image
sl@0
    74
	is usable on all screens.
sl@0
    75
	*/
sl@0
    76
	TInt iScreenId;
sl@0
    77
	/**
sl@0
    78
	Whether the image is CPU-cached.
sl@0
    79
	*/
sl@0
    80
	TBool iIsCached;
sl@0
    81
	};
sl@0
    82
sl@0
    83
sl@0
    84
/**
sl@0
    85
@internalComponent
sl@0
    86
sl@0
    87
Base class for all classes representing image state. The state of an image consists
sl@0
    88
of the following items:
sl@0
    89
	- The situation in memory of the pixel data. In platforms with Unified Memory
sl@0
    90
	  Architecture this is simply the address and stride of the pixel data in system
sl@0
    91
	  memory, since the image is always located in system memory. In other memory
sl@0
    92
	  architectures the image might change location between specialised graphics
sl@0
    93
	  memory and system memory, for example.
sl@0
    94
	- The situation in memory of the metadata and the user attributes. In the current
sl@0
    95
	  image implementation based on the Surface Manager the metadata is stored in
sl@0
    96
	  the same memory chunk as the pixel data and the user attributes are stored
sl@0
    97
	  as surface hints.
sl@0
    98
	- Whether and how the pixel data is being accessed by the CPU.
sl@0
    99
sl@0
   100
@see XSgImageImplBase
sl@0
   101
*/
sl@0
   102
class XSgImageStateBase: public XSgBase
sl@0
   103
	{
sl@0
   104
public:
sl@0
   105
	virtual const TSgImageMetaData& MetaData() const = 0;
sl@0
   106
	virtual TInt GetUserAttributes(TSgUserAttribute* aUserAttributes, TInt aUserAttributeCount) const = 0;
sl@0
   107
	virtual TAny* DataAddress() const = 0;
sl@0
   108
	inline TInt DataStride() const;
sl@0
   109
	virtual TInt BeginDataAccess(TSgCpuAccess aCpuAccess, TBool aIsUserAccess);
sl@0
   110
	virtual TInt EndDataAccess(TBool aIsUserAccess);
sl@0
   111
protected:
sl@0
   112
	inline XSgImageStateBase(XSgDriverImpl& aDriverImpl);
sl@0
   113
	inline XSgImageStateBase(XSgDriverImpl& aDriverImpl, TInt aDataStride);
sl@0
   114
protected:
sl@0
   115
	/**
sl@0
   116
	The number of bytes between rows of the pixel data.
sl@0
   117
	*/
sl@0
   118
	TInt iDataStride;
sl@0
   119
	/**
sl@0
   120
	Whether the pixel data is being accessed by the CPU for reading only, for
sl@0
   121
	writing only, for reading and writing or not at all.
sl@0
   122
	*/
sl@0
   123
	TSgCpuAccess iCpuAccess;
sl@0
   124
	/**
sl@0
   125
	The level of CPU access, if any:
sl@0
   126
	- If ETrue the pixel data is being accessed by the CPU from the application
sl@0
   127
	  level through a call to RSgImage::MapReadOnly(), RSgImage::MapWriteOnly()
sl@0
   128
	  or RSgImage::MapReadWrite().
sl@0
   129
	- If EFalse the pixel data is being accessed by the CPU from the Graphics
sl@0
   130
	  subsystem level through the MSgImage_Sw extension interface.
sl@0
   131
	*/
sl@0
   132
	TBool iIsUserAccess;
sl@0
   133
	};
sl@0
   134
sl@0
   135
sl@0
   136
/**
sl@0
   137
@internalComponent
sl@0
   138
sl@0
   139
Base class for all image adapter objects. This class currently implements the
sl@0
   140
MSgImage_Sw extension interface, since it assumes a platform with Unified Memory
sl@0
   141
Architecture and therefore availability of the extension interface on all images.
sl@0
   142
sl@0
   143
@see XSgImageStateBase
sl@0
   144
*/
sl@0
   145
class XSgImageImplBase: public XSgBase, public MSgImageAdapter, public MSgImage_Sw
sl@0
   146
	{
sl@0
   147
public:
sl@0
   148
	~XSgImageImplBase();
sl@0
   149
	inline const TSgImageMetaData& MetaData() const;
sl@0
   150
	static TInt Compare(const TSgDrawableId* aId, const XSgImageImplBase& aImage);
sl@0
   151
	static TInt Compare(const XSgImageImplBase& aImage1, const XSgImageImplBase& aImage2);
sl@0
   152
	static TInt CompareIgnoringFlags(const TSgDrawableId* aId, const XSgImageImplBase& aImage);
sl@0
   153
	// From MSgResourceAdapter
sl@0
   154
	void Close();
sl@0
   155
	// From MSgDrawableAdapter
sl@0
   156
	const TSgDrawableId& Id() const;
sl@0
   157
	TUid DrawableType() const;
sl@0
   158
	TInt GetInterface(TUid aInterfaceUid, TAny*& aInterfacePtr);
sl@0
   159
	// From MSgImageAdapter
sl@0
   160
	TInt GetInfo(TSgImageInfo& aInfo) const;
sl@0
   161
	TInt MapReadOnly(const TAny*& aDataAddress, TInt& aDataStride);
sl@0
   162
	TInt MapWriteOnly(TAny*& aDataAddress, TInt& aDataStride);
sl@0
   163
	TInt MapReadWrite(TAny*& aDataAddress, TInt& aDataStride);
sl@0
   164
	TInt Unmap();
sl@0
   165
	// From MSgImage_Sw
sl@0
   166
	TAny* DataAddress() const;
sl@0
   167
	TInt DataStride() const;
sl@0
   168
	TInt BeginDataAccess(TSgCpuAccess aCpuAccess);
sl@0
   169
	TInt EndDataAccess();
sl@0
   170
protected:
sl@0
   171
	inline XSgImageImplBase(XSgDriverImpl& aDriverImpl);
sl@0
   172
	inline XSgImageImplBase(XSgDriverImpl& aDriverImpl, const TSgDrawableId& aId);
sl@0
   173
	XSgImageImplBase(const XSgImageImplBase& aImage, TUint32 aFlags);
sl@0
   174
	TInt SetData(const TAny* aDataAddress, TInt aDataStride);
sl@0
   175
protected:
sl@0
   176
	/** The unique identifier of the image. */
sl@0
   177
	TSgDrawableId iId;
sl@0
   178
	/** The state of the image. */
sl@0
   179
	XSgImageStateBase* iState;
sl@0
   180
	};
sl@0
   181
sl@0
   182
sl@0
   183
/**
sl@0
   184
@internalComponent
sl@0
   185
sl@0
   186
The position, as index into an array of 32-bit words, of the 32 bits reserved
sl@0
   187
for flags in the unique identifier of an image.
sl@0
   188
*/
sl@0
   189
const TInt KSgImageIdFlagsIndex = 5;
sl@0
   190
sl@0
   191
sl@0
   192
#ifndef SYMBIAN_GRAPHICS_USE_GPU
sl@0
   193
sl@0
   194
/**
sl@0
   195
@internalComponent
sl@0
   196
sl@0
   197
The structure of the unique identifier of an image allocated in memory that is
sl@0
   198
accessible only from the user-side of the creator process.
sl@0
   199
sl@0
   200
@see XSgImageImpl_SwLocal
sl@0
   201
*/
sl@0
   202
class TSgImageId_SwLocal
sl@0
   203
	{
sl@0
   204
public:
sl@0
   205
	inline static TBool IsMatch(const TSgDrawableId& aId);
sl@0
   206
public:
sl@0
   207
	/** 64 bits reserved for the identifier of the creator process. */
sl@0
   208
	TUint64 iProcessId;
sl@0
   209
	/** 64 random bits. */
sl@0
   210
	TUint32 iRandom[2];
sl@0
   211
	/** 32 bits set to "1". */
sl@0
   212
	TInt32 iMinusOne;
sl@0
   213
	/** 32 bits reserved for flags. */
sl@0
   214
	TUint32 iFlags;
sl@0
   215
	};
sl@0
   216
sl@0
   217
sl@0
   218
/**
sl@0
   219
@internalComponent
sl@0
   220
sl@0
   221
This class represents the state of an image allocated in memory that is accessible
sl@0
   222
only from the user-side of the creator process.
sl@0
   223
sl@0
   224
@see XSgImageImpl_SwLocal
sl@0
   225
*/
sl@0
   226
class XSgImageState_SwLocal: public XSgImageStateBase
sl@0
   227
	{
sl@0
   228
public:
sl@0
   229
	static TInt New(XSgImageState_SwLocal*& aPtr, XSgDriverImpl& aDriverImpl, const TSgImageInfo& aInfo);
sl@0
   230
	const TSgImageMetaData& MetaData() const;
sl@0
   231
	TInt GetUserAttributes(TSgUserAttribute* aUserAttributes, TInt aUserAttributeCount) const;
sl@0
   232
	TAny* DataAddress() const;
sl@0
   233
private:
sl@0
   234
	XSgImageState_SwLocal(XSgDriverImpl& aDriverImpl, const TSgImageInfo& aInfo, TInt aDataStride);
sl@0
   235
private:
sl@0
   236
	/**
sl@0
   237
	The metadata of the image.
sl@0
   238
	*/
sl@0
   239
	TSgImageMetaData iMetaData;
sl@0
   240
	/**
sl@0
   241
	The number of user attributes.
sl@0
   242
	*/
sl@0
   243
	TInt iUserAttributeCount;
sl@0
   244
	/**
sl@0
   245
	The user attributes of the image. The pixel data of the image is stored after
sl@0
   246
	them in the same heap cell.
sl@0
   247
	*/
sl@0
   248
	TSgUserAttribute iUserAttributes[1];
sl@0
   249
	};
sl@0
   250
sl@0
   251
sl@0
   252
/**
sl@0
   253
@internalComponent
sl@0
   254
sl@0
   255
An adapter object representing an image allocated in memory that is accessible only
sl@0
   256
from the user-side of the creator process. Non-shareable images are allocated in
sl@0
   257
this way on platforms without hardware acceleration. The pixel data, the metadata
sl@0
   258
and the user attributes of such an image are stored in the same heap cell.
sl@0
   259
sl@0
   260
@see XSgImageState_SwLocal
sl@0
   261
*/
sl@0
   262
class XSgImageImpl_SwLocal: public XSgImageImplBase
sl@0
   263
	{
sl@0
   264
public:
sl@0
   265
	static TInt New(XSgImageImpl_SwLocal*& aPtr, XSgDriverImpl& aDriverImpl, const TSgDrawableId& aId,
sl@0
   266
	                const TSgImageInfo& aInfo, const TAny* aDataAddress, TInt aDataStride);
sl@0
   267
	static TInt New(XSgImageImpl_SwLocal*& aPtr, const XSgImageImpl_SwLocal& aImage, TUint32 aFlags);
sl@0
   268
private:
sl@0
   269
	inline XSgImageImpl_SwLocal(XSgDriverImpl& aDriverImpl, const TSgDrawableId& aId);
sl@0
   270
	inline XSgImageImpl_SwLocal(const XSgImageImpl_SwLocal& aImage, TUint32 aFlags);
sl@0
   271
	TInt Construct(const TSgImageInfo& aInfo, const TAny* aDataAddress, TInt aDataStride);
sl@0
   272
	};
sl@0
   273
sl@0
   274
#endif
sl@0
   275
sl@0
   276
sl@0
   277
/**
sl@0
   278
@internalComponent
sl@0
   279
sl@0
   280
The structure of the unique identifier of an image stored in a surface buffer.
sl@0
   281
sl@0
   282
@see XSgImageImpl_SurfaceManager
sl@0
   283
*/
sl@0
   284
class TSgImageId_SurfaceManager
sl@0
   285
	{
sl@0
   286
public:
sl@0
   287
	inline static TBool IsMatch(const TSgDrawableId& aId);
sl@0
   288
public:
sl@0
   289
	/** 128 bits reserved for the surface identifier. */
sl@0
   290
	TSurfaceId iSurfaceId;
sl@0
   291
	/** 16 bits reserved for the index to the surface buffer. */
sl@0
   292
	TInt16 iBufferIndex;
sl@0
   293
	/** 16 bits reserved for the index to the metadata. */
sl@0
   294
	TInt16 iMetaDataIndex;
sl@0
   295
	/** 32 bits reserved for flags. */
sl@0
   296
	TUint32 iFlags;
sl@0
   297
	};
sl@0
   298
sl@0
   299
sl@0
   300
/**
sl@0
   301
@internalComponent
sl@0
   302
sl@0
   303
This class represents the state of an image stored in a surface buffer.
sl@0
   304
sl@0
   305
@see XSgImageImpl_SurfaceManager
sl@0
   306
*/
sl@0
   307
class XSgImageState_SurfaceManager: public XSgImageStateBase
sl@0
   308
	{
sl@0
   309
public:
sl@0
   310
	static TInt New(XSgImageState_SurfaceManager*& aPtr, XSgDriverImpl& aDriverImpl, const TSgImageInfo& aInfo, TBool aIsCached);
sl@0
   311
	static TInt New(XSgImageState_SurfaceManager*& aPtr, XSgDriverImpl& aDriverImpl, const TSgDrawableId& aId);
sl@0
   312
	~XSgImageState_SurfaceManager();
sl@0
   313
	const TSgImageMetaData& MetaData() const;
sl@0
   314
	TInt GetUserAttributes(TSgUserAttribute* aUserAttributes, TInt aUserAttributeCount) const;
sl@0
   315
	TAny* DataAddress() const;
sl@0
   316
#ifdef SYMBIAN_GRAPHICS_AUTOFLUSH_CACHE
sl@0
   317
	TInt BeginDataAccess(TSgCpuAccess aCpuAccess, TBool aIsUserAccess);
sl@0
   318
	TInt EndDataAccess(TBool aIsUserAccess);
sl@0
   319
#endif
sl@0
   320
	inline const TSurfaceId& SurfaceId() const;
sl@0
   321
	inline const RChunk& DataChunk() const;
sl@0
   322
	inline TInt DataOffset() const;
sl@0
   323
private:
sl@0
   324
	inline XSgImageState_SurfaceManager(XSgDriverImpl& aDriverImpl);
sl@0
   325
	TInt Construct(const TSgImageInfo& aInfo, TBool aIsCached);
sl@0
   326
	TInt Construct(const TSgDrawableId& aId);
sl@0
   327
private:
sl@0
   328
	/** The identifier of the surface in which the image is stored. */
sl@0
   329
	TSurfaceId iSurfaceId;
sl@0
   330
	/** Index to the surface buffer in which the image is stored. */
sl@0
   331
	TInt iBufferIndex;
sl@0
   332
	/** Offset to the metadata from the base of the underlying memory chunk. */
sl@0
   333
	TInt iMetaDataOffset;
sl@0
   334
	/** Handle to the underlying memory chunk. */
sl@0
   335
	RChunk iDataChunk;
sl@0
   336
	/** Offset to the pixel data from the base of the underlying memory chunk. */
sl@0
   337
	TInt iDataOffset;
sl@0
   338
	};
sl@0
   339
sl@0
   340
sl@0
   341
/**
sl@0
   342
@internalComponent
sl@0
   343
sl@0
   344
An adapter object representing an image stored in a surface buffer. The metadata
sl@0
   345
of such an image is stored at the beginning of the underlying memory chunk.
sl@0
   346
sl@0
   347
@see XSgImageState_SurfaceManager
sl@0
   348
*/
sl@0
   349
class XSgImageImpl_SurfaceManager: public XSgImageImplBase, public MSgImage_Chunk
sl@0
   350
	{
sl@0
   351
public:
sl@0
   352
	static TInt New(XSgImageImpl_SurfaceManager*& aPtr, XSgDriverImpl& aDriverImpl,
sl@0
   353
	                const TSgImageInfo& aInfo, TBool aIsCached, const TAny* aDataAddress, TInt aDataStride);
sl@0
   354
	static TInt New(XSgImageImpl_SurfaceManager*& aPtr, XSgDriverImpl& aDriverImpl, const TSgDrawableId& aId);
sl@0
   355
	static TInt New(XSgImageImpl_SurfaceManager*& aPtr, const XSgImageImpl_SurfaceManager& aImage, TUint32 aFlags);
sl@0
   356
	// From MSgDrawableAdapter
sl@0
   357
	TInt GetInterface(TUid aInterfaceUid, TAny*& aInterfacePtr);
sl@0
   358
	// From MSgImage_Chunk
sl@0
   359
	const RChunk& DataChunk() const;
sl@0
   360
	TInt DataOffset() const;
sl@0
   361
	TInt DataStride() const;
sl@0
   362
private:
sl@0
   363
	inline XSgImageImpl_SurfaceManager(XSgDriverImpl& aDriverImpl);
sl@0
   364
	inline XSgImageImpl_SurfaceManager(XSgDriverImpl& aDriverImpl, const TSgDrawableId& aId);
sl@0
   365
	inline XSgImageImpl_SurfaceManager(const XSgImageImpl_SurfaceManager& aImage, TUint32 aFlags);
sl@0
   366
	TInt Construct(const TSgImageInfo& aInfo, TBool aIsCached, const TAny* aDataAddress, TInt aDataStride);
sl@0
   367
	TInt Construct(const TSgDrawableId& aId);
sl@0
   368
	};
sl@0
   369
sl@0
   370
sl@0
   371
#include "sgimageimpl.inl"
sl@0
   372
sl@0
   373
sl@0
   374
#endif // SGIMAGEIMPL_H