diff -r 000000000000 -r 8e480a14352b messagingfw/alwaysonline/AlwaysOnlineManager/src/AOActiveScheduler.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/messagingfw/alwaysonline/AlwaysOnlineManager/src/AOActiveScheduler.cpp Mon Jan 18 20:36:02 2010 +0200 @@ -0,0 +1,87 @@ +/* +* Copyright (c) 2007 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: Always Online class +* +*/ + + +// INCLUDES +#include "AOActiveScheduler.h" +#include "AlwaysOnlineManagerServer.h" +#include "AlwaysOnlineManagerLogging.h" + +// CONSTANTS + +#ifdef _DEBUG +_LIT(KAOActiveSchedulerPanic, "AOActiveScheduler"); +const TInt KAOSchedulerPanicCode = -1; +#endif + +//--------------------------------------------- +// Constructor +//--------------------------------------------- +CAOActiveScheduler::CAOActiveScheduler() +{ +} + +//--------------------------------------------- +// Destructor +//--------------------------------------------- +CAOActiveScheduler::~CAOActiveScheduler() +{ + // this not owned, just set null + iAoServer = NULL; +} + +//--------------------------------------------- +// Destructor +//--------------------------------------------- +void CAOActiveScheduler::SetServerRef( CAlwaysOnlineManagerServer* aAoServer ) +{ + iAoServer = aAoServer; +} + + +//--------------------------------------------- +// CAOActiveScheduler::Error() +//--------------------------------------------- +void CAOActiveScheduler::Error( TInt anError ) const +{ + + KAOMANAGER_LOGGER_WRITE_FORMAT("CAOActiveScheduler::Error() ERROR IN AO ACTIVE SCHEDULER error code: ", anError ); + + TPckgBuf errorBuffer( anError ); + + //check that error is short enough value for + //descriptor + + TInt error = KErrNone; + + // make sure thet AoServer pointer is set + if ( iAoServer ) + { + TRAP(error, iAoServer->HandleClientCommandL( + EServerAPIBaseCommandAoSchedulerError , errorBuffer ); ); + } + else + { + error = KErrNotFound; + } + + // panic in debug mode if there is error + __ASSERT_DEBUG( error == KErrNone, + User::Panic( KAOActiveSchedulerPanic, KAOSchedulerPanicCode ) ); + + KAOMANAGER_LOGGER_WRITE("CAOActiveScheduler::Error() ERROR is handled." ); +}