os/kernelhwsrv/kernel/eka/include/d32camerasc.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) 2008-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 the License "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
// e32\include\d32camerasc.h
sl@0
    15
// User side class definition for the shared chunk camera driver.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file
sl@0
    21
 @internalAll
sl@0
    22
 @prototype
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef __D32CAMERASC_H__
sl@0
    26
#define __D32CAMERASC_H__
sl@0
    27
sl@0
    28
#include <e32cmn.h>
sl@0
    29
#include <e32ver.h>
sl@0
    30
#include <pixelformats.h>
sl@0
    31
sl@0
    32
_LIT(KDevCameraScName,"CameraSc");
sl@0
    33
sl@0
    34
/**
sl@0
    35
Camera capability constants - bitmasks of possible flash modes. @see TCameraCapsV02.
sl@0
    36
*/
sl@0
    37
/** Flash will automatically fire when required. */
sl@0
    38
const TUint KCamFlashAuto = 0x0001;
sl@0
    39
/** Flash will always fire. */
sl@0
    40
const TUint KCamFlashForced = 0x0002;
sl@0
    41
/** Reduced flash for general lighting */
sl@0
    42
const TUint KCamFlashFillIn = 0x0004;
sl@0
    43
/** Red-eye reduction mode. */
sl@0
    44
const TUint KCamFlashRedEyeReduce = 0x0008;
sl@0
    45
/** Flash at the moment when shutter opens. */
sl@0
    46
const TUint KCamFlashSlowFrontSync = 0x0010;
sl@0
    47
/** Flash at the moment when shutter closes. */
sl@0
    48
const TUint KCamFlashSlowRearSync = 0x0020;
sl@0
    49
/** User configurable setting */
sl@0
    50
const TUint KCamFlashManual = 0x0040;
sl@0
    51
sl@0
    52
/**
sl@0
    53
Camera capability constants - bitmasks of possible exposure modes. @see TCameraCapsV02.
sl@0
    54
*/
sl@0
    55
/** Night-time setting for long exposures. */
sl@0
    56
const TUint KCamExposureNight = 0x0001;
sl@0
    57
/** Backlight setting for bright backgrounds. */
sl@0
    58
const TUint KCamExposureBacklight = 0x0002;
sl@0
    59
/** Centered mode for ignoring surroundings. */
sl@0
    60
const TUint KCamExposureCenter = 0x0004;
sl@0
    61
/** Sport setting for very short exposures. */
sl@0
    62
const TUint KCamExposureSport = 0x0008;
sl@0
    63
/** Generalised setting for very long exposures. */
sl@0
    64
const TUint KCamExposureVeryLong = 0x0010;
sl@0
    65
/** Snow setting for daylight exposure. */
sl@0
    66
const TUint KCamExposureSnow = 0x0020;
sl@0
    67
/** Beach setting for daylight exposure with reflective glare. */
sl@0
    68
const TUint KCamExposureBeach = 0x0040;
sl@0
    69
/** Programmed exposure setting. */
sl@0
    70
const TUint KCamExposureProgram = 0x0080;
sl@0
    71
/** Aperture setting is given priority. */
sl@0
    72
const TUint KCamExposureAperturePriority = 0x0100;
sl@0
    73
/** Shutter speed setting is given priority. */
sl@0
    74
const TUint KCamExposureShutterPriority = 0x0200;
sl@0
    75
/** User selectable exposure value setting. */
sl@0
    76
const TUint KCamExposureManual = 0x0400;
sl@0
    77
/** Exposure night setting with colour removed to get rid of colour noise. */
sl@0
    78
const TUint KCamExposureSuperNight = 0x0800;
sl@0
    79
/** Exposure for infra-red sensor on the camera */
sl@0
    80
const TUint KCamExposureInfra = 0x1000;
sl@0
    81
sl@0
    82
/**
sl@0
    83
Camera capability constants - bitmasks of possible white balance modes. @see TCameraCapsV02.
sl@0
    84
*/
sl@0
    85
/** Normal daylight. */
sl@0
    86
const TUint KCamWBDaylight = 0x0001;
sl@0
    87
/** Overcast daylight. */
sl@0
    88
const TUint KCamWBCloudy = 0x0002;
sl@0
    89
/** Tungsten filament lighting. */
sl@0
    90
const TUint KCamWBTungsten = 0x0004;
sl@0
    91
/** Fluorescent tube lighting */
sl@0
    92
const TUint KCamWBFluorescent = 0x0008;
sl@0
    93
/** Flash lighting. */
sl@0
    94
const TUint KCamWBFlash = 0x0010;
sl@0
    95
/** High contrast daylight primarily snowy */
sl@0
    96
const TUint KCamWBSnow = 0x0020;
sl@0
    97
/** High contrast daylight primarily near the sea */
sl@0
    98
const TUint KCamWBBeach = 0x0040;
sl@0
    99
/** User configurable mode */
sl@0
   100
const TUint KCamWBManual = 0x0080;
sl@0
   101
sl@0
   102
