Update contrib.
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.
22 #include <ecam/mcamerasnapshot.h>
23 #include <ecamimageprocessing.h>
24 #include <ecam/camerahistogram.h>
25 #include <ecam/implementationfactoryintf.h>
28 Factory function that creates a new camera snapshot object on the heap.
31 A reference to the camera object for which a camera snapshot object is to be created.
33 @leave KErrNoMemory if out of memory; also any system wide error.
35 @return A pointer to the newly created camera snapshot object.
37 @note This will be deprecated shortly. Snapshot should be used via CCameraImageCapture::GetSnapshotHandleL() or
38 CCameraVideoCaptureControl::GetSnapshotHandleL().
40 @note Clients using MCameraObserver are not recommended to use this extension class since they cannot handle events.
42 EXPORT_C CCamera::CCameraSnapshot* CCamera::CCameraSnapshot::NewL(CCamera& aCamera)
44 CCamera::CCameraSnapshot* self = new (ELeave) CCamera::CCameraSnapshot(aCamera);
45 CleanupStack::PushL(self);
47 CleanupStack::Pop(self);
54 Factory function that creates a new camera snapshot object specifically for image capture or video capture.
57 A reference to the camera object for which a camera snapshot object is to be created.
60 A reference to the MImplementationFactory derived object.
62 @param aClientViewFinderId
63 The client viewfinder on which this client snapshot will be displayed.
65 @leave KErrNoMemory if out of memory; also any system wide error.
67 @return A pointer to a fully constructed camera snapshot object.
69 EXPORT_C CCamera::CCameraSnapshot* CCamera::CCameraSnapshot::CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory, TInt aClientViewFinderId)
71 CCamera::CCameraSnapshot* self = new (ELeave) CCamera::CCameraSnapshot(aCamera);
72 CleanupStack::PushL(self);
73 self->ConstructL(aImplFactory, aClientViewFinderId);
74 CleanupStack::Pop(self);
79 CCameraSnapshot second phase constructor.
81 This function is used to initialise internal state of the object.
82 It uses reference to the camera to retrieve snapshot interface pointer.
84 @leave KErrNotSupported if this functionality is not supported; also any system wide error.
86 void CCamera::CCameraSnapshot::ConstructL()
88 iImpl = static_cast<MCameraSnapshot*>(iOwner.CustomInterface(KECamMCameraSnapshotUid));
92 User::Leave(KErrNotSupported);
95 iImpl2 = static_cast<MCameraSnapshot2*>(iOwner.CustomInterface(KECamMCameraSnapshot2Uid));
101 CCameraSnapshot second phase constructor
103 Function used to initialise internal state of the object specifically for image capture or video capture.
104 This may be used in other possible cases as well.
107 A constant reference to the MImplementationFactory derived object.
109 @param aClientViewFinderId
110 The client viewfinder on which this client snapshot will be displayed.
112 @leave KErrNoMemory Out of memory; or any other error code as well.
114 @note This method is supposed to be used by this class only.
116 void CCamera::CCameraSnapshot::ConstructL(const MImplementationFactory& aImplFactory, TInt aClientViewFinderId)
119 TAny* implPtr = NULL;
121 err = aImplFactory.GetImpl(implPtr, KECamMCameraSnapshotUid);
126 iImpl = static_cast<MCameraSnapshot*>(implPtr);
129 err = aImplFactory.GetImpl(implPtr, KECamMCameraSnapshot2Uid);
130 if (err != KErrNone && err != KErrNotSupported)
134 iImpl2 = static_cast<MCameraSnapshot2*>(implPtr);
136 iImpl2->SetClientViewFinderId(aClientViewFinderId);
140 Constructor for the CCamera::CCameraSnapshot class.
143 A reference to the camera object for which a camera snapshot object is to be created.
145 CCamera::CCameraSnapshot::CCameraSnapshot(CCamera& aOwner):iOwner(aOwner), iImpl(NULL), iImpl2(NULL)
152 Destructor for the CCamera::CCameraSnapshot class.
154 @note The child objects(for example,hisotgrams) created out of this snapshot class object shall be
158 EXPORT_C CCamera::CCameraSnapshot::~CCameraSnapshot()
173 Gets a list of camera formats for which the ECam implementation supports snapshots.
175 @return Bit field containing the supported camera formats as CCamera::TFormat values.
177 EXPORT_C TUint32 CCamera::CCameraSnapshot::SupportedFormats()
179 return iImpl->SupportedFormats();
183 @deprecated Use void PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
185 Sets the properties of the snapshot data including the background colour and the position of the snapshot.
188 The image format that the snapshot must have.
190 The top left corner position (in pixels) which determines the layout of the snapshot image
191 within the dimensions provided by the aSize parameter when the snapshot has been scaled
192 maintaining its aspect ratio. See also SetPositionL().
194 The size of the snapshot in pixels.
196 The background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
197 and does not fully fill the dimension provided by the aSize parameter. See also SetBgColorL().
198 @param aMaintainAspectRatio
199 Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down.
201 @leave KErrNotSupported if the specified image format is not supported; also any system wide error.
203 EXPORT_C void CCamera::CCameraSnapshot::PrepareSnapshotL(CCamera::TFormat aFormat, const TPoint& aPosition, const TSize& aSize, const TRgb& aBgColor, TBool aMaintainAspectRatio)
205 iImpl->PrepareSnapshotL(aFormat, aPosition, aSize, aBgColor, aMaintainAspectRatio);
209 @deprecated Use void PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
211 Sets the properties of the snapshot data, excluding the background colour and the position of the snapshot.
212 This method can be used when the client wishes to determine the layout and background colour after the
213 snapshot image has been generated. See also SetPositionL() and SetBgColorL().
216 The image format that the snapshot must have.
218 The size of the snapshot in pixels.
219 @param aMaintainAspectRatio
220 Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down.
222 @leave KErrNotSupported if the specified image format is not supported; also any system wide error.
224 EXPORT_C void CCamera::CCameraSnapshot::PrepareSnapshotL(CCamera::TFormat aFormat, const TSize& aSize, TBool aMaintainAspectRatio)
226 iImpl->PrepareSnapshotL(aFormat, aSize, aMaintainAspectRatio);
230 @deprecated Use void SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
232 Sets the background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
233 and does not fully fill the snapshot size as specified in PrepareSnapshot().
236 The new background colour.
238 @leave KErrNotSupported if the specified image format is not supported; also any system wide error.
240 EXPORT_C void CCamera::CCameraSnapshot::SetBgColorL(const TRgb& aBgColor)
242 iImpl->SetBgColorL(aBgColor);
246 @deprecated Use void SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
248 Sets the top left corner position (in pixels), where the snapshot should be laid out after scaling
249 down (maintaining its aspect ratio). The position is within the dimensions provided by the snapshot
250 size specified in PrepareSnapshot().
253 The top left corner position in pixels of the snapshot.
255 @leave KErrNotSupported if the specified image format is not supported; also any system wide error.
257 EXPORT_C void CCamera::CCameraSnapshot::SetPositionL(const TPoint& aPosition)
259 iImpl->SetPositionL(aPosition);
263 @deprecated Use void GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const;
265 Determines if the snapshot feature is active.
267 @return ETrue, if StartSnapshot() has been called, otherwise EFalse.
269 EXPORT_C TBool CCamera::CCameraSnapshot::IsSnapshotActive() const
271 return iImpl->IsSnapshotActive();
275 @deprecated Use void EnableSnapshotL();
277 Activates the snapshot feature. Calls to this method when the snapshot feature is already active
280 The client will not receive snapshot notifications until the snapshot feature is activated.
282 @see KUidECamEventCameraSnapshot
284 EXPORT_C void CCamera::CCameraSnapshot::StartSnapshot()
286 iImpl->StartSnapshot();
290 @deprecated Use void DisableSnapshotL();
292 Deactivates the snapshot feature if it is active.
294 Once the snapshot has been deactivated, the client will no longer receive notifications about snapshots.
296 EXPORT_C void CCamera::CCameraSnapshot::StopSnapshot()
298 iImpl->StopSnapshot();
302 @deprecated Use callbacks: MCaptureImageObserver::ClientSnapshotForImageReady and MCaptureVideoObserver::ClientSnapshotReady
304 Returns the snapshot data from ECam implementation to the client.
306 The data is returned in an MCameraBuffer object. In the case where the driving mode returns more
307 than one image (burst mode, bracket mode, etc.) the buffer contains several snapshots which may
308 be returned in any order. The aFrameIndexOrder array provides the image sequence numbers in the
309 order in which the snapshots for those images are returned within the MCameraBuffer.
311 @note The client application using this API should provide MCameraObserver2 interface to be
312 signalled when snapshot data is available to be retrieved from the ECAM implementation.
314 @see KUidECamEventCameraSnapshot
316 @param aFrameIndexOrder
317 A reference to an array that will receive the image sequence numbers in the order to which
318 the snapshots within MCameraBuffer relate.
320 @return A reference to an MCameraBuffer which will contain the returned snapshot image data.
322 @leave KErrNoMemory if the ECam implementation has not been able to create the camera buffer;
323 also any system wide error.
325 EXPORT_C MCameraBuffer& CCamera::CCameraSnapshot::SnapshotDataL(RArray<TInt>& aFrameIndexOrder)
327 return iImpl->SnapshotDataL(aFrameIndexOrder);
331 Retrieve pointer to histogram API in order to use it specifically for snapshots.
333 @return Pointer to use histogram API specifically for the snapshots.
335 @leave May leave with any error code.
337 @note Different types of histogram may be used for a snapshot. Every time this method will be called on the
338 CCameraSnapshot class object, a new type of histogram will be created.
340 EXPORT_C CCamera::CCameraV2Histogram* CCamera::CCameraSnapshot::CreateHistogramHandleL() const
344 MImplementationFactory* implFactory = NULL;
346 iImpl2->CreateHistogramImplFactoryL(implFactory);
348 CleanupReleasePushL(*implFactory);
349 CCamera::CCameraV2Histogram* histogram = CCamera::CCameraV2Histogram::CreateL(iOwner, *implFactory);
350 CleanupStack::Pop(implFactory);
352 implFactory->Release();
362 Sets the properties of the snapshot. ECam implementation may use a different size than that specified by this method.
363 GetSnapshotParametersL may be used by the client know the actual parameters being used for snapshot creation.
365 @param aSnapshotParameters
366 The snaspshot parameters.
368 @leave May leave with any error code.
370 @note This method is used to provide snapshot parameters.
372 EXPORT_C void CCamera::CCameraSnapshot::PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)
376 iImpl2->PrepareSnapshotL(aSnapshotParameters);
380 User::Leave(KErrNotSupported);
385 Retrieves the snapshot parameters used by the ECam implementation for snapshot creation.
387 @param aSnapshotParameters
388 Retrieves the currently used snapshot parameters.
390 @leave May leave with any error code.
392 @note This method is used to retrieve snapshot parameters.
394 EXPORT_C void CCamera::CCameraSnapshot::GetSnapshotParametersL(CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)
398 iImpl2->GetSnapshotParametersL(aSnapshotParameters);
402 User::Leave(KErrNotSupported);
407 Sets/updates the snapshot parameters.
409 @param aSnapshotParameters
410 The desired snapshot parameters.
412 @leave May leave with any error code.
414 @note This method is used to set/update snapshot parameters.
416 EXPORT_C void CCamera::CCameraSnapshot::SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)
420 iImpl2->SetSnapshotParametersL(aSnapshotParameters);
424 User::Leave(KErrNotSupported);
429 Retrieves the current status for the snapshot.
431 @param aSnapshotState
432 Retrieves information about the snapshot current state.
434 @leave May leave with any error code.
436 @note This method is used to retrieve the snapshot status.
438 EXPORT_C void CCamera::CCameraSnapshot::GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const
442 iImpl2->GetSnapshotStatusL(aSnapshotState);
446 User::Leave(KErrNotSupported);
451 The method specifies the frames to be used from video captured data in order to create snapshot for video.
453 @param aSnapshotVideoFrames
454 A TSnapshotVideoFrames used to specify the desired frames to be used for creating snapshots for video.
456 @leave May leave with any error code.
458 EXPORT_C void CCamera::CCameraSnapshot::SelectSnapshotVideoFramesL(CCamera::CCameraSnapshot::TSnapshotVideoFrames aSnapshotVideoFrames)
462 iImpl2->SelectSnapshotVideoFramesL(aSnapshotVideoFrames);
466 User::Leave(KErrNotSupported);
471 Activates the snapshot feature. Calls to this method when the snapshot feature is already active will be ignored.
473 The client will not receive snapshot notifications until the snapshot feature is activated.
475 Client shall implement the observers: MCaptureImageObserver and MCaptureVideoObserver. Snapshot notifications will be send
476 to the clients via these observers and not through events.
478 @leave KErrNotSupported if the implementation of this method is not present.
480 EXPORT_C void CCamera::CCameraSnapshot::EnableSnapshotL()
484 iImpl2->EnableSnapshot();
488 User::Leave(KErrNotSupported);
493 Deactivates the snapshot feature if it is active.
495 Once the snapshot has been deactivated, the client will no longer receive notifications about snapshots.
497 @leave KErrNotSupported if the implementation of this method is not present.
499 EXPORT_C void CCamera::CCameraSnapshot::DisableSnapshotL()
503 iImpl2->DisableSnapshot();
507 User::Leave(KErrNotSupported);
512 Constructor for the TSnapshotParameters class.
513 Sets the size and version of this class.
515 EXPORT_C CCamera::CCameraSnapshot::TSnapshotParameters::TSnapshotParameters()
517 iSize = sizeof(CCamera::CCameraSnapshot::TSnapshotParameters);
518 iVersion = KECamSnapshotParametersCurrentVersion;
522 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
523 Intended to be used for implementation of methods where this class reference is passed as function arguments.
524 Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
525 is made to run on an old implementation, an error may occur once the old implementation detects this by getting
526 the size information of the T class passed. Also, if an old application is made to run on a new implementation, this can be
527 corrrectly handled if the derived class variables handling is done in a proper 'if-else' statement.
529 @return The size of the class.
531 @note The size will be modified when the T-class gets updated.
533 EXPORT_C TUint CCamera::CCameraSnapshot::TSnapshotParameters::Size() const
539 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
540 members get used at a later stage.
542 @return The version of the class.
544 @note The version will be modified when the T-class gets updated.
546 EXPORT_C TUint CCamera::CCameraSnapshot::TSnapshotParameters::Version() const
552 Indicates whether the aspect ratio of the snapshot image has to maintained (if ETrue) or not (if EFalse)
555 @return TBool: ETrue implies aspect ratio has to be maintained, EFalse otherwise.
557 @see CCamera::CCameraSnapshot::TSnapshotParameters::iIsAspectRatioMaintained
559 EXPORT_C TBool CCamera::CCameraSnapshot::TSnapshotParameters::IsAspectRatioMaintained() const
561 if (iIsAspectRatioMaintained)
572 Sets the state to inform whether the aspect ratio of the snapshot image has to be maintained or not while scaling
575 @param aIsAspectRatioMaintained
576 ETrue implies must be maintained, EFalse otherwise.
578 @see CCamera::CCameraSnapshot::TSnapshotParameters::iIsAspectRatioMaintained
580 EXPORT_C void CCamera::CCameraSnapshot::TSnapshotParameters::SetAspectRatioState(TBool aIsAspectRatioMaintained)
582 iIsAspectRatioMaintained = static_cast<TUint>(aIsAspectRatioMaintained);