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