summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/rfcommhelper.cpp
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/rfcommhelper.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/rfcommhelper.cpp25
1 files changed, 13 insertions, 12 deletions
diff --git a/noncore/net/opietooth/manager/rfcommhelper.cpp b/noncore/net/opietooth/manager/rfcommhelper.cpp
index 0769da2..36e9086 100644
--- a/noncore/net/opietooth/manager/rfcommhelper.cpp
+++ b/noncore/net/opietooth/manager/rfcommhelper.cpp
@@ -39,18 +39,16 @@ void RfCommHelper::detach() {
39 if ( m_out2in[0] ) 39 if ( m_out2in[0] )
40 close(m_out2in[0] ); 40 close(m_out2in[0] );
41 if ( m_out2in[1] ) 41 if ( m_out2in[1] )
42 close(m_out2in[1] ); 42 close(m_out2in[1] );
43} 43}
44bool RfCommHelper::attach( const QString& bd_addr, int port ) { 44bool RfCommHelper::attach( const QString& bd_addr, int port ) {
45 int i =0; 45 int i = 0;
46 bool ok = false; 46 bool ok = false;
47 while (!ok ) { 47 for (i = 0; i < 5 && !ok; i++) {
48 if (i == 4) break;
49 ok = connect( i, bd_addr, port ); 48 ok = connect( i, bd_addr, port );
50 i++;
51 } 49 }
52 return ok; 50 return ok;
53} 51}
54/* 52/*
55 * not implemented yet 53 * not implemented yet
56 */ 54 */
@@ -80,13 +78,13 @@ bool RfCommHelper::connect(int devi, const QString& bdaddr, int port) {
80 case 0:{ // child code 78 case 0:{ // child code
81 setupComChild(); 79 setupComChild();
82 char por[15]; 80 char por[15];
83 char dev[15]; 81 char dev[15];
84 sprintf( por, "%d", port ); 82 sprintf( por, "%d", port );
85 sprintf( dev, "%d", devi ); 83 sprintf( dev, "%d", devi );
86 execlp( "rfcomm", "rfcomm", dev, bdaddr.latin1(), por, NULL ); 84 execlp( "rfcomm", "rfcomm", "connect", dev, bdaddr.latin1(), por, NULL );
87 char resultByte = 1; 85 char resultByte = 1;
88 if ( m_fd[1] ) 86 if ( m_fd[1] )
89 write(m_fd[1], &resultByte, 1 ); 87 write(m_fd[1], &resultByte, 1 );
90 _exit( -1 ); 88 _exit( -1 );
91 break; 89 break;
92 } 90 }
@@ -110,13 +108,12 @@ bool RfCommHelper::connect(int devi, const QString& bdaddr, int port) {
110 if ( len == 1 ) { // it failed to execute 108 if ( len == 1 ) { // it failed to execute
111 return false; 109 return false;
112 } 110 }
113 if ( len == -1 ) 111 if ( len == -1 )
114 if ( (errno == ECHILD ) || (errno == EINTR ) ) 112 if ( (errno == ECHILD ) || (errno == EINTR ) )
115 continue; // the other process is not yet ready? 113 continue; // the other process is not yet ready?
116
117 break; 114 break;
118 } 115 }
119 if ( m_fd[0] ) 116 if ( m_fd[0] )
120 close( m_fd[0] ); 117 close( m_fd[0] );
121 terminate = false; 118 terminate = false;
122 fd_set fds; 119 fd_set fds;
@@ -124,34 +121,38 @@ bool RfCommHelper::connect(int devi, const QString& bdaddr, int port) {
124 int sel; 121 int sel;
125 while (!terminate ) { 122 while (!terminate ) {
126 FD_ZERO( &fds ); 123 FD_ZERO( &fds );
127 FD_SET( m_in2out[0], &fds ); 124 FD_SET( m_in2out[0], &fds );
128 timeout.tv_sec = 5; 125 timeout.tv_sec = 5;
129 timeout.tv_usec = 0; 126 timeout.tv_usec = 0;
130 127 printf("do select\n");
131 sel = select( m_in2out[0]+1, &fds, NULL, NULL, &timeout ); 128 sel = select( m_in2out[0]+1, &fds, NULL, NULL, &timeout );
132 if ( sel ) 129 printf("Check select\n");
130 if ( sel > 0)
131 {
133 if (FD_ISSET(m_in2out[0], &fds ) ) { 132 if (FD_ISSET(m_in2out[0], &fds ) ) {
134 char buf[2048]; 133 char buf[2048];
135 int len; 134 int len;
136 buf[0] = 0; 135 buf[0] = 0;
136 printf("read output\n");
137 len = read( m_in2out[0], buf, sizeof(buf) ); 137 len = read( m_in2out[0], buf, sizeof(buf) );
138 if ( len > 0 ) { 138 if ( len > 0 ) {
139 printf("%s", buf);
139 QCString string( buf ); 140 QCString string( buf );
140 if (string.left(9) == "Connected" ) { 141 if (string.left(9) == "Connected" ) {
141 m_connected = true; 142 m_connected = true;
142 m_device = m_device.sprintf("/dev/tty%d", devi ); 143 m_device = m_device.sprintf("/dev/tty%d", devi );
143 break; // we got connected 144 break; // we got connected
144 }; 145 };
145 } 146 }
146 // now parese it 147 // now parese it
147 }else {// time out
148 // 5 seconds without input check terminate?
149 //
150 ;
151 } 148 }
149 } else {// time out
150 terminate = true;
151 printf("terminate\n");
152 }
152 } 153 }
153 break; 154 break;
154 } 155 }
155 } 156 }
156 return !terminate; 157 return !terminate;
157} 158}