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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include <ecam/ecamplugin.h>
18 #include <ecam/ecaminfoplugin.h>
19 #include "ecamversion.h"
20 #include <mm/mmpluginutils.h>
22 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
23 #include <ecamuidsdef.hrh>
24 #include <ecamconst.h>
26 _LIT(KECamImplFaulty,"FaultyECamImpl");
27 const TUint KPanicECamWrongEventClassUsed = 1;
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;
38 EXPORT_C TECAMEvent::TECAMEvent(TUid aEventType, TInt aErrorCode)
39 : iEventType(aEventType), iErrorCode(aErrorCode)
43 EXPORT_C TECAMEvent::TECAMEvent()
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.
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
62 TECAMEvent class reference providing details of a particular event
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.
76 EXPORT_C TBool TECAMEvent2::IsEventEncapsulationValid(const TECAMEvent& aECAMEvent)
79 checks whether the event type being represented by aECAMEvent belongs to this class or not.
82 if(aECAMEvent.iEventType.iUid <= KECamUidEvent2RangeEnd && aECAMEvent.iEventType.iUid >= KECamUidEvent2RangeBegin)
84 TECAMEvent2 ecamEvent = static_cast<const TECAMEvent2&>(aECAMEvent);
87 event type is being correctly represented only if its class uid
88 matches with uid used for class TECAMEvent2
90 if (ecamEvent.EventClassUsed().iUid == KUidECamEventClass2UidValue)
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
100 User::Panic(KECamImplFaulty, KPanicECamWrongEventClassUsed);
104 switch(aECAMEvent.iEventType.iUid)
107 case KUidECamEventCameraSettingPreCaptureWarningUidValue:
108 case KUidECamEventCIPSetColorSwapEntryUidValue:
109 case KUidECamEventCIPRemoveColorSwapEntryUidValue:
110 case KUidECamEventCIPSetColorAccentEntryUidValue:
111 case KUidECamEventCIPRemoveColorAccentEntryUidValue:
113 event type belongs to this class
116 TECAMEvent2 ecamEvent = static_cast<const TECAMEvent2&>(aECAMEvent);
119 event type is being correctly represented only if its class uid
120 matches with uid used for class TECAMEvent2
122 if (ecamEvent.EventClassUsed().iUid == KUidECamEventClass2UidValue)
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
132 User::Panic(KECamImplFaulty, KPanicECamWrongEventClassUsed);
138 Ignore if event type does not belong to this class
148 A UID to define the type of event.
151 The error code associated with the event.
154 This signifies different things for different valid events.
157 For KUidECamEventCIPSetColorSwapEntry; KUidECamEventCIPRemoveColorSwapEntry; KUidECamEventCIPSetColorAccentEntry
158 and KUidECamEventCIPRemoveColorAccentEntry, aParam represents color entry.
160 For KUidECamEventCameraSettingPreCaptureWarning, aParam represents bit field describing all PreCaptureWarnings currently issued.
162 Future events may also use this class.
164 EXPORT_C TECAMEvent2::TECAMEvent2(TUid aEventType, TInt aErrorCode, TInt aParam)
165 : TECAMEvent(aEventType, aErrorCode), iEventClassUsed(KUidECamEventClass2), iParam(aParam)
170 Gives the uid representing this version of TECAMEvent base class.
172 @return Uid representing this version of TECAMEvent base class. Uid used is KUidECamEventClass2.
174 EXPORT_C const TUid& TECAMEvent2::EventClassUsed() const
176 return iEventClassUsed;
180 EXPORT_C TInt CCamera::CamerasAvailable()
182 return CCameraPlugin::CamerasAvailable();
186 EXPORT_C CCamera* CCamera::NewL(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority)
188 return CCameraPlugin::NewL(aObserver, aCameraIndex, aPriority, KCameraDefaultVersion);
191 EXPORT_C CCamera* CCamera::NewDuplicateL(MCameraObserver2& aObserver,TInt aCameraHandle)
193 return CCameraPlugin::NewDuplicateL(aObserver, aCameraHandle, KCameraDefaultVersion);
197 EXPORT_C CCamera* CCamera::NewL(MCameraObserver& aObserver,TInt aCameraIndex)
199 return CCameraPlugin::NewL(aObserver, aCameraIndex, KCameraDefaultVersion);
202 EXPORT_C CCamera* CCamera::NewDuplicateL(MCameraObserver& aObserver,TInt aCameraHandle)
204 return CCameraPlugin::NewDuplicateL(aObserver, aCameraHandle, KCameraDefaultVersion);
207 EXPORT_C CCamera* CCamera::New2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority)
209 return CCameraPlugin::NewL(aObserver, aCameraIndex, aPriority,KCameraFirstVersion);
212 EXPORT_C CCamera* CCamera::NewDuplicate2L(MCameraObserver2& aObserver,TInt aCameraHandle)
214 return CCameraPlugin::NewDuplicateL(aObserver, aCameraHandle, KCameraFirstVersion);
217 EXPORT_C TInt CCamera::CameraVersion()
219 return((static_cast<CCameraPlugin*>(this))->CameraVersion());
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
229 @param aReserveObserver
230 Reference to an observer.
233 The camera index for which the subscription is needed.
236 The secure ID of the process where serialized part of the ECam implementation runs.
238 @leave May leave with any error code
240 CCameraStatusWatch* CCameraStatusWatch::NewL(MReserveObserver& aReserveObserver, TInt aCameraIndex, TInt aSecureId)
242 CCameraStatusWatch* self = new(ELeave) CCameraStatusWatch(aReserveObserver, aCameraIndex, aSecureId);
243 CleanupStack::PushL(self);
251 The destructor has to be called by the client when it does not need the desired reserve notifications any more.
256 EXPORT_C CCameraStatusWatch::~CCameraStatusWatch()
265 CCameraStatusWatch::CCameraStatusWatch(MReserveObserver& aReserveObserver, TInt aCameraIndex, TInt aSecureId):
266 CActive(EPriorityHigh),
267 iReserveObserver(aReserveObserver),
268 iCameraIndex(aCameraIndex),
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
278 @leave May leave with any error code
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.
283 void CCameraStatusWatch::ConstructL()
289 User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex0ReservedStatus));
294 User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex1ReservedStatus));
299 User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex2ReservedStatus));
304 User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex3ReservedStatus));
309 User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex4ReservedStatus));
314 User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex5ReservedStatus));
319 User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex6ReservedStatus));
324 User::LeaveIfError(iProperty.Attach(TUid::Uid(iSecureId), KUidECamPropertyCameraIndex7ReservedStatus));
329 User::Leave(KErrArgument);
333 CActiveScheduler::Add(this);
335 iProperty.Subscribe(iStatus);
340 Re-issues the subscription notice. Checks the updated value of the Property and notifies the client via
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.
346 void CCameraStatusWatch::RunL()
349 TInt error = iProperty.Get(reserved);
351 TECamReserveStatus reserveStatus;
352 if(error != KErrNone)
354 reserveStatus = ECameraStatusUnknown;
360 reserveStatus = ECameraUnReserved;
364 reserveStatus = ECameraReserved;
368 iReserveObserver.ReserveStatus(iCameraIndex, reserveStatus, error);
370 if(error == KErrNone)
372 iProperty.Subscribe(iStatus);
378 Cancels any outstanding subscription.
380 void CCameraStatusWatch::DoCancel()
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.
390 @param aReserveObserver
391 Reference to an observer
394 The index of the camera for which the subscription is to be done.
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.
400 @leave May leave with any error code.
402 EXPORT_C void TReservedInfo::SubscribeReserveInfoL(MReserveObserver& aReserveObserver, TInt aCameraIndex, CCameraStatusWatch*& aCameraStatusWatch)
404 // Get the MSecureIdPlugin
405 TUid interfaceUid = {KUidOnboardCameraSecureIdPlugin};
407 MSecureIdPlugin* secureIdInfo =
408 static_cast<MSecureIdPlugin*>
409 (MmPluginUtils::CreateImplementationL(interfaceUid, dtor, KECamPluginMatchString, KRomOnlyResolverUid));
411 CleanupStack::PushL(secureIdInfo);
413 //Retrieve the secure ID
415 secureIdInfo->GetSecureIdL(secureId);
417 secureIdInfo->Release();
419 CleanupStack::Pop(secureIdInfo);
421 REComSession::DestroyedImplementation(dtor);
422 REComSession::FinalClose(); // don't have to do this here, but might as well tidy up
424 //create CCameraStatusWatch and kicks off RunL. This implies property attached and subscribed.
425 CCameraStatusWatch* cameraStatusWatch = CCameraStatusWatch::NewL(aReserveObserver, aCameraIndex, secureId);
426 aCameraStatusWatch = cameraStatusWatch;
432 EXPORT_C CCamera::CCamera()