Update contrib.
2 * Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "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.
28 #include <secdlgimpldefs.h>
30 const TUint KTSecDlgNotiferUid = 0x10204789;
32 #ifdef _T_SECDLG_TEXTSHELL
34 #include <twintnotifier.h>
36 /** Method at ordinal 1 to get a list of notifiers from this dll. */
37 IMPORT_C CArrayPtr<MNotifierBase2>* NotifierArray();
41 #include <eiknotapi.h>
42 #include <ecom/implementationproxy.h>
43 #define MNotifierBase2 MEikSrvNotifierBase2
45 IMPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount);
46 CArrayPtr<MNotifierBase2>* NotifierArray();
50 class CInputSpec : public CBase
53 CInputSpec(TSecurityDialogOperation aOp, HBufC* aLabelSpec, HBufC* aResponse1, HBufC* aResponse2);
55 TSecurityDialogNotification Operation() const { return iOp; }
56 const TDesC& LabelSpec() const { return *iLabelSpec; }
57 const TDesC& Response1() const { return *iResponse1; }
58 const TDesC& Response2() const { return *iResponse2; }
60 TSecurityDialogNotification iOp;
67 * This is a dummy implementation of the security dialog notifier. This version
68 * responds to dialogs with data read from t_secdlg_in.dat present on system drive.
69 * This contains the expected sequence of dialogs, and the desired responses. It keeps a
70 * count of how many dialogs it has answered in t_secdlg_out.dat present on system drive.
72 class CTestSecDlgNotifier : public CBase, public MNotifierBase2
75 static CTestSecDlgNotifier* NewL();
76 CTestSecDlgNotifier();
82 * Get the index of the next response by reading how many dialogs we have
85 TInt GetInputIndexL();
88 * Write the number of dalogs answered to the output file.
90 void WriteDialogCountL(TInt aCount);
93 * Read an input specification.
95 CInputSpec* ReadInputSpecL(TInt aIndex);
97 void DoEnterPINL(const CInputSpec& aSpec, const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage);
98 void DoChangePINL(const CInputSpec& aSpec, const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage);
99 void DoStartL( const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage );
100 void DoServerAuthenticationFailureL(const CInputSpec& aSpec, const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage );
101 void DoSecureConnectionL(const CInputSpec& aSpec, const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage );
105 TNotifierInfo RegisterL();
106 TNotifierInfo Info() const;
108 virtual void StartL( const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage );
109 virtual TPtrC8 StartL( const TDesC8& aBuffer );
112 TPtrC8 UpdateL( const TDesC8& aBuffer );