summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/rfcommconfhandler.cpp
blob: f82d2c8d29d5d222bb327f1db243415703e9b98c (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

#include <qtextstream.h>
#include <opie2/odebug.h>
using namespace Opie::Core;

#include "rfcommconfhandler.h"


using namespace OpieTooth;

// move to lib


RfCommConfObject::RfCommConfObject( int number, QString mac, int channel, QString comment ) {
    m_number = number;
    m_mac = mac;
    m_channel = channel;
    m_comment = comment;
    // m_foundEntries = 0;
}

void RfCommConfObject::setNumber( int number )  {
    m_number = number;
}

void RfCommConfObject::setMac( QString mac )  {
    m_mac = mac;
}

void RfCommConfObject::setChannel( int channel )  {
    m_channel = channel;
}

void RfCommConfObject::setComment( QString comment )  {
    m_comment = comment;
}


RfCommConfObject::~RfCommConfObject()  {
}


RfCommConfHandler::RfCommConfHandler( const QString & filename ) {

    m_filename = filename;
    load();
}

RfCommConfHandler::~RfCommConfHandler() {

}

void RfCommConfHandler::save( QMap<QString, RfCommConfObject*> devices )  {

    QFile rfCommConf( "/tmp/test" );
    QTextStream outStream( &rfCommConf );
    if (  rfCommConf.open( IO_WriteOnly ) )  {

        QMap<QString,  RfCommConfObject*>::Iterator it;
        for( it = devices.begin(); it != devices.end(); ++it )  {
            outStream << "rfcomm" + QString("%1").arg( it.data()->number() ) + " {\n";
            outStream << "  device " + it.data()->mac() + ";\n";
            outStream << "  channel " + QString( "%1" ).arg( it.data()->channel() ) + ";\n";
            outStream << "  comment \"" + it.data()->comment() + "\";\n";
            outStream << "}\n\n";
        }

        rfCommConf.close();
    }
}


QMap<QString, RfCommConfObject*> RfCommConfHandler::foundEntries()  {
    return m_foundEntries;
}

void RfCommConfHandler::load()  {

    QFile rfCommConf( m_filename );
    if ( rfCommConf.open( IO_ReadOnly ) )  {

        QStringList list;
        QTextStream inStream( &rfCommConf );
        list = QStringList::split( "\n", inStream.read() );

        QString number;
        QString mac;
        QString channel;
        QString comment;

        for ( QStringList::Iterator line=list.begin(); line != list.end(); line++ )  {

            QString tmpLine = ( *line ).stripWhiteSpace();

            if ( tmpLine.startsWith("rfcomm") )  {
                QString number = tmpLine.mid( 6,1 );
                odebug << tmpLine << oendl;
                odebug << "TEST " + number << oendl;
            } else if ( tmpLine.startsWith( "}" ) ) {
                m_foundEntries.insert( number, new RfCommConfObject( number.toInt(), mac, channel.toInt(),  comment ) );
            } else if ( tmpLine.startsWith( "device" ) )  {
                mac = tmpLine.mid( 7, 17 );
                odebug << "mac" + mac << oendl;
            } else if ( tmpLine.startsWith( "channel" ) ) {
                channel = tmpLine.mid( 8, 1 );
                odebug << "Channel :" << channel << oendl;
            } else if ( tmpLine.startsWith( "comment" ) ) {
                comment = tmpLine.mid( 9, tmpLine.find( ';' ) - 9 - 1 );
                odebug << "Comment: " + comment << oendl;
            }
        }
        rfCommConf.close();
    }
    save( m_foundEntries );
    odebug << QString( "ENTries: %1").arg( m_foundEntries.count() ) << oendl;
}