⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 objectexchangeservicesearcher.cpp

📁 蓝牙传输文件, symbian3.0 系统下. 2FP没有试过
💻 CPP
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */


// INCLUDE FILES
#include <bt_sock.h>

#include "ObjectExchangeServiceSearcher.h"
#include "blueshare.pan"

// ----------------------------------------------------------------------------
// TSdpAttributeParser::SSdpAttributeNode gObexProtocolListData[]
// Construct a TSdpAttributeParser
// ----------------------------------------------------------------------------
//
const TSdpAttributeParser::SSdpAttributeNode gObexProtocolListData[] = 
{
    { TSdpAttributeParser::ECheckType, ETypeDES },
    { TSdpAttributeParser::ECheckType, ETypeDES },
    { TSdpAttributeParser::ECheckValue, ETypeUUID, KL2CAP },
    { TSdpAttributeParser::ECheckEnd },
    { TSdpAttributeParser::ECheckType, ETypeDES },
    { TSdpAttributeParser::ECheckValue, ETypeUUID, KRFCOMM },
    { TSdpAttributeParser::EReadValue, ETypeUint, KRfcommChannel },
    { TSdpAttributeParser::ECheckEnd },
    { TSdpAttributeParser::ECheckType, ETypeDES },
    { TSdpAttributeParser::ECheckValue, ETypeUUID, KBtProtocolIdOBEX },
    { TSdpAttributeParser::ECheckEnd },
    { TSdpAttributeParser::ECheckEnd },
    { TSdpAttributeParser::EFinished }
};

// ----------------------------------------------------------------------------
// TStaticArrayC
// Provides a type and size, safe method of using static arrays.
// ----------------------------------------------------------------------------
//
const TStaticArrayC<TSdpAttributeParser::SSdpAttributeNode> gObexProtocolList =
CONSTRUCT_STATIC_ARRAY_C( gObexProtocolListData );

// ============================ MEMBER FUNCTIONS ==============================

// ----------------------------------------------------------------------------
// CObjectExchangeServiceSearcher::NewL()
// Two-phased constructor.
// ----------------------------------------------------------------------------
//
CObjectExchangeServiceSearcher* CObjectExchangeServiceSearcher::NewL()
{
    CObjectExchangeServiceSearcher* self = CObjectExchangeServiceSearcher::NewLC();
    CleanupStack::Pop( self );
    return self;
}

// ----------------------------------------------------------------------------
// CObjectExchangeServiceSearcher::NewLC()
// Two-phased constructor.
// ----------------------------------------------------------------------------
//
CObjectExchangeServiceSearcher* CObjectExchangeServiceSearcher::NewLC()
{
    CObjectExchangeServiceSearcher* self = new(ELeave) CObjectExchangeServiceSearcher();
    CleanupStack::PushL( self );
    self->ConstructL();
    return self;
}

// ----------------------------------------------------------------------------
// CObjectExchangeServiceSearcher::CObjectExchangeServiceSearcher()
// Constructor.
// ----------------------------------------------------------------------------
//
CObjectExchangeServiceSearcher::CObjectExchangeServiceSearcher()
: CBTServiceSearcher( ),
  iServiceClass( KServiceClass ),
  iPort( -1 )
{
}

// ----------------------------------------------------------------------------
// CObjectExchangeServiceSearcher::~CObjectExchangeServiceSearcher()
// Destructor.
// ----------------------------------------------------------------------------
//
CObjectExchangeServiceSearcher::~CObjectExchangeServiceSearcher()
{
}

// ----------------------------------------------------------------------------
// CObjectExchangeServiceSearcher::ConstructL()
// Symbian 2nd phase constructor can leave.
// ----------------------------------------------------------------------------
//
void CObjectExchangeServiceSearcher::ConstructL()
{
    // no implementation required
}

// ----------------------------------------------------------------------------
// CObjectExchangeServiceSearcher::ServiceClass()
// The service class to search.
// ----------------------------------------------------------------------------
//
const TUUID& CObjectExchangeServiceSearcher::ServiceClass() const
{
    return iServiceClass;
}

// ----------------------------------------------------------------------------
// CObjectExchangeServiceSearcher::ProtocolList()
// The list of Protocols required by the service
// ----------------------------------------------------------------------------
//
const TSdpAttributeParser::TSdpAttributeList& CObjectExchangeServiceSearcher
::ProtocolList() const
{
    return gObexProtocolList;
}

// ----------------------------------------------------------------------------
// CObjectExchangeServiceSearcher::FoundElementL()
// Read the data element.
// ----------------------------------------------------------------------------
//
void CObjectExchangeServiceSearcher::FoundElementL( TInt aKey, 
                                                    const CSdpAttrValue& aValue )
{
    __ASSERT_ALWAYS( aKey == static_cast<TInt>( KRfcommChannel ), 
            Panic( EBlueShareProtocolRead ) );
    iPort = aValue.Uint();
}

//! ----------------------------------------------------------------------------
//! CObjectExchangeServiceSearcher::Port()
//! Port connection on the remote machine.
//! ----------------------------------------------------------------------------
//!
TInt CObjectExchangeServiceSearcher::Port()
{
    return iPort;
}

// End of File

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -