coreapplicationuis/accfwuinotifier/src/AccFwUiNotifierProxy.cpp
changeset 0 2e3d3ce01487
child 19 924385140d98
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/coreapplicationuis/accfwuinotifier/src/AccFwUiNotifierProxy.cpp	Tue Feb 02 10:12:00 2010 +0200
@@ -0,0 +1,110 @@
+/*
+* Copyright (c) 2002-2004 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:  Entry point to notifier server
+*
+*/
+
+
+// INCLUDE FILES
+#include <e32std.h>
+#include <ecom/implementationproxy.h>
+
+#include "AccFwUiNoteNotifier.h"
+#include "AccFwUiDialogNotifier.h"
+#include "acc_debug.h"
+
+// EXTERNAL DATA STRUCTURES
+
+// EXTERNAL FUNCTION PROTOTYPES
+
+// CONSTANTS
+
+const TInt KNumberOfImplementations(2);
+
+// MACROS
+
+// LOCAL CONSTANTS AND MACROS
+
+// MODULE DATA STRUCTURES
+
+// LOCAL FUNCTION PROTOTYPES
+
+// FORWARD DECLARATIONS
+
+// ============================= LOCAL FUNCTIONS ===============================
+
+// Creates notifiers on the array
+void CreateNotifiersL( CArrayPtrFlat<MEikSrvNotifierBase2>* aSubjects )
+    {
+    
+    API_TRACE_( "[AccFW: ACCFWUINOTIFIER] CreateNotifiersL() - enter" );
+    MEikSrvNotifierBase2* note = CAccFwUiNoteNotifier::NewL();
+    CleanupStack::PushL( note );
+    
+    MEikSrvNotifierBase2* dialog = CAccFwUiDialogNotifier::NewL();
+    CleanupStack::PushL( dialog );        
+    
+    aSubjects->AppendL( note );
+    aSubjects->AppendL( dialog );
+    
+    CleanupStack::Pop( dialog );
+    CleanupStack::Pop( note );
+    API_TRACE_( "[AccFW: ACCFWUINOTIFIER] CreateNotifiersL() - return void" );
+    
+    }
+    
+CArrayPtr<MEikSrvNotifierBase2>* NotifierArray()
+    {
+    CArrayPtrFlat<MEikSrvNotifierBase2>* subjects =
+        new CArrayPtrFlat<MEikSrvNotifierBase2>(KNumberOfImplementations);
+    
+    API_TRACE_( "[AccFW: ACCFWUINOTIFIER] NotifierArray() - enter" );
+    // if allocation succeeded
+    if( subjects )
+        {
+        TRAPD( err, CreateNotifiersL( subjects ) );
+        
+        // release if creation failed
+        if( err != KErrNone )
+            {
+            TInt count = subjects->Count();
+            
+            while( count-- )
+                {
+                // calling release on a MEikSrvNotifierBase2 will delete the instance
+                (*subjects)[count]->Release();
+                }
+                
+            delete subjects;
+            subjects = NULL;
+            }
+        }        
+    API_TRACE_( "[AccFW: ACCFWUINOTIFIER] NotifierArray() - return" );
+    return subjects;
+    }
+
+const TImplementationProxy ImplementationTable[] =
+	{
+	{{0x10205060},  (TFuncPtr)NotifierArray}
+	};
+
+EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
+	{
+	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy) ;
+	return ImplementationTable;
+	}
+    
+// ============================ MEMBER FUNCTIONS ===============================
+
+//End of file