os/mm/imagingandcamerafws/camerafw/source/Ecam.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/imagingandcamerafws/camerafw/source/Ecam.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,434 @@
     1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include <ecam.h>
    1.20 +#include <ecam/ecamplugin.h>
    1.21 +#include <ecam/ecaminfoplugin.h>
    1.22 +#include "ecamversion.h"
    1.23 +#include <mm/mmpluginutils.h>
    1.24 +
    1.25 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
    1.26 +#include <ecamuidsdef.hrh>
    1.27 +#include <ecamconst.h>
    1.28 +#endif
    1.29 +_LIT(KECamImplFaulty,"FaultyECamImpl");
    1.30 +const TUint KPanicECamWrongEventClassUsed = 1;
    1.31 +
    1.32 +const TInt KCameraIndex0 = 0;
    1.33 +const TInt KCameraIndex1 = 1;
    1.34 +const TInt KCameraIndex2 = 2;
    1.35 +const TInt KCameraIndex3 = 3;
    1.36 +const TInt KCameraIndex4 = 4;
    1.37 +const TInt KCameraIndex5 = 5;
    1.38 +const TInt KCameraIndex6 = 6;
    1.39 +const TInt KCameraIndex7 = 7;
    1.40 +
    1.41 +EXPORT_C TECAMEvent::TECAMEvent(TUid aEventType, TInt aErrorCode)
    1.42 +: iEventType(aEventType), iErrorCode(aErrorCode)
    1.43 +	{
    1.44 +	}
    1.45 +
    1.46 +EXPORT_C TECAMEvent::TECAMEvent()
    1.47 +	{
    1.48 +	}
    1.49 +
    1.50 +/**
    1.51 +This method may be used by MCameraObserver2::HandleEvent to know whether a particular event received 
    1.52 +has been encapsulated in a correct version of TECAMEvent base class. 
    1.53 +Indirectly, its provided implementation also specifies different events which are supposed to use a specific version
    1.54 +of TECAMEvent base class.
    1.55 +This static method will be provided per derived version of TECAMEvent base class. So, MCameraObserver2::HandleEvent 
    1.56 +implementation may consist of 2 parts: 
    1.57 +1) Recognize the class which encapsulated the event(aECAMEvent) and type-cast to that class.
    1.58 +2) Recognize the event.
    1.59 +
    1.60 +Note : MCameraObserver2::HandleEvent should ignore unrecognised events and unrecognized version of TECAMEvent base 
    1.61 +class. Unless clearly stated to use a particular derived version of TECAMEvent base class, events should use 
    1.62 +class TECAMEvent.
    1.63 +	
    1.64 +@param  aECAMEvent
    1.65 +	    TECAMEvent class reference providing details of a particular event
    1.66 +
    1.67 +@return ETrue : This implies that the received event is recognized and belongs to this class. 
    1.68 +		MCameraObserver2::HandleEvent implementation may type-cast the aECAMEvent to TECAMEvent2 and proceed.
    1.69 +		EFalse : This is not an error condition. This implies that the event does not belong to this class. If event 
    1.70 +		is a known event, this may belong to the base class or to some other version of base class.  
    1.71 +		MCameraObserver2::HandleEvent implementation may call any other such methods existing for different derived versions 
    1.72 +		of TECAMEvent base class untill ETrue is retrieved.
    1.73 +		If EFalse is retrieved in each of such methods, implementation may type-cast the aECAMEvent to 
    1.74 +		the base class and proceed further to recognise the event. This implies that:-
    1.75 +		1) the given event is unrecognised and belong to base class or any derived class or an unrecognised derived class.
    1.76 +		2) the given event is recognised and belong to base class. 
    1.77 +						
    1.78 +*/
    1.79 +EXPORT_C TBool TECAMEvent2::IsEventEncapsulationValid(const TECAMEvent& aECAMEvent)
    1.80 +	{
    1.81 +	/*
    1.82 +	checks whether the event type being represented by aECAMEvent belongs to this class or not.
    1.83 +	*/
    1.84 +	
    1.85 +	if(aECAMEvent.iEventType.iUid <= KECamUidEvent2RangeEnd && aECAMEvent.iEventType.iUid >= KECamUidEvent2RangeBegin)
    1.86 +		{
    1.87 +		TECAMEvent2 ecamEvent = static_cast<const TECAMEvent2&>(aECAMEvent);
    1.88 +			
    1.89 +		/*
    1.90 +		event type is being correctly represented only if its class uid 
    1.91 +		matches with uid used for class TECAMEvent2
    1.92 +		*/
    1.93 +		if (ecamEvent.EventClassUsed().iUid == KUidECamEventClass2UidValue)
    1.94 +			{
    1.95 +			return ETrue;
    1.96 +			}
    1.97 +		/*
    1.98 +		event type is not being correctly represented only if its class uid does not
    1.99 +		match with uid used for class TECAMEvent2. Faulty ECam Implementation
   1.100 +		*/
   1.101 +		else
   1.102 +			{
   1.103 +			User::Panic(KECamImplFaulty, KPanicECamWrongEventClassUsed);
   1.104 +			}
   1.105 +		}
   1.106 +			
   1.107 +	switch(aECAMEvent.iEventType.iUid)
   1.108 +		{
   1.109 +		//fall through
   1.110 +		case KUidECamEventCameraSettingPreCaptureWarningUidValue:
   1.111 +		case KUidECamEventCIPSetColorSwapEntryUidValue:
   1.112 +		case KUidECamEventCIPRemoveColorSwapEntryUidValue:
   1.113 +		case KUidECamEventCIPSetColorAccentEntryUidValue:
   1.114 +		case KUidECamEventCIPRemoveColorAccentEntryUidValue:
   1.115 +		/*
   1.116 +		event type belongs to this class
   1.117 +		*/
   1.118 +			{
   1.119 +			TECAMEvent2 ecamEvent = static_cast<const TECAMEvent2&>(aECAMEvent);
   1.120 +			
   1.121 +			/*
   1.122 +			event type is being correctly represented only if its class uid 
   1.123 +			matches with uid used for class TECAMEvent2
   1.124 +			*/
   1.125 +			if (ecamEvent.EventClassUsed().iUid == KUidECamEventClass2UidValue)
   1.126 +				{
   1.127 +				return ETrue;
   1.128 +				}
   1.129 +			/*
   1.130 +			event type is not being correctly represented only if its class uid does not
   1.131 +			match with uid used for class TECAMEvent2. Faulty ECam Implementation
   1.132 +			*/
   1.133 +			else
   1.134 +				{
   1.135 +				User::Panic(KECamImplFaulty, KPanicECamWrongEventClassUsed);
   1.136 +				}
   1.137 +			}
   1.138 +		
   1.139 +		default: 
   1.140 +			/*
   1.141 +			Ignore if event type does not belong to this class
   1.142 +			*/
   1.143 +			return EFalse;
   1.144 +		}
   1.145 +	}
   1.146 +
   1.147 +/**
   1.148 +Constructor.
   1.149 +
   1.150 +@param  aEventType
   1.151 +        A UID to define the type of event.
   1.152 +        
   1.153 +@param  aErrorCode
   1.154 +        The error code associated with the event.
   1.155 +
   1.156 +@param  aParam
   1.157 +		This signifies different things for different valid events.
   1.158 +		
   1.159 +		For example: 
   1.160 +		For KUidECamEventCIPSetColorSwapEntry; KUidECamEventCIPRemoveColorSwapEntry; KUidECamEventCIPSetColorAccentEntry
   1.161 +		and KUidECamEventCIPRemoveColorAccentEntry, aParam represents color entry.
   1.162 +		
   1.163 +		For KUidECamEventCameraSettingPreCaptureWarning, aParam represents bit field describing all PreCaptureWarnings currently issued.
   1.164 +		
   1.165 +		Future events may also use this class.
   1.166 +*/
   1.167 +EXPORT_C TECAMEvent2::TECAMEvent2(TUid aEventType, TInt aErrorCode, TInt aParam)
   1.168 +: TECAMEvent(aEventType, aErrorCode), iEventClassUsed(KUidECamEventClass2), iParam(aParam)
   1.169 +	{	
   1.170 +	}
   1.171 +
   1.172 +/**
   1.173 +Gives the uid representing this version of TECAMEvent base class.
   1.174 +
   1.175 +@return Uid representing this version of TECAMEvent base class. Uid used is KUidECamEventClass2.
   1.176 +*/
   1.177 +EXPORT_C const TUid& TECAMEvent2::EventClassUsed() const
   1.178 +	{
   1.179 +	return iEventClassUsed;
   1.180 +	}
   1.181 +  	
   1.182 +
   1.183 +EXPORT_C TInt CCamera::CamerasAvailable()
   1.184 +	{
   1.185 +	return CCameraPlugin::CamerasAvailable();
   1.186 +	}
   1.187 +
   1.188 +
   1.189 +EXPORT_C CCamera* CCamera::NewL(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority)
   1.190 +	{
   1.191 +	return CCameraPlugin::NewL(aObserver, aCameraIndex, aPriority, KCameraDefaultVersion);
   1.192 +	}
   1.193 +
   1.194 +EXPORT_C CCamera* CCamera::NewDuplicateL(MCameraObserver2& aObserver,TInt aCameraHandle)
   1.195 +	{
   1.196 +	return CCameraPlugin::NewDuplicateL(aObserver, aCameraHandle, KCameraDefaultVersion);
   1.197 +	}
   1.198 +
   1.199 +
   1.200 +EXPORT_C CCamera* CCamera::NewL(MCameraObserver& aObserver,TInt aCameraIndex)
   1.201 +	{
   1.202 +	return CCameraPlugin::NewL(aObserver, aCameraIndex, KCameraDefaultVersion);
   1.203 +	}
   1.204 +
   1.205 +EXPORT_C CCamera* CCamera::NewDuplicateL(MCameraObserver& aObserver,TInt aCameraHandle)
   1.206 +	{
   1.207 +	return CCameraPlugin::NewDuplicateL(aObserver, aCameraHandle, KCameraDefaultVersion);
   1.208 +	}
   1.209 +	
   1.210 +EXPORT_C CCamera* CCamera::New2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority)
   1.211 +	{
   1.212 +	return CCameraPlugin::NewL(aObserver, aCameraIndex, aPriority,KCameraFirstVersion);
   1.213 +	}
   1.214 +
   1.215 +EXPORT_C CCamera* CCamera::NewDuplicate2L(MCameraObserver2& aObserver,TInt aCameraHandle)
   1.216 +	{
   1.217 +	return CCameraPlugin::NewDuplicateL(aObserver, aCameraHandle, KCameraFirstVersion);
   1.218 +	}
   1.219 +	
   1.220 +EXPORT_C TInt CCamera::CameraVersion()
   1.221 +	{
   1.222 +	return((static_cast<CCameraPlugin*>(this))->CameraVersion());
   1.223 +	}
   1.224 +
   1.225 +/**
   1.226 +@internalComponent
   1.227 +
   1.228 +Used to create the CCameraStatusWatch class object. This is needed by the method TReservedInfo::SubscribeReserveInfoL
   1.229 +in order to grab the reserve notification from the ECam implementation and hence further forward it to the observer
   1.230 +MReserveObserver.
   1.231 +
   1.232 +@param aReserveObserver
   1.233 +	   Reference to an observer.
   1.234 +
   1.235 +@param aCameraIndex
   1.236 +	   The camera index for which the subscription is needed.
   1.237 +	   
   1.238 +@param aSecureId
   1.239 +	   The secure ID of the process where serialized part of the ECam implementation runs.
   1.240 +
   1.241 +@leave May leave with any error code
   1.242 +*/
   1.243 +CCameraStatusWatch* CCameraStatusWatch::NewL(MReserveObserver& aReserveObserver, TInt aCameraIndex, TInt aSecureId)
   1.244 +	{
   1.245 +	CCameraStatusWatch* self = new(ELeave) CCameraStatusWatch(aReserveObserver, aCameraIndex, aSecureId);
   1.246 +	CleanupStack::PushL(self);
   1.247 +	self->ConstructL();
   1.248 +	CleanupStack::Pop();
   1.249 +	return self;
   1.250 +	}
   1.251 +
   1.252 +/**
   1.253 +Destructor. 
   1.254 +The destructor has to be called by the client when it does not need the desired reserve notifications any more.
   1.255 +
   1.256 +@publishedPartner
   1.257 +@prototype
   1.258 +*/
   1.259 +EXPORT_C CCameraStatusWatch::~CCameraStatusWatch()
   1.260 +	{
   1.261 +	Cancel();
   1.262 +	iProperty.Close();
   1.263 +	}
   1.264 +
   1.265 +/**
   1.266 +Constructor
   1.267 +*/	
   1.268 +CCameraStatusWatch::CCameraStatusWatch(MReserveObserver& aReserveObserver, TInt aCameraIndex, TInt aSecureId): 
   1.269 +																					   CActive(EPriorityHigh), 
   1.270 +																					   iReserveObserver(aReserveObserver),
   1.271 +																					   iCameraIndex(aCameraIndex),
   1.272 +																					   iSecureId(aSecureId)
   1.273 +	{
   1.274 +	}
   1.275 +
   1.276 +/**
   1.277 +Second Phase Constructor.
   1.278 +Attaches to the Property as implied by the camera index, adds the active object to the active scheduler list and kicks
   1.279 +off the	RunL.
   1.280 +
   1.281 +@leave May leave with any error code
   1.282 +
   1.283 +@note Serialized part of the ECam implementation is assumed to define the Properties and publish them whenever there is 
   1.284 +	  change in the reserve status.
   1.285 +*/
   1.286 +void CCameraStatusWatch::ConstructL()
   1.287 +	{
   1.288 +	switch(iCameraIndex)
   1.289 +		{
   1.290 +		case KCameraIndex0:
   1.291 +			{
   1.292 +			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex0ReservedStatus));
   1.293 +			break;	
   1.294 +			}
   1.295 +		case KCameraIndex1:
   1.296 +			{
   1.297 +			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex1ReservedStatus));
   1.298 +			break;	
   1.299 +			}
   1.300 +		case KCameraIndex2:
   1.301 +			{
   1.302 +			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex2ReservedStatus));
   1.303 +			break;	
   1.304 +			}
   1.305 +		case KCameraIndex3:
   1.306 +			{
   1.307 +			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex3ReservedStatus));
   1.308 +			break;	
   1.309 +			}
   1.310 +		case KCameraIndex4:
   1.311 +			{
   1.312 +			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex4ReservedStatus));
   1.313 +			break;	
   1.314 +			}
   1.315 +		case KCameraIndex5:
   1.316 +			{
   1.317 +			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex5ReservedStatus));
   1.318 +			break;	
   1.319 +			}
   1.320 +		case KCameraIndex6:
   1.321 +			{
   1.322 +			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex6ReservedStatus));
   1.323 +			break;	
   1.324 +			}
   1.325 +		case KCameraIndex7:
   1.326 +			{
   1.327 +			User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex7ReservedStatus));
   1.328 +			break;	
   1.329 +			}
   1.330 +		default:
   1.331 +			{
   1.332 +			User::Leave(KErrArgument);
   1.333 +			}
   1.334 +		}
   1.335 +
   1.336 +	CActiveScheduler::Add(this);
   1.337 +	
   1.338 +	iProperty.Subscribe(iStatus);
   1.339 +	SetActive();
   1.340 +	}
   1.341 +
   1.342 +/**
   1.343 +Re-issues the subscription notice. Checks the updated value of the Property and notifies the client via 
   1.344 +MReserveObserver. 
   1.345 +
   1.346 +@note Serialized part of the ECam implementation is assumed to define the Properties and publish them whenever there is 
   1.347 +	  change in the reserve status.
   1.348 +*/
   1.349 +void CCameraStatusWatch::RunL()
   1.350 +	{
   1.351 +	TBool reserved;
   1.352 +	TInt error = iProperty.Get(reserved);
   1.353 +	
   1.354 +	TECamReserveStatus reserveStatus;
   1.355 +	if(error != KErrNone)
   1.356 +		{
   1.357 +		reserveStatus = ECameraStatusUnknown;
   1.358 +		}
   1.359 +	else
   1.360 +		{
   1.361 +		if(!reserved)
   1.362 +			{
   1.363 +			reserveStatus = ECameraUnReserved;
   1.364 +			}
   1.365 +		else
   1.366 +			{
   1.367 +			reserveStatus = ECameraReserved;
   1.368 +			}	
   1.369 +		}
   1.370 +	
   1.371 +	iReserveObserver.ReserveStatus(iCameraIndex, reserveStatus, error);
   1.372 +	
   1.373 +	if(error == KErrNone)
   1.374 +		{
   1.375 +		iProperty.Subscribe(iStatus);
   1.376 +		SetActive();
   1.377 +		}
   1.378 +	}	
   1.379 +
   1.380 +/** 
   1.381 +Cancels any outstanding subscription.
   1.382 +*/
   1.383 +void CCameraStatusWatch::DoCancel()
   1.384 +	{
   1.385 +	iProperty.Cancel();
   1.386 +	}
   1.387 +
   1.388 +/**
   1.389 +Client uses it to subscribe for the reserve notification of particular camera. The notifications are send to the client
   1.390 +through MReserveObserver callbacks. Should the client not wish to continue with the subscription, it is supposed
   1.391 +to delete the CCameraStatusWatch class pointer passed to it. 
   1.392 +
   1.393 +@param aReserveObserver
   1.394 +	   Reference to an observer
   1.395 +	   
   1.396 +@param aCameraIndex
   1.397 +	   The index of the camera for which the subscription is to be done.
   1.398 +	   
   1.399 +@param aCameraStatusWatch
   1.400 +	   Reference to the CCameraStatusWatch*. Client is supposed to delete the CCameraStatusWatch object once it does not wish to
   1.401 +	   further continue with the subscription.
   1.402 +	   
   1.403 +@leave May leave with any error code.
   1.404 +*/
   1.405 +EXPORT_C void TReservedInfo::SubscribeReserveInfoL(MReserveObserver& aReserveObserver, TInt aCameraIndex, CCameraStatusWatch*& aCameraStatusWatch)
   1.406 +	{
   1.407 +	// Get the MSecureIdPlugin 
   1.408 +	TUid interfaceUid = {KUidOnboardCameraSecureIdPlugin};
   1.409 +	TUid dtor;
   1.410 +	MSecureIdPlugin* secureIdInfo = 
   1.411 +		static_cast<MSecureIdPlugin*>
   1.412 +			(MmPluginUtils::CreateImplementationL(interfaceUid, dtor, KECamPluginMatchString, KRomOnlyResolverUid));
   1.413 +												  
   1.414 +	CleanupStack::PushL(secureIdInfo);
   1.415 +	
   1.416 +	//Retrieve the secure ID
   1.417 +	TInt secureId = 0;
   1.418 +	secureIdInfo->GetSecureIdL(secureId);
   1.419 +	
   1.420 +	secureIdInfo->Release();
   1.421 +	
   1.422 +	CleanupStack::Pop(secureIdInfo);
   1.423 +
   1.424 +	REComSession::DestroyedImplementation(dtor);
   1.425 +	REComSession::FinalClose(); // don't have to do this here, but might as well tidy up
   1.426 +	
   1.427 +	//create CCameraStatusWatch and kicks off RunL. This implies property attached and subscribed.
   1.428 +	CCameraStatusWatch* cameraStatusWatch = CCameraStatusWatch::NewL(aReserveObserver, aCameraIndex, secureId);
   1.429 +	aCameraStatusWatch = cameraStatusWatch;
   1.430 +	}
   1.431 +	
   1.432 +/**
   1.433 +Default Constructor
   1.434 +*/		
   1.435 +EXPORT_C CCamera::CCamera()
   1.436 +	{	
   1.437 +	}