/**
sl@0
   103
Camera capability constants - bitmasks of other miscellaneous camera capabilities supported. @see TCameraCapsV02.
sl@0
   104
*/
sl@0
   105
/** The camera has zoom capability. */
sl@0
   106
const TUint KCamMiscZoom = 0x0001;
sl@0
   107
/** The camera supports contrast adjustment. */
sl@0
   108
const TUint KCamMiscContrast = 0x0002;
sl@0
   109
/** The camera supports brightness adjustment. */
sl@0
   110
const TUint KCamMiscBrightness = 0x0004;
sl@0
   111
/** The camera supports color effect adjustment. */
sl@0
   112
const TUint KCamMiscColorEffect = 0x0008;
sl@0
   113
sl@0
   114
sl@0
   115
/**
sl@0
   116
Enumeration of capture modes in which to run the sensor.
sl@0
   117
*/
sl@0
   118
enum TDevCamCaptureMode
sl@0
   119
	{
sl@0
   120
	/** Used to specify that still image mode is to be used. */
sl@0
   121
	ECamCaptureModeImage,
sl@0
   122
	/** Used to specify that streaming video mode is to be used. */
sl@0
   123
	ECamCaptureModeVideo,
sl@0
   124
	/** Used to specify that streaming viewfinder mode is to be used. */
sl@0
   125
	ECamCaptureModeViewFinder,
sl@0
   126
	/** The last value here, helps keep track of the number of capture modes. */
sl@0
   127
	ECamCaptureModeMax
sl@0
   128
	};
sl@0
   129
sl@0
   130
/**
sl@0
   131
Enumeration of camera flash modes. @see TCameraConfigV02.
sl@0
   132
*/
sl@0
   133
enum TDevCamFlashMode
sl@0
   134
	{
sl@0
   135
	/** No flash, always supported. */
sl@0
   136
	ECamFlashNone=0x0000,
sl@0
   137
	/** Flash will automatically fire when required. */
sl@0
   138
	ECamFlashAuto=0x0001,
sl@0
   139
	/** Flash will always fire. */
sl@0
   140
	ECamFlashForced=0x0002,
sl@0
   141
	/** Reduced flash for general lighting */
sl@0
   142
	ECamFlashFillIn=0x0004,
sl@0
   143
	/** Red-eye reduction mode. */
sl@0
   144
	ECamFlashRedEyeReduce=0x0008,
sl@0
   145
	/** Flash at the moment when shutter opens. */
sl@0
   146
	ECamFlashSlowFrontSync=0x0010,
sl@0
   147
	/** Flash at the moment when shutter closes. */
sl@0
   148
	ECamFlashSlowRearSync=0x0020,
sl@0
   149
	/** User configurable setting */
sl@0
   150
	ECamFlashManual=0x0040
sl@0
   151
	};
sl@0
   152
sl@0
   153
/**
sl@0
   154
Enumeration of camera exposure modes. @see TCameraConfigV02.
sl@0
   155
*/
sl@0
   156
enum TDevCamExposureMode
sl@0
   157
	{
sl@0
   158
	/** Set exposure automatically. Default, always supported. */
sl@0
   159
	ECamExposureAuto=0x0000,
sl@0
   160
	/** Night-time setting for long exposures. */
sl@0
   161
	ECamExposureNight=0x0001,
sl@0
   162
	/** Backlight setting for bright backgrounds. */
sl@0
   163
	ECamExposureBacklight=0x0002,
sl@0
   164
	/** Centered mode for ignoring surroundings. */
sl@0
   165
	ECamExposureCenter=0x0004,
sl@0
   166
	/** Sport setting for very short exposures. */
sl@0
   167
	ECamExposureSport=0x0008,
sl@0
   168
	/** Generalised setting for very long exposures. */
sl@0
   169
	ECamExposureVeryLong=0x0010,
sl@0
   170
	/** Snow setting for daylight exposure. */
sl@0
   171
	ECamExposureSnow=0x0020,
sl@0
   172
	/** Beach setting for daylight exposure with reflective glare. */
sl@0
   173
	ECamExposureBeach=0x0040,
sl@0
   174
	/** Programmed exposure setting. */
sl@0
   175
	ECamExposureProgram=0x0080,
sl@0
   176
	/** Aperture setting is given priority. */
sl@0
   177
	ECamExposureAperturePriority=0x0100,
sl@0
   178
	/** Shutter speed setting is given priority. */
sl@0
   179
	ECamExposureShutterPriority=0x0200,
sl@0
   180
	/** User selectable exposure value setting. */
sl@0
   181
	ECamExposureManual=0x0400,
sl@0
   182
	/** Exposure night setting with colour removed to get rid of colour noise. */
sl@0
   183
	ECamExposureSuperNight=0x0800,
sl@0
   184
	/** Exposure for infra-red sensor on the camera */
sl@0
   185
	ECamExposureInfra=0x1000
sl@0
   186
	};
sl@0
   187
sl@0
   188
/**
sl@0
   189
Enumeration of camera white balance modes. @see TCameraConfigV02.
sl@0
   190
*/
sl@0
   191
