summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/io_irda.cpp
blob: a0f72ae955f73f56630328737bdcebeab5aff96a (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
#include "io_irda.h"

IOIrda::IOIrda( const Profile &config ) : IOSerial( config ) {
    m_attach = 0;
}


IOIrda::~IOIrda() {
    if ( m_attach ) {
        delete m_attach;
    }
}


void IOIrda::close() {

    IOSerial::close();
    // still need error handling
    delete m_attach;
}

bool IOIrda::open() {
    bool ret;

    // irdaattach here
    m_attach = new Opie::Core::OProcess();
    *m_attach << "irattach /dev/ttyS2 -s";

    connect( m_attach, SIGNAL( processExited(Opie::Core::OProcess*) ),
             this, SLOT( slotExited(Opie::Core::OProcess*) ) );

    if ( m_attach->start() ) {
        ret= IOSerial::open();
    } else {
    // emit error!!!
        delete m_attach;
	m_attach = 0l;
	ret = false;
    }
    return ret;
}

void IOIrda::reload( const Profile &config ) {
    m_device = config.readEntry("Device", IRDA_DEFAULT_DEVICE);
    m_baud = config.readNumEntry("Baud", IRDA_DEFAULT_BAUD);
    m_parity = config.readNumEntry("Parity", IRDA_DEFAULT_PARITY);
    m_dbits = config.readNumEntry("DataBits", IRDA_DEFAULT_DBITS);
    m_sbits = config.readNumEntry("StopBits", IRDA_DEFAULT_SBITS);
    m_flow = config.readNumEntry("Flow", IRDA_DEFAULT_FLOW);
}


QString IOIrda::identifier() const {
    return "irda";
}

QString IOIrda::name() const {
    return "Irda IO Layer";
}

void IOIrda::slotExited(Opie::Core::OProcess* proc ){
    close();
    delete proc;
}