sl@0
|
1 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@publishedPartner
|
sl@0
|
19 |
@released
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef ECAMINFOPLUGIN_H
|
sl@0
|
23 |
#define ECAMINFOPLUGIN_H
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <ecam.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
class CCameraPlugin;
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
Plugin used to supply static data for CCamera.
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
class CCameraInfoPlugin : public CBase
|
sl@0
|
33 |
{
|
sl@0
|
34 |
friend class CCameraPlugin;
|
sl@0
|
35 |
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
Default destructor for this class.
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
IMPORT_C ~CCameraInfoPlugin();
|
sl@0
|
42 |
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
Determines the number of cameras on the device.
|
sl@0
|
45 |
|
sl@0
|
46 |
@return Count of cameras present on the device.
|
sl@0
|
47 |
*/
|
sl@0
|
48 |
virtual TInt CamerasAvailable()=0;
|
sl@0
|
49 |
|
sl@0
|
50 |
protected:
|
sl@0
|
51 |
|
sl@0
|
52 |
/**
|
sl@0
|
53 |
Default constructor for this class.
|
sl@0
|
54 |
*/
|
sl@0
|
55 |
IMPORT_C CCameraInfoPlugin();
|
sl@0
|
56 |
|
sl@0
|
57 |
private:
|
sl@0
|
58 |
/**
|
sl@0
|
59 |
Loads the plugin and returns a pointer to it.
|
sl@0
|
60 |
|
sl@0
|
61 |
@return Pointer to the plugin.
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
static CCameraInfoPlugin* NewL();
|
sl@0
|
64 |
|
sl@0
|
65 |
private:
|
sl@0
|
66 |
TUid iDestructorKey;
|
sl@0
|
67 |
|
sl@0
|
68 |
};
|
sl@0
|
69 |
|
sl@0
|
70 |
/**
|
sl@0
|
71 |
@publishedPartner
|
sl@0
|
72 |
@prototype
|
sl@0
|
73 |
|
sl@0
|
74 |
'Property' in the Publish/Subscribe API.
|
sl@0
|
75 |
Used by the ECAM implementation as property sub-keys while defining the property within the category given by
|
sl@0
|
76 |
current process's secureID.
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
static const TUint KUidECamPropertyCameraIndex0ReservedStatus = 0x102831F1;
|
sl@0
|
79 |
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
@publishedPartner
|
sl@0
|
82 |
@prototype
|
sl@0
|
83 |
|
sl@0
|
84 |
'Property' in the Publish/Subscribe API.
|
sl@0
|
85 |
Used by the ECAM implementation as property sub-keys while defining the property within the category given by
|
sl@0
|
86 |
current process's secureID.
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
static const TUint KUidECamPropertyCameraIndex1ReservedStatus = 0x102831FA;
|
sl@0
|
89 |
|
sl@0
|
90 |
/**
|
sl@0
|
91 |
@publishedPartner
|
sl@0
|
92 |
@prototype
|
sl@0
|
93 |
|
sl@0
|
94 |
'Property' in the Publish/Subscribe API.
|
sl@0
|
95 |
Used by the ECAM implementation as property sub-keys while defining the property within the category given by
|
sl@0
|
96 |
current process's secureID.
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
static const TUint KUidECamPropertyCameraIndex2ReservedStatus = 0x102831FB;
|
sl@0
|
99 |
|
sl@0
|
100 |
/**
|
sl@0
|
101 |
@publishedPartner
|
sl@0
|
102 |
@prototype
|
sl@0
|
103 |
|
sl@0
|
104 |
'Property' in the Publish/Subscribe API.
|
sl@0
|
105 |
Used by the ECAM implementation as property sub-keys while defining the property within the category given by
|
sl@0
|
106 |
current process's secureID.
|
sl@0
|
107 |
*/
|
sl@0
|
108 |
static const TUint KUidECamPropertyCameraIndex3ReservedStatus = 0x102831FC;
|
sl@0
|
109 |
|
sl@0
|
110 |
/**
|
sl@0
|
111 |
@publishedPartner
|
sl@0
|
112 |
@prototype
|
sl@0
|
113 |
|
sl@0
|
114 |
'Property' in the Publish/Subscribe API.
|
sl@0
|
115 |
Used by the ECAM implementation as property sub-keys while defining the property within the category given by
|
sl@0
|
116 |
current process's secureID.
|
sl@0
|
117 |
*/
|
sl@0
|
118 |
static const TUint KUidECamPropertyCameraIndex4ReservedStatus = 0x102831FD;
|
sl@0
|
119 |
|
sl@0
|
120 |
/**
|
sl@0
|
121 |
@publishedPartner
|
sl@0
|
122 |
@prototype
|
sl@0
|
123 |
|
sl@0
|
124 |
'Property' in the Publish/Subscribe API.
|
sl@0
|
125 |
Used by the ECAM implementation as property sub-keys while defining the property within the category given by
|
sl@0
|
126 |
current process's secureID.
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
static const TUint KUidECamPropertyCameraIndex5ReservedStatus = 0x102831FE;
|
sl@0
|
129 |
|
sl@0
|
130 |
/**
|
sl@0
|
131 |
@publishedPartner
|
sl@0
|
132 |
@prototype
|
sl@0
|
133 |
|
sl@0
|
134 |
'Property' in the Publish/Subscribe API.
|
sl@0
|
135 |
Used by the ECAM implementation as property sub-keys while defining the property within the category given by
|
sl@0
|
136 |
current process's secureID.
|
sl@0
|
137 |
*/
|
sl@0
|
138 |
static const TUint KUidECamPropertyCameraIndex6ReservedStatus = 0x102831FF;
|
sl@0
|
139 |
|
sl@0
|
140 |
/**
|
sl@0
|
141 |
@publishedPartner
|
sl@0
|
142 |
@prototype
|
sl@0
|
143 |
|
sl@0
|
144 |
'Property' in the Publish/Subscribe API.
|
sl@0
|
145 |
Used by the ECAM implementation as property sub-keys while defining the property within the category given by
|
sl@0
|
146 |
current process's secureID.
|
sl@0
|
147 |
*/
|
sl@0
|
148 |
static const TUint KUidECamPropertyCameraIndex7ReservedStatus = 0x10283200;
|
sl@0
|
149 |
|
sl@0
|
150 |
/**
|
sl@0
|
151 |
Plugin used to retrieve the secure ID of the process where serialized part of the ECam implementation runs.
|
sl@0
|
152 |
|
sl@0
|
153 |
Meant for implementation by the ECam implementers.
|
sl@0
|
154 |
|
sl@0
|
155 |
Implementation has to define and publish the properties as given by the keys KUidECamPropertyCameraIndex0ReservedStatus
|
sl@0
|
156 |
to KUidECamPropertyCameraIndex7ReservedStatus. Client's responsibility is to subscribe to these properties using
|
sl@0
|
157 |
TReservedInfo::SubscribeReserveInfoL and hence implement the interface MReserveObserver.
|
sl@0
|
158 |
|
sl@0
|
159 |
@publishedPartner
|
sl@0
|
160 |
@prototype
|
sl@0
|
161 |
*/
|
sl@0
|
162 |
class MSecureIdPlugin
|
sl@0
|
163 |
{
|
sl@0
|
164 |
public:
|
sl@0
|
165 |
virtual void Release() =0;
|
sl@0
|
166 |
/**
|
sl@0
|
167 |
Used to retrieve the Secure ID of the process where serialized part of the ECam implementation runs. Secure ID will be
|
sl@0
|
168 |
internally used to attach to the Properties for which the Reserve notification will be subscribed for.
|
sl@0
|
169 |
|
sl@0
|
170 |
@param aSecureId
|
sl@0
|
171 |
The secure ID of the process where serialized part of the ECam implementation runs.
|
sl@0
|
172 |
|
sl@0
|
173 |
@leave May leave with any error code.
|
sl@0
|
174 |
|
sl@0
|
175 |
@note Serialized part of the ECam implementation is supposed to define and publish those Properties.
|
sl@0
|
176 |
*/
|
sl@0
|
177 |
virtual void GetSecureIdL(TInt& aSecureId) const =0;
|
sl@0
|
178 |
};
|
sl@0
|
179 |
|
sl@0
|
180 |
#endif // ECAMINFOPLUGIN_H
|