sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: sl@0: #ifndef IMPLEMENTATIONFACTORYINTF_H sl@0: #define IMPLEMENTATIONFACTORYINTF_H sl@0: sl@0: /** sl@0: Union used to provide future flexibility if extra details are needed by the abstract factory methods. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: union TECamImplFactoryParam sl@0: { sl@0: public: sl@0: /** explicit constructor when the union is used to represent a TAny* parameter */ sl@0: explicit TECamImplFactoryParam(TAny* aPtrParam); sl@0: sl@0: /** explicit constructor when the union is used to represent a TInt parameter */ sl@0: explicit TECamImplFactoryParam(TInt aIntParam); sl@0: sl@0: /** explicit constructor when the union is used to represent a TUint parameter */ sl@0: explicit TECamImplFactoryParam(TUint aUintParam); sl@0: sl@0: public: sl@0: /** union may represent a TAny* parameter in order to provide extra information for creating concrete implementation. */ sl@0: TAny* iPtrParam; sl@0: /** union may represent a TInt parameter in order to provide extra information for creating concrete implementation. */ sl@0: TInt iIntParam; sl@0: /** union may represent a TUint parameter in order to provide extra information for creating concrete implementation. */ sl@0: TUint iUintParam; sl@0: }; sl@0: sl@0: /** sl@0: Abstract Factory Class in order to derive different concrete factory class for image processing implementation specific to sl@0: VideoCapture and specific Viewfinder. sl@0: sl@0: Also used to derive concrete factory class for snapshot implementation specific to image capture and video capture. sl@0: sl@0: Also used to derive concrete factory class for histogram implementation specific to still image, video, snapshot or specific viewfinder. sl@0: sl@0: This may be used in other possible cases as well. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MImplementationFactory sl@0: { sl@0: public: sl@0: sl@0: /** sl@0: Releases the interface. sl@0: */ sl@0: virtual void Release() =0; sl@0: sl@0: /** sl@0: Provides implementation handle for different implementation products. sl@0: sl@0: @param aIfPtr sl@0: Retrieves pointer to specifc interface implementation as identified by the interface uid. sl@0: sl@0: @param aIfaceUid sl@0: The interface uid. sl@0: sl@0: @return any defined error code. sl@0: sl@0: @note KErrNone should be returned only when a valid interface pointer is there. Any other error code implies that sl@0: interface implementation pointer is NULL. sl@0: sl@0: @note KErrNotSupported should be returned when the concrete interface implementation is not present. sl@0: sl@0: @note The inferface pointer is retrieved only on the basis of interface uid passed. sl@0: Examples of 'interface implementation pointer' - 'interface uid' are as follows:- sl@0: MCameraImageProcessing* - KECamMCameraImageProcessingUid; sl@0: MCameraImageProcessing2* - KECamMCameraImageProcessing2Uid; sl@0: MCameraImageProcessing3* - KECamMCameraImageProcessing3Uid; sl@0: sl@0: MCameraSnapshot* - KECamMCameraSnapshotUid; sl@0: MCameraSnapshot2* - KECamMCameraSnapshot2Uid; sl@0: sl@0: MCameraV2Histogram* - KECamMCameraV2HistogramUid; sl@0: sl@0: Many other pairs may be possible in future. For example when image processing API/ camera snapshot API/ sl@0: histogram API is further extended. sl@0: Or when same concept is being used on other ECam related sub-component. sl@0: */ sl@0: virtual TInt GetImpl(TAny*& aIfPtr, TUid aIfaceUid) const=0; sl@0: sl@0: /** sl@0: Overloaded method which helps in retrieving the appropriate implementation pointer sl@0: based on extra information provided through a single 'TECamImplFactoryParam'. sl@0: sl@0: Provides implementation handle for different implementation products. sl@0: sl@0: @param aIfPtr sl@0: Retrieves pointer to specifc interface implementation as identified by the interface uid. sl@0: sl@0: @param aIfaceUid sl@0: The interface uid. sl@0: sl@0: @param aParam1 sl@0: union used to provide extra information which could a TAny*, TInt or TUint. sl@0: sl@0: @return error code sl@0: sl@0: @note The inferface pointer is retrieved only on the basis of interface uid passed. sl@0: Examples of 'interface implementation pointer' - 'interface uid' are as follows:- sl@0: MCameraImageProcessing* - KECamMCameraImageProcessingUid; sl@0: MCameraImageProcessing2* - KECamMCameraImageProcessing2Uid; sl@0: MCameraImageProcessing3* - KECamMCameraImageProcessing3Uid; sl@0: sl@0: MCameraSnapshot* - KECamMCameraSnapshotUid; sl@0: MCameraSnapshot2* - KECamMCameraSnapshot2Uid; sl@0: sl@0: MCameraV2Histogram* - KECamMCameraV2HistogramUid; sl@0: sl@0: Many other pairs may be possible in future. For example when image processing API/ camera snapshot API/ sl@0: histogram API is further extended. sl@0: Or when same concept is being used on other ECam related sub-component. sl@0: */ sl@0: virtual TInt GetImpl1(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1) const=0; sl@0: sl@0: /** sl@0: Overloaded method which helps in retrieving the appropriate implementation pointer sl@0: based on extra information provided through two different 'TECamImplFactoryParam'. sl@0: sl@0: Provides implementation handle for different implementation products. sl@0: sl@0: @param aIfPtr sl@0: Retrieves pointer to specifc interface implementation as identified by the interface uid. sl@0: sl@0: @param aIfaceUid sl@0: The interface uid. sl@0: sl@0: @param aParam1 sl@0: union used to provide extra information which could a TAny*, TInt or TUint. sl@0: sl@0: @param aParam2 sl@0: union used to provide extra information which could a TAny*, TInt or TUint. sl@0: sl@0: @return error code sl@0: sl@0: @note The inferface pointer is retrieved only on the basis of interface uid passed. sl@0: Examples of 'interface implementation pointer' - 'interface uid' are as follows:- sl@0: MCameraImageProcessing* - KECamMCameraImageProcessingUid; sl@0: MCameraImageProcessing2* - KECamMCameraImageProcessing2Uid; sl@0: MCameraImageProcessing3* - KECamMCameraImageProcessing3Uid; sl@0: sl@0: MCameraSnapshot* - KECamMCameraSnapshotUid; sl@0: MCameraSnapshot2* - KECamMCameraSnapshot2Uid; sl@0: sl@0: MCameraV2Histogram* - KECamMCameraV2HistogramUid; sl@0: sl@0: Many other pairs may be possible in future. For example when image processing API/ camera snapshot API/ sl@0: histogram API is further extended. sl@0: Or when same concept is being used on other ECam related sub-component. sl@0: */ sl@0: virtual TInt GetImpl2(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1, TECamImplFactoryParam aParam2) const=0; sl@0: }; sl@0: sl@0: inline sl@0: TECamImplFactoryParam::TECamImplFactoryParam(TAny* aPtrParam):iPtrParam(aPtrParam) sl@0: { sl@0: } sl@0: sl@0: inline sl@0: TECamImplFactoryParam::TECamImplFactoryParam(TInt aIntParam):iIntParam(aIntParam) sl@0: { sl@0: } sl@0: sl@0: inline sl@0: TECamImplFactoryParam::TECamImplFactoryParam(TUint aUintParam):iUintParam(aUintParam) sl@0: { sl@0: } sl@0: sl@0: sl@0: #endif // IMPLEMENTATIONFACTORYINTF_H