os/mm/imagingandcamerafws/camerafw/source/Ecam.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-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 <ecam.h>
sl@0
    17
#include <ecam/ecamplugin.h>
sl@0
    18
#include <ecam/ecaminfoplugin.h>
sl@0
    19
#include "ecamversion.h"
sl@0
    20
#include <mm/mmpluginutils.h>
sl@0
    21
sl@0
    22
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    23
#include <ecamuidsdef.hrh>
sl@0
    24
#include <ecamconst.h>
sl@0
    25
#endif
sl@0
    26
_LIT(KECamImplFaulty,"FaultyECamImpl");
sl@0
    27
const TUint KPanicECamWrongEventClassUsed = 1;
sl@0
    28
sl@0
    29
const TInt KCameraIndex0 = 0;
sl@0
    30
const TInt KCameraIndex1 = 1;
sl@0
    31
const TInt KCameraIndex2 = 2;
sl@0
    32
const TInt KCameraIndex3 = 3;
sl@0
    33
const TInt KCameraIndex4 = 4;
sl@0
    34
const TInt KCameraIndex5 = 5;
sl@0
    35
const TInt KCameraIndex6 = 6;
sl@0
    36
const TInt KCameraIndex7 = 7;
sl@0
    37
sl@0
    38
EXPORT_C TECAMEvent::TECAMEvent(TUid aEventType, TInt aErrorCode)
sl@0
    39
: iEventType(aEventType), iErrorCode(aErrorCode)
sl@0
    40
	{
sl@0
    41
	}
sl@0
    42
sl@0
    43
EXPORT_C TECAMEvent::TECAMEvent()
sl@0
    44
	{
sl@0
    45
	}
sl@0
    46
sl@0
    47
/**
sl@0
    48
This method may be used by MCameraObserver2::HandleEvent to know whether a particular event received 
sl@0
    49
has been encapsulated in a correct version of TECAMEvent base class. 
sl@0
    50
Indirectly, its provided implementation also specifies different events which are supposed to use a specific version
sl@0
    51
of TECAMEvent base class.
sl@0
    52
This static method will be provided per derived version of TECAMEvent base class. So, MCameraObserver2::HandleEvent 
sl@0
    53
implementation may consist of 2 parts: 
sl@0
    54
1) Recognize the class which encapsulated the event(aECAMEvent) and type-cast to that class.
sl@0
    55
2) Recognize the event.
sl@0
    56
sl@0
    57
Note : MCameraObserver2::HandleEvent should ignore unrecognised events and unrecognized version of TECAMEvent base 
sl@0
    58
class. Unless clearly stated to use a particular derived version of TECAMEvent base class, events should use 
sl@0
    59
class TECAMEvent.
sl@0
    60
	
sl@0
    61
@param  aECAMEvent
sl@0
    62
	    TECAMEvent class reference providing details of a particular event
sl@0
    63
sl@0
    64
@return ETrue : This implies that the received event is recognized and belongs to this class. 
sl@0
    65
		MCameraObserver2::HandleEvent implementation may type-cast the aECAMEvent to TECAMEvent2 and proceed.
sl@0
    66
		EFalse : This is not an error condition. This implies that the event does not belong to this class. If event 
sl@0
    67
		is a known event, this may belong to the base class or to some other version of base class.  
sl@0
    68
		MCameraObserver2::HandleEvent implementation may call any other such methods existing for different derived versions 
sl@0
    69
		of TECAMEvent base class untill ETrue is retrieved.
sl@0
    70
		If EFalse is retrieved in each of such methods, implementation may type-cast the aECAMEvent to 
sl@0
    71
		the base class and proceed further to recognise the event. This implies that:-
sl@0
    72
		1) the given event is unrecognised and belong to base class or any derived class or an unrecognised derived class.
sl@0
    73
		2) the given event is recognised and belong to base class. 
sl@0
    74
						
sl@0
    75
*/
sl@0
    76
