First public contribution.
1 // Copyright (c) 2004-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 #ifndef ECAMINFOPLUGIN_H
23 #define ECAMINFOPLUGIN_H
30 Plugin used to supply static data for CCamera.
32 class CCameraInfoPlugin : public CBase
34 friend class CCameraPlugin;
39 Default destructor for this class.
41 IMPORT_C ~CCameraInfoPlugin();
44 Determines the number of cameras on the device.
46 @return Count of cameras present on the device.
48 virtual TInt CamerasAvailable()=0;
53 Default constructor for this class.
55 IMPORT_C CCameraInfoPlugin();
59 Loads the plugin and returns a pointer to it.
61 @return Pointer to the plugin.
63 static CCameraInfoPlugin* NewL();
74 'Property' in the Publish/Subscribe API.
75 Used by the ECAM implementation as property sub-keys while defining the property within the category given by
76 current process's secureID.
78 static const TUint KUidECamPropertyCameraIndex0ReservedStatus = 0x102831F1;
84 'Property' in the Publish/Subscribe API.
85 Used by the ECAM implementation as property sub-keys while defining the property within the category given by
86 current process's secureID.
88 static const TUint KUidECamPropertyCameraIndex1ReservedStatus = 0x102831FA;
94 'Property' in the Publish/Subscribe API.
95 Used by the ECAM implementation as property sub-keys while defining the property within the category given by
96 current process's secureID.
98 static const TUint KUidECamPropertyCameraIndex2ReservedStatus = 0x102831FB;
104 'Property' in the Publish/Subscribe API.
105 Used by the ECAM implementation as property sub-keys while defining the property within the category given by
106 current process's secureID.
108 static const TUint KUidECamPropertyCameraIndex3ReservedStatus = 0x102831FC;
114 'Property' in the Publish/Subscribe API.
115 Used by the ECAM implementation as property sub-keys while defining the property within the category given by
116 current process's secureID.
118 static const TUint KUidECamPropertyCameraIndex4ReservedStatus = 0x102831FD;
124 'Property' in the Publish/Subscribe API.
125 Used by the ECAM implementation as property sub-keys while defining the property within the category given by
126 current process's secureID.
128 static const TUint KUidECamPropertyCameraIndex5ReservedStatus = 0x102831FE;
134 'Property' in the Publish/Subscribe API.
135 Used by the ECAM implementation as property sub-keys while defining the property within the category given by
136 current process's secureID.
138 static const TUint KUidECamPropertyCameraIndex6ReservedStatus = 0x102831FF;
144 'Property' in the Publish/Subscribe API.
145 Used by the ECAM implementation as property sub-keys while defining the property within the category given by
146 current process's secureID.
148 static const TUint KUidECamPropertyCameraIndex7ReservedStatus = 0x10283200;
151 Plugin used to retrieve the secure ID of the process where serialized part of the ECam implementation runs.
153 Meant for implementation by the ECam implementers.
155 Implementation has to define and publish the properties as given by the keys KUidECamPropertyCameraIndex0ReservedStatus
156 to KUidECamPropertyCameraIndex7ReservedStatus. Client's responsibility is to subscribe to these properties using
157 TReservedInfo::SubscribeReserveInfoL and hence implement the interface MReserveObserver.
162 class MSecureIdPlugin
165 virtual void Release() =0;
167 Used to retrieve the Secure ID of the process where serialized part of the ECam implementation runs. Secure ID will be
168 internally used to attach to the Properties for which the Reserve notification will be subscribed for.
171 The secure ID of the process where serialized part of the ECam implementation runs.
173 @leave May leave with any error code.
175 @note Serialized part of the ECam implementation is supposed to define and publish those Properties.
177 virtual void GetSecureIdL(TInt& aSecureId) const =0;
180 #endif // ECAMINFOPLUGIN_H