usbengines/usbotgwatcher/src/cusbstatehostainitiate.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 12 Mar 2010 15:48:40 +0200
branchRCL_3
changeset 20 a15c582fbf97
parent 13 7068aba64af5
child 21 ff9df6630274
permissions -rw-r--r--
Revision: 201007 Kit: 201008

/*
 * Copyright (c) 2008-2009 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:  Implementation
 *
 */
#include <usbuinotif.h>

#include "cusbstatehostainitiate.h"
#ifndef STIF
#include "cusbtimer.h"
#include "cusbnotifmanager.h"
#else
#include "mockcusbnotifmanager.h"
#include "mockcusbtimer.h"
#endif

#include "definitions.h"
#include "errors.h"

#include "debug.h"
#include "panic.h"

// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
CUsbStateHostAInitiate::CUsbStateHostAInitiate(CUsbOtgWatcher& aWatcher) :
    CUsbStateHostABase(aWatcher)
    {
    }

// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
void CUsbStateHostAInitiate::ConstructL()
    {
    LOG_FUNC

    CUsbStateHostABase::ConstructL();

    iAttachmentTimer = CUsbTimer::NewL(*this, EDeviceAttachmentTimer);

    }

// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
CUsbStateHostAInitiate* CUsbStateHostAInitiate::NewL(CUsbOtgWatcher& aWatcher)
    {
    LOG_FUNC

    CUsbStateHostAInitiate* self = new (ELeave) CUsbStateHostAInitiate(
            aWatcher);
    CleanupStack::PushL(self);
    self->ConstructL();
    CleanupStack::Pop(self);
    return self;
    }

// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
CUsbStateHostAInitiate::~CUsbStateHostAInitiate()
    {
    LOG_FUNC

    delete iAttachmentTimer;
    }

// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
TUsbStateIds CUsbStateHostAInitiate::Id()
    {
    return EUsbStateHostAInitiate;
    }

// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
void CUsbStateHostAInitiate::JustBeforeLeavingThisStateL()
    {
    LOG_FUNC

    iAttachmentTimer->Cancel();

    // do general things 
    CUsbStateHostABase::JustBeforeLeavingThisStateL();
    }

// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
void CUsbStateHostAInitiate::JustAdvancedToThisStateL()
    {
    LOG_FUNC

    // do general things 
    CUsbStateHostABase::JustAdvancedToThisStateL();

    TInt err = iWatcher.Usb().EnableFunctionDriverLoading();

    if (KErrNone != err)
        {
        LOG1( "EnableFunctionDriverLoading err = %d", err );
        iWatcher.HandleHostProblemL(EUsbWatcherCanNotEnableDriverLoading,
                EUsbStateHostHandleDropping);
        return;
        }

    // do BusRequest, if down

    if (CUsbVBusObserver::EVBusUp != iWatcher.VBusObserver()->VBus())
        {
        const TUint maxTrial = 3;
        TInt busReqErr(KErrGeneral);
        TUint count(0);

        while (count < maxTrial && KErrNone != busReqErr)
            {
            busReqErr = iWatcher.Usb().BusRequest();
            LOG1( "BusRequest() err = %d" , err);

            if (KErrNone != busReqErr)
                {
                err = iWatcher.Usb().BusClearError();
                if (KErrNone != err)
                    {
                    iWatcher.HandleHostProblemL(
                            EUsbWatcherCanNotClearBusError,
                            EUsbStateHostHandleDropping);
                    return;
                    }
                }
            ++count;
            }
        if (KErrNone != busReqErr)
            {
            iWatcher.HandleHostProblemL(EUsbWatcherCanNotRaiseVBus,
                    EUsbStateHostHandleDropping);
            return;
            }
        }

    // start timer, waiting for device attachment
    iAttachmentTimer->After(KTimeToWaitForDeviceAttachment);

    }

// From TimerObserver
// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
void CUsbStateHostAInitiate::TimerElapsedL(TUsbTimerId aTimerId)
    {
    LOG_FUNC

    switch (aTimerId)
        {
        case EDeviceAttachmentTimer:
            {
            LOG("AttachmentTimer" );
            HandleL(EUsbWatcherErrDandlingCable, EUsbStateHostHandleDropping);
            break;
            }
        default:
            {
            LOG1( "Unknown timer id = %d", aTimerId );
            Panic( EWrongTimerId);
            }
        }
    }

// From VBus observer
// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
void CUsbStateHostAInitiate::VBusUpL()
    {
    LOG_FUNC
    }

// From Host Event notification observer
// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
void CUsbStateHostAInitiate::DeviceAttachedL(TDeviceEventInformation aTdi)
    {
    LOG_FUNC

    iAttachmentTimer->Cancel();

    // check if an OTG device connected
    TOtgDescriptor otgDescriptor;

    // ignore all the errors, assume we connected to not otg
    TInt err = iWatcher.Usb().GetOtgDescriptor(aTdi.iDeviceId, otgDescriptor);
    LOG1("GetOtgDescriptor() err = %d", err );

    TBool hnpSupported(otgDescriptor.iAttributes & EUsbOtgHNPSupported);
    TBool srpSupported(otgDescriptor.iAttributes & EUsbOtgSRPSupported);

    // OTG device supports both hnp and srp
    if (hnpSupported && srpSupported)
        {

        HandleL(EUsbWatcherConnectedToOTG, EUsbStateHostHandleDropping);
        return;
        }

    if (KErrNone != aTdi.iError)
        {
        switch (aTdi.iError)
            // error in attachement
            {
            case KErrBadPower:
                {
                LOG( "TooMuchPower" );
                HandleL(
                        EUsbWatcherErrDeviceRequiresTooMuchPowerOnEnumeration,
                        EUsbStateHostDelayNotAttachedHandle);
                break;
                }
            default:
                {
                LOG1("AttachmentError aTdi.iError = %d" , aTdi.iError );
                HandleL(EUsbWatcherErrUnsupportedDevice,
                        EUsbStateHostHandleDropping);
                break;
                }
            }

        return;
        }
    }

// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
void CUsbStateHostAInitiate::DriverLoadSuccessL(TDeviceEventInformation)
    {
    LOG_FUNC
    ChangeHostStateL( EUsbStateHostAHost);
    }

// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
void CUsbStateHostAInitiate::DriverLoadPartialSuccessL(
        TDeviceEventInformation)
    {
    LOG_FUNC
    iWatcher.NotifManager()->ShowNotifierL(KUsbUiNotifOtgWarning,
            EUsbOtgPartiallySupportedDevice, NULL);
    ChangeHostStateL( EUsbStateHostAHost);

    }

// ---------------------------------------------------------------------------
// 
// ---------------------------------------------------------------------------
//
void CUsbStateHostAInitiate::DriverLoadFailureL(TDeviceEventInformation aDei)
    {
    LOG_FUNC

    HandleL(EUsbWatcherErrDriversNotFound, EUsbStateHostDelayAttachedHandle);
    }