summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/parser.cc
authorzecke <zecke>2002-06-23 19:25:49 (UTC)
committer zecke <zecke>2002-06-23 19:25:49 (UTC)
commit7c4524d0ff6d329c1f5f76fa2e7a727e553d51c8 (patch) (unidiff)
tree08c4b8268c71e568096ad154b0fecb20df76e25b /noncore/net/opietooth/lib/parser.cc
parent616f8cef3111756cac0240be10aea38d4f38ad8e (diff)
downloadopie-7c4524d0ff6d329c1f5f76fa2e7a727e553d51c8.zip
opie-7c4524d0ff6d329c1f5f76fa2e7a727e553d51c8.tar.gz
opie-7c4524d0ff6d329c1f5f76fa2e7a727e553d51c8.tar.bz2
Fix Service/Profile parser
Diffstat (limited to 'noncore/net/opietooth/lib/parser.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/parser.cc49
1 files changed, 36 insertions, 13 deletions
diff --git a/noncore/net/opietooth/lib/parser.cc b/noncore/net/opietooth/lib/parser.cc
index 18d534e..00ec84a 100644
--- a/noncore/net/opietooth/lib/parser.cc
+++ b/noncore/net/opietooth/lib/parser.cc
@@ -10,26 +10,35 @@ namespace {
10 10
11 // "Test Foo Bar" (0x3456) 11 // "Test Foo Bar" (0x3456)
12 // @param ret Test Foo Bar 12 // @param ret Test Foo Bar
13 // @eturn 13398 13 // @eturn 13398
14 // tactic find " ( 14 // tactic find " (
15int convert( const QString& line, QString& ret ) { 15int convert( const QString& line, QString& ret ) {
16// qWarning("called");
16 ret = QString::null; 17 ret = QString::null;
17 int i = 0; 18 int i = 0;
18 int pos = line.findRev("\" ("); 19 int pos = line.findRev("\" (");
19 if ( pos > 0 ) { // it shouldn't be at pos 0 20 if ( pos > 0 ) { // it shouldn't be at pos 0
20 ret = line.left(pos-1 ).stripWhiteSpace(); 21 ret = line.left(pos ).stripWhiteSpace();
21 qWarning("ret: %s", ret.latin1() ); 22 // qWarning("ret: %s", ret.latin1() );
22 ret = ret.replace(QRegExp("[\"]"), ""); 23 ret = ret.replace(QRegExp("[\"]"), "");
23 qWarning("ret: %s", ret.latin1() ); 24 //qWarning("ret: %s", ret.latin1() );
24 QString dummy = line.mid(pos + 4 ); 25 QString dummy = line.mid(pos + 5 );
25 qWarning("dummy: %s", dummy.latin1() ); 26 //qWarning("dummy: %s", dummy.latin1() );
26 dummy = dummy.remove( dummy.length() -1, 1 ); // remove the ( 27 dummy = dummy.replace(QRegExp("[)]"), "");
28 //qWarning("dummy: %s", dummy.latin1() );
29// dummy = dummy.remove( dummy.length() -2, 1 ); // remove the )
27 bool ok; 30 bool ok;
28 i = dummy.toInt(&ok, 16 ); 31 i = dummy.toInt(&ok, 16 );
32 //if (ok ) {
33 // qWarning("converted %d", i);
34 //}else qWarning("failed" );
35 //qWarning("exiting");
36 return i;
29 } 37 }
38 //qWarning("output %d", i );
30 return i; 39 return i;
31} 40}
32 41
33}; 42};
34 43
35 44
@@ -42,21 +51,24 @@ void Parser::setText(const QString& output) {
42Services::ValueList Parser::services() const { 51Services::ValueList Parser::services() const {
43 return m_list; 52 return m_list;
44} 53}
45void Parser::parse( const QString& string) { 54void Parser::parse( const QString& string) {
46 m_list.clear(); 55 m_list.clear();
47 m_complete = true; 56 m_complete = true;
48 QStringList list = QStringList::split('\n', string ); 57 QStringList list = QStringList::split('\n', string,TRUE );
49 QStringList::Iterator it; 58 QStringList::Iterator it;
50 for (it = list.begin(); it != list.end(); ++it ) { 59 for (it = list.begin(); it != list.end(); ++it ) {
60 qWarning("line:%s:line", (*it).latin1() );
51 if ( (*it).startsWith("Browsing") ) continue; 61 if ( (*it).startsWith("Browsing") ) continue;
52 62
53 if ( (*it).isEmpty() ) { // line is empty because a new Service begins 63 if ( (*it).stripWhiteSpace().isEmpty() ) { // line is empty because a new Service begins
54 // now see if complete and add 64 qWarning("could add");
65 // now see if complete and add
55 if (m_complete ) { 66 if (m_complete ) {
56 m_list.append( m_item ); 67 if (!m_item.serviceName().isEmpty() )
68 m_list.append( m_item );
57 Services serv; 69 Services serv;
58 m_item = serv; 70 m_item = serv;
59 m_complete = true; 71 m_complete = true;
60 continue; 72 continue;
61 } 73 }
62 } 74 }
@@ -65,13 +77,22 @@ void Parser::parse( const QString& string) {
65 if (parseClassId( (*it) ) ) ;//continue; 77 if (parseClassId( (*it) ) ) ;//continue;
66 if (parseProtocol( (*it) ) ) ;//continue; 78 if (parseProtocol( (*it) ) ) ;//continue;
67 if (parseProfile( (*it) ) ) ;//continue; 79 if (parseProfile( (*it) ) ) ;//continue;
68 } 80 }
69 // missed the last one 81 // missed the last one
70 if (m_complete) { 82 if (m_complete) {
71 m_list.append(m_item ); 83 qWarning("adding");
84 if (!m_item.serviceName().isEmpty() )
85 m_list.append(m_item );
86 }
87 QValueList<Services>::Iterator it2;
88
89 if (m_list.isEmpty() )
90 qWarning("m_list is empty");
91 for (it2 = m_list.begin(); it2 != m_list.end(); ++it2 ) {
92 qWarning("name %s", (*it2).serviceName().latin1() );
72 } 93 }
73} 94}
74bool Parser::parseName( const QString& str) { 95bool Parser::parseName( const QString& str) {
75 if (str.startsWith("Service Name:") ) { 96 if (str.startsWith("Service Name:") ) {
76 m_item.setServiceName( str.mid(13).stripWhiteSpace() ); 97 m_item.setServiceName( str.mid(13).stripWhiteSpace() );
77 qWarning(m_item.serviceName() ); 98 qWarning(m_item.serviceName() );
@@ -80,19 +101,21 @@ bool Parser::parseName( const QString& str) {
80 return false; 101 return false;
81} 102}
82bool Parser::parseRecHandle( const QString& str) { 103bool Parser::parseRecHandle( const QString& str) {
83 if (str.startsWith("Service RecHandle:" ) ) { 104 if (str.startsWith("Service RecHandle:" ) ) {
84 QString out = str.mid(18 ).stripWhiteSpace(); 105 QString out = str.mid(18 ).stripWhiteSpace();
85 qWarning("out %s", out.latin1() ); 106 qWarning("out %s", out.latin1() );
86 int value = out.toInt(&m_ok, 16 ); 107 int value = out.mid(2).toInt(&m_ok, 16 );
87 if (m_ok && (value != -1) ) 108 if (m_ok && (value != -1) )
88 m_complete = true; 109 m_complete = true;
89 else 110 else
90 m_complete = false; 111 m_complete = false;
91 return true; 112 qWarning("rec handle %d", value);
92 m_item.setRecHandle( value ); 113 m_item.setRecHandle( value );
114 return true;
115
93 } 116 }
94 return false; 117 return false;
95} 118}
96bool Parser::parseClassId( const QString& str) { 119bool Parser::parseClassId( const QString& str) {
97 if (str.startsWith("Service Class ID List:") ) { 120 if (str.startsWith("Service Class ID List:") ) {
98 m_classOver = true; 121 m_classOver = true;