diff -r 000000000000 -r 2f259fa3e83a classicui_plat/extended_notifiers_api/inc/AknNotifierAppServerSession.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/classicui_plat/extended_notifiers_api/inc/AknNotifierAppServerSession.h Tue Feb 02 01:00:49 2010 +0200 @@ -0,0 +1,66 @@ +/* +* Copyright (c) 2004-2007 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Notifier server app session declaration. +* +*/ + +#ifndef __AKNNOTIFIERPSERVERAPPSESSION_H__ +#define __AKNNOTIFIERPSERVERAPPSESSION_H__ + +#include + +class CAknNotifierAppServer; + +class CAknNotifierServerAppService : public CAknAppServiceBase + { +public: + IMPORT_C CAknNotifierServerAppService(const CAknNotifierAppServer& aAppServer); + IMPORT_C ~CAknNotifierServerAppService(); + +public: // from CAknAppServiceBase + IMPORT_C void ServiceL(const RMessage2& aMessage); + +public: // New methods + /** + * ServiceL calls this method to decide whether the message will be served or not. + * Default implementation just checks that client is Symbian Notifier server thread, other + * clients are not served. + * @since 3.0 + * @param aMessage Message from client. + * @return Boolean, is a client allowed to access our services. + */ + IMPORT_C virtual TBool AllowClientL(const RMessage2& aMessage); + + /** + * Actual message handling, this method commands server to do notifier operations based on + * received message. ServiceL calls this method if client has passed AllowClientL checking. + * + * @since 3.0 + * @param aMessage Message from client. + */ + IMPORT_C virtual void HandleMessageL(const RMessage2& aMessage); + +private: + void ResolveBuffersL(const RMessage2& aMessage); + void WriteReplyL(const RMessage2& aMessage); + +private: + CAknNotifierAppServer& iOwner; + HBufC8* iInputBuf; + HBufC8* iReplyBuf; + }; + +#endif // __AKNNOTIFIERPSERVERAPPSESSION_H__ + +// End of file