usbclasses/usbobexclasscontroller/inc/CUsbObexClassController.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:20:49 +0100
branchRCL_3
changeset 80 e02eb84a14d2
parent 79 25fce757be94
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* 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:  Adheres to the UsbMan USB Class API and manages the class.
*
*/


#ifndef CUSBOBEXCLASSCONTROLLER_H
#define CUSBOBEXCLASSCONTROLLER_H

#include <e32std.h>
#include <cusbclasscontrollerplugin.h>
#include <usbobex.h>
#include <usb/usblogger.h>
#include "obexsmwatcher.h"

const TInt KObexClassPriority = 2;
const TInt KObexNumInterfaces = 2;

_LIT(KUsbObexLddName, "eusbc");
_LIT(KUsbObexIfc, "OBEX");

/**
 *  This class implements OBEX class controller
 *
 *  @since S60 V3.1
 */
NONSHARABLE_CLASS(CUsbObexClassController) : public CUsbClassControllerPlugIn, public MObexSMObserver
    {
public:
    /**
     * Constructs a CUsbObexClassController object.
     *
     * @since S60 V3.1
     * @param aOwner USB Device that owns and manages the class.
     * @return A new CUsbObexClassController object
     */
    static CUsbObexClassController* NewL(MUsbClassControllerNotify& aOwner);

// from base class CActive.

    virtual void RunL();
    virtual void DoCancel();
    virtual TInt RunError(TInt aError);

// from MObexSMObserver    
    void MosmError(TInt aError);

// from base class CUsbClassControllerBase
    
    /**
     * From CUsbClassControllerBase.
     * Destructor
     *
     */ 
    virtual ~CUsbObexClassController();

    /**
     * From CUsbClassControllerBase.
     * Usbman starts class controller with this method.
     *
     * @param aStatus Will be completed either success or failure.
     */ 
    virtual void Start(TRequestStatus& aStatus);

    /**
     * From CUsbClassControllerBase.
     * Usbman stops class controller with this method.
     *
     * @param aStatus Will be completed either success or failure.
     */ 
    virtual void Stop(TRequestStatus& aStatus);

    /**
     * From CUsbClassControllerBase.
     * Returns information about the interfaces supported by this class.
     *
     * @param aDescriptorInfo Will be filled in with interface information.
     */ 
    virtual void GetDescriptorInfo(TUsbDescriptor& aDescriptorInfo) const;


protected:
    CUsbObexClassController(MUsbClassControllerNotify& aOwner);
    void DoGetDescriptorInfoL(TUsbDescriptor& aDescriptorInfo) const;
    void ConstructL();

private: // data
    TRequestStatus* iRequestStatus;
    CObexUSB* iObexSM; 
    CObexSMWatcher *iObexSMWatcher;
    };

#endif // CUSBOBEXCLASSCONTROLLER_H