--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/telephonyserverplugins/simatktsy/inc/CSatNotifySendData.h Tue Feb 02 01:41:59 2010 +0200
@@ -0,0 +1,142 @@
+/*
+* Copyright (c) 2005-2009 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:
+* Name : CSatNotifySendData.h
+* Part of : Common SIM ATK TSY / commonsimatktsy
+* Specific notifications class
+* Version : 1.0
+*
+*/
+
+
+
+#ifndef CSATNOTIFYSENDDATA_H
+#define CSATNOTIFYSENDDATA_H
+
+
+// INCLUDES
+#include <etelsat.h>
+#include "MSatNotificationsBase.h"
+
+
+// FORWARD DECLARATIONS
+class CSatDataPackage;
+class CSatNotificationsTsy;
+
+/**
+* DESCRIPTIONs
+* SAT Notify SendData notification class.
+* Created when client requests to be notified when SendData
+* command arrives from SIM.
+*
+* The purpose of this command is to enable the SAT
+* (which alerts other applications in the phone) to be notified
+* of the changes to the SIM configuration that have occurred as
+* the result of a SIM application activity. It is up to SAT to
+* ensure this is done correctly.
+* @lib Commonsimatktsy
+* @since 3.1
+*/
+NONSHARABLE_CLASS ( CSatNotifySendData ) : public CBase,
+ public MSatNotificationsBase
+ {
+ public: // Constructors and destructor
+
+ /**
+ * Two-phased constructor.
+ * @param aNotificationsTsy: Pointer to NotificationsTsy
+ * return CSatNotifySendData*: created object
+ */
+ static CSatNotifySendData* NewL(
+ CSatNotificationsTsy* aNotificationsTsy );
+
+ /**
+ * C++ Destructor.
+ */
+ ~CSatNotifySendData();
+
+ private:
+
+ /**
+ * By default C++ constructor is private.
+ * @param aNotificationsTsy: Pointer to NotificationsTsy
+ * @return None
+ */
+ CSatNotifySendData( CSatNotificationsTsy* aNotificationsTsy );
+
+ /**
+ * Class attributes are created in ConstructL.
+ * @param None
+ * @return None
+ */
+ void ConstructL();
+
+ public: // Functions from base classes
+
+ /**
+ * Notification request received from client
+ * @param aTsyReqHandle: request handle from ETel
+ * @param aPackage: Packed data
+ * @return KErrNone
+ */
+ TInt Notify( const TTsyReqHandle aTsyReqHandle,
+ const TDataPackage& aPackage );
+
+ /**
+ * Cancels notification request about send data.
+ * @param aReqHandle notify request handle
+ * @return KErrNone
+ */
+ TInt CancelNotification( const TTsyReqHandle aReqHandle );
+
+ /**
+ * Completes the notification request received from client
+ * @param aDataPackage: Packaged return data
+ * @param aErrorCode: Possible error code
+ * @return KErrNone/ KErrCorrupt
+ */
+ TInt CompleteNotifyL( CSatDataPackage* aDataPackage, TInt aErrorCode );
+
+ /**
+ * Handles the Send data terminal response
+ * @param aRsp: Response structure
+ * @return KErrNone/ KErrCorrupt
+ */
+ TInt TerminalResponseL( TDes8* aRsp );
+
+ public: // New methods
+
+ /**
+ * Create notification specific terminal response data
+ * @param aPCmdNumber: Proactive command number
+ * @param aGeneralResult: Result of the proactive command
+ * @param aAdditionalInfo: Additional info for terminal response
+ * @param aChannelDataLength: channel data length
+ * @return Success/Failure value
+ */
+ TInt CreateTerminalRespL( TUint8 aPCmdNumber, TUint8 aGeneralResult,
+ const TDesC16& aAdditionalInfo,
+ TUint8 aChannelDataLength );
+
+
+ private: // Data
+
+ // Notify SendData struct. Package received from ETel.
+ RSat::TSendDataV2Pckg* iSendDataRspV2Pckg;
+ // Pointer to the notifications tsy class
+ CSatNotificationsTsy* iNotificationsTsy;
+
+ };
+
+#endif // CSATNOTIFYSENDDATA_H
\ No newline at end of file