adaptationlayer/tsy/nokiatsy_dll/inc/cmmphonebookoperationread.h
changeset 0 63b37f68c1ce
child 5 8ccc39f9d787
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/adaptationlayer/tsy/nokiatsy_dll/inc/cmmphonebookoperationread.h	Fri Nov 06 17:28:23 2009 +0000
@@ -0,0 +1,182 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "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:
+*
+*/
+
+#ifndef _CMMPHONEBOOK_OPERATION_READ_H
+#define _CMMPHONEBOOK_OPERATION_READ_H
+
+// INCLUDES
+#include <ctsy/pluginapi/cmmdatapackage.h>
+#include <e32base.h>
+#include "cmmphonebookstoreoperationbase.h"
+
+// CONSTANTS
+    // None
+
+// MACROS
+    // None
+
+// DATA TYPES
+    // None
+
+// EXTERNAL DATA STRUCTURES
+    // None
+
+// FUNCTION PROTOTYPES
+    // None
+
+// CLASS DECLARATION
+/**
+* CMmPhoneBookOperationInit is used to create and send GSM-specific
+* PBStore ISI messages to PhoNet via PhoNetSender relating to read.
+*/
+class CMmPhoneBookOperationRead : public CMmPhoneBookStoreOperationBase
+    {
+    public:  // Constructors and destructor
+        
+        /**
+        * By default Symbian OS constructor is private.
+        */
+        CMmPhoneBookOperationRead();
+
+
+        /**
+        * Two-phased constructor.
+        * @return CMmPhoneBookOperationRead*: created object
+        */
+        static CMmPhoneBookOperationRead* NewL(
+            CMmPhoneBookStoreMessHandler* aMmPhoneBookStoreMessHandler,
+            const CMmDataPackage* aDataPackage );
+
+        /**
+        * Destructor.
+        */
+        ~CMmPhoneBookOperationRead();
+
+        /**
+        * This method created entry point to correct operation
+        * @param TName aPhonebookType:
+        * @param TInt aIpc: Identify number of request.
+        * @return CMmPhoneBookStoreOperation*: pointer to operation.
+        */
+        static CMmPhoneBookOperationRead* Build(
+            TName aPhonebookType,
+            TInt aIpc );
+
+
+
+virtual TInt UICCHandleData3gADNReadReq( TInt /*aFileID*/, TInt /*aFileSFI*/)
+{
+	      TFLOGSTRING("TSY: CMmPhoneBookOperationInit::CreateReq - Return KErrNotSupported");
+        return KErrNotSupported;
+}
+
+
+virtual TInt HandleUICC3gADNRespL(const TInt /*aStatus*/, const TDes8& /*aFileData*/, const TInt /*aTransId*/)
+{
+	      TFLOGSTRING("TSY: CMmPhoneBookOperationInit::CreateReq - Return KErrNotSupported");
+        return KErrNotSupported;
+}
+  private:
+
+
+        /**
+        * Class attributes are created in ConstructL.
+        */
+        void ConstructL();
+        
+        // Transmit 
+
+        /**
+        * Separates different IPC requests for each other.
+        * @param TInt aIpc: Identify number of request.
+        * @param const CMmDataPackage* aDataPackage: Packaged data.
+        * @return TInt: KErrNone or error value.
+        */
+        TInt UICCCreateReq( TInt aIpc, const CMmDataPackage* aDataPackage );
+
+        /**
+        * Constructs an ISI-message to read entry from SIM
+        * @param
+        * @return TInt: KErrNone or error value.
+        */
+        TInt USimPbReqRead( TInt aRecordNo );
+        
+        /**
+        * Constructs Data to read entry from USIM ADN Phonebook
+        * @param
+        * @return TInt: KErrNone or error value.
+        */
+        TInt UICCHandleDataADNReadReq( TUiccReadLinearFixed& aParams, TUint16 aFileID, TUint8 aFileSFI );
+        
+        
+        // Receive
+
+        /**
+        * Handles SimPbResp ISI -message
+        * @param  TIsiReceiveC& aIsiMessage
+        * @param TBool& aComplete: Indicates if request can remove from
+        *        operationlist or not.
+        * @return TInt: KErrNone or error value.
+        */
+        TInt HandleUICCPbRespL(
+                TBool &aComplete,
+                TInt aStatus,
+                const TDesC8 &aFileData,
+                TInt aTransId);
+
+        
+        
+        /**
+        * Handles SimPbResp ISI -message
+        * @param  TInt aTagValue
+        * @param  TDes8& aFileData
+        * @return TInt: KErrNone or error value.
+        */
+        TInt UICCHandleDataADNReadResp( const TDesC8& aFileData);
+        
+
+    public: // Data
+        // None
+
+    protected: // Data
+        // Attribute to hold the information how many entries left to read
+        TInt iNumOfEntriesToRead;
+
+        // Attribute to hold the information how many entries written into
+        // array
+        TInt iNumOfEntriesFilled;
+
+    private: // Data
+        // None
+
+        // Attribute to check if Extension read is going on 
+        TBool iExtensionRead ;
+        
+        // Attribute to store the service type requested 
+        TInt iServiceType;
+        
+        // Attribute to store no of records for all EF
+        
+        TInt iNumOfPhoneBookRecords;
+
+
+
+};
+
+#endif // _CMMPHONEBOOK_OPERATION_READ_H
+
+// End of file