sl@0
|
1 |
// Copyright (c) 2008-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 |
@internalTechnology
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifndef MMCAMERASERVER_H
|
sl@0
|
22 |
#define MMCAMERASERVER_H
|
sl@0
|
23 |
|
sl@0
|
24 |
#include "mmcameraclientinterface.h"
|
sl@0
|
25 |
#include "mmcameraserverpolicymanager.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
const TInt KECamServMajorVerNumber = 0;
|
sl@0
|
28 |
const TInt KECamServMinorVerNumber = 0;
|
sl@0
|
29 |
const TInt KECamServBuildVerNumber = KUidMMCameraServerID;
|
sl@0
|
30 |
|
sl@0
|
31 |
class CMMCameraServerController;
|
sl@0
|
32 |
class CMMCameraServerControllerQuery;
|
sl@0
|
33 |
class CMMCameraServerShutdown;
|
sl@0
|
34 |
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
* Standard server class derived from CServer2 to construct the server and manage connecting clients.
|
sl@0
|
37 |
*
|
sl@0
|
38 |
* Also creates policy manager and camera controller to be used by client sessions.
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
class CMMCameraServer : CServer2
|
sl@0
|
41 |
{
|
sl@0
|
42 |
friend class CMMCameraServerSession;
|
sl@0
|
43 |
|
sl@0
|
44 |
public:
|
sl@0
|
45 |
static CMMCameraServer* NewLC(); //symbian doc says CServer2 should be returned ???
|
sl@0
|
46 |
|
sl@0
|
47 |
~CMMCameraServer();
|
sl@0
|
48 |
|
sl@0
|
49 |
void AddSession();
|
sl@0
|
50 |
void DropSession();
|
sl@0
|
51 |
|
sl@0
|
52 |
inline CMMCameraServerPolicyManager* PolicyManager() {return iPolicyManager;};
|
sl@0
|
53 |
|
sl@0
|
54 |
protected:
|
sl@0
|
55 |
virtual TInt RunError(TInt aError);
|
sl@0
|
56 |
|
sl@0
|
57 |
private:
|
sl@0
|
58 |
CMMCameraServer(); // Named Constructor Idiom concept used
|
sl@0
|
59 |
|
sl@0
|
60 |
void ConstructL();
|
sl@0
|
61 |
|
sl@0
|
62 |
CSession2* NewSessionL(const TVersion& aVersion, const RMessage2& aMessage) const;
|
sl@0
|
63 |
void PanicClient(const RMessage2& aMessage, TServerPanic aPanic);
|
sl@0
|
64 |
|
sl@0
|
65 |
void GetCameraControllerL(TInt aCameraIndex, CMMCameraServerController*& aCameraController);
|
sl@0
|
66 |
void GetCameraControllerQueryL(CMMCameraServerControllerQuery*& aCameraControllerQuery);
|
sl@0
|
67 |
|
sl@0
|
68 |
private:
|
sl@0
|
69 |
TInt iCamSessionCount;
|
sl@0
|
70 |
|
sl@0
|
71 |
TDblQue<CMMCameraServerController> iCamControllerQ; //Double link list of CMMCameraServerController
|
sl@0
|
72 |
CMMCameraServerPolicyManager* iPolicyManager;
|
sl@0
|
73 |
CMMCameraServerShutdown* iShutdown;
|
sl@0
|
74 |
};
|
sl@0
|
75 |
|
sl@0
|
76 |
#endif // MMCAMERASERVER_H
|