os/mm/imagingandcamerafws/cameraunittest/src/ECamUnitTestPlugin/AdvancedSettings.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/imagingandcamerafws/cameraunittest/src/ECamUnitTestPlugin/AdvancedSettings.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,2138 @@
1.4 +// Copyright (c) 2004-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 +
1.20 +#include <ecom/ecom.h>
1.21 +#include <ecom/implementationproxy.h>
1.22 +#include <ecamuids.hrh>
1.23 +#include <ecam.h>
1.24 +#include "ECamUnitTestPluginUids.hrh"
1.25 +#include "AdvancedSettings.h"
1.26 +#include <ecamerrors.h>
1.27 +
1.28 +#include <ecamadvsettings.h>
1.29 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
1.30 +#include <ecamadvsettingsconst.h>
1.31 +#include <ecamadvsettingsdef.h>
1.32 +#include <ecamimageprocessingconst.h>
1.33 +#include <ecamconst.h>
1.34 +#endif
1.35 +
1.36 +const TInt KContinuousAutoFocusTimeoutValue = 20000;
1.37 +const TInt KBrightnessAdjMinValue = -50;
1.38 +const TInt KBrightnessAdjMaxValue = 50;
1.39 +const TInt KDefaultShutterSpeed = 0;
1.40 +const TInt KDefaultFocusDistance = 0;
1.41 +const TInt KDefaultAperture = 280;
1.42 +const TInt KBracketStartIndex = 0;
1.43 +const TInt KBracketFrames = 2;
1.44 +const TBool KDefaultRedEyeReduce = EFalse;
1.45 +const TInt KFlashCompensationStep = 2;
1.46 +const TInt KFlashCompensationInSteps = 1;
1.47 +const TBool KExternalFlashPresentState = EFalse;
1.48 +const TInt KManualFlashPowerLevel = 0;
1.49 +const TInt KExposureCompensationStep = 3;
1.50 +const TInt KExposureCompensationInSteps = 2;
1.51 +const TBool KApertureExposureLockOn = EFalse;
1.52 +const TBool KShootClickOn = EFalse;
1.53 +const TInt KTimerInterval = 0;
1.54 +const TInt KBurstImages = 0;
1.55 +const TBool KExposureLockOn = EFalse;
1.56 +const TBool KAutoFocusLockOn = EFalse;
1.57 +const TBool KAutomaticSizeSelectionChangeOn = EFalse;
1.58 +const TInt KWBColorTemperature = 6000;
1.59 +const TBool KFlashReadyState = EFalse;
1.60 +const TInt KSupportedISORateType = 0x1F;
1.61 +const TBool KCapableActualISOValue = EFalse;
1.62 +const TInt KAFAssistantLightManual = 0x01;
1.63 +const TInt KConcurrentColorOpSupported = 0x01;
1.64 +const TInt KDefault = 0x01;
1.65 +const TInt KFocusRangeSupported = 0x7F;
1.66 +const TInt KWhiteBalanceSupported = 0x0FFF;
1.67 +
1.68 +//
1.69 +// CCamPresets
1.70 +//
1.71 +CCamPresets::CCamPresets(CCamUnitTestPlugin& aOwner): iOwner(aOwner)
1.72 + {
1.73 + iSupportedPresets[0] = KUidECamPresetOutdoor;
1.74 + iSupportedPresets[1] = KUidECamPresetBeach;
1.75 + iSupportedPresets[2] = KUidECamPresetNightPartyIndoor;
1.76 + iSupportedPresets[3] = KUidECamPresetNone;
1.77 +
1.78 + iCurrentPreset = KUidECamPresetNone;
1.79 +
1.80 + iAffectedSettings[0] = KUidECamEventCameraSettingAperture;
1.81 + iAffectedSettings[1] = KUidECamEventCameraSettingIsoRateType;
1.82 + iAffectedSettings[2] = KUidECamEventCameraSettingIsoRate;
1.83 +
1.84 + iRangeRestrictedSettings.Reset();
1.85 + iIsPresetUnLockSupported = EFalse;
1.86 + iIsPresetLocked = ETrue;
1.87 + }
1.88 +
1.89 +CCamPresets::~CCamPresets()
1.90 + {
1.91 + Dll::FreeTls();
1.92 + iRangeRestrictedSettings.Close();
1.93 + }
1.94 +
1.95 +CCamPresets* CCamPresets::NewL(CCamUnitTestPlugin& aOwner)
1.96 + {
1.97 + CDataGlobal* globalData = static_cast <CDataGlobal*> (Dll::Tls());
1.98 +
1.99 + if(!globalData)
1.100 + {
1.101 + globalData = new (ELeave) CDataGlobal;
1.102 + CleanupStack::PushL(globalData);
1.103 +
1.104 + globalData->iReferenceCount = 0;
1.105 + globalData->iCamPresets = new (ELeave) CCamPresets(aOwner);
1.106 + globalData->iCamPresets->iRefCount = 1;
1.107 +
1.108 + TInt error = Dll::SetTls(globalData);
1.109 + if (error)
1.110 + {
1.111 + delete globalData->iCamPresets;
1.112 + User::Leave(error);
1.113 + }
1.114 +
1.115 + CleanupStack::Pop(globalData);
1.116 +
1.117 + return static_cast <CCamPresets*> (globalData->iCamPresets);
1.118 + }
1.119 + else
1.120 + {
1.121 + CCamPresets* self = globalData->iCamPresets;
1.122 +
1.123 + globalData->iReferenceCount++;
1.124 + self->iRefCount = globalData->iReferenceCount + 1;
1.125 + if (globalData->iReferenceCount == 1 )
1.126 + {
1.127 + delete globalData;
1.128 + Dll::FreeTls();
1.129 + }
1.130 + else
1.131 + {
1.132 + TInt error = Dll::SetTls(globalData);
1.133 + if (error)
1.134 + {
1.135 + delete globalData->iCamPresets;
1.136 + User::Leave(error);
1.137 + }
1.138 + }
1.139 + return static_cast <CCamPresets*> (self);
1.140 + }
1.141 + }
1.142 +
1.143 +void CCamPresets::Release()
1.144 + {
1.145 + iRefCount--;
1.146 + if(!iRefCount)
1.147 + {
1.148 + delete this;
1.149 + }
1.150 + }
1.151 +
1.152 +void CCamPresets::GetSupportedPresetsL(RArray<TUid>& aPresets) const
1.153 + {
1.154 + aPresets.Reset();
1.155 + TInt count = sizeof(iSupportedPresets)/sizeof(TUid);
1.156 +
1.157 + for (TInt i = 0; i < count; i++)
1.158 + {
1.159 + aPresets.AppendL(iSupportedPresets[i]);
1.160 + }
1.161 + }
1.162 +
1.163 +void CCamPresets::SetPreset(TUid aPreset)
1.164 + {
1.165 + TInt response = KErrECamParameterNotInRange;
1.166 +
1.167 + for (TInt i = 0; i < KSupportedPresetsNumber; i++)
1.168 + {
1.169 + if (iSupportedPresets[i] == aPreset)
1.170 + {
1.171 + iCurrentPreset = aPreset;
1.172 + response = KErrNone;
1.173 +
1.174 + switch(aPreset.iUid)
1.175 + {
1.176 + case KUidECamPresetOutdoorUidValue:
1.177 + {
1.178 + response = iRangeRestrictedSettings.Append(KUidECamEventCameraSettingIsoRate);
1.179 + if(iOwner.iSupportedISORates.Count() == KNumSupportedIsoRate)
1.180 + {
1.181 + iOwner.iSupportedISORates.Remove(KNumSupportedIsoRate-1);
1.182 + if(iOwner.iIsoRate == KMaxIsoRate)
1.183 + {
1.184 + iOwner.iIsoRate = KIsoRate5;
1.185 + }
1.186 + }
1.187 + iIsPresetUnLockSupported = ETrue;
1.188 +
1.189 + break;
1.190 + }
1.191 +
1.192 + //fall through
1.193 + case KUidECamPresetBeachUidValue:
1.194 + case KUidECamPresetNightPartyIndoorUidValue:
1.195 + case KUidECamPresetNoneUidValue:
1.196 + default:
1.197 + {
1.198 + if(iOwner.iSupportedISORates.Count() == KNumSupportedIsoRate-1)
1.199 + {
1.200 + iOwner.iSupportedISORates.AppendL(KMaxIsoRate);
1.201 + }
1.202 + iIsPresetUnLockSupported = EFalse;
1.203 + break;
1.204 + }
1.205 + }
1.206 +
1.207 + break;
1.208 + }
1.209 + }
1.210 +
1.211 + iOwner.Notify(aPreset, response);
1.212 +
1.213 + if(aPreset == KUidECamPresetOutdoor)
1.214 + {
1.215 + iOwner.Notify(KUidECamEventRangeRestricted, KErrNone);
1.216 + }
1.217 + }
1.218 +
1.219 +TUid CCamPresets::Preset() const
1.220 + {
1.221 + return iCurrentPreset;
1.222 + }
1.223 +
1.224 +void CCamPresets::GetAffectedSettingsL(RArray<TUid>& aSettings) const
1.225 + {
1.226 + aSettings.Reset();
1.227 +
1.228 + if (iCurrentPreset!=KUidECamPresetNone)
1.229 + {
1.230 + TInt count = sizeof(iAffectedSettings)/sizeof(TUid);
1.231 + for (TInt i = 0; i < count; i++)
1.232 + {
1.233 + aSettings.AppendL(iAffectedSettings[i]);
1.234 + }
1.235 + }
1.236 + }
1.237 +
1.238 +void CCamPresets::GetAssociatedSettingsL(TUid aPreset, RArray<TUid>& aSettings) const
1.239 + {
1.240 + aSettings.Reset();
1.241 + if (aPreset == KUidECamPresetNone)
1.242 + {
1.243 + User::Leave(KErrArgument);
1.244 + }
1.245 + TInt count = sizeof(iAffectedSettings)/sizeof(TUid);
1.246 + for (TInt i = 0; i < count; i++)
1.247 + {
1.248 + aSettings.AppendL(iAffectedSettings[i]);
1.249 + }
1.250 + }
1.251 +
1.252 +void CCamPresets::GetRangeRestrictedSettingsL(RArray<TUid>& aRangeRestrictedSettings) const
1.253 + {
1.254 + for(TInt index=0; index<iRangeRestrictedSettings.Count(); index++)
1.255 + {
1.256 + aRangeRestrictedSettings.AppendL(iRangeRestrictedSettings[index]);
1.257 + }
1.258 + }
1.259 +
1.260 +void CCamPresets::GetFeatureRestrictedSettingsL(RArray<TUid>& aFeatureRestrictedSettings) const
1.261 + {
1.262 + aFeatureRestrictedSettings.Reset();
1.263 + }
1.264 +
1.265 +void CCamPresets::IsPresetUnlockSupportedL(TBool& aUnlockSupported) const
1.266 + {
1.267 + aUnlockSupported = iIsPresetUnLockSupported;
1.268 + }
1.269 +
1.270 +void CCamPresets::LockPreset()
1.271 + {
1.272 + iIsPresetLocked = ETrue;
1.273 + iOwner.Notify(KUidECamEventPresetLocked, KErrNone);
1.274 + }
1.275 +
1.276 +void CCamPresets::UnlockPreset()
1.277 + {
1.278 + TInt error = KErrNotSupported;
1.279 + if(iIsPresetUnLockSupported)
1.280 + {
1.281 + iIsPresetLocked = EFalse;
1.282 + error = KErrNone;
1.283 + }
1.284 + iOwner.Notify(KUidECamEventPresetUnlocked, error);
1.285 + }
1.286 +
1.287 +//
1.288 +// CCamImgProc
1.289 +//
1.290 +CCamImgProc::CCamImgProc(CCamUnitTestPlugin& aOwner): iOwner(aOwner)
1.291 + {
1.292 + }
1.293 +
1.294 +CCamImgProc::~CCamImgProc()
1.295 + {
1.296 + Dll::FreeTls();
1.297 + iActiveSequence.Close();
1.298 + iSupportedTransformations.Close();
1.299 + }
1.300 +
1.301 +CCamImgProc* CCamImgProc::NewL(CCamUnitTestPlugin& aOwner)
1.302 + {
1.303 + CDataGlobal* globalData = static_cast <CDataGlobal*> (Dll::Tls());
1.304 +
1.305 + if(!globalData)
1.306 + {
1.307 + globalData = new (ELeave) CDataGlobal;
1.308 + CleanupStack::PushL(globalData);
1.309 +
1.310 + globalData->iReferenceCount = 0;
1.311 + globalData->iCamImgProc = new (ELeave) CCamImgProc(aOwner);
1.312 + CleanupStack::PushL(globalData->iCamImgProc);
1.313 + globalData->iCamImgProc->ConstructL();
1.314 + globalData->iCamImgProc->iRefCount = 1;
1.315 + CleanupStack::Pop(globalData->iCamImgProc);
1.316 + TInt error = Dll::SetTls(globalData);
1.317 + if (error)
1.318 + {
1.319 + delete globalData->iCamImgProc;
1.320 + User::Leave(error);
1.321 + }
1.322 + CleanupStack::Pop(globalData);
1.323 +
1.324 + return static_cast <CCamImgProc*> (globalData->iCamImgProc);
1.325 + }
1.326 + else
1.327 + {
1.328 + CCamImgProc* self = globalData->iCamImgProc;
1.329 +
1.330 + globalData->iReferenceCount++;
1.331 + self->iRefCount = globalData->iReferenceCount + 1;
1.332 + if (globalData->iReferenceCount == 2 )
1.333 + {
1.334 + delete globalData;
1.335 + Dll::FreeTls();
1.336 + }
1.337 + else
1.338 + {
1.339 + TInt error = Dll::SetTls(globalData);
1.340 + if (error)
1.341 + {
1.342 + delete globalData->iCamImgProc;
1.343 + User::Leave(error);
1.344 + }
1.345 + }
1.346 + return static_cast <CCamImgProc*> (self);
1.347 + }
1.348 + }
1.349 +
1.350 +void CCamImgProc::Release()
1.351 + {
1.352 + iRefCount--;
1.353 + if(!iRefCount)
1.354 + {
1.355 + delete this;
1.356 + }
1.357 + }
1.358 +
1.359 +void CCamImgProc::ConstructL()
1.360 + {
1.361 + iSupportedTransformations.AppendL(KUidECamEventImageProcessingAdjustBrightness);
1.362 + iSupportedTransformations.AppendL(KUidECamEventImageProcessingAdjustContrast);
1.363 + iSupportedTransformations.AppendL(KUidECamEventImageProcessingEffect);
1.364 + iBrightnessRange[0] = KBrightnessAdjMinValue; // min
1.365 + iBrightnessRange[1] = KBrightnessAdjMaxValue; // max value, step assumed 1
1.366 +
1.367 + iSupportedColorSwapCapabilities.iSupportedSourceRepresentation = KDefault;
1.368 + iSupportedColorSwapCapabilities.iSupportedTargetRepresentation = KDefault;
1.369 + iSupportedColorSwapCapabilities.iSupportedSourceRgbGroupingMode = KDefault;
1.370 + iSupportedColorSwapCapabilities.iSupportedTargetRgbGroupingMode = KDefault;
1.371 + iSupportedColorSwapCapabilities.iIsCapabilityUniform = ETrue;
1.372 +
1.373 + iSupportedColorAccentCapabilities.iSupportedSourceRepresentation = KDefault;
1.374 + iSupportedColorAccentCapabilities.iSupportedSourceRgbGroupingMode = KDefault;
1.375 + iSupportedColorAccentCapabilities.iIsCapabilityUniform = ETrue;
1.376 + }
1.377 +
1.378 +void CCamImgProc::GetSupportedTransformationsL(RArray<TUid>& aTransformations) const
1.379 + {
1.380 + aTransformations.Reset();
1.381 + if (iOwner.iCameras[iOwner.iCameraIndex])
1.382 + {
1.383 + for (TInt i=0; i<iSupportedTransformations.Count(); i++)
1.384 + {
1.385 + aTransformations.AppendL(iSupportedTransformations[i]);
1.386 + }
1.387 + }
1.388 + }
1.389 +
1.390 +void CCamImgProc::GetActiveTransformationsL(RArray<TUid>& aTransformations) const
1.391 + {
1.392 + aTransformations.Reset();
1.393 + if (iOwner.iCameras[iOwner.iCameraIndex])
1.394 + {
1.395 + for (TInt i=0; i<iSupportedTransformations.Count(); i++)
1.396 + {
1.397 + aTransformations.AppendL(iSupportedTransformations[i]);
1.398 + }
1.399 + }
1.400 + }
1.401 +
1.402 +void CCamImgProc::GetTransformationSupportedValuesL(TUid aTransformation, RArray<TInt>& aValues, TValueInfo& aInfo) const
1.403 + {
1.404 + if (iSupportedTransformations.Find(aTransformation)==KErrNotFound)
1.405 + {
1.406 + aValues.Reset();
1.407 + aInfo = ENotActive;
1.408 + }
1.409 + else
1.410 + {
1.411 + if (aTransformation == KUidECamEventImageProcessingAdjustBrightness)
1.412 + {
1.413 + aValues.AppendL(iBrightnessRange[0]);
1.414 + aValues.AppendL(iBrightnessRange[1]);
1.415 + aInfo = EContinuousRangeMinMax;
1.416 + }
1.417 + else
1.418 + {
1.419 + if(aTransformation == KUidECamEventImageProcessingEffect)
1.420 + {
1.421 + aValues.AppendL(CCamera::CCameraImageProcessing::EEffectColorSwap | CCamera::CCameraImageProcessing::EEffectColorAccent);
1.422 + aInfo = EBitField;
1.423 + }
1.424 + else
1.425 + {
1.426 + aInfo = EDiscreteSteps;
1.427 + if (aTransformation == iTransformation)
1.428 + {
1.429 + aValues.AppendL(iValue);
1.430 + }
1.431 + else
1.432 + {
1.433 + aValues.AppendL(KECamImageProcessingDefaultValue);
1.434 + }
1.435 + }
1.436 + }
1.437 + }
1.438 + }
1.439 +
1.440 +TInt CCamImgProc::TransformationValue(TUid aTransformation) const
1.441 + {
1.442 + if (iSupportedTransformations.Find(aTransformation) == KErrNotFound)
1.443 + {
1.444 + return KErrNotFound;
1.445 + }
1.446 + else
1.447 + {
1.448 + if (aTransformation == iTransformation)
1.449 + {
1.450 + return iValue;
1.451 + }
1.452 + else
1.453 + {
1.454 + return KECamImageProcessingDefaultValue;
1.455 + }
1.456 + }
1.457 + }
1.458 +
1.459 +TInt CCamImgProc::GetTransformationValue(TUid aTransformation, TInt& aTransformationValue) const
1.460 + {
1.461 + if (iSupportedTransformations.Find(aTransformation) == KErrNotFound)
1.462 + {
1.463 + return KErrNotFound;
1.464 + }
1.465 + else
1.466 + {
1.467 + if (aTransformation == iTransformation)
1.468 + {
1.469 + aTransformationValue = iValue;
1.470 + }
1.471 + else
1.472 + {
1.473 + aTransformationValue = KECamImageProcessingDefaultValue;
1.474 + }
1.475 +
1.476 + return KErrNone;
1.477 + }
1.478 + }
1.479 +
1.480 +void CCamImgProc::SetTransformationValue(TUid aTransformation, TInt aValue)
1.481 + {
1.482 + TInt response;
1.483 +
1.484 + if (iSupportedTransformations.Find(aTransformation) == KErrNotFound)
1.485 + {
1.486 + response = KErrECamSettingDisabled;
1.487 + }
1.488 + else
1.489 + {
1.490 + if (aTransformation == KUidECamEventImageProcessingAdjustBrightness)
1.491 + {
1.492 + // if outside the range
1.493 + if (aValue < iBrightnessRange[0] || aValue > iBrightnessRange[1])
1.494 + {
1.495 + response = KErrECamParameterNotInRange;
1.496 + }
1.497 + else
1.498 + {
1.499 + response = KErrNone;
1.500 + }
1.501 + }
1.502 + else
1.503 + {
1.504 + response = KErrNone;
1.505 + if(aTransformation == KUidECamEventImageProcessingEffect)
1.506 + {
1.507 + if(aValue == CCamera::CCameraImageProcessing::EEffectColorSwap)
1.508 + {
1.509 + iColorSwapParameter.iEntryStatus = ENotActive;
1.510 + }
1.511 + else
1.512 + {
1.513 + if(aValue == CCamera::CCameraImageProcessing::EEffectColorAccent)
1.514 + {
1.515 + iColorAccentParameter.iEntryStatus = ENotActive;
1.516 + }
1.517 + else
1.518 + {
1.519 + response = KErrArgument;
1.520 + }
1.521 + }
1.522 + }
1.523 + }
1.524 +
1.525 + if (response == KErrNone)
1.526 + {
1.527 + iTransformation = aTransformation;
1.528 + iValue = aValue;
1.529 + }
1.530 + }
1.531 + iOwner.Notify(aTransformation, response);
1.532 + }
1.533 +
1.534 +void CCamImgProc::GetActiveTransformSequenceL(RArray<TUid>& aTransformSequence) const
1.535 + {
1.536 + aTransformSequence.Reset();
1.537 + if (iOwner.iCameras[iOwner.iCameraIndex])
1.538 + {
1.539 + for (TInt i = 0; i < iActiveSequence.Count(); i++)
1.540 + {
1.541 + aTransformSequence.AppendL(iActiveSequence[i]);
1.542 + }
1.543 + }
1.544 + }
1.545 +
1.546 +void CCamImgProc::SetActiveTransformSequenceL(RArray<TUid>& aNewTransformSequence)
1.547 + {
1.548 + iActiveSequence.Reset();
1.549 + if (iOwner.iCameras[iOwner.iCameraIndex])
1.550 + {
1.551 + for (TInt i=0; i<aNewTransformSequence.Count(); i++)
1.552 + {
1.553 + iActiveSequence.AppendL(aNewTransformSequence[i]);
1.554 + }
1.555 + }
1.556 + }
1.557 +
1.558 +void CCamImgProc::SetSourceRect( const TRect& aRect)
1.559 + {
1.560 + iSourceRect = aRect;
1.561 + }
1.562 +void CCamImgProc::GetSourceRect(TRect& aRect) const
1.563 + {
1.564 + aRect = iSourceRect;
1.565 + }
1.566 +
1.567 +void CCamImgProc::GetConcurrentColorSwappingsSupportedL(TInt& aConcurrentColorSwappingSupported) const
1.568 + {
1.569 + aConcurrentColorSwappingSupported = KConcurrentColorOpSupported;
1.570 + }
1.571 +
1.572 +void CCamImgProc::GetColorSwapCapabilitiesL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationCapabilities& aColorSwapCapabilities) const
1.573 + {
1.574 + if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
1.575 + {
1.576 + User::Leave(KErrArgument);
1.577 + }
1.578 +
1.579 + if(aColorSwapCapabilities.Size() != sizeof(CCamera::CCameraImageProcessing::TColorOperationCapabilities) ||
1.580 + aColorSwapCapabilities.Version() != KECamColorOperationCapabilitiesCurrentVersion)
1.581 + {
1.582 + // new app. running on old impl.
1.583 + User::Leave(KErrNotSupported);
1.584 + }
1.585 + else
1.586 + {
1.587 + aColorSwapCapabilities = iSupportedColorSwapCapabilities;
1.588 + }
1.589 + }
1.590 +
1.591 +void CCamImgProc::SetColorSwapEntry(TInt aIndex, const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorSwapParameters)
1.592 + {
1.593 + TInt response = KErrNone;
1.594 +
1.595 + if(aColorSwapParameters.Size() != sizeof(CCamera::CCameraImageProcessing::TColorOperationEntry) ||
1.596 + aColorSwapParameters.iNumBitsIgnored.Size() != sizeof(CCamera::CCameraImageProcessing::TBitsIgnore) ||
1.597 + aColorSwapParameters.Version() != KECamColorOperationEntryCurrentVersion ||
1.598 + aColorSwapParameters.iNumBitsIgnored.Version() != KECamBitsIgnoreCurrentVersion
1.599 + )
1.600 + {
1.601 + // new app. running on old impl.
1.602 + iOwner.Notify2(KUidECamEvent2CIPSetColorSwapEntry, KErrNotSupported, aIndex);
1.603 + }
1.604 + else
1.605 + {
1.606 + if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
1.607 + {
1.608 + iOwner.Notify2(KUidECamEvent2CIPSetColorSwapEntry, KErrArgument, aIndex);
1.609 + }
1.610 + else
1.611 + {
1.612 + if(!CheckColorSwapEntry(aColorSwapParameters))
1.613 + {
1.614 + // if color operation entry is different from what is supported....
1.615 + iOwner.Notify2(KUidECamEvent2CIPSetColorSwapEntry, KErrArgument, aIndex);
1.616 + }
1.617 + else
1.618 + {
1.619 + iColorSwapParameter = aColorSwapParameters;
1.620 + iColorSwapParameter.iEntryStatus = EDiscreteSteps;
1.621 +
1.622 + iOwner.Notify2(KUidECamEvent2CIPSetColorSwapEntry, response, aIndex);
1.623 + }
1.624 + }
1.625 + }
1.626 + }
1.627 +
1.628 +void CCamImgProc::RemoveColorSwapEntry(TInt aIndex)
1.629 + {
1.630 + TInt response = KErrNone;
1.631 +
1.632 + if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
1.633 + {
1.634 + iOwner.Notify2(KUidECamEventCIPRemoveColorSwapEntry, KErrArgument, aIndex);
1.635 + }
1.636 + else
1.637 + {
1.638 + iColorSwapParameter.iEntryStatus = ENotActive;
1.639 + iOwner.Notify2(KUidECamEventCIPRemoveColorSwapEntry, response, aIndex);
1.640 + }
1.641 + }
1.642 +
1.643 +void CCamImgProc::GetColorSwapEntryL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationEntry& aColorSwapParameters) const
1.644 + {
1.645 + if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
1.646 + {
1.647 + User::Leave(KErrArgument);
1.648 + }
1.649 +
1.650 + if(aColorSwapParameters.Size() != sizeof(CCamera::CCameraImageProcessing::TColorOperationEntry) ||
1.651 + aColorSwapParameters.iNumBitsIgnored.Size() != sizeof(CCamera::CCameraImageProcessing::TBitsIgnore))
1.652 + {
1.653 + // new app. running on old impl.
1.654 + User::Leave(KErrNotSupported);
1.655 + }
1.656 + else
1.657 + {
1.658 + aColorSwapParameters = iColorSwapParameter;
1.659 + }
1.660 + }
1.661 +
1.662 +void CCamImgProc::StartColorSwapping()
1.663 + {
1.664 + TInt response = KErrNone;
1.665 + iOwner.Notify(KUidECamEventCIPStartColorSwap, response);
1.666 + }
1.667 +
1.668 +void CCamImgProc::CancelColorSwappingL()
1.669 + {
1.670 + }
1.671 +
1.672 +void CCamImgProc::GetConcurrentColorAccentSupportedL(TInt& aConcurrentColorAccentSupported) const
1.673 + {
1.674 + aConcurrentColorAccentSupported = KConcurrentColorOpSupported;
1.675 + }
1.676 +
1.677 +void CCamImgProc::GetColorAccentCapabilitiesL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationCapabilities& aColorAccentCapabilities) const
1.678 + {
1.679 + if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
1.680 + {
1.681 + User::Leave(KErrArgument);
1.682 + }
1.683 +
1.684 + if(aColorAccentCapabilities.Size() != sizeof(CCamera::CCameraImageProcessing::TColorOperationCapabilities))
1.685 + {
1.686 + // new app. running on old impl.
1.687 + User::Leave(KErrNotSupported);
1.688 + }
1.689 + else
1.690 + {
1.691 + aColorAccentCapabilities = iSupportedColorAccentCapabilities;
1.692 + }
1.693 + }
1.694 +
1.695 +void CCamImgProc::SetColorAccentEntry(TInt aIndex, const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorAccentParameters)
1.696 + {
1.697 + TInt response = KErrNone;
1.698 +
1.699 + if(aColorAccentParameters.Size() != sizeof(CCamera::CCameraImageProcessing::TColorOperationEntry) ||
1.700 + aColorAccentParameters.iNumBitsIgnored.Size() != sizeof(CCamera::CCameraImageProcessing::TBitsIgnore))
1.701 + {
1.702 + // new app. running on old impl.
1.703 + iOwner.Notify2(KUidECamEventCIPSetColorAccentEntry, KErrNotSupported, aIndex);
1.704 + }
1.705 + else
1.706 + {
1.707 + if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
1.708 + {
1.709 + iOwner.Notify2(KUidECamEventCIPSetColorAccentEntry, KErrArgument, aIndex);
1.710 + }
1.711 + else
1.712 + {
1.713 + if(!CheckColorAccentEntry(aColorAccentParameters))
1.714 + {
1.715 + // if color operation entry is different from what is supported....
1.716 + iOwner.Notify2(KUidECamEventCIPSetColorAccentEntry, KErrArgument, aIndex);
1.717 + }
1.718 + else
1.719 + {
1.720 + iColorAccentParameter = aColorAccentParameters;
1.721 + iColorAccentParameter.iEntryStatus = EDiscreteSteps;
1.722 +
1.723 + iOwner.Notify2(KUidECamEventCIPSetColorAccentEntry, response, aIndex);
1.724 + }
1.725 + }
1.726 + }
1.727 + }
1.728 +
1.729 +void CCamImgProc::RemoveColorAccentEntry(TInt aIndex)
1.730 + {
1.731 + TInt response = KErrNone;
1.732 +
1.733 + if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
1.734 + {
1.735 + iOwner.Notify2(KUidECamEventCIPRemoveColorAccentEntry, KErrArgument, aIndex);
1.736 + }
1.737 + else
1.738 + {
1.739 + iColorAccentParameter.iEntryStatus = ENotActive;
1.740 + iOwner.Notify2(KUidECamEventCIPRemoveColorAccentEntry, response, aIndex);
1.741 + }
1.742 + }
1.743 +
1.744 +void CCamImgProc::GetColorAccentEntryL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationEntry& aColorAccentParameters) const
1.745 + {
1.746 + if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
1.747 + {
1.748 + User::Leave(KErrArgument);
1.749 + }
1.750 +
1.751 + if(aColorAccentParameters.Size() != sizeof(CCamera::CCameraImageProcessing::TColorOperationEntry) ||
1.752 + aColorAccentParameters.iNumBitsIgnored.Size() != sizeof(CCamera::CCameraImageProcessing::TBitsIgnore))
1.753 + {
1.754 + // new app. running on old impl.
1.755 + User::Leave(KErrNotSupported);
1.756 + }
1.757 + else
1.758 + {
1.759 + aColorAccentParameters = iColorAccentParameter;
1.760 + }
1.761 + }
1.762 +
1.763 +void CCamImgProc::StartColorAccent()
1.764 + {
1.765 + TInt response = KErrNone;
1.766 + iOwner.Notify(KUidECamEventCIPStartColorAccent, response);
1.767 + }
1.768 +
1.769 +void CCamImgProc::CancelColorAccentL()
1.770 + {
1.771 + }
1.772 +
1.773 +TBool CCamImgProc::CheckColorSwapEntry(const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorSwapParameters) const
1.774 + {
1.775 + if(aColorSwapParameters.iSourceColorRepresentation != KDefault)
1.776 + {
1.777 + return EFalse;
1.778 + }
1.779 +
1.780 + if(aColorSwapParameters.iTargetColorRepresentation != KDefault)
1.781 + {
1.782 + return EFalse;
1.783 + }
1.784 +
1.785 + if(aColorSwapParameters.iColorOperationSourceRgbGroupingMode != KDefault)
1.786 + {
1.787 + return EFalse;
1.788 + }
1.789 +
1.790 + if(aColorSwapParameters.iColorOperationTargetRgbGroupingMode != KDefault)
1.791 + {
1.792 + return EFalse;
1.793 + }
1.794 +
1.795 + if(aColorSwapParameters.iNumBitsIgnored.iRedBitsIgnore != 0)
1.796 + {
1.797 + return EFalse;
1.798 + }
1.799 +
1.800 + if(aColorSwapParameters.iNumBitsIgnored.iGreenBitsIgnore != 0)
1.801 + {
1.802 + return EFalse;
1.803 + }
1.804 +
1.805 + if(aColorSwapParameters.iNumBitsIgnored.iBlueBitsIgnore != 0)
1.806 + {
1.807 + return EFalse;
1.808 + }
1.809 +
1.810 + if(aColorSwapParameters.iNumBitsIgnored.iAlphaBitsIgnore != 0)
1.811 + {
1.812 + return EFalse;
1.813 + }
1.814 +
1.815 + return ETrue;
1.816 + }
1.817 +
1.818 +TBool CCamImgProc::CheckColorAccentEntry(const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorAccentParameters) const
1.819 + {
1.820 + if(aColorAccentParameters.iSourceColorRepresentation != KDefault)
1.821 + {
1.822 + return EFalse;
1.823 + }
1.824 +
1.825 + if(aColorAccentParameters.iColorOperationSourceRgbGroupingMode != KDefault)
1.826 + {
1.827 + return EFalse;
1.828 + }
1.829 +
1.830 + if(aColorAccentParameters.iNumBitsIgnored.iRedBitsIgnore != 0)
1.831 + {
1.832 + return EFalse;
1.833 + }
1.834 +
1.835 + if(aColorAccentParameters.iNumBitsIgnored.iGreenBitsIgnore != 0)
1.836 + {
1.837 + return EFalse;
1.838 + }
1.839 +
1.840 + if(aColorAccentParameters.iNumBitsIgnored.iBlueBitsIgnore != 0)
1.841 + {
1.842 + return EFalse;
1.843 + }
1.844 +
1.845 + if(aColorAccentParameters.iNumBitsIgnored.iAlphaBitsIgnore != 0)
1.846 + {
1.847 + return EFalse;
1.848 + }
1.849 +
1.850 + return ETrue;
1.851 + }
1.852 +
1.853 +void CCamImgProc::GetSupportedRelativeOrientationOptionsL(CCamera::CCameraImageProcessing::TOrientationReference /*aOrientationReference*/,
1.854 + TUint& /*aSupportedRelativeRotation*/, TUint& /*aSupportedRelativeMirroring*/, TUint& /*aSupportedRelativeFlipping*/) const
1.855 + {
1.856 + User::Leave(KErrNotSupported);
1.857 + }
1.858 +
1.859 +void CCamImgProc::GetCurrentRelativeOrientationOptionsL(CCamera::CCameraImageProcessing::TOrientationReference& /*aOrientationReference*/,
1.860 + CCamera::CCameraImageProcessing::TRelativeRotation& /*aRelativeRotation*/, CCamera::CCameraImageProcessing::
1.861 + TRelativeMirror& /*aRelativeMirror*/, CCamera::CCameraImageProcessing::TRelativeFlipping& /*aRelativeFlipping*/) const
1.862 + {
1.863 + User::Leave(KErrNotSupported);
1.864 + }
1.865 +
1.866 +void CCamImgProc::SetRelativeOrientationOptions(CCamera::CCameraImageProcessing::TOrientationReference /*aOrientationReference*/,
1.867 + CCamera::CCameraImageProcessing::TRelativeRotation /*aRelativeRotation*/, CCamera::CCameraImageProcessing::
1.868 + TRelativeMirror /*aRelativeMirror*/, CCamera::CCameraImageProcessing::TRelativeFlipping /*aRelativeFlipping*/) const
1.869 + {
1.870 + iOwner.Notify(KUidECamEventImageProcessingTransformRelativeOrientation, KErrNotSupported);
1.871 + }
1.872 +
1.873 +//
1.874 +// CCamAdvSet
1.875 +//
1.876 +
1.877 +CCamAdvSet::CCamAdvSet(CCamUnitTestPlugin& aOwner): iOwner(aOwner)
1.878 + {
1.879 + Init();
1.880 + }
1.881 +
1.882 +CCamAdvSet::~CCamAdvSet()
1.883 + {
1.884 + Dll::FreeTls();
1.885 + }
1.886 +
1.887 +CCamAdvSet* CCamAdvSet::NewL(CCamUnitTestPlugin& aOwner)
1.888 + {
1.889 + CDataGlobal* globalData = static_cast <CDataGlobal*> (Dll::Tls());
1.890 +
1.891 + if(!globalData)
1.892 + {
1.893 + globalData = new (ELeave) CDataGlobal;
1.894 + CleanupStack::PushL(globalData);
1.895 +
1.896 + globalData->iReferenceCount = 0;
1.897 + globalData->iCamAdvSet = new (ELeave) CCamAdvSet(aOwner);
1.898 + globalData->iCamAdvSet->iRefCount = 1;
1.899 + TInt error = Dll::SetTls(globalData);
1.900 + if(error)
1.901 + {
1.902 + delete globalData->iCamAdvSet;
1.903 + User::Leave(error);
1.904 + }
1.905 + CleanupStack::Pop(globalData);
1.906 + return static_cast <CCamAdvSet*> (globalData->iCamAdvSet);
1.907 + }
1.908 + else
1.909 + {
1.910 + CCamAdvSet* self = globalData->iCamAdvSet;
1.911 +
1.912 + globalData->iReferenceCount++;
1.913 + self->iRefCount = globalData->iReferenceCount + 1;
1.914 + if (globalData->iReferenceCount == 3 )
1.915 + {
1.916 + delete globalData;
1.917 + Dll::FreeTls();
1.918 + }
1.919 + else
1.920 + {
1.921 + TInt error = Dll::SetTls(globalData);
1.922 + if(error)
1.923 + {
1.924 + delete globalData->iCamAdvSet;
1.925 + User::Leave(error);
1.926 + }
1.927 + }
1.928 + return static_cast <CCamAdvSet*> (self);
1.929 + }
1.930 + }
1.931 +
1.932 +void CCamAdvSet::Release()
1.933 + {
1.934 + iRefCount--;
1.935 + if(!iRefCount)
1.936 + {
1.937 + delete this;
1.938 + }
1.939 + }
1.940 +
1.941 +void CCamAdvSet::Init()
1.942 + {
1.943 + iShutterSpeed = KDefaultShutterSpeed;
1.944 + iFocusDistance = KDefaultFocusDistance;
1.945 + iAperture = KDefaultAperture;
1.946 + iFocusRange = CCamera::CCameraAdvancedSettings::EFocusRangeAuto;
1.947 + iWhiteBalance = CCamera::EWBAuto;
1.948 +
1.949 + iISORateType = CCamera::CCameraAdvancedSettings::EISOManual;
1.950 + iSupportedISORateType = KSupportedISORateType;
1.951 + iIsCapableActualISOValue = KCapableActualISOValue;
1.952 + iAutoISOIndex = -1;
1.953 + iSupportedAFAssistantLight = KAFAssistantLightManual;
1.954 + iAFAssistantLight = CCamera::CCameraAdvancedSettings::EAFAssistantLightOff;
1.955 + iPixelAspectRatio = CCamera::CCameraAdvancedSettings::EPixelAspect1To1;
1.956 + iFlashMode = CCamera::EFlashNone;
1.957 +
1.958 + iSupportedDriveModes |= CCamera::CCameraAdvancedSettings::EDriveModeSingleShot;
1.959 + iSupportedDriveModes |= CCamera::CCameraAdvancedSettings::EDriveModeBurst;
1.960 + iSupportedDriveModes |= CCamera::CCameraAdvancedSettings::EDriveModeTimeNudgeCapture;
1.961 +
1.962 + iDriveMode = CCamera::CCameraAdvancedSettings::EDriveModeAuto;
1.963 + }
1.964 +
1.965 +CCamera::CCameraAdvancedSettings::TCameraType CCamAdvSet::CameraType() const
1.966 + {
1.967 + return iOwner.iCameraTypes[iOwner.iCameraIndex];
1.968 + }
1.969 +
1.970 +CCamera::CCameraAdvancedSettings::TCameraType CCamAdvSet::CameraType(TInt aCameraIndex) const
1.971 + {
1.972 + if (aCameraIndex >= KECamSetAvailableCameras)
1.973 + {
1.974 + return CCamera::CCameraAdvancedSettings::ECameraUnknown;
1.975 + }
1.976 + else
1.977 + {
1.978 + return iOwner.iCameraTypes[aCameraIndex];
1.979 + }
1.980 + }
1.981 +
1.982 +TBool CCamAdvSet::IsCameraPresent() const
1.983 + {
1.984 + return iOwner.iCameras[iOwner.iCameraIndex];
1.985 + }
1.986 +
1.987 +TBool CCamAdvSet::IsCameraPresent(TInt aCameraIndex) const
1.988 + {
1.989 + if (aCameraIndex >= KECamSetAvailableCameras)
1.990 + {
1.991 + return EFalse;
1.992 + }
1.993 + else
1.994 + {
1.995 + return iOwner.iCameras[aCameraIndex];
1.996 + }
1.997 + }
1.998 +
1.999 +TInt CCamAdvSet::CameraIndex() const
1.1000 + {
1.1001 + return iOwner.iCameraIndex;
1.1002 + }
1.1003 +
1.1004 +TInt CCamAdvSet::SupportedStabilizationModes() const
1.1005 + {
1.1006 + return 0;
1.1007 + }
1.1008 +CCamera::CCameraAdvancedSettings::TStabilizationMode CCamAdvSet::StabilizationMode() const
1.1009 + {
1.1010 + return CCamera::CCameraAdvancedSettings::EStabilizationModeOff;
1.1011 + }
1.1012 +
1.1013 +void CCamAdvSet::SetStabilizationMode(CCamera::CCameraAdvancedSettings::TStabilizationMode /*aStabilizationMode*/)
1.1014 + {
1.1015 + }
1.1016 +
1.1017 +TInt CCamAdvSet::SupportedFocusModes() const
1.1018 + {
1.1019 + return 0;
1.1020 + }
1.1021 +
1.1022 +CCamera::CCameraAdvancedSettings::TFocusMode CCamAdvSet::FocusMode() const
1.1023 + {
1.1024 + return CCamera::CCameraAdvancedSettings::EFocusModeAuto;
1.1025 + }
1.1026 +
1.1027 +void CCamAdvSet::SetFocusMode(CCamera::CCameraAdvancedSettings::TFocusMode /*aFocusMode*/)
1.1028 + {
1.1029 + TInt response = KErrNone;
1.1030 +
1.1031 + RetrieveResult(response);
1.1032 +
1.1033 + iOwner.Notify(KUidECamEventCameraSettingFocusMode, response);
1.1034 + }
1.1035 +
1.1036 +TInt CCamAdvSet::SupportedFocusRanges() const
1.1037 + {
1.1038 + return KFocusRangeSupported;
1.1039 + }
1.1040 +
1.1041 +CCamera::CCameraAdvancedSettings::TFocusRange CCamAdvSet::FocusRange() const
1.1042 + {
1.1043 + return iFocusRange;
1.1044 + }
1.1045 +
1.1046 +void CCamAdvSet::SetFocusRange(CCamera::CCameraAdvancedSettings::TFocusRange aFocusRange )
1.1047 + {
1.1048 + TInt response = KErrNone;
1.1049 +
1.1050 + RetrieveResult(response);
1.1051 +
1.1052 + iFocusRange = aFocusRange;
1.1053 + iOwner.Notify(KUidECamEventCameraSettingFocusRange2, response);
1.1054 + iOwner.Notify(KUidECamEventCameraSettingFocusRange, response);
1.1055 + }
1.1056 +
1.1057 +TInt CCamAdvSet::SupportedAutoFocusTypes() const
1.1058 + {
1.1059 + return 0;
1.1060 + }
1.1061 +
1.1062 +CCamera::CCameraAdvancedSettings::TAutoFocusType CCamAdvSet::AutoFocusType() const
1.1063 + {
1.1064 + return CCamera::CCameraAdvancedSettings::EAutoFocusTypeOff;
1.1065 + }
1.1066 +
1.1067 +void CCamAdvSet::SetAutoFocusType(CCamera::CCameraAdvancedSettings::TAutoFocusType /*aAutoFocusType*/)
1.1068 + {
1.1069 + TInt response = KErrNone;
1.1070 +
1.1071 + RetrieveResult(response);
1.1072 +
1.1073 + iOwner.Notify(KUidECamEventCameraSettingAutoFocusType2, response);
1.1074 + iOwner.Notify(KUidECamEventCameraSettingAutoFocusType, response);
1.1075 + }
1.1076 +
1.1077 +TInt CCamAdvSet::SupportedAutoFocusAreas() const
1.1078 + {
1.1079 + return 0;
1.1080 + }
1.1081 +
1.1082 +CCamera::CCameraAdvancedSettings::TAutoFocusArea CCamAdvSet::AutoFocusArea() const
1.1083 + {
1.1084 + return CCamera::CCameraAdvancedSettings::EAutoFocusTypeAuto;
1.1085 + }
1.1086 +
1.1087 +void CCamAdvSet::SetAutoFocusArea(CCamera::CCameraAdvancedSettings::TAutoFocusArea /*aAutoFocusArea*/)
1.1088 + {
1.1089 + TInt response = KErrNone;
1.1090 +
1.1091 + RetrieveResult(response);
1.1092 +
1.1093 + iOwner.Notify(KUidECamEventCameraSettingAutoFocusArea, response);
1.1094 + }
1.1095 +
1.1096 +TInt CCamAdvSet::FocusDistance() const
1.1097 + {
1.1098 + return iFocusDistance;
1.1099 + }
1.1100 +
1.1101 +void CCamAdvSet::SetFocusDistance(TInt aDistance)
1.1102 + {
1.1103 + TInt response = KErrNone;
1.1104 + if (aDistance >=0)
1.1105 + {
1.1106 + iFocusDistance = aDistance;
1.1107 +
1.1108 + RetrieveResult(response);
1.1109 + }
1.1110 + else
1.1111 + {
1.1112 + response = KErrNotSupported;
1.1113 + }
1.1114 +
1.1115 + iOwner.Notify(KUidECamEventCameraSettingFocusDistance, response);
1.1116 + }
1.1117 +
1.1118 +TInt CCamAdvSet::GetMinFocalLength() const
1.1119 + {
1.1120 + return KErrNotSupported;
1.1121 + }
1.1122 +
1.1123 +void CCamAdvSet::GetSupportedIsoRatesL(RArray<TInt>& aSupportedIsoRates) const
1.1124 + {
1.1125 + //If no ISO is supported by camera, then leave
1.1126 + if(!iOwner.iSupportedISORates.Count())
1.1127 + {
1.1128 + User::Leave(KErrNotSupported);
1.1129 + }
1.1130 +
1.1131 + for(TInt index=0; index < iOwner.iSupportedISORates.Count(); index++)
1.1132 + {
1.1133 + aSupportedIsoRates.AppendL(iOwner.iSupportedISORates[index]);
1.1134 + }
1.1135 + }
1.1136 +
1.1137 +TInt CCamAdvSet::IsoRate() const
1.1138 + {
1.1139 + //this returned value may not be true if ISO type is other than manual and camera
1.1140 + //has no capability to retrieve actual ISO rate.
1.1141 + return iOwner.iIsoRate;
1.1142 + }
1.1143 +
1.1144 +void CCamAdvSet::SetIsoRate(TInt aRate)
1.1145 + {
1.1146 + TInt response;
1.1147 + //check whether the desired rate to be set is being supported or not.
1.1148 + if(iOwner.iSupportedISORates.Find(aRate) == KErrNotFound)
1.1149 + {
1.1150 + response = KErrECamParameterNotInRange;
1.1151 + }
1.1152 + else
1.1153 + {
1.1154 + //set the ISO type to Manual
1.1155 + //this function should be called by SetISORateL as well after doing boundary checkings
1.1156 + //SetISORate(CCamera::CCameraAdvancedSettings::EISOManual, aRate);
1.1157 + iISORateType = CCamera::CCameraAdvancedSettings::EISOManual;
1.1158 + iOwner.iIsoRate = aRate;
1.1159 +
1.1160 + RetrieveResult(response);
1.1161 + }
1.1162 + iOwner.Notify(KUidECamEventCameraSettingIsoRate, response);
1.1163 + }
1.1164 +
1.1165 +void CCamAdvSet::GetSupportedISORateTypeL(TInt& aSupportedISORateTypes) const
1.1166 + {
1.1167 + aSupportedISORateTypes = iSupportedISORateType;
1.1168 + }
1.1169 +
1.1170 +void CCamAdvSet::SetISORate(CCamera::CCameraAdvancedSettings::TISORateType aISORateType, TInt aParam)
1.1171 + {
1.1172 + TInt response = KErrNone;
1.1173 +
1.1174 + if(!(aISORateType & iSupportedISORateType) || iOwner.iSupportedISORates.Count() == 0)
1.1175 + {
1.1176 + response = KErrNotSupported;
1.1177 + }
1.1178 + else
1.1179 + {
1.1180 + switch(aISORateType)
1.1181 + {
1.1182 + case CCamera::CCameraAdvancedSettings::EISOManual:
1.1183 + {
1.1184 + if(iOwner.iSupportedISORates.Find(aParam) == KErrNotFound)
1.1185 + {
1.1186 + response = KErrECamParameterNotInRange;
1.1187 + }
1.1188 + else
1.1189 + {
1.1190 + RetrieveResult(response);
1.1191 + }
1.1192 + break;
1.1193 + }
1.1194 + case CCamera::CCameraAdvancedSettings::EISOAutoUnPrioritised:
1.1195 + {
1.1196 + RetrieveResult(response);
1.1197 + break;
1.1198 + }
1.1199 + case CCamera::CCameraAdvancedSettings::EISOAutoISOPrioritised:
1.1200 + {
1.1201 + if(iOwner.iSupportedISORates.Find(aParam) == KErrNotFound)
1.1202 + {
1.1203 + response = KErrECamParameterNotInRange;
1.1204 + }
1.1205 + else
1.1206 + {
1.1207 + RetrieveResult(response);
1.1208 + }
1.1209 + break;
1.1210 + }
1.1211 + case CCamera::CCameraAdvancedSettings::EISOAutoShutterSpeedPrioritised:
1.1212 + {
1.1213 + RetrieveResult(response);
1.1214 + break;
1.1215 + }
1.1216 + case CCamera::CCameraAdvancedSettings::EISOAutoAperturePrioritised:
1.1217 + {
1.1218 + RetrieveResult(response);
1.1219 + break;
1.1220 + }
1.1221 + default:
1.1222 + response = KErrNotSupported;
1.1223 + }
1.1224 +
1.1225 + // this function should be called by SetISORate ,in old API, as well after doing boundary checkings
1.1226 + // SetISORate(aISORateType, aParam);
1.1227 + // In real impl, following code should be handled by RunL when server responds to the setting request. Error may also occur.
1.1228 + iISORateType = aISORateType;
1.1229 + if(aISORateType == CCamera::CCameraAdvancedSettings::EISOManual)
1.1230 + {
1.1231 + if(response == KErrNone)
1.1232 + {
1.1233 + iOwner.iIsoRate = aParam;
1.1234 + }
1.1235 + }
1.1236 + else
1.1237 + {
1.1238 + if(response == KErrNone)
1.1239 + {
1.1240 + iAutoISOIndex = aParam;
1.1241 + }
1.1242 + }
1.1243 + }
1.1244 +
1.1245 + iOwner.Notify(KUidECamEventCameraSettingIsoRateType, response);
1.1246 + }
1.1247 +
1.1248 +void CCamAdvSet::GetISORateL(CCamera::CCameraAdvancedSettings::TISORateType& aISORateType, TInt& aParam, TInt& aISORate) const
1.1249 + {
1.1250 + //If camera has no ISO rate supported, then leave
1.1251 + if(iOwner.iSupportedISORates.Count() == 0)
1.1252 + {
1.1253 + User::Leave(KErrNotSupported);
1.1254 + }
1.1255 +
1.1256 + if(iISORateType == CCamera::CCameraAdvancedSettings::EISONone)
1.1257 + {
1.1258 + aISORateType = iISORateType;
1.1259 + }
1.1260 + else
1.1261 + {
1.1262 + if(iISORateType != CCamera::CCameraAdvancedSettings::EISOManual)
1.1263 + {
1.1264 + aParam = iAutoISOIndex;
1.1265 +
1.1266 + //if camera is not capable to retrieve actual ISO value in auto ISO modes, KErrNotFound is returned in aISORate.
1.1267 + if(!iIsCapableActualISOValue)
1.1268 + {
1.1269 + aISORate = KErrNotFound;
1.1270 + }
1.1271 + else
1.1272 + {
1.1273 + aISORate = iOwner.iIsoRate;
1.1274 + }
1.1275 + }
1.1276 + else
1.1277 + {
1.1278 + aISORate = iOwner.iIsoRate;
1.1279 + }
1.1280 +
1.1281 + aISORateType = iISORateType;
1.1282 + }
1.1283 + }
1.1284 +
1.1285 +void CCamAdvSet::GetAperturesL(RArray<TInt>& /*aFStops*/, TValueInfo& /*aInfo*/) const
1.1286 + {
1.1287 +
1.1288 + }
1.1289 +
1.1290 +TInt CCamAdvSet::Aperture() const
1.1291 + {
1.1292 + return iAperture;
1.1293 + }
1.1294 +
1.1295 +void CCamAdvSet::SetAperture(TInt aFStop)
1.1296 + {
1.1297 + TInt response = KErrNone;
1.1298 +
1.1299 + iAperture = aFStop;
1.1300 + RetrieveResult(response);
1.1301 +
1.1302 + iOwner.Notify(KUidECamEventCameraSettingAperture, response);
1.1303 + }
1.1304 +
1.1305 +void CCamAdvSet::GetShutterSpeedsL(RArray<TInt>& aShutterSpeeds, TValueInfo& aInfo) const
1.1306 + {
1.1307 + aShutterSpeeds.Reset();
1.1308 + aInfo = ENotActive;
1.1309 + }
1.1310 +
1.1311 +TInt CCamAdvSet::ShutterSpeed() const
1.1312 + {
1.1313 + return iShutterSpeed;
1.1314 + }
1.1315 +
1.1316 +void CCamAdvSet::SetShutterSpeed(TInt aShutterSpeed)
1.1317 + {
1.1318 + TInt response = KErrNone;
1.1319 + if (aShutterSpeed >=0)
1.1320 + {
1.1321 + iShutterSpeed = aShutterSpeed;
1.1322 +
1.1323 + RetrieveResult(response);
1.1324 + }
1.1325 + else
1.1326 + {
1.1327 + response = KErrNotSupported;
1.1328 + }
1.1329 +
1.1330 + iOwner.Notify(KUidECamEventCameraSettingShutterSpeed, response);
1.1331 + }
1.1332 +
1.1333 +TInt CCamAdvSet::SupportedMeteringModes() const
1.1334 + {
1.1335 + return CCamera::CCameraAdvancedSettings::EMeteringModeAuto;
1.1336 + }
1.1337 +
1.1338 +CCamera::CCameraAdvancedSettings::TMeteringMode CCamAdvSet::MeteringMode() const
1.1339 + {
1.1340 + return CCamera::CCameraAdvancedSettings::EMeteringModeAuto;
1.1341 + }
1.1342 +
1.1343 +void CCamAdvSet::SetMeteringMode(CCamera::CCameraAdvancedSettings::TMeteringMode /*aMeteringMode*/)
1.1344 + {
1.1345 + TInt response = KErrNone;
1.1346 +
1.1347 + RetrieveResult(response);
1.1348 +
1.1349 + iOwner.Notify(KUidECamEventCameraSettingMeteringMode, response);
1.1350 + }
1.1351 +
1.1352 +TInt CCamAdvSet::SupportedDriveModes() const
1.1353 + {
1.1354 + return iSupportedDriveModes;
1.1355 + }
1.1356 +
1.1357 +CCamera::CCameraAdvancedSettings::TDriveMode CCamAdvSet::DriveMode() const
1.1358 + {
1.1359 + return iDriveMode;
1.1360 + }
1.1361 +
1.1362 +void CCamAdvSet::SetDriveMode(CCamera::CCameraAdvancedSettings::TDriveMode aDriveMode)
1.1363 + {
1.1364 + TInt response = KErrNone;
1.1365 +
1.1366 + iDriveMode = aDriveMode;
1.1367 +
1.1368 + RetrieveResult(response);
1.1369 +
1.1370 + iOwner.Notify(KUidECamEventCameraSettingDriveMode, response);
1.1371 + }
1.1372 +
1.1373 +TInt CCamAdvSet::SupportedBracketModes() const
1.1374 + {
1.1375 + return CCamera::CCameraAdvancedSettings::EBracketModeOff;
1.1376 + }
1.1377 +
1.1378 +CCamera::CCameraAdvancedSettings::TBracketMode CCamAdvSet::BracketMode() const
1.1379 + {
1.1380 + return CCamera::CCameraAdvancedSettings::EBracketModeOff;
1.1381 + }
1.1382 +
1.1383 +void CCamAdvSet::SetBracketMode(CCamera::CCameraAdvancedSettings::TBracketMode /*aBracketMode*/)
1.1384 + {
1.1385 + TInt response = KErrNone;
1.1386 +
1.1387 + RetrieveResult(response);
1.1388 +
1.1389 + iOwner.Notify(KUidECamEventCameraSettingBracketMode, response);
1.1390 + }
1.1391 +
1.1392 +TInt CCamAdvSet::SupportedBracketParameters() const
1.1393 + {
1.1394 + return CCamera::CCameraAdvancedSettings::EBracketParameterNone;
1.1395 + }
1.1396 +
1.1397 +CCamera::CCameraAdvancedSettings::TBracketParameter CCamAdvSet::BracketParameter() const
1.1398 + {
1.1399 + return CCamera::CCameraAdvancedSettings::EBracketParameterNone;
1.1400 + }
1.1401 +
1.1402 +void CCamAdvSet::SetBracketParameter(CCamera::CCameraAdvancedSettings::TBracketParameter /*aBracketParameter*/)
1.1403 + {
1.1404 + }
1.1405 +
1.1406 +TInt CCamAdvSet::SupportedBracketSteps() const
1.1407 + {
1.1408 + return CCamera::CCameraAdvancedSettings::EBracketStepSmall;
1.1409 + }
1.1410 +
1.1411 +CCamera::CCameraAdvancedSettings::TBracketStep CCamAdvSet::BracketStep() const
1.1412 + {
1.1413 + return CCamera::CCameraAdvancedSettings::EBracketStepSmall;
1.1414 + }
1.1415 +
1.1416 +void CCamAdvSet::SetBracketStep(CCamera::CCameraAdvancedSettings::TBracketStep /*aBracketStep*/)
1.1417 + {
1.1418 +
1.1419 + }
1.1420 +void CCamAdvSet::GetBracketMerge(TInt& aStartIndex, TInt& aFrames) const
1.1421 + {
1.1422 + aStartIndex = KBracketStartIndex;
1.1423 + aFrames = KBracketFrames;
1.1424 + }
1.1425 +
1.1426 +void CCamAdvSet::SetBracketMerge(TInt /*aStartIndex = 0*/, TInt /*aFrames = 2*/)
1.1427 + {
1.1428 +
1.1429 + }
1.1430 +TInt CCamAdvSet::SupportedFlashModes() const
1.1431 + {
1.1432 + return (CCamera::EFlashVideoLight << 1) - 1;
1.1433 + }
1.1434 +
1.1435 +CCamera::TFlash CCamAdvSet::FlashMode() const
1.1436 + {
1.1437 + return CCamera::TFlash(iFlashMode);
1.1438 + }
1.1439 +
1.1440 +void CCamAdvSet::SetFlashMode(CCamera::TFlash aMode)
1.1441 + {
1.1442 + iFlashMode = aMode;
1.1443 + }
1.1444 +
1.1445 +TBool CCamAdvSet::RedEyeReduceOn() const
1.1446 + {
1.1447 + return KDefaultRedEyeReduce;
1.1448 + }
1.1449 +
1.1450 +void CCamAdvSet::SetRedEyeReduceOn(TBool /*aState*/)
1.1451 + {
1.1452 + }
1.1453 +
1.1454 +void CCamAdvSet::GetFlashCompensationStepsL(RArray<TInt>& /*aFlashCompensationSteps*/, TValueInfo& /*aInfo*/) const
1.1455 + {
1.1456 +
1.1457 + }
1.1458 +
1.1459 +TInt CCamAdvSet::FlashCompensationStep() const
1.1460 + {
1.1461 + return KFlashCompensationStep;
1.1462 + }
1.1463 +
1.1464 +TInt CCamAdvSet::GetFlashCompensationStep(TInt& aFlashCompensationStep) const
1.1465 + {
1.1466 + aFlashCompensationStep = KFlashCompensationStep;
1.1467 + return KErrNone;
1.1468 + }
1.1469 +
1.1470 +void CCamAdvSet::GetFlashCompensationRangeInSteps(TInt& /*aNegativeCompensation*/, TInt& /*aPositiveCompensation*/) const
1.1471 + {
1.1472 +
1.1473 + }
1.1474 +void CCamAdvSet::SetFlashCompensationStep(TInt /*aFlashCompensationStep*/)
1.1475 + {
1.1476 +
1.1477 + }
1.1478 +
1.1479 +TInt CCamAdvSet::FlashCompensation() const
1.1480 + {
1.1481 + return KFlashCompensationInSteps;
1.1482 + }
1.1483 +
1.1484 +TInt CCamAdvSet::GetFlashCompensation(TInt& aFlashCompensation) const
1.1485 + {
1.1486 + aFlashCompensation = KFlashCompensationInSteps;
1.1487 + return KErrNone;
1.1488 + }
1.1489 +
1.1490 +void CCamAdvSet::SetFlashCompensation(TInt /*aFlashCompensation*/)
1.1491 + {
1.1492 + }
1.1493 +
1.1494 +TBool CCamAdvSet::IsExternalFlashPresent() const
1.1495 + {
1.1496 + return KExternalFlashPresentState;
1.1497 + }
1.1498 +
1.1499 +void CCamAdvSet::GetManualFlashPowerLevelsL(RArray<TInt>& /*aManualFlashPowerLevels*/, TValueInfo& /*aInfo*/) const
1.1500 + {
1.1501 +
1.1502 + }
1.1503 +
1.1504 +TInt CCamAdvSet::ManualFlashPowerLevel() const
1.1505 + {
1.1506 + return KManualFlashPowerLevel;
1.1507 + }
1.1508 +
1.1509 +void CCamAdvSet::SetManualFlashPowerLevel(TInt /*aManualFlashPowerLevel*/)
1.1510 + {
1.1511 +
1.1512 + }
1.1513 +
1.1514 +TInt CCamAdvSet::SupportedExposureModes() const
1.1515 + {
1.1516 + return CCamera::EExposureAuto;
1.1517 + }
1.1518 +
1.1519 +CCamera::TExposure CCamAdvSet::ExposureMode() const
1.1520 + {
1.1521 + return CCamera::EExposureAuto;
1.1522 + }
1.1523 +
1.1524 +void CCamAdvSet::SetExposureMode(CCamera::TExposure /*aExposureMode = CCamera::EExposureAuto*/)
1.1525 + {
1.1526 + }
1.1527 +
1.1528 +void CCamAdvSet::GetExposureCompensationStepsL(RArray<TInt>& /*aExposureCompensationSteps*/, TValueInfo& /*aInfo*/) const
1.1529 + {
1.1530 + }
1.1531 +
1.1532 +void CCamAdvSet::GetExposureCompensationRangeInSteps(TInt& /*aNegativeCompensation*/, TInt& /*aPositiveCompensation*/) const
1.1533 + {
1.1534 + }
1.1535 +
1.1536 +TInt CCamAdvSet::ExposureCompensationStep() const
1.1537 + {
1.1538 + return KExposureCompensationStep;
1.1539 + }
1.1540 +
1.1541 +TInt CCamAdvSet::GetExposureCompensationStep(TInt& aExposureCompensationStep) const
1.1542 + {
1.1543 + aExposureCompensationStep = KExposureCompensationStep;
1.1544 + return KErrNone;
1.1545 + }
1.1546 +
1.1547 +void CCamAdvSet::SetExposureCompensationStep(TInt /*aExposureCompensationStep*/)
1.1548 + {
1.1549 + }
1.1550 +
1.1551 +TInt CCamAdvSet::ExposureCompensation() const
1.1552 + {
1.1553 + return KExposureCompensationInSteps;
1.1554 + }
1.1555 +
1.1556 +TInt CCamAdvSet::GetExposureCompensation(TInt& aExposureCompensation) const
1.1557 + {
1.1558 + aExposureCompensation = KExposureCompensationInSteps;
1.1559 + return KErrNone;
1.1560 + }
1.1561 +
1.1562 +void CCamAdvSet::SetExposureCompensation(TInt /*aExposureCompensation*/)
1.1563 + {
1.1564 + }
1.1565 +
1.1566 +TInt CCamAdvSet::SupportedWhiteBalanceModes() const
1.1567 + {
1.1568 + return KWhiteBalanceSupported;
1.1569 + }
1.1570 +
1.1571 +CCamera::TWhiteBalance CCamAdvSet::WhiteBalanceMode() const
1.1572 + {
1.1573 + return iWhiteBalance;
1.1574 + }
1.1575 +
1.1576 +void CCamAdvSet::SetWhiteBalanceMode(CCamera::TWhiteBalance aWhiteBalanceMode)
1.1577 + {
1.1578 + TInt response = KErrNone;
1.1579 +
1.1580 + iWhiteBalance = aWhiteBalanceMode;
1.1581 + RetrieveResult(response);
1.1582 +
1.1583 + iOwner.Notify(KUidECamEventCameraSettingsWBValue, response);
1.1584 + }
1.1585 +
1.1586 +TBool CCamAdvSet::ApertureExposureLockOn() const
1.1587 + {
1.1588 + return KApertureExposureLockOn;
1.1589 + }
1.1590 +
1.1591 +void CCamAdvSet::SetApertureExposureLockOn(TBool /*aAELock*/)
1.1592 + {
1.1593 + }
1.1594 +
1.1595 +TBool CCamAdvSet::ShootClickOn() const
1.1596 + {
1.1597 + return KShootClickOn;
1.1598 + }
1.1599 +
1.1600 +void CCamAdvSet::SetShootClickOn(TBool /*aShootClickOn*/)
1.1601 + {
1.1602 + }
1.1603 +
1.1604 +void CCamAdvSet::GetTimerIntervalsL(RArray<TInt>& /*aTimerIntervals*/, TValueInfo& /*aInfo*/) const
1.1605 + {
1.1606 + }
1.1607 +
1.1608 +TInt CCamAdvSet::TimerInterval() const
1.1609 + {
1.1610 + return KTimerInterval;
1.1611 + }
1.1612 +
1.1613 +void CCamAdvSet::SetTimerInterval(TInt /*aTimerInterval*/)
1.1614 + {
1.1615 + }
1.1616 +
1.1617 +void CCamAdvSet::GetTimeLapsePeriodRange(TTime& /*aTimeLapseMin*/, TTime& /*aTimeLapseMax*/) const
1.1618 + {
1.1619 + }
1.1620 +
1.1621 +void CCamAdvSet::GetTimeLapse(TTime& /*aStart*/, TTime& /*aEnd*/, TTime& /*aInterval*/) const
1.1622 + {
1.1623 + }
1.1624 +
1.1625 +void CCamAdvSet::SetTimeLapse(const TTime& /*aStart*/, const TTime& /*aEnd*/, const TTime& /*aInterval*/)
1.1626 + {
1.1627 + }
1.1628 +
1.1629 +CCamera::CCameraAdvancedSettings::TPictureOrientation CCamAdvSet::PictureOrientation() const
1.1630 + {
1.1631 + return CCamera::CCameraAdvancedSettings::EPictureOrientationUnknown;
1.1632 + }
1.1633 +
1.1634 +void CCamAdvSet::SetPictureOrientation(CCamera::CCameraAdvancedSettings::TPictureOrientation /*aOrientation*/)
1.1635 + {
1.1636 + }
1.1637 +
1.1638 +TInt CCamAdvSet::SupportedPixelAspectRatios() const
1.1639 + {
1.1640 + return (CCamera::CCameraAdvancedSettings::EEPixelAspect40To33 << 1) - 1;
1.1641 + }
1.1642 +
1.1643 +CCamera::CCameraAdvancedSettings::TPixelAspectRatio CCamAdvSet::PixelAspectRatio() const
1.1644 + {
1.1645 + return CCamera::CCameraAdvancedSettings::TPixelAspectRatio(iPixelAspectRatio);
1.1646 + }
1.1647 +
1.1648 +void CCamAdvSet::SetPixelAspectRatio(CCamera::CCameraAdvancedSettings::TPixelAspectRatio aPixelAspectRatio)
1.1649 + {
1.1650 + iPixelAspectRatio = aPixelAspectRatio;
1.1651 + }
1.1652 +
1.1653 +TInt CCamAdvSet::SupportedYuvRanges() const
1.1654 + {
1.1655 + return CCamera::CCameraAdvancedSettings::EYuvRangeFull;
1.1656 + }
1.1657 +
1.1658 +CCamera::CCameraAdvancedSettings::TYuvRange CCamAdvSet::YuvRange() const
1.1659 + {
1.1660 + return CCamera::CCameraAdvancedSettings::EYuvRangeFull;
1.1661 + }
1.1662 +
1.1663 +void CCamAdvSet::SetYuvRange(CCamera::CCameraAdvancedSettings::TYuvRange /*aYuvRange*/)
1.1664 + {
1.1665 +
1.1666 + }
1.1667 +TInt CCamAdvSet::BurstImages() const
1.1668 + {
1.1669 + return KBurstImages;
1.1670 + }
1.1671 +
1.1672 +void CCamAdvSet::SetBurstImages(TInt /*aImages*/)
1.1673 + {
1.1674 + }
1.1675 +
1.1676 +void CCamAdvSet::GetOpticalZoomStepsL(RArray<TInt>& /*aOpticalZoomSteps*/, TValueInfo& /*aInfo*/) const
1.1677 + {
1.1678 + }
1.1679 +
1.1680 +TInt CCamAdvSet::OpticalZoom() const
1.1681 + {
1.1682 + return KECamFineResolutionFactor;
1.1683 + }
1.1684 +
1.1685 +void CCamAdvSet::SetOpticalZoom(TInt /*aOpticalZoom*/)
1.1686 + {
1.1687 + }
1.1688 +
1.1689 +void CCamAdvSet::GetDigitalZoomStepsL(RArray<TInt>& /*aDigitalZoomSteps*/,
1.1690 + TValueInfo& /*aInfo*/) const
1.1691 + {
1.1692 + }
1.1693 +
1.1694 +void CCamAdvSet::GetDigitalZoomStepsForStillL(RArray<TInt>& /*aDigitalZoomSteps*/, TValueInfo& /*aInfo*/, TInt /*aSizeIndex*/,
1.1695 + CCamera::TFormat /*aFormat*/, TBool& /*aIsInfluencePossible*/) const
1.1696 + {
1.1697 + }
1.1698 +
1.1699 +void CCamAdvSet::GetDigitalZoomStepsForVideoL(RArray<TInt>& /*aDigitalZoomSteps*/, TValueInfo& /*aInfo*/, TInt /*aFrameRateIndex*/,
1.1700 + TInt /*aSizeIndex*/, CCamera::TFormat /*aFormat*/, TBool& /*aIsInfluencePossible*/, CCamera::TExposure /*aExposure*/) const
1.1701 + {
1.1702 + }
1.1703 +
1.1704 +TInt CCamAdvSet::DigitalZoom() const
1.1705 + {
1.1706 + return KECamFineResolutionFactor;
1.1707 + }
1.1708 +
1.1709 +void CCamAdvSet::SetDigitalZoom(TInt /*aDigitalZoom*/)
1.1710 + {
1.1711 + }
1.1712 +
1.1713 +TBool CCamAdvSet::ExposureLockOn() const
1.1714 + {
1.1715 + return KExposureLockOn;
1.1716 + }
1.1717 +
1.1718 +void CCamAdvSet::SetExposureLockOn(TBool /*aState*/)
1.1719 + {
1.1720 + }
1.1721 +
1.1722 +TBool CCamAdvSet::AutoFocusLockOn() const
1.1723 + {
1.1724 + return KAutoFocusLockOn;
1.1725 + }
1.1726 +
1.1727 +void CCamAdvSet::SetAutoFocusLockOn(TBool /*aState*/)
1.1728 + {
1.1729 + }
1.1730 +
1.1731 +void CCamAdvSet::GetSupportedSettingsL(RArray<TUid>& aSettings) const
1.1732 + {
1.1733 + aSettings.Reset();
1.1734 + // if camera is present
1.1735 + if (iOwner.iCameras[iOwner.iCameraIndex])
1.1736 + {
1.1737 + aSettings.AppendL(KUidECamEventCameraSettingStabilizationMode);
1.1738 + aSettings.AppendL(KUidECamEventCameraSettingFocusMode);
1.1739 + aSettings.AppendL(KUidECamEventCameraSettingIsoRateType);
1.1740 + }
1.1741 + }
1.1742 +
1.1743 +void CCamAdvSet::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const
1.1744 + {
1.1745 + aActiveSettings.Reset();
1.1746 + if (iOwner.iCameras[iOwner.iCameraIndex])
1.1747 + {
1.1748 + aActiveSettings.AppendL(KUidECamEventCameraSettingFocusMode);
1.1749 + aActiveSettings.AppendL(KUidECamEventCameraSettingAFAssistantLight);
1.1750 + }
1.1751 + }
1.1752 +
1.1753 +
1.1754 +void CCamAdvSet::GetDisabledSettingsL(RArray<TUid>& aDisbledSettings) const
1.1755 + {
1.1756 + aDisbledSettings.Reset();
1.1757 + if (iOwner.iCameras[iOwner.iCameraIndex])
1.1758 + {
1.1759 + aDisbledSettings.AppendL(KUidECamEventCameraSettingStabilizationMode);
1.1760 + aDisbledSettings.AppendL(KUidECamEventCameraSettingReferenceScreen);
1.1761 + }
1.1762 + }
1.1763 +
1.1764 +void CCamAdvSet::SetAutomaticSizeSelectionChangeOn(TBool /*aSetOn = EFalse*/)
1.1765 + {
1.1766 + }
1.1767 +
1.1768 +TBool CCamAdvSet::AutomaticSizeSelectionChangeOn() const
1.1769 + {
1.1770 + return KAutomaticSizeSelectionChangeOn;
1.1771 + }
1.1772 +
1.1773 +void CCamAdvSet::GetSupportedContinuousAutoFocusTimeoutsL(RArray<TInt>& /*aTimeouts*/, TValueInfo& /*aInfo*/) const
1.1774 + {
1.1775 + }
1.1776 +
1.1777 +void CCamAdvSet::SetContinuousAutoFocusTimeout(TInt /*aTimeout*/)
1.1778 + {
1.1779 + }
1.1780 +
1.1781 +void CCamAdvSet::SetStabilizationEffect(CCamera::CCameraAdvancedSettings::TStabilizationEffect /*aEffect*/)
1.1782 + {
1.1783 + }
1.1784 +
1.1785 +CCamera::CCameraAdvancedSettings::TStabilizationEffect CCamAdvSet::StabilizationEffect() const
1.1786 + {
1.1787 + return CCamera::CCameraAdvancedSettings::EStabilizationOff;
1.1788 + }
1.1789 +
1.1790 +TInt CCamAdvSet::SupportedStabilizationEffects() const
1.1791 + {
1.1792 + return CCamera::CCameraAdvancedSettings::EStabilizationOff;
1.1793 + }
1.1794 +
1.1795 +TInt CCamAdvSet::SupportedStabilizationComplexityValues() const
1.1796 + {
1.1797 + return CCamera::CCameraAdvancedSettings::EStabilizationComplexityAuto;
1.1798 + }
1.1799 +
1.1800 +CCamera::CCameraAdvancedSettings::TStabilizationAlgorithmComplexity CCamAdvSet::StabilizationComplexity() const
1.1801 + {
1.1802 + return CCamera::CCameraAdvancedSettings::EStabilizationComplexityAuto;
1.1803 + }
1.1804 +
1.1805 +void CCamAdvSet::SetStabilizationComplexity(CCamera::CCameraAdvancedSettings::TStabilizationAlgorithmComplexity /*aComplexity*/)
1.1806 + {
1.1807 + }
1.1808 +
1.1809 +CCamera::CCameraAdvancedSettings::TWBUnits CCamAdvSet::SupportedWBUnits() const
1.1810 + {
1.1811 + return CCamera::CCameraAdvancedSettings::EWBColorTemperature;
1.1812 + }
1.1813 +
1.1814 +void CCamAdvSet::SetWBRgbValue(const TRgb& /*aValue*/)
1.1815 + {
1.1816 + }
1.1817 +
1.1818 +void CCamAdvSet::GetWBRgbValue(TRgb& /*aValue*/) const
1.1819 + {
1.1820 + }
1.1821 +
1.1822 +void CCamAdvSet::GetWBSupportedColorTemperaturesL(RArray<TInt>& /*aWBColorTemperatures*/, TValueInfo& /*aInfo*/) const
1.1823 + {
1.1824 + }
1.1825 +
1.1826 +void CCamAdvSet::SetWBColorTemperature(TInt /*aColorTemperature*/)
1.1827 + {
1.1828 + }
1.1829 +
1.1830 +TInt CCamAdvSet::WBColorTemperature() const
1.1831 + {
1.1832 + return KWBColorTemperature;
1.1833 + }
1.1834 +
1.1835 +TInt CCamAdvSet::ContinuousAutoFocusTimeout() const
1.1836 + {
1.1837 + return KContinuousAutoFocusTimeoutValue;
1.1838 + }
1.1839 +
1.1840 +TInt CCamAdvSet::IsFlashReady(TBool& aReady) const
1.1841 + {
1.1842 + aReady = KFlashReadyState;
1.1843 + return KErrNone;
1.1844 + }
1.1845 +
1.1846 +void CCamAdvSet::GetCurrentFocusModeStepsL(RArray<TInt>& /*aFocusModeSteps*/, TValueInfo& /*aInfo*/) const
1.1847 + {
1.1848 + }
1.1849 +
1.1850 +void CCamAdvSet::SetReferenceScreen(CWsScreenDevice& /*aScreenDevice*/)
1.1851 + {
1.1852 + TInt error = KErrNone;
1.1853 +
1.1854 + RetrieveResult(error);
1.1855 +
1.1856 + iOwner.Notify(KUidECamEventCameraSettingReferenceScreen, error);
1.1857 + }
1.1858 +
1.1859 +void CCamAdvSet::GetPreCaptureWarningSupportedL(CCamera::CCameraAdvancedSettings::TCameraMode /*aCameraMode*/, TInt& /*aPreCaptureWarningSupported*/) const
1.1860 + {
1.1861 + }
1.1862 +
1.1863 +void CCamAdvSet::SubscribeToPreCaptureWarningL(TInt /*aPreCaptureWarning*/)
1.1864 + {
1.1865 + }
1.1866 +
1.1867 +void CCamAdvSet::UnSubscribePreCaptureWarningL()
1.1868 + {
1.1869 + }
1.1870 +
1.1871 +void CCamAdvSet::GetPreCaptureWarningL(TInt& /*aPreCaptureWarning*/) const
1.1872 + {
1.1873 + }
1.1874 +
1.1875 +void CCamAdvSet::GetSupportedAFAssistantLightL(TInt& aSupportedAFAssistantLight) const
1.1876 + {
1.1877 + aSupportedAFAssistantLight = iSupportedAFAssistantLight;
1.1878 + }
1.1879 +
1.1880 +void CCamAdvSet::GetAFAssistantLightL(CCamera::CCameraAdvancedSettings::TAFAssistantLight& aAFAssistantLight) const
1.1881 + {
1.1882 + aAFAssistantLight = iAFAssistantLight;
1.1883 + }
1.1884 +
1.1885 +void CCamAdvSet::SetAFAssistantLight(CCamera::CCameraAdvancedSettings::TAFAssistantLight aAFAssistantLight)
1.1886 + {
1.1887 + TInt error = KErrNone;
1.1888 +
1.1889 + iAFAssistantLight = aAFAssistantLight;
1.1890 + RetrieveResult(error);
1.1891 +
1.1892 + iOwner.Notify(KUidECamEventCameraSettingAFAssistantLight, error);
1.1893 + }
1.1894 +
1.1895 +void CCamAdvSet::GetSupportedContinuousZoomTypeL(TUint& aSupportedContinuousZoomType) const
1.1896 + {
1.1897 + aSupportedContinuousZoomType = KSupportedContinuousZoomType;
1.1898 + }
1.1899 +
1.1900 +void CCamAdvSet::GetFocalLengthInfoL(TInt& /*aMinFocalLength*/, TInt& /*aCurrentFocalLength*/, TInt& /*aMaxFocalLength*/) const
1.1901 + {
1.1902 + User::Leave(KErrNotSupported);
1.1903 + }
1.1904 +
1.1905 +void CCamAdvSet::GetNumOperationPreferenceL(TUint& /*aNumOperationPreferenceSupported*/) const
1.1906 + {
1.1907 + User::Leave(KErrNotSupported);
1.1908 + }
1.1909 +
1.1910 +void CCamAdvSet::EnumerateOperationPreferenceL(TUint /*aOperationPreferenceIndex*/, CCamera::CCameraAdvancedSettings::
1.1911 + TPerformanceLevel& /*aSpeedLevel*/, CCamera::CCameraAdvancedSettings::TPerformanceLevel& /*aQualityLevel*/,
1.1912 + CCamera::CCameraAdvancedSettings::TPerformanceLevel& /*aLowMemoryConsumptionLevel*/,
1.1913 + CCamera::CCameraAdvancedSettings::TPerformanceLevel& /*aLowPowerConsumptionLevel*/) const
1.1914 + {
1.1915 + User::Leave(KErrNotSupported);
1.1916 + }
1.1917 +
1.1918 +void CCamAdvSet::SetOperationPreference(TUint /*aOperationPreferenceIndex*/)
1.1919 + {
1.1920 + iOwner.Notify(KUidECamEventCameraSettingOperationPreference, KErrNotSupported);
1.1921 + }
1.1922 +
1.1923 +
1.1924 +void CCamAdvSet::GetOperationPreferenceL(TInt& /*aOperationPreferenceIndex*/) const
1.1925 + {
1.1926 + User::Leave(KErrNotSupported);
1.1927 + }
1.1928 +
1.1929 +void CCamAdvSet::GetSupportedEventsL(RArray<TUid>& aSupportedEvents) const
1.1930 + {
1.1931 + aSupportedEvents.Reset();
1.1932 + }
1.1933 +
1.1934 +void CCamAdvSet::GetIndirectFeatureChangesL(TUid /*aRequestedSetting*/, RArray<TUid>& aIndirectFeatureChanges) const
1.1935 + {
1.1936 + aIndirectFeatureChanges.Reset();
1.1937 + }
1.1938 +
1.1939 +void CCamAdvSet::CreateContinuousZoomImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const
1.1940 + {
1.1941 + aImplFactoryPtr = CContinuousZoomFactory::NewL();
1.1942 + }
1.1943 +
1.1944 +void CCamAdvSet::RetrieveResult(TInt& aError)
1.1945 + {
1.1946 + //It is assumed that hardware retrieves this error
1.1947 + //Assumed that it returns no error
1.1948 + aError = KErrNone;
1.1949 + }
1.1950 +/******************************************************/
1.1951 +
1.1952 +CCamManagement::CCamManagement(CCamUnitTestPlugin& aOwner): iOwner(aOwner)
1.1953 + {
1.1954 + }
1.1955 +
1.1956 +CCamManagement::~CCamManagement()
1.1957 + {
1.1958 + }
1.1959 +
1.1960 +void CCamManagement::Release()
1.1961 + {
1.1962 + delete this;
1.1963 + }
1.1964 +
1.1965 +CCamManagement* CCamManagement::NewL(CCamUnitTestPlugin& aOwner)
1.1966 + {
1.1967 + return new (ELeave) CCamManagement(aOwner);
1.1968 + }
1.1969 +
1.1970 +TBool CCamManagement::PlugCameraIn(TInt aIndex)
1.1971 + {
1.1972 + if (aIndex >= KECamSetAvailableCameras)
1.1973 + {
1.1974 + return EFalse;
1.1975 + }
1.1976 + else
1.1977 + {
1.1978 + TInt response = KErrNone;
1.1979 + TUid uid;
1.1980 + uid.iUid = (KUidECamEventGlobalCamera00PluggedInUidValue + aIndex);
1.1981 + iOwner.iCameras[aIndex] = ETrue;
1.1982 + iOwner.Notify(uid, response);
1.1983 + }
1.1984 + return ETrue;
1.1985 + }
1.1986 +
1.1987 +TBool CCamManagement::PlugCameraOut(TInt aIndex)
1.1988 + {
1.1989 + if (aIndex >= KECamSetAvailableCameras)
1.1990 + {
1.1991 + return EFalse;
1.1992 + }
1.1993 + else
1.1994 + {
1.1995 + TInt response = KErrNone;
1.1996 + TUid uid;
1.1997 + uid.iUid = KUidECamEventGlobalCamera00PluggedOutUidValue + aIndex;
1.1998 + iOwner.iCameras[aIndex] = EFalse;
1.1999 + iOwner.Notify(uid, response);
1.2000 + }
1.2001 + return ETrue;
1.2002 + }
1.2003 +
1.2004 +
1.2005 +//
1.2006 +//Snapshot factory for Image
1.2007 +CContinuousZoomFactory* CContinuousZoomFactory::NewL()
1.2008 + {
1.2009 + CContinuousZoomFactory* self = new(ELeave) CContinuousZoomFactory();
1.2010 +
1.2011 + CleanupStack::PushL(self);
1.2012 + self->ConstructL();
1.2013 + CleanupStack::Pop();
1.2014 +
1.2015 + return self;
1.2016 + }
1.2017 +
1.2018 +void CContinuousZoomFactory::ConstructL()
1.2019 + {
1.2020 + }
1.2021 +
1.2022 +CContinuousZoomFactory::CContinuousZoomFactory() : iCamContinuousZoomImp(NULL)
1.2023 + {
1.2024 + }
1.2025 +
1.2026 +CContinuousZoomFactory::~CContinuousZoomFactory()
1.2027 + {
1.2028 + }
1.2029 +
1.2030 +TInt CContinuousZoomFactory::GetImpl(TAny*& /*aIfPtr*/, TUid /*aIfaceUid*/) const
1.2031 + {
1.2032 + return KErrNotSupported;
1.2033 + }
1.2034 +
1.2035 +TInt CContinuousZoomFactory::GetImpl1(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1) const
1.2036 + {
1.2037 + switch(aIfaceUid.iUid)
1.2038 + {
1.2039 + case KECamMCameraContinuousZoomUidValue:
1.2040 + {
1.2041 + CCamera::CCameraAdvancedSettings::TContinuousZoomType zoomType = static_cast<CCamera::CCameraAdvancedSettings::TContinuousZoomType>(aParam1.iIntParam);
1.2042 + iCamContinuousZoomImp = CCamContinuousZoom::NewL(zoomType);
1.2043 + aIfPtr = static_cast<MCameraContinuousZoom*>(iCamContinuousZoomImp);
1.2044 + return KErrNone;
1.2045 + }
1.2046 + default:
1.2047 + {
1.2048 + aIfPtr = NULL;
1.2049 + return KErrNotSupported;
1.2050 + }
1.2051 + }
1.2052 + }
1.2053 +
1.2054 +TInt CContinuousZoomFactory::GetImpl2(TAny*& /*aIfPtr*/, TUid /*aIfaceUid*/, TECamImplFactoryParam /*aParam1*/, TECamImplFactoryParam /*aParam2*/) const
1.2055 + {
1.2056 + return KErrNotSupported;
1.2057 + }
1.2058 +
1.2059 +void CContinuousZoomFactory::Release()
1.2060 + {
1.2061 + delete this;
1.2062 + }
1.2063 +
1.2064 +
1.2065 +CCamContinuousZoom* CCamContinuousZoom::NewL(CCamera::CCameraAdvancedSettings::TContinuousZoomType aContinuousZoomType)
1.2066 + {
1.2067 + CCamContinuousZoom* self = new (ELeave) CCamContinuousZoom(aContinuousZoomType);
1.2068 + return self;
1.2069 + }
1.2070 +
1.2071 +CCamContinuousZoom::CCamContinuousZoom(CCamera::CCameraAdvancedSettings::TContinuousZoomType aContinuousZoomType)
1.2072 + : iZoomType(aContinuousZoomType)
1.2073 + {
1.2074 + iInfo.iMaxSpeedSupported = 10;
1.2075 + iInfo.iMinAccelerationSupported = 0;
1.2076 + iInfo.iMaxAccelerationSupported = 0;
1.2077 + iInfo.iContinuousZoomMinLimit = 0;
1.2078 + iInfo.iContinuousZoomMaxLimit = 10;
1.2079 + }
1.2080 +
1.2081 +CCamContinuousZoom::~CCamContinuousZoom()
1.2082 + {
1.2083 + }
1.2084 +
1.2085 +void CCamContinuousZoom::SetContinuousZoomObserverAndHandle(MContinuousZoomObserver& aObserver, CCamera::CCameraContinuousZoom* aContinuousZoomHandle)
1.2086 + {
1.2087 + iObserver = &aObserver;
1.2088 + iContinuousZoomHandle = aContinuousZoomHandle;
1.2089 + }
1.2090 +
1.2091 +void CCamContinuousZoom::StartContinuousZoomL(CCamera::CCameraAdvancedSettings::TContinuousZoomParameters aContinuousZoomParameters)
1.2092 + {
1.2093 + if(aContinuousZoomParameters.Size() != sizeof(CCamera::CCameraAdvancedSettings::TContinuousZoomParameters) ||
1.2094 + aContinuousZoomParameters.Version() != KContinuousZoomParametersCurrentVersion)
1.2095 + {
1.2096 + User::Leave(KErrNotSupported);
1.2097 + }
1.2098 +
1.2099 + if(aContinuousZoomParameters.iContinuousZoomSpeed > iInfo.iMaxSpeedSupported ||
1.2100 + aContinuousZoomParameters.iContinuousZoomAcceleration < iInfo.iMinAccelerationSupported ||
1.2101 + aContinuousZoomParameters.iContinuousZoomAcceleration > iInfo.iMaxAccelerationSupported ||
1.2102 + aContinuousZoomParameters.iContinuousZoomLimit < iInfo.iContinuousZoomMinLimit ||
1.2103 + aContinuousZoomParameters.iContinuousZoomLimit > iInfo.iContinuousZoomMaxLimit)
1.2104 + {
1.2105 + User::Leave(KErrArgument);
1.2106 + }
1.2107 +
1.2108 + iParameters = aContinuousZoomParameters;
1.2109 + for(TInt i = 0; i < iParameters.iContinuousZoomLimit; i++)
1.2110 + {
1.2111 + iObserver->ContinuousZoomProgress(*iContinuousZoomHandle, i, KErrNone);
1.2112 + }
1.2113 +
1.2114 + iObserver->ContinuousZoomCompleted(*iContinuousZoomHandle, iParameters.iContinuousZoomLimit, KErrNone);
1.2115 + }
1.2116 +
1.2117 +void CCamContinuousZoom::StopContinuousZoom()
1.2118 + {
1.2119 + return;
1.2120 + }
1.2121 +
1.2122 +void CCamContinuousZoom::GetContinuousZoomSupportInfoL(CCamera::CCameraAdvancedSettings::TContinuousZoomSupportInfo& aContinuousZoomInfo) const
1.2123 + {
1.2124 + if(aContinuousZoomInfo.Size() != sizeof(CCamera::CCameraAdvancedSettings::TContinuousZoomSupportInfo) ||
1.2125 + aContinuousZoomInfo.Version() != KContinuousZoomSupportInfoCurrentVersion)
1.2126 + {
1.2127 + User::Leave(KErrNotSupported);
1.2128 + }
1.2129 +
1.2130 + aContinuousZoomInfo = iInfo;
1.2131 + }
1.2132 +
1.2133 +void CCamContinuousZoom::GetContinuousZoomId(TInt& aZoomId) const
1.2134 + {
1.2135 + aZoomId = (TInt)(this);
1.2136 + }
1.2137 +
1.2138 +void CCamContinuousZoom::Release()
1.2139 + {
1.2140 + delete this;
1.2141 + }