browserutilities/feedsengine/FeedsServer/UrlHandler/src/ServerHttpConnection.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 14 Apr 2010 17:06:56 +0300
branchRCL_3
changeset 37 ac77f89b1d9e
parent 36 c711bdda59f4
child 48 79859ed3eea9
permissions -rw-r--r--
Revision: 201013 Kit: 201015

/*
* Copyright (c) 2005 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:  A class that fetches resources via HTTP 1.1.
*
*/


#include "browser_platform_variant.hrh"
#include <aputils.h> 
#include <internetconnectionmanager.h>

#include "ServerHttpConnection.h"
#include "Logger.h"
#ifdef BRDO_OCC_ENABLED_FF
#include <FeatMgr.h>
#include <CentralRepository.h>
#include <CoreApplicationUIsSDKCRKeys.h>
#endif

// -----------------------------------------------------------------------------
// CServerHttpConnection::NewL
//
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CServerHttpConnection* CServerHttpConnection::NewL( TUint32 iDefaultAccessPoint )
    {
    CServerHttpConnection* self = new (ELeave) CServerHttpConnection( iDefaultAccessPoint );
    
    CleanupStack::PushL(self);
    self->ConstructL();
    CleanupStack::Pop();

    return self;
    }

        
// -----------------------------------------------------------------------------
// CServerHttpConnection::CServerHttpConnection
// C++ default constructor can NOT contain any code, that
// might leave.
// -----------------------------------------------------------------------------
//
CServerHttpConnection::CServerHttpConnection( TUint32 aDefaultAccessPoint ):
        iLeakTracker( CLeakTracker::EHttpConnection ),
        iDefaultAccessPoint( aDefaultAccessPoint )
    {
    }
        

// -----------------------------------------------------------------------------
// CServerHttpConnection::ConstructL
// Symbian 2nd phase constructor can leave.
// -----------------------------------------------------------------------------
//
void CServerHttpConnection::ConstructL()
    {
    BaseConstructL();

    // Create the connection mgr.
    iConMgr = CInternetConnectionManager::NewL(ETrue);
    }        


// -----------------------------------------------------------------------------
// CServerHttpConnection::~CServerHttpConnection
// Deconstructor.
// -----------------------------------------------------------------------------
//
CServerHttpConnection::~CServerHttpConnection()
    {
    // close http session
    iSession.Close();

    // delete ConnectionManager
    Disconnect();
    delete iConMgr;
    }


// -----------------------------------------------------------------------------
// CServerHttpConnection::CreateConnection
// 
// It propagates the connection callback to the browser client.
// -----------------------------------------------------------------------------
//
TInt CServerHttpConnection::CreateConnection(TInt* aConnectionPtr, TInt* aSockSvrHandle, 
        TBool* aNewConn, TApBearerType* aBearerType)
    {
    TInt  err = KErrNone;

    // If need be establish the connection.
    if(!IsConnected())
        {
#ifdef BRDO_OCC_ENABLED_FF
        TUint32 snapId = 0; //Defaults connects to Internet snap
        iConMgr->SetConnectionType(CMManager::EDestination);
        iConMgr->SetRequestedSnap(snapId);
       if ( !IsPhoneOfflineL() )
           {
           // For only feeds, this silent is required
           iConMgr->SetOccPreferences(ESilient);
           }
#else
        // Set the default access point.
        iConMgr->SetRequestedAP( iDefaultAccessPoint );
#endif
        // Open a connection.
        TRAP(err, err = iConMgr->StartConnectionL(ETrue));                
        if (err != KErrNone)
            {
            // Notify the HttpHandler that the establishing the access point failed
            if (iObserver != NULL)
                {
                iObserver->ConnectionFailed(err);
                }
                
            return err;
            }

        *aNewConn = ETrue;

        if (iObserver != NULL)
            {
            iObserver->ConnectionAvailable();
            }
        }
        
    // Otherwise the connection is valid.
    else
        {
        *aNewConn = EFalse;
        }

    // Set the connection, server handler, and bearer type.
    *aConnectionPtr = (TInt) &iConMgr->Connection();
    *aSockSvrHandle = (TInt) iConMgr->SocketServer().Handle();

    TRAP(err, *aBearerType = iConMgr->CurrentBearerTypeL());
    if (err != KErrNone)
        {
        // Notify the HttpHandler that the establishing the access point failed
        if (iObserver != NULL)
            {
            iObserver->ConnectionFailed(err);
            }
                
        return err;
        }
    
    return KErrNone;
    }


// -----------------------------------------------------------------------------
// CServerHttpConnection::IsConnected
//
// Returns whether or not the connection is active.
// -----------------------------------------------------------------------------
//
TBool CServerHttpConnection::IsConnected()
    {
    return iConMgr->Connected();
    }
    

// -----------------------------------------------------------------------------
// CServerHttpConnection::Disconnect
//
// Closes the connection.
// -----------------------------------------------------------------------------
//
void CServerHttpConnection::Disconnect()
    {
    if (IsConnected())
        {
        iConMgr->Disconnect();
        }
    }


// -----------------------------------------------------------------------------
// CServerHttpConnection::SetAccessPointL
// 
// Set the new access point.
// -----------------------------------------------------------------------------
//
void CServerHttpConnection::SetAccessPointL( TUint32 aAccessPoint )
    {
    iDefaultAccessPoint = aAccessPoint;
    }

#ifdef BRDO_OCC_ENABLED_FF
// ---------------------------------------------------------
// CServerHttpConnection::IsPhoneOfflineL
//
// Checks if phone is in offline mode or not.
// Return ETrue if phone is in offline mode.
// Return EFalse if phone is not in offline mode.
// ---------------------------------------------------------
//
TBool CServerHttpConnection::IsPhoneOfflineL() 
     {
     FeatureManager::InitializeLibL();
     TBool onLineMode = FeatureManager::FeatureSupported( KFeatureIdOfflineMode );
     FeatureManager::UnInitializeLib();
     if ( onLineMode )
         {
         CRepository* repository = CRepository::NewLC( KCRUidCoreApplicationUIs );
         TInt connAllowed = 1;
         repository->Get( KCoreAppUIsNetworkConnectionAllowed, connAllowed );
         CleanupStack::PopAndDestroy(); //repository  
         if ( !connAllowed )
             {
             //Yes, Phone is in Offline mode
             return ETrue;
             }
         }
     //Phone is in Online mode
     return EFalse;
     }
#endif