summaryrefslogtreecommitdiff
path: root/core/obex/obexsend.cpp
blob: d58b4e9cf5745ddd15a4d9d9ae4558c034b48591 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
//  7-Jul-2005 mbh@sdgsystems.com: replace hand coded form with one
//             generated via QT2 Designer.  The new form supports
//             selection of target devices, as opposed to sending to 
//             all.

#include "obex.h"
#ifdef BLUETOOTH
#include "btobex.h"
#endif
#include "obexsend.h"
using namespace OpieObex;
#ifdef BLUETOOTH
using namespace OpieTooth;
#endif

/* OPIE */
#include <opie2/odebug.h>
#include <qpe/qcopenvelope_qws.h>
#include <opie2/oresource.h>
#include <qpe/version.h>
#ifdef BLUETOOTH
#include <devicehandler.h>
#include "remotedevice.h"
#endif

using namespace Opie::Core;

/* QT */
#include <qlabel.h>
#include <qpushbutton.h>
#include <qpixmap.h>
#include <qlistview.h>

#include <unistd.h>
/* TRANSLATOR OpieObex::SendWidget */

/* Just for backward compatibility */
#if OPIE_VERSION < 102010
    #define OResource Resource
#endif

SendWidget::SendWidget( QWidget* parent, const char* name )
    : obexSendBase( parent, name ) {
    initUI();
}
SendWidget::~SendWidget() {
}
void SendWidget::initUI() {
    m_obex = new Obex(this, "obex");
    connect(m_obex, SIGNAL(error(int) ),
            this, SLOT(slotIrError(int) ) );
    connect(m_obex, SIGNAL(sent(bool) ),
            this, SLOT(slotIrSent(bool) ) );
    connect(m_obex, SIGNAL(currentTry(unsigned int) ),
            this, SLOT(slotIrTry(unsigned int) ) );

    QCopChannel* chan = new QCopChannel("QPE/IrDaAppletBack", this );
    connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ),
            this, SLOT(dispatchIrda(const QCString&,const QByteArray&) ) );

#ifdef BLUETOOTH
    m_btobex = new BtObex(this, "btobex");
    connect(m_btobex, SIGNAL(error(int) ),
            this, SLOT(slotBtError(int) ) );
    connect(m_btobex, SIGNAL(sent(bool) ),
            this, SLOT(slotBtSent(bool) ) );
    connect(m_btobex, SIGNAL(currentTry(unsigned int) ),
            this, SLOT(slotBtTry(unsigned int) ) );

    chan = new QCopChannel("QPE/BluetoothBack", this );
    connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ),
            this, SLOT(dispatchBt(const QCString&,const QByteArray&) ) );
#endif
}

/*
 * in send we'll first set everything up
 * and then wait for a list of devices.
 */
void SendWidget::send( const QString& file, const QString& desc ) {
    m_file = file;
    m_irDa.clear();
#ifdef BLUETOOTH
    m_bt.clear();
#endif
    m_start = 0;

    fileToSend->setText(desc.isEmpty() ? file : desc );

    if ( !QCopChannel::isRegistered("QPE/IrDaApplet") )
    {
        irdaStatus->setText(tr("not enabled."));
    }
    else
    {
        QCopEnvelope e1("QPE/IrDaApplet", "enableIrda()");
        irdaStatus->setText(tr("ready"));
        sendButton->setEnabled( true );
    }
#ifdef BLUETOOTH
    if ( !QCopChannel::isRegistered("QPE/Bluetooth") )
    {
        btStatus->setText(tr("not enabled."));
    }
    else
    {
        QCopEnvelope e1("QPE/Bluetooth", "enableBluetooth()");
	btStatus->setText(tr("ready."));
	sendButton->setEnabled( true );
    }
    read_receivers();
#endif
}

int SendWidget::addReceiver(const QString& str, const char *icon)
{
    QListViewItem * item = new QListViewItem( receiverList, 0 );
    item->setText( 0, str );
    item->setPixmap( 1, OResource::loadPixmap( icon ) );

    int id = receivers.count();
    receivers[id] = item;
    return id;
}

bool SendWidget::receiverSelected(int id)
{
    return (bool)(receivers[id]->pixmap(2) != NULL);
}

void SendWidget::setReceiverStatus( int id, const QString& status ) {
    if ( !receivers.contains(id) ) return;
    receivers[id]->setText(3, status );
}

void SendWidget::slotIrDaDevices( const QStringList& list) {
    for (QStringList::ConstIterator it = list.begin(); 
        it != list.end(); ++it ) {
        int id = addReceiver(*it, "obex/irda.png");
        m_irDa.insert( id, (*it) );
    }
    irdaStatus->setText( tr("ready."));
    m_irDaIt = m_irDa.begin();

}