EXPORT_C TBool TECAMEvent2::IsEventEncapsulationValid(const TECAMEvent& aECAMEvent)
sl@0
    77
	{
sl@0
    78
	/*
sl@0
    79
	checks whether the event type being represented by aECAMEvent belongs to this class or not.
sl@0
    80
	*/
sl@0
    81
	
sl@0
    82
	if(aECAMEvent.iEventType.iUid <= KECamUidEvent2RangeEnd && aECAMEvent.iEventType.iUid >= KECamUidEvent2RangeBegin)
sl@0
    83
		{
sl@0
    84
		TECAMEvent2 ecamEvent = static_cast<const TECAMEvent2&>(aECAMEvent);
sl@0
    85
			
sl@0
    86
		/*
sl@0
    87
		event type is being correctly represented only if its class uid 
sl@0
    88
		matches with uid used for class TECAMEvent2
sl@0
    89
		*/
sl@0
    90
		if (ecamEvent.EventClassUsed().iUid == KUidECamEventClass2UidValue)
sl@0
    91
			{
sl@0
    92
			return ETrue;
sl@0
    93
			}
sl@0
    94
		/*
sl@0
    95
		event type is not being correctly represented only if its class uid does not
sl@0
    96
		match with uid used for class TECAMEvent2. Faulty ECam Implementation
sl@0
    97
		*/
sl@0
    98
		else
sl@0
    99
			{
sl@0
   100
			User::Panic(KECamImplFaulty, KPanicECamWrongEventClassUsed);
sl@0
   101
			}
sl@0
   102
		}
sl@0
   103
			
sl@0
   104
	switch(aECAMEvent.iEventType.iUid)
sl@0
   105
		{
sl@0
   106
		//fall through
sl@0
   107
		case KUidECamEventCameraSettingPreCaptureWarningUidValue:
sl@0
   108
		case KUidECamEventCIPSetColorSwapEntryUidValue:
sl@0
   109
		case KUidECamEventCIPRemoveColorSwapEntryUidValue:
sl@0
   110
		case KUidECamEventCIPSetColorAccentEntryUidValue:
sl@0
   111
		case KUidECamEventCIPRemoveColorAccentEntryUidValue:
sl@0
   112
		/*
sl@0
   113
		event type belongs to this class
sl@0
   114
		*/
sl@0
   115
			{
sl@0
   116
			TECAMEvent2 ecamEvent = static_cast<const TECAMEvent2&>(aECAMEvent);
sl@0
   117
			
sl@0
   118
			/*
sl@0
   119
			event type is being correctly represented only if its class uid 
sl@0
   120
			matches with uid used for class TECAMEvent2
sl@0
   121
			*/
sl@0
   122
			if (ecamEvent.EventClassUsed().iUid == KUidECamEventClass2UidValue)
sl@0
   123
				{
sl@0
   124
				return ETrue;
sl@0
   125
				}
sl@0
   126
			/*
sl@0
   127
			event type is not being correctly represented only if its class uid does not
sl@0
   128
			match with uid used for class TECAMEvent2. Faulty ECam Implementation
sl@0
   129
			*/
sl@0
   130
			else
sl@0
   131
				{
sl@0
   132
				User::Panic(KECamImplFaulty, KPanicECamWrongEventClassUsed);
sl@0
   133
				}
sl@0
   134
			}
sl@0
   135
		
sl@0
   136
		default: 
sl@0
   137
			/*
sl@0
   138
			Ignore if event type does not belong to this class
sl@0
   139
			*/
sl@0
   140
			return EFalse;
sl@0
   141
		}
sl@0
   142
	}
sl@0
   143
sl@0
   144
/**
sl@0
   145
Constructor.
sl@0
   146
sl@0
   147
@param  aEventType
sl@0
   148
        A UID to define the type of event.
sl@0
   149
        
sl@0
   150
@param  aErrorCode
sl@0
   151
        The error code associated with the event.
sl@0
   152
sl@0
   153
@param  aParam
sl@0
   154
		This signifies different things for different valid events.
sl@0
   155
		
sl@0
   156
		For example: 
sl@0
   157
		For KUidECamEventCIPSetColorSwapEntry; KUidECamEventCIPRemoveColorSwapEntry; KUidECamEventCIPSetColorAccentEntry
sl@0
   158
		and KUidECamEventCIPRemoveColorAccentEntry, aParam represents color entry.
sl@0
   159
		
sl@0
   160
		For KUidECamEventCameraSettingPreCaptureWarning, aParam represents bit field describing all PreCaptureWarnings currently issued.
sl@0
   161
		
sl@0
   162
		Future events may also use this class.
sl@0
   163
*/
sl@0
   164
EXPORT_C TECAMEvent2::TECAMEvent2(TUid aEventType, TInt aErrorCode, TInt aParam)
sl@0
   165
: TECAMEvent(aEventType, aErrorCode), iEventClassUsed(KUidECamEventClass2), iParam(aParam)
sl@0
   166
	{	
sl@0
   167
	}
