os/mm/imagingandcamerafws/cameraunittest/src/TSU_ECM_ADV/ECamObserverTest.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 
     2 // ECamObserverTest.cpp
     3 
     4 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     5 // All rights reserved.
     6 // This component and the accompanying materials are made available
     7 // under the terms of "Eclipse Public License v1.0"
     8 // which accompanies this distribution, and is available
     9 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
    10 //
    11 // Initial Contributors:
    12 // Nokia Corporation - initial contribution.
    13 //
    14 // Contributors:
    15 //
    16 // Description:
    17 //
    18 
    19 #include <ecam.h>
    20 
    21 #include "ECamObserverTest.h"
    22 
    23 
    24 void RECamObserverTest::HandleEvent(const TECAMEvent& aEvent)
    25 	{
    26 	TBool eventEncapsulation = TECAMEvent2::IsEventEncapsulationValid(aEvent);
    27 	
    28 	if(eventEncapsulation)
    29 		{
    30 		TECAMEvent2 ecamEvent = static_cast<const TECAMEvent2&>(aEvent);
    31 		
    32 		iEventUid = ecamEvent.iEventType;
    33 		iParam	  = ecamEvent.iParam;
    34 		iError	= ecamEvent.iErrorCode;
    35 		return;
    36 		}
    37 		
    38 	iEventUidTwo = iEventUid; 
    39 	iEventUid 	= aEvent.iEventType;
    40 	iError  	= aEvent.iErrorCode;
    41 	}
    42 	
    43 void RECamObserverTest::ViewFinderReady(MCameraBuffer& /*aCameraBuffer*/,TInt aError)
    44 	{
    45 	iError  = aError;
    46 	}
    47 	
    48 void RECamObserverTest::ImageBufferReady(MCameraBuffer& /*aCameraBuffer*/,TInt aError)
    49 	{
    50 	iError  = aError;
    51 	}
    52 	
    53 void RECamObserverTest::VideoBufferReady(MCameraBuffer& /*aCameraBuffer*/,TInt aError)
    54 	{
    55 	iError  = aError;
    56 	}
    57 	
    58 void RECamObserverTest::CheckNotification(const TUid& aEventUid, TVerdict& aResult)
    59 	{
    60     INFO_PRINTF4(_L("Expected event %x, received event %x. Error %d."), aEventUid.iUid, iEventUid.iUid, iError); 
    61 	if (aEventUid != iEventUid || iError != KErrNone)
    62 		{
    63 	    aResult = EFail;
    64 	    }	
    65 	}
    66 	
    67 void RECamObserverTest::CheckNotificationTwo(const TUid& aEventUid, TVerdict& aResult)
    68 	{
    69     INFO_PRINTF4(_L("Expected event %x, received event %x. Error %d."), aEventUid.iUid, iEventUid.iUid, iError); 
    70     if (aEventUid != iEventUidTwo || iError != KErrNone)
    71 		{
    72 	    aResult = EFail;
    73 	    }	
    74 	}
    75 	
    76 void RECamObserverTest::CheckNotificationNeg(const TUid& aEventUid, TVerdict& aResult)
    77 	{
    78     INFO_PRINTF4(_L("Expected event %x, received event %x. Error %d."), aEventUid.iUid, iEventUid.iUid, iError); 
    79 	if (aEventUid != iEventUid || iError == KErrNone)
    80 		{
    81 	    aResult = EFail;
    82 	    }
    83 	}
    84 	
    85 void RECamObserverTest::CheckNotificationImgProc(const TUid& aEventUid, TInt aParam, TVerdict& aResult)
    86 	{
    87     INFO_PRINTF3(_L("Expected event %x, received event %x."), aEventUid.iUid, iEventUid.iUid); 
    88     INFO_PRINTF3(_L("Expected param %d, received param %d."), aParam, iParam); 
    89     INFO_PRINTF2(_L("Error %d."), iError); 
    90 	if (aEventUid != iEventUid || aParam != iParam || iError != KErrNone)
    91 		{
    92 	    aResult = EFail;
    93 	    }	
    94 	}
    95 
    96 
    97 
    98 void RECamContinousZoomObserverTest::ContinuousZoomProgress(CCamera::CCameraContinuousZoom& /*aContinuousZoomHandle*/, TInt aZoomFactor, TInt aError)
    99 	{
   100 	INFO_PRINTF3(_L("ContinuousZoomProgress: New zoom factor achieved = %d, error %d"), aZoomFactor, aError);
   101 	}
   102 
   103 void RECamContinousZoomObserverTest::ContinuousZoomCompleted(CCamera::CCameraContinuousZoom& /*aContinuousZoomHandle*/, TInt aFinalZoomFactor, TInt aError)
   104 	{
   105 	INFO_PRINTF3(_L("ContinuousZoomCompleted: Target zoom factor %d reached. Completed with error %d"), aFinalZoomFactor, aError);
   106 	}
   107 
   108 TInt RECamContinousZoomObserverTest::CustomInterface(TUid /*aInterface*/, TAny*& /*aPtrInterface*/)
   109 	{
   110 	return KErrNone;
   111 	}