void SendWidget::slotBTDevices( const QMap<QString, QString>& str ) {
#ifdef BLUETOOTH
    for(QMap<QString, QString>::ConstIterator it = str.begin(); 
        it != str.end(); ++it ) {
        int id = addReceiver(it.key(), "obex/bt.png");
        m_bt.insert( id, Pair( it.key(), it.data() ) );
    }
    btStatus->setText(tr("ready."));
    m_btIt = m_bt.begin();

#else
    (void)str;
#endif
}
void SendWidget::slotSelectedDevice( int, int ) {
/*    if ( name ==  m_irDeSearch ) {
        for (QMap<int, QString>::Iterator it= m_irDa.begin(); it != m_irDa.end(); ++it )
            m_devBox->removeDevice( it.key() );

        QCopEnvelope e2("QPE/IrDaApplet", "listDevices()");
	}*/
}
void SendWidget::dispatchIrda( const QCString& str, const QByteArray& ar ) {
    if ( str == "devices(QStringList)" ) {
        QDataStream stream( ar, IO_ReadOnly );
        QStringList list;
        stream >> list;
        slotIrDaDevices( list );
    }
}
void SendWidget::slotIrError( int ) {
    irdaStatus->setText(tr("error :("));
}
void SendWidget::slotIrSent( bool b) {
#ifdef BLUETOOTH
    QString text = b ? tr("Sent") : tr("Failure");
    setReceiverStatus( m_irDaIt.key(), text );
    ++m_irDaIt;
    slotStartIrda();
#else
    (void)b;
#endif
}
void SendWidget::slotIrTry(unsigned int trI) {
    setReceiverStatus(m_irDaIt.key(), tr("Try %1").arg( QString::number( trI ) ));
}
void SendWidget::slotStartIrda() {
    if ( !m_irDa.count() ) 
        return;
    if ( m_irDaIt == m_irDa.end() || !receiverSelected(m_irDaIt.key())) {
        irdaStatus->setText(tr("complete."));
	m_irDaIt = m_irDa.begin();
        return;
    }
    setReceiverStatus( m_irDaIt.key(), tr("Start sending") );
    irdaStatus->setText(tr("sending."));
    m_obex->send( m_file, tr("noaddress") );
}

void SendWidget::dispatchBt( const QCString& str, const QByteArray& ar ) {
    if ( str == "devices(QStringMap)" ) {
        QDataStream stream( ar, IO_ReadOnly );
        QMap<QString, QString> btmap;
        stream >> btmap;
        slotBTDevices( btmap );
    }
}
void SendWidget::slotBtError( int ) {
    btStatus->setText(tr("error :("));    
}
void SendWidget::slotBtSent( bool b) {
#ifdef BLUETOOTH
    QString text = b ? tr("Sent") : tr("Failure");
    setReceiverStatus( m_btIt.key(), text );
    ++m_btIt;
    slotStartBt();
#else
    (void)b;
#endif
}
void SendWidget::slotBtTry(unsigned int trI) {
#ifdef BLUETOOTH
    setReceiverStatus( m_btIt.key(), tr("Try %1").arg( QString::number( trI ) ) );
#else
    (void)trI;
#endif
}
void SendWidget::slotStartBt() {
#ifdef BLUETOOTH
    // skip past unselected receivers
    if ( !m_bt.count() ) 
        return;
    while((m_btIt != m_bt.end()) && !receiverSelected(m_btIt.key()))
        ++m_btIt;
    if (m_btIt == m_bt.end() ) {
        btStatus->setText(tr("complete."));
	m_btIt = m_bt.begin();
        return;
    }
    setReceiverStatus( m_btIt.key(), tr("Start sending") );
    btStatus->setText(tr("sending."));
    m_btobex->send( m_file, m_btIt.data().second() );
#endif
}

void SendWidget::send_to_receivers() {
#ifdef BLUETOOTH
    slotStartBt();
#endif
    slotStartIrda();
}

#ifdef BLUETOOTH
/**
 * Read receivers saved by bluetooth manager
 */
void SendWidget::read_receivers()
{
    QValueList<RemoteDevice> devices;
    DeviceHandler handler;
    QValueList<RemoteDevice>::ConstIterator it;

    receiverList->clear();
    receivers.clear();
    sendButton->setDisabled( true );
    btStatus->setText(tr("load."));
    m_bt.clear();

    if ( QCopChannel::isRegistered("QPE/Bluetooth") )
    {
	devices = handler.load();
	for( it = devices.begin(); it != devices.end() ; ++it )
	{
	    int id = addReceiver((*it).name(), "obex/bt.png");
	    m_bt.insert(id, Pair((*it).name(), (*it).mac()));
	}
	btStatus->setText(tr("ready."));
	m_btIt = m_bt.begin();
	sendButton->setEnabled( true );
    }
}
#endif

void SendWidget::scan_for_receivers()
{
    sendButton->setDisabled( true );
    receiverList->clear();
    receivers.clear();
    m_irDa.clear();
#ifdef BLUETOOTH
    m_bt.clear();
#endif
    if ( QCopChannel::isRegistered("QPE/IrDaApplet") )
    {
        irdaStatus->setText(tr("searching..."));
        sendButton->setEnabled( true );
        QCopEnvelope e2("QPE/IrDaApplet", "listDevices()");
    }

#ifdef BLUETOOTH
    if ( QCopChannel::isRegistered("QPE/Bluetooth") )
    {
        btStatus->setText(tr("searching..."));
        sendButton->setEnabled( true );
        QCopEnvelope e3("QPE/Bluetooth", "listDevices()");
    }
#endif
}

void SendWidget::toggle_receiver(QListViewItem* item)
{
    if (!item)
	return;
    // toggle the state of an individual receiver.
    if (item->pixmap(2))
        item->setPixmap(2, QPixmap());
    else
        item->setPixmap(2, OResource::loadPixmap("obex/check.png"));
}


void SendWidget::closeEvent( QCloseEvent* evt) {
    delete m_obex;
    m_obex = NULL;
#ifdef BLUETOOTH
    delete m_btobex;
    m_btobex = NULL;
#endif
    obexSendBase::closeEvent(evt);
    {
        QCopEnvelope e("QPE/IrDaApplet", "disableIrda()");
    }
#ifdef BLUETOOTH
    {
        QCopEnvelope e("QPE/Bluetooth", "disableBluetooth()");
    }
#endif
}

void SendWidget::userDone() {
    close();
}

QString SendWidget::file()const {
    return m_file;
}