enum TDevCamWhiteBalanceMode
sl@0
   192
	{
sl@0
   193
	/** Set white balance automatically. Default, always supported. */
sl@0
   194
	ECamWBAuto=0x0000,
sl@0
   195
	/** Normal daylight. */
sl@0
   196
	ECamWBDaylight=0x0001,
sl@0
   197
	/** Overcast daylight. */
sl@0
   198
	ECamWBCloudy=0x0002,
sl@0
   199
	/** Tungsten filament lighting. */
sl@0
   200
	ECamWBTungsten=0x0004,
sl@0
   201
	/** Fluorescent tube lighting */
sl@0
   202
	ECamWBFluorescent=0x0008,
sl@0
   203
	/** Flash lighting. */
sl@0
   204
	ECamWBFlash=0x0010,
sl@0
   205
	/** High contrast daylight primarily snowy */
sl@0
   206
	ECamWBSnow=0x0020,
sl@0
   207
	/** High contrast daylight primarily near the sea */
sl@0
   208
	ECamWBBeach=0x0040,
sl@0
   209
	/** User configurable mode */
sl@0
   210
	ECamWBManual=0x0080
sl@0
   211
	};
sl@0
   212
sl@0
   213
/**
sl@0
   214
Enumeration of possible directions in which the camera may point. @see TCameraCapsV02.
sl@0
   215
*/
sl@0
   216
enum TDevCamOrientation
sl@0
   217
	{
sl@0
   218
	/** Outward pointing camera for taking pictures. Camera is directed away from the user. */
sl@0
   219
	ECamOrientationOutwards,
sl@0
   220
	/** Inward pointing camera for conferencing. Camera is directed towards the user. */
sl@0
   221
	ECamOrientationInwards,
sl@0
   222
	/** Mobile camera capable of multiple orientations. Camera orientation may be changed by the user. */
sl@0
   223
	ECamOrientationMobile,
sl@0
   224
	/** Camera orientation is not known. */
sl@0
   225
	ECamOrientationUnknown
sl@0
   226
	};
sl@0
   227
sl@0
   228
/**
sl@0
   229
Each item in the iPixelFormatSupported array is represented by an instance of this structure.
sl@0
   230
*/
sl@0
   231
struct SDevCamPixelFormat
sl@0
   232
	{
sl@0
   233
	/** The UID of the pixel format supported */
sl@0
   234
	TUidPixelFormat iPixelFormat;
sl@0
   235
	/** The number of frame sizes represented by the pixel format. */
sl@0
   236
	TUint iNumFrameSizes;
sl@0
   237
	/** The pixel width in number of bytes */
sl@0
   238
	TUint iPixelWidthInBytes;
sl@0
   239
	};
sl@0
   240
sl@0
   241
/**
sl@0
   242
Each frame size supported is represented by an instance of this structure.
sl@0
   243
*/
sl@0
   244
struct SDevCamFrameSize
sl@0
   245
	{
sl@0
   246
	/** Width of the frame in pixels. */
sl@0
   247
	TUint iWidth;
sl@0
   248
	/** Height of the frame in pixels. */
sl@0
   249
	TUint iHeight;
sl@0
   250
	/** Minimum frame rate supported by this frame size. */
sl@0
   251
	TUint iMinFrameRate;
sl@0
   252
	/** Maximum frame rate supported by this frame size. */
sl@0
   253
	TUint iMaxFrameRate;
sl@0
   254
	};
sl@0
   255
sl@0
   256
/**
sl@0
   257
Lets us associate buffers to their mode when working out the buffer offset in a chunk.
sl@0
   258
**/
sl@0
   259
class TDevCamBufferModeAndId
sl@0
   260
	{
sl@0
   261
public:
sl@0
   262
	TDevCamCaptureMode iCaptureMode;
sl@0
   263
	TInt iId;
sl@0
   264
	};
sl@0
   265
typedef TPckgBuf<TDevCamBufferModeAndId> TDevCamBufferModeAndIdBuf;
sl@0
   266
sl@0
   267
/**
sl@0
   268
The general driver capabilites class - returned by the LDD factory in response to RDevice::GetCaps().
sl@0
   269
*/
sl@0
   270
class TCapsDevCameraV01
sl@0
   271
	{
sl@0
   272
public:
sl@0
   273
	TVersion iVersion;
sl@0
   274
	};
sl@0
   275
sl@0
   276
/**
sl@0
   277
Defines a list of settings that are changable often (dynamically) within a single use of the device.
sl@0
   278
*/
sl@0
   279
enum TDevCamDynamicAttribute
sl@0
   280
	{
sl@0
   281
	ECamAttributeBrightness,
sl@0
   282
	ECamAttributeContrast,
sl@0
   283
	ECamAttributeColorEffect,
sl@0
   284
	ECamAttributeMax
sl@0
   285
	};
sl@0
   286
sl@0
   287
/**
sl@0
   288
Holds the range and interval (rate of change) values for a dynamic capability.
sl@0
   289
An array of these would be indexed by TDevCamDynamicAttribute
sl@0
   290
*/
sl@0
   291
struct TDynamicRange
sl@0
   292
	{
sl@0
   293
	TUint iMin;
sl@0
   294
	TUint iMax;
sl@0
   295
	TUint iDefault;
sl@0
   296
	};
sl@0
   297
sl@0
   298
/**
sl@0
   299
The main camera capabilities class. This is used to get the capabilities of a specific camera
sl@0
   300
device once a channel to it has been opened.
sl@0
   301
*/
sl@0
   302
class TCameraCapsV02
sl@0
   303
	{
sl@0
   304
public :
sl@0
   305
	/** The flash modes supported - a bit field. */
sl@0
   306
	TUint iFlashModes;
sl@0
   307
	/** The exposure modes supported - a bit field. */
sl@0
   308
	TUint iExposureModes;
sl@0
   309
	/** The white balance modes supported - a bit field. */
sl@0
   310
	TUint iWhiteBalanceModes;
sl@0
   311
	/** The orientation of the camera device. */
sl@0
   312
	TDevCamOrientation iOrientation;
sl@0
   313
	/** The minimum value that may be set for the zoom factor. Must be negative or zero. Negative values
sl@0
   314
	represent macro functionality. @see TCameraCapsV02::iCapsMisc. @see TCameraConfigV02::iZoom. */
sl@0
   315
	TUint iMinZoom;
sl@0
   316
	/** The maximum value that may be set for the zoom factor. Must be positive or zero.
sl@0
   317
	@see TCameraCapsV02::iCapsMisc. @see TCameraConfigV02::iZoom. */
sl@0
   318
	TUint iMaxZoom;
sl@0
   319
	/** Whether other miscellaneous capabilities are supported - a bitfield. These
sl@0
   320
	capabilities include whether the device supports simultaneous capture modes, zoom capabilities, contrast
sl@0
   321
	adjustment, brightness, and color effect adjustment. */
sl@0
   322
	TUint iCapsMisc;
sl@0
   323
	/** Number of pixel formats supported in still image capture mode.
sl@0
   324
	Will be set to 0 if image capture is not supported. */
sl@0
   325
	TUint iNumImagePixelFormats;
sl@0
   326
	/** Number of pixel formats supported in video capture mode.
sl@0
   327
	Will be set to 0 if image capture is not supported. */
sl@0
   328
	TUint iNumVideoPixelFormats;
sl@0
   329
	/** Number of pixel formats supported in view finder capture mode.
sl@0
   330
	Will be set to 0 if image capture is not supported. */
sl@0
   331
	TUint iNumViewFinderPixelFormats;
sl@0
   332
	
sl@0
   333
	/** An array specifying the range in values for settings as defined by TDevCamDynamicAttribute.
sl@0
   334
		Indices for settings are in the order defined in TDevCamDynamicAttribute.
sl@0
   335
		If the setting is not supported then the entry is still present for performance reasons,
sl@0
   336
		i.e. indexing over searching.
sl@0
   337
		@see TDevCamDynamicAttribute
sl@0
   338
		@see TDynamicRange
sl@0
   339
	*/
sl@0
   340
	TDynamicRange iDynamicRange[ECamAttributeMax];
sl@0
   341
	
sl@0
   342
	/** A variable length array specifying the pixel formats supported by the sensor.
sl@0
   343
		The size of the TCameraCapsV02 structure is determined by each sensor's capabilities
sl@0
   344
		thus the array of supported pixel formats is of variable length. It is stored in memory
sl@0
   345
		exactly after TCameraCapsV02 whenever memory is allocated for it and the array cannot be
sl@0
   346
		accessed by a private member.
sl@0
   347
	SDevCamPixelFormat iPixelFormatsSupported[];
sl@0
   348
	*/
sl@0
   349
	};
sl@0
   350
sl@0
   351
typedef TPckgBuf<TCameraCapsV02> TCameraCapsV02Buf;
sl@0
   352
sl@0
   353
/**
sl@0
   354
The camera configuration class. This is used to get and set the current
sl@0
   355
configuration of the camera. @see SDevCamFrameSize and @see SDevCamPixelFormat.
sl@0
   356
*/
sl@0
   357
class TCameraConfigV02
sl@0
   358
	{
sl@0
   359
public:
sl@0
   360
	/** The size of the image to get from the sensor. */
sl@0
   361
	SDevCamFrameSize iFrameSize;
sl@0
   362
	/** The pixel format (RGB, YUV, RGB Bayer etc). */
sl@0
   363
	SDevCamPixelFormat iPixelFormat;
sl@0
   364
	/** The frame rate (in frame/s). */
sl@0
   365
	TUint iFrameRate;
sl@0
   366
	/** The flash mode setting. */
sl@0
   367
	TDevCamFlashMode iFlashMode;
sl@0
   368
	/** The exposure mode setting. */
sl@0
   369
	TDevCamExposureMode iExposureMode;
sl@0
   370
	/** The white balance mode setting. */
sl@0
   371
	TDevCamWhiteBalanceMode iWhiteBalanceMode;
sl@0
   372
	/** The zoom factor. Can be zero, positive or negative, Negative values represent macro functionality.*/
sl@0
   373
	TInt iZoom;
sl@0
   374
	/** Specifies the number of bytes used to store one pixel's worth of data. */
sl@0
   375
	TInt iPixelWidthInBytes;
sl@0
   376
	};
sl@0
   377
typedef TPckgBuf<TCameraConfigV02> TCameraConfigV02Buf;
sl@0
   378
sl@0
   379
/** A structure used to assemble arguments for the function RDevCameraSc::SetBufConfigChunkOpen() and to pass
sl@0
   380
these to the driver. */
sl@0
   381
struct SSetBufConfigChunkOpenInfo
sl@0
   382
	{
sl@0
   383
	const TDesC8* iBufferConfigBuf;
sl@0
   384
	TInt iChunkHandle;
sl@0
   385
	};
sl@0
   386
sl@0
   387
/** A structure used to assemble arguments for the function RDevCameraSc::FrameSizeCaps() and to pass
sl@0
   388
these to the driver. */
sl@0
   389
struct SFrameSizeCapsInfo
sl@0
   390
	{
sl@0
   391
	TUidPixelFormat iUidPixelFormat;
sl@0
   392
	TDevCamCaptureMode iCaptureMode;
sl@0
   393
	};
sl@0
   394
sl@0
   395
/**
sl@0
   396
The camera device driver API supporting shared chunks. This is the principle interface to communicate with
sl@0
   397
an attached camera.
sl@0
   398
*/
sl@0
   399
class RDevCameraSc : public RBusLogicalChannel
sl@0
   400
	{
sl@0
   401
public:
sl@0
   402
	enum TRequest
sl@0
   403
	/**
sl@0
   404
	 Asynchronous request types
sl@0
   405
	*/
sl@0
   406
		{
sl@0
   407
		EMsgRequestMax=3,				// All requests less than this value are handled in the driver DFC thread.
sl@0
   408
		ERequestNotifyNewImage,
sl@0
   409
		ENumRequests,
sl@0
   410
		EAllRequests = (1<<ENumRequests)-1
sl@0
   411
		};
sl@0
   412
sl@0
   413
	enum TControl
sl@0
   414
	/**
sl@0
   415
	 Synchronous request types
sl@0
   416
	*/
sl@0
   417
		{
sl@0
   418
		EControlSetBufConfigChunkCreate,
sl@0
   419
		EControlSetBufConfigChunkOpen,
sl@0
   420
		EControlStart,
sl@0
   421
		EControlStop,
sl@0
   422
		EControlSetCamConfig,
sl@0
   423
		EControlSetCaptureMode,
sl@0
   424
		EControlChunkClose,
sl@0
   425
		EMsgControlMax=100,				// All requests less than this value are handled in the driver DFC thread.
sl@0
   426
		EControlCaps,
sl@0
   427
		EControlGetCamConfig,
sl@0
   428
		EControlGetBufferConfig,
sl@0
   429
		EControlReleaseBuffer,
sl@0
   430
		EControlNotifyNewImageSpecificCancel,
sl@0
   431
		EControlBufferIdToOffset,
sl@0
   432
		EControlCapsSize,
sl@0
   433
		EControlFrameSizeCaps,
sl@0
   434
		EControlSetDynamicAttribute,
sl@0
   435
		EControlGetDynamicAttribute
sl@0
   436
		};
sl@0
   437
sl@0
   438
public:
sl@0
   439
	/**
sl@0
   440
	Get the version number of camera driver interface.
sl@0
   441
	@return The camera driver interface version number.
sl@0
   442
	*/
sl@0
   443
	inline static TVersion VersionRequired();
sl@0
   444
sl@0
   445
#ifndef __KERNEL_MODE__
sl@0
   446
	
sl@0
   447
	/**
sl@0
   448
	 Constructor.
sl@0
   449
	 Initialises private members.
sl@0
   450
	 */
sl@0
   451
	inline RDevCameraSc();
sl@0
   452
	
sl@0
   453
	/**
sl@0
   454
	Open a channel on a specified camera device. This driver only allows one channel to be opened on each device.
sl@0
   455
	@param aUnit The unit number of the camera device.
sl@0
   456
	@return KErrNone, if successful;
sl@0
   457
			KErrInUse, if a channel is already opened on the unit concerned;
sl@0
   458
			otherwise one of the other system-wide error codes.
sl@0
   459
	*/
sl@0
   460
	inline TInt Open(TInt aUnit);
sl@0
   461
sl@0
   462
	/**
sl@0
   463
	Close the Channel and clean up.
sl@0
   464
	*/
sl@0
   465
	inline void Close();
sl@0
   466
sl@0
   467
	/**
sl@0
   468
	Get the capabilities of the camera device.
sl@0
   469
	@param aCapsBuf A packaged TCameraCapsV02 object which on return will be filled with the capabilities of the device.
sl@0
   470
	@return KErrNone, if successful;
sl@0
   471
			KErrArgument, if aCapsBuf is too small.
sl@0
   472
	@see TCameraCapsV02.
sl@0
   473
	*/
sl@0
   474
	inline TInt Caps(TDes8& aCapsBuf);
sl@0
   475
sl@0
   476
	/**
sl@0
   477
	Get the capabilities of the camera device.
sl@0
   478
	@return TPtrC8 pointing to a locally held TCameraCapsV02 structure owned by the driver.
sl@0
   479
	@see TCameraCapsV02.
sl@0
   480
	*/
sl@0
   481
	inline TPtrC8 Caps();
sl@0
   482
sl@0
   483
	/**
sl@0
   484
	Set the camera configuration settings.
sl@0
   485
	@param aCaptureMode	The capture mode that camera will be configured for.
sl@0
   486
	@param aConfigBuf	A packaged TCameraConfigV02 object which contains the configuration settings.
sl@0
   487
	@see TCameraConfigV02.
sl@0
   488
	*/
sl@0
   489
	inline TInt SetCamConfig(TDevCamCaptureMode aCaptureMode, const TDesC8& aConfigBuf);
sl@0
   490
sl@0
   491
	/**
sl@0
   492
	Trigger the buffer allocation and configuration setting - creating a shared chunk.
sl@0
   493
	From the frame size, pixel format (already supplied) and the number of camera buffers specified,
sl@0
   494
	the driver will	calculate the size of the shared chunk this requires. It will create such
sl@0
   495
	a shared chunk containing the specified number of buffers within it (each with memory committed to them).
sl@0
   496
	This will replace a previous shared chunk created by this driver.
sl@0
   497
	A handle to the chunk will then be created for the client thread which will be assigned to the
sl@0
   498
	RChunk object supplied by the client.The configuration cannot be changed unless image capture is disabled.
sl@0
   499
	@param aCaptureMode	The capture mode that camera will be configured for.
sl@0
   500
	@param aNumBuffers	The desired number of buffers that is going to be used.
sl@0
   501
	@param aChunk		An RChunk object to which the chunk handle will be assigned.
sl@0
   502
	@return KErrNone if successful;
sl@0
   503
			KErrInUse if image capturing is already in progress;
sl@0
   504
			KErrArgument if any configuration values are invalid;
sl@0
   505
			KErrNoMemory if the driver failed allocate memory for the shared chunk specified;
sl@0
   506
			otherwise one of the other system-wide error codes.
sl@0
   507
	*/
sl@0
   508
	inline TInt SetBufConfigChunkCreate(TDevCamCaptureMode aCaptureMode, TInt aNumBuffers, RChunk& aChunk);
sl@0
   509
sl@0
   510
	/**
sl@0
   511
	Get the current camera configuration settings.
sl@0
   512
	@param aCaptureMode	The capture mode that the user requested the configuration settings of.
sl@0
   513
	@param aConfigBuf	A packaged TCameraConfigV02 object which will be filled with the configuration settings.
sl@0
   514
	@see TCameraConfigV02.
sl@0
   515
	*/
sl@0
   516
	inline void GetCamConfig(TDevCamCaptureMode aCaptureMode, TDes8& aConfigBuf);
sl@0
   517
sl@0
   518
	/**
sl@0
   519
	Get the current buffer configuration settings.
sl@0
   520
	@param aCaptureMode	The capture mode that the configuration request is for.
sl@0
   521
	@param aConfigBuf	A packaged TSharedChunkBufConfigBase derived object which will be filled with the configuration settings.
sl@0
   522
	@see TSharedChunkBufConfigBase.
sl@0
   523
	*/
sl@0
   524
	inline void GetBufferConfig(TDevCamCaptureMode aCaptureMode, TDes8& aConfigBuf);
sl@0
   525
sl@0
   526
	/**
sl@0
   527
	Set the current buffer configuration settings - using an existing shared chunk.
sl@0
   528
	The client supplies an existing shared chunk which is to be used by the driver as the play buffer.
sl@0
   529
	Any shared chunk previously created by the driver will be closed by it.
sl@0
   530
	The configuration cannot be changed unless image capture is disabled.
sl@0
   531
	@param aCaptureMode	The capture mode that the configuration is for.
sl@0
   532
	@param aBufferConfigBuf	A packaged TSharedChunkBufConfigBase derived object holding information on the buffer configuration
sl@0
   533
							settings of the chunk supplied.
sl@0
   534
	@param aChunk			A handle to the shared chunk which is to be used as the buffer. (This must be a
sl@0
   535
							valid handle for the calling thread).
sl@0
   536
	@return KErrNone if successful;
sl@0
   537
			KErrInUse if the playing of data is in progress;
sl@0
   538
			KErrBadHandle if the chunk handle was invalid;
sl@0
   539
			KErrArgument if any configuration values are invalid;
sl@0
   540
			otherwise one of the other system-wide error codes.
sl@0
   541
	@see TCameraConfigV02.
sl@0
   542
	*/
sl@0
   543
	inline TInt SetBufConfigChunkOpen(TDevCamCaptureMode aCaptureMode, const TDesC8& aBufferConfigBuf, RChunk& aChunk);
sl@0
   544
sl@0
   545
	/**
sl@0
   546
	Closes the chunk associated with a given capture mode, and frees the associated buffers.  The chunk being closed,
sl@0
   547
	should have been allocated by the device driver by a call to SetBufConfigChunkCreate().
sl@0
   548
	@param aCaptureMode The capture mode for which to close the chunk.
sl@0
   549
	@return	KErrNone if successful.
sl@0
   550
			KErrInUse if an attempt has been made to free the memory and chunk while they are in use.
sl@0
   551
			Otherwise one of the other system-wide error codes.
sl@0
   552
	*/
sl@0
   553
	inline TInt ChunkClose(TDevCamCaptureMode aCaptureMode);
sl@0
   554
sl@0
   555
	/**
sl@0
   556
	Start the image capture process in the capture mode supplied.
sl@0
   557
	If the driver is in free running mode then it will commence capturing frames - cycling between
sl@0
   558
	each buffer available to it until Stop() is called. In one shot mode the driver postpones the capturing
sl@0
   559
	of frames until a NotifyNewImage() request is received.
sl@0
   560
	@return KErrNone if successful;
sl@0
   561
			KErrNotReady if SetConfig() has not been previously called;
sl@0
   562
			otherwise one of the other system-wide error codes.
sl@0
   563
	@pre The driver must have been previousely initialised by a call to SetConfigNN()
sl@0
   564
	*/
sl@0
   565
	inline TInt Start();
sl@0
   566
sl@0
   567
	/**
sl@0
   568
	End the image capturing process.
sl@0
   569
	Also performs NotifyNewImageCancel()
sl@0
   570
	@return KErrGeneral if Start() has not been previously called;
sl@0
   571
			KErrNone otherwise.
sl@0
   572
	*/
sl@0
   573
	inline TInt Stop();
sl@0
   574
sl@0
   575
	/**
sl@0
   576
	Get the next available image.
sl@0
   577
	More than one request may be pending at any time.
sl@0
   578
	If the camera is enabled for image capture and image capture is not already in progress then the issuing
sl@0
   579
	of this request will start image capture mode.
sl@0
   580
	@param aStatus 	The request status which is signaled when an image is available (or an error occurs).
sl@0
   581
					If the request is successful then this result value is the offset within the shared chunk
sl@0
   582
					where the capture image resides. Alternatively, if an error occurs it will be set to one of
sl@0
   583
					the system wide error values:
sl@0
   584
				 	KErrNotReady if Start() hasn't been previousely called;
sl@0
   585
				 	KErrInUse if the client already has all the images buffers.
sl@0
   586
	@pre Image capturing must have been started with Start().
sl@0
   587
	*/
sl@0
   588
	inline void NotifyNewImage(TRequestStatus& aStatus);
sl@0
   589
sl@0
   590
	/**
sl@0
   591
	Cancels all outstanding NotifyNewImage() requests.
sl@0
   592
	All outstanding requests complete with KErrCancel.
sl@0
   593
	*/
sl@0
   594
	inline void NotifyNewImageCancel();
sl@0
   595
sl@0
   596
	/**
sl@0
   597
	Cancels a specific NotifyNewImage() request.
sl@0
   598
	The outstanding request completes with KErrCancel.
sl@0
   599
	@param aStatus The request status object associated with the request to be cancelled.
sl@0
   600
	*/
sl@0
   601
	inline void NotifyNewImageCancel(const TRequestStatus& aStatus);
sl@0
   602
sl@0
   603
	/**
sl@0
   604
	Release a buffer - making it available again for the driver to capture images into.
sl@0
   605
	@param aBufferId	The buffer id of the buffer that the image to be released is stored.
sl@0
   606
						This is a value returned by the NotifyNewImage() request when
sl@0
   607
						the buffer was claimed by the client.
sl@0
   608
	@return KErrNone if successful;
sl@0
   609
			KErrNotFound if the buffer id is invalid;
sl@0
   610
			otherwise one of the other system-wide error codes.
sl@0
   611
	*/
sl@0
   612
	inline TInt ReleaseBuffer(TInt aBufferId);
sl@0
   613
sl@0
   614
	/**
sl@0
   615
	Retrieves the offset to the start of the buffer using its id, in the specified capture mode.
sl@0
   616
	@param aCaptureMode	The capture mode that the buffer in the chunk is related to.
sl@0
   617
	@param aId			The id of the buffer in the chunk.
sl@0
   618
	@param aOffset		The offset, in bytes, of the start of the buffer within the chunk.
sl@0
   619
	@return KErrNone if successful;
sl@0
   620
			KErrNotFound if the id doesn't exist;
sl@0
   621
			otherwise one of the other system-wide error codes.
sl@0
   622
	*/
sl@0
   623
	inline TInt BufferIdToOffset(TDevCamCaptureMode aCaptureMode, TInt aId, TInt& aOffset);
sl@0
   624
sl@0
   625
	/**
sl@0
   626
	Sets the current capture mode. Submits the camera configuration	to the PDD.
sl@0
   627
	@param aCaptureMode	The capture mode that the camera switches to.	@see TDevCamCaptureMode.
sl@0
   628
	@return KErrNone if successful;
sl@0
   629
			otherwise one of the other system-wide error codes.
sl@0
   630
	*/
sl@0
   631
	inline TInt SetCaptureMode(TDevCamCaptureMode aCaptureMode);
sl@0
   632
sl@0
   633
	/**
sl@0
   634
	Queries the driver for the size of the structure to be passed to Caps().
sl@0
   635
	@return The size of the structure required to hold all capability information.
sl@0
   636
			otherwise one of the system-wide error codes.
sl@0
   637
	*/
sl@0
   638
	inline TInt CapsSize();
sl@0
   639
sl@0
   640
	/**
sl@0
   641
	Gets information regarding the frame sizes and frame rates supported for a given combination of capture mode and pixel format.
sl@0
   642
	The capture mode and pixel format chosen will be dependent upon the information returned by RDevCameraSc::Caps().
sl@0
   643
	@param	aCaptureMode The capture mode concerned.
sl@0
   644
	@param	aUidPixelFormat The UID of the pixel format mode concerned.
sl@0
   645
	@param	aFrameSizeCapsBuf	A packaged array of SDevCamFrameSize structures.
sl@0
   646
								This is a variable length array and must be large enough to hold all entries.
sl@0
   647
								Its size is determined by SDevCamPixelFormat::iNumFrameSizes, returned by RDevCameraSc::Caps(),
sl@0
   648
								multiplied by the size of SDevCamFrameSize.
sl@0
   649
	@return	KErrNone if successful;
sl@0
   650
			KErrArgument if an invalid capture mode or pixel format is specified, or if aFrameSizeCapsBuf is too small.
sl@0
   651
			otherwise one of the other system-wide error codes.
sl@0
   652
	*/
sl@0
   653
	inline TInt FrameSizeCaps(TDevCamCaptureMode aCaptureMode, TUidPixelFormat aUidPixelFormat, TDes8& aFrameSizeCapsBuf);
sl@0
   654
	
sl@0
   655
sl@0
   656
	/**
sl@0
   657
	Allows changing of the dynamic settings as specified in TDevCamDynamicAttribute.
sl@0
   658
	Checks locally the validity of the arguments passed so as to increase performance by not
sl@0
   659
	forcing a context switch.
sl@0
   660
	Check the allowable range of the settings via the TCameraCapsV02::iDynamicRange member.
sl@0
   661
sl@0
   662
	@param aAttribute An enum identifying the dynamic attribute to change.
sl@0
   663
	@param aValue The attributes value within a valid range.
sl@0
   664
	@return KErrNone if successful, KErrNotSupported if not supported, 
sl@0
   665
			KErrArgument if aValue is out of range.
sl@0
   666
			Otherwise, one of the system wide error codes.
sl@0
   667
	@see TDevCamDynamicAttribute
sl@0
   668
	@see TCameraCapsV02
sl@0
   669
	*/
sl@0
   670
	TInt SetDynamicAttribute(TDevCamDynamicAttribute aAttribute, TUint aValue);
sl@0
   671
sl@0
   672
	/**
sl@0
   673
	Queries the driver for a dynamic setting's value.
sl@0
   674
	This function does not force a context switch by reading the values from a cache.
sl@0
   675
	
sl@0
   676
	@param aAttribute An enum identifying the dynamic attribute to query.
sl@0
   677
	@param aValue A reference to a variable that will be set to the queried attribute's value.
sl@0
   678
	@return KErrNone if successful, KErrNotFound if aAttribute is not supported by the driver.
sl@0
   679
		Otherwise, one of the system-wide error codes.
sl@0
   680
sl@0
   681
	@see TDevCamDynamicAttribute
sl@0
   682
	@see TCameraCapsV02
sl@0
   683
	*/
sl@0
   684
	TInt GetDynamicAttribute(TDevCamDynamicAttribute aAttribute, TUint& aValue);
sl@0
   685
sl@0
   686
protected:
sl@0
   687
	TInt CheckAttributeSupported(TDevCamDynamicAttribute aAttribute);
sl@0
   688
sl@0
   689
sl@0
   690
private:
sl@0
   691
	/** 
sl@0
   692
	Capability of Sensor. 
sl@0
   693
	Kept here for performance issues, i.e. to avoid context switches.
sl@0
   694
	*/
sl@0
   695
	TCameraCapsV02 *iCameraCaps;
sl@0
   696
sl@0
   697
	/** 
sl@0
   698
	Size of Camera Capabiliy struct. 
sl@0
   699
	Kept here for performance issues, i.e. to avoid context switches.
sl@0
   700
	*/
sl@0
   701
	TInt iCapsSize;
sl@0
   702
	
sl@0
   703
#endif	// __KERNEL_MODE__
sl@0
   704
	};
sl@0
   705
sl@0
   706
sl@0
   707
sl@0
   708
sl@0
   709
#include <d32camerasc.inl>
sl@0
   710
sl@0
   711
#endif	// __D32CAMERASC_H__