Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #ifndef FEATMGRSESSION_H
22 #define FEATMGRSESSION_H
26 #include "featmgrclientserver.h"
27 #include "featmgrserver.h"
29 // FORWARD DECLARATIONS
30 class CFeatMgrFeatureRegistry;
35 * Contains pending request if feature info is not ready.
37 NONSHARABLE_CLASS(CFeatMgrPendingRequest) : public CBase
41 * Two-phased constructor.
43 static CFeatMgrPendingRequest* NewL(const RMessage2& aMessage);
48 virtual ~CFeatMgrPendingRequest();
52 * C++ default constructor.
54 CFeatMgrPendingRequest();
59 void ConstructL(const RMessage2& aMessage);
63 // The offset of a component link object within elements that form the list.
64 static const TInt iOffset;
66 // Message for later completion is stored here.
71 // A link object encapsulates a pointer to the next link object in the list.
80 * Represents a session for a client thread on the server-side.
81 * A session acts as a channel of communication between the client
85 NONSHARABLE_CLASS(CFeatMgrSession) : public CSession2
87 public: // Constructors and destructor
90 * Two-phased constructor.
92 static CFeatMgrSession* NewL(CFeatMgrServer& aServer, CFeatMgrFeatureRegistry& aRegistry);
97 virtual ~CFeatMgrSession();
99 #ifdef EXTENDED_FEATURE_MANAGER_TEST
101 * 2nd phase construct for sessions - called by the CServer framework
104 #endif // EXTENDED_FEATURE_MANAGER_TEST
107 public: // New functions
110 * Called by the server when feature info is ready.
111 * Calls request handling functions for pending requests.
113 void ServicePendingRequestsL();
116 * Called by the server when existing feature has changed or new one added.
117 * Completes client notification requests if such exist for feature changed.
119 void ServiceNotifications( TFeatureServerEntry& aFeature, TFeatureChangeType aType );
122 * Panics client thread.
124 * @param aMessage Message that is being handled
125 * @param aPanic Panic type
127 static void PanicClient( const RMessage2& aMessage, TFeatMgrPanic aPanic );
130 public: // Functions from base classes
132 protected: // New functions
134 protected: // Functions from base classes
139 * @param aMessage The message containing the client request
141 virtual void ServiceL( const RMessage2& aMessage );
142 virtual TInt CountResources();
147 * C++ default constructor.
149 CFeatMgrSession(CFeatMgrServer& aServer, CFeatMgrFeatureRegistry& aRegistry);
152 * By default Symbian 2nd phase constructor is private.
157 * Calls matching function of CFeatMgrServer for handling the request.
159 * @param aMessage The message containing the client request
161 void DispatchMessageL( const RMessage2& aMessage );
163 TBool IsWriteOperation( const TInt aFunction ) const;
168 * Feature Manager server reference.
170 CFeatMgrServer& iFeatMgrServer;
173 * Feature Manager feature handler reference.
175 CFeatMgrFeatureRegistry& iRegistry;
178 * Linked list of CFeatMgrPendingRequest objects.
180 TSglQue<CFeatMgrPendingRequest> iList;
183 * Array of IDs of supported features.
185 RFeatureUidArray iNotifyFeatures;
188 * Request-message used for signaling client.
190 RMessagePtr2 iNotifyMessage;
194 #endif // FEATMGRSESSION_H