sl@0
   168
sl@0
   169
/**
sl@0
   170
Gives the uid representing this version of TECAMEvent base class.
sl@0
   171
sl@0
   172
@return Uid representing this version of TECAMEvent base class. Uid used is KUidECamEventClass2.
sl@0
   173
*/
sl@0
   174
EXPORT_C const TUid& TECAMEvent2::EventClassUsed() const
sl@0
   175
	{
sl@0
   176
	return iEventClassUsed;
sl@0
   177
	}
sl@0
   178
  	
sl@0
   179
sl@0
   180
EXPORT_C TInt CCamera::CamerasAvailable()
sl@0
   181
	{
sl@0
   182
	return CCameraPlugin::CamerasAvailable();
sl@0
   183
	}
sl@0
   184
sl@0
   185
sl@0
   186
EXPORT_C CCamera* CCamera::NewL(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority)
sl@0
   187
	{
sl@0
   188
	return CCameraPlugin::NewL(aObserver, aCameraIndex, aPriority, KCameraDefaultVersion);
sl@0
   189
	}
sl@0
   190
sl@0
   191
EXPORT_C CCamera* CCamera::NewDuplicateL(MCameraObserver2& aObserver,TInt aCameraHandle)
sl@0
   192
	{
sl@0
   193
	return CCameraPlugin::NewDuplicateL(aObserver, aCameraHandle, KCameraDefaultVersion);
sl@0
   194
	}
sl@0
   195
sl@0
   196
sl@0
   197
EXPORT_C CCamera* CCamera::NewL(MCameraObserver& aObserver,TInt aCameraIndex)
sl@0
   198
	{
sl@0
   199
	return CCameraPlugin::NewL(aObserver, aCameraIndex, KCameraDefaultVersion);
sl@0
   200
	}
sl@0
   201
sl@0
   202
EXPORT_C CCamera* CCamera::NewDuplicateL(MCameraObserver& aObserver,TInt aCameraHandle)
sl@0
   203
	{
sl@0
   204
	return CCameraPlugin::NewDuplicateL(aObserver, aCameraHandle, KCameraDefaultVersion);
sl@0
   205
	}
sl@0
   206
	
sl@0
   207
EXPORT_C CCamera* CCamera::New2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority)
sl@0
   208
	{
sl@0
   209
	return CCameraPlugin::NewL(aObserver, aCameraIndex, aPriority,KCameraFirstVersion);
sl@0
   210
	}
sl@0
   211
sl@0
   212
EXPORT_C CCamera* CCamera::NewDuplicate2L(MCameraObserver2& aObserver,TInt aCameraHandle)
sl@0
   213
	{
sl@0
   214
	return CCameraPlugin::NewDuplicateL(aObserver, aCameraHandle, KCameraFirstVersion);
sl@0
   215
	}
sl@0
   216
	
sl@0
   217
EXPORT_C TInt CCamera::CameraVersion()
sl@0
   218
	{
sl@0
   219
	return((static_cast<CCameraPlugin*>(this))->CameraVersion());
sl@0
   220
	}
sl@0
   221
sl@0
   222
/**
sl@0
   223
@internalComponent
sl@0
   224
sl@0
   225
Used to create the CCameraStatusWatch class object. This is needed by the method TReservedInfo::SubscribeReserveInfoL
sl@0
   226
in order to grab the reserve notification from the ECam implementation and hence further forward it to the observer
sl@0
   227
MReserveObserver.
sl@0
   228
sl@0
   229
@param aReserveObserver
sl@0
   230
	   Reference to an observer.
sl@0
   231
sl@0
   232
@param aCameraIndex
sl@0
   233
	   The camera index for which the subscription is needed.
sl@0
   234
	   
sl@0
   235
@param aSecureId
sl@0
   236
	   The secure ID of the process where serialized part of the ECam implementation runs.
sl@0
   237
sl@0
   238
@leave May leave with any error code
sl@0
   239
*/
sl@0
   240
CCameraStatusWatch* CCameraStatusWatch::NewL(MReserveObserver& aReserveObserver, TInt aCameraIndex, TInt aSecureId)
sl@0
   241
	{
sl@0
   242
	CCameraStatusWatch* self = new(ELeave) CCameraStatusWatch(aReserveObserver, aCameraIndex, aSecureId);
sl@0
   243
	CleanupStack::PushL(self);
sl@0
   244
	self->ConstructL();
sl@0
   245
	CleanupStack::Pop();
sl@0
   246
	return self;
sl@0
   247
	}
sl@0
   248
sl@0
   249
/**
sl@0
   250
Destructor. 
sl@0
   251
The destructor has to be called by the client when it does not need the desired reserve notifications any more.
sl@0
   252
sl@0
   253
@publishedPartner
sl@0
   254
@prototype
sl@0
   255
*/
sl@0
   256
EXPORT_C CCameraStatusWatch::~CCameraStatusWatch()
sl@0
   257
	{
sl@0
   258
	Cancel();
sl@0
   259
	iProperty.Close();
sl@0
   260
	}
sl@0
   261
sl@0
   262
/**
sl@0
   263
Constructor
sl@0
   264
*/	
sl@0
   265
CCameraStatusWatch::CCameraStatusWatch(MReserveObserver& aReserveObserver, TInt aCameraIndex, TInt aSecureId): 
sl@0
   266
																					   CActive(EPriorityHigh), 
sl@0
   267
																					   iReserveObserver(aReserveObserver),
sl@0
   268
																					   iCameraIndex(aCameraIndex),
sl@0
   269
																					   iSecureId(aSecureId)
sl@0
   270
	{
sl@0
   271
	}
sl@0
   272
sl@0
   273
/**
sl@0
   274
Second Phase Constructor.
sl@0
   275
Attaches to the Property as implied by the camera index, adds the active object to the active scheduler list and kicks
sl@0
   276
off the	RunL.
sl@0
   277
sl@0
   278
@leave May leave with any error code
sl@0
   279
sl@0
   280
@note Serialized part of the ECam implementation is assumed to define the Properties and publish them whenever there is 
sl@0
   281
	  change in the reserve status.
sl@0
   282
*/
sl@0
   283
void CCameraStatusWatch::ConstructL()
sl@0
   284
	{
sl@0
   285
	switch(iCameraIndex)
sl@0
   286
		{
sl@0
   287
		case KCameraIndex0:
sl@0
   288
			{
sl@0
   289
			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex0ReservedStatus));
sl@0
   290
			break;	
sl@0
   291
			}
sl@0
   292
		case KCameraIndex1:
sl@0
   293
			{
sl@0
   294
			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex1ReservedStatus));
sl@0
   295
			break;	
sl@0
   296
			}
sl@0
   297
		case KCameraIndex2:
sl@0
   298
			{
sl@0
   299
			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex2ReservedStatus));
sl@0
   300
			break;	
sl@0
   301
			}
sl@0
   302
		case KCameraIndex3:
sl@0
   303
			{
sl@0
   304
			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex3ReservedStatus));
sl@0
   305
			break;	
sl@0
   306
			}
sl@0
   307
		case KCameraIndex4:
sl@0
   308
			{
sl@0
   309
			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex4ReservedStatus));
sl@0
   310
			break;	
sl@0
   311
			}
sl@0
   312
		case KCameraIndex5:
sl@0
   313
			{
sl@0
   314
			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex5ReservedStatus));
sl@0
   315
			break;	
sl@0
   316
			}
sl@0
   317
		case KCameraIndex6:
sl@0
   318
			{
sl@0
   319
			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex6ReservedStatus));
sl@0
   320
			break;	
sl@0
   321
			}
sl@0
   322
		case KCameraIndex7:
sl@0
   323
			{
sl@0
   324
			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex7ReservedStatus));
sl@0
   325
			break;	
sl@0
   326
			}
sl@0
   327
		default:
sl@0
   328
			{
sl@0
   329
			User::Leave(KErrArgument);
sl@0
   330
			}
sl@0
   331
		}
sl@0
   332
sl@0
   333
	CActiveScheduler::Add(this);
sl@0
   334
	
sl@0
   335
	iProperty.Subscribe(iStatus);
sl@0
   336
	SetActive();
sl@0
   337
	}
sl@0
   338
sl@0
   339
/**
sl@0
   340
Re-issues the subscription notice. Checks the updated value of the Property and notifies the client via 
sl@0
   341
MReserveObserver. 
sl@0
   342
sl@0
   343
@note Serialized part of the ECam implementation is assumed to define the Properties and publish them whenever there is 
sl@0
   344
	  change in the reserve status.
sl@0
   345
*/
sl@0
   346
void CCameraStatusWatch::RunL()
sl@0
   347
	{
sl@0
   348
	TBool reserved;
sl@0
   349
	TInt error = iProperty.Get(reserved);
sl@0
   350
	
sl@0
   351
	TECamReserveStatus reserveStatus;
sl@0
   352
	if(error != KErrNone)
sl@0
   353
		{
sl@0
   354
		reserveStatus = ECameraStatusUnknown;
sl@0
   355
		}
sl@0
   356
	else
sl@0
   357
		{
sl@0
   358
		if(!reserved)
sl@0
   359
			{
sl@0
   360
			reserveStatus = ECameraUnReserved;
sl@0
   361
			}
sl@0
   362
		else
sl@0
   363
			{
sl@0
   364
			reserveStatus = ECameraReserved;
sl@0
   365
			}	
sl@0
   366
		}
sl@0
   367
	
sl@0
   368
	iReserveObserver.ReserveStatus(iCameraIndex, reserveStatus, error);
sl@0
   369
	
sl@0
   370
	if(error == KErrNone)
sl@0
   371
		{
sl@0
   372
		iProperty.Subscribe(iStatus);
sl@0
   373
		SetActive();
sl@0
   374
		}
sl@0
   375
	}	
sl@0
   376
sl@0
   377
/** 
sl@0
   378
Cancels any outstanding subscription.
sl@0
   379
*/
sl@0
   380
void CCameraStatusWatch::DoCancel()
sl@0
   381
	{
sl@0
   382
	iProperty.Cancel();
sl@0
   383
	}
sl@0
   384
sl@0
   385
/**
sl@0
   386
Client uses it to subscribe for the reserve notification of particular camera. The notifications are send to the client
sl@0
   387
through MReserveObserver callbacks. Should the client not wish to continue with the subscription, it is supposed
sl@0
   388
to delete the CCameraStatusWatch class pointer passed to it. 
sl@0
   389
sl@0
   390
@param aReserveObserver
sl@0
   391
	   Reference to an observer
sl@0
   392
	   
sl@0
   393
@param aCameraIndex
sl@0
   394
	   The index of the camera for which the subscription is to be done.
sl@0
   395
	   
sl@0
   396
@param aCameraStatusWatch
sl@0
   397
	   Reference to the CCameraStatusWatch*. Client is supposed to delete the CCameraStatusWatch object once it does not wish to
sl@0
   398
	   further continue with the subscription.
sl@0
   399
	   
sl@0
   400
@leave May leave with any error code.
sl@0
   401
*/
sl@0
   402
EXPORT_C void TReservedInfo::SubscribeReserveInfoL(MReserveObserver& aReserveObserver, TInt aCameraIndex, CCameraStatusWatch*& aCameraStatusWatch)
sl@0
   403
	{
sl@0
   404
	// Get the MSecureIdPlugin 
sl@0
   405
	TUid interfaceUid = {KUidOnboardCameraSecureIdPlugin};
sl@0
   406
	TUid dtor;
sl@0
   407
	MSecureIdPlugin* secureIdInfo = 
sl@0
   408
		static_cast<MSecureIdPlugin*>
sl@0
   409
			(MmPluginUtils::CreateImplementationL(interfaceUid, dtor, KECamPluginMatchString, KRomOnlyResolverUid));
sl@0
   410
												  
sl@0
   411
	CleanupStack::PushL(secureIdInfo);
sl@0
   412
	
sl@0
   413
	//Retrieve the secure ID
sl@0
   414
	TInt secureId = 0;
sl@0
   415
	secureIdInfo->GetSecureIdL(secureId);
sl@0
   416
	
sl@0
   417
	secureIdInfo->Release();
sl@0
   418
	
sl@0
   419
	CleanupStack::Pop(secureIdInfo);
sl@0
   420
sl@0
   421
	REComSession::DestroyedImplementation(dtor);
sl@0
   422
	REComSession::FinalClose(); // don't have to do this here, but might as well tidy up
sl@0
   423
	
sl@0
   424
	//create CCameraStatusWatch and kicks off RunL. This implies property attached and subscribed.
sl@0
   425
	CCameraStatusWatch* cameraStatusWatch = CCameraStatusWatch::NewL(aReserveObserver, aCameraIndex, secureId);
sl@0
   426
	aCameraStatusWatch = cameraStatusWatch;
sl@0
   427
	}
sl@0
   428
	
sl@0
   429
/**
sl@0
   430
Default Constructor
sl@0
   431
*/		
sl@0
   432
EXPORT_C CCamera::CCamera()
sl@0
   433
	{	
sl@0
   434
	}