coreapplicationuis/accfwuinotifier/src/AccFwUiNotifierProxy.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 18 Aug 2010 09:58:19 +0300
changeset 56 11a052f4b02e
parent 21 c4cbaa4fb734
permissions -rw-r--r--
Revision: 201031 Kit: 201033

/*
* Copyright (c) 2002-2010 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 "acc_debug.h"

// EXTERNAL DATA STRUCTURES

// EXTERNAL FUNCTION PROTOTYPES

// CONSTANTS

const TInt KNumberOfImplementations(1);

// 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 );
          
    aSubjects->AppendL( note );
     
      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