File: DeviceInfo.cpp

package info (click to toggle)
buteo-sync-plugins 0.8.36-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,068 kB
  • sloc: cpp: 8,130; xml: 755; sh: 207; perl: 82; makefile: 11
file content (252 lines) | stat: -rw-r--r-- 6,842 bytes parent folder | download | duplicates (2)
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
/*
 * This file is part of buteo-sync-plugins package
 *
 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
 *
 * Contact: Sateesh Kavuri <sateesh.kavuri@nokia.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * version 2.1 as published by the Free Software Foundation.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

#include "DeviceInfo.h"
#include "SyncMLPluginLogging.h"
#include <QFile>
#include <QXmlStreamReader>
#include <QXmlStreamWriter>

using namespace Buteo;

const QString XML_KEY_MANUFACTURER("Manufacturer");
const QString XML_KEY_MODEL("Model");
const QString XML_KEY_OEM("OEM");
const QString XML_KEY_HW_VER("HwVersion");
const QString XML_KEY_SW_VER("SwVersion");
const QString XML_KEY_FW_VER("FwVersion");
const QString XML_KEY_ID("Id");
const QString XML_KEY_DEV_TYPE("DeviceType");


const QString IMEI("IMEI:");
const QString DUMMY_IMEI("000000000000000");
const QString DEVINFO_DEVTYPE("phone");

Buteo::DeviceInfo::DeviceInfo()
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);
    iProperties << XML_KEY_MANUFACTURER << XML_KEY_MODEL << XML_KEY_HW_VER << XML_KEY_SW_VER << XML_KEY_FW_VER  << XML_KEY_ID << XML_KEY_DEV_TYPE;
    iSource = ReadFromSystem;
}

Buteo::DeviceInfo::~DeviceInfo()
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);
}

QString Buteo::DeviceInfo::getDeviceIMEI()
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);

    /// @todo returning first IMEI for now; needs fixing on multisim devices
#if defined(HAS_SYSTEMSETTINGS)
    return IMEI + deviceInfo.imeiNumbers().value(0, QString());
#else
    return IMEI + deviceInfo.imei(0);
#endif
}

QString Buteo::DeviceInfo::getManufacturer()
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);

    return deviceInfo.manufacturer();
}

QString Buteo::DeviceInfo::getModel()
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);

    return deviceInfo.model();
}


QString Buteo::DeviceInfo::getSwVersion()
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);

#if defined(HAS_SYSTEMSETTINGS)
    return deviceInfo.osVersion();
#else
    return deviceInfo.version(QDeviceInfo::Firmware);
#endif
}


QString Buteo::DeviceInfo::getHwVersion()
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);

    //Empty now
    return iHwVersion;
}

QString Buteo::DeviceInfo::getFwVersion()
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);

    return getSwVersion();
}

QString Buteo::DeviceInfo::getDeviceType()
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);

    if( iDeviceType.isEmpty()) {
        iDeviceType = DEVINFO_DEVTYPE;
    }

    return iDeviceType;
}


void Buteo::DeviceInfo::setSourceToRead(Source &aSource)
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);

    iSource = aSource;
}


Buteo::DeviceInfo::Source Buteo::DeviceInfo::getSourceToRead()
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);

    return iSource;
}


bool Buteo::DeviceInfo::setDeviceXmlFile(QString &aFileName)
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);
    QFile file(aFileName);
    bool status = false;

    if(file.exists()) {
        iDeviceInfoFile = aFileName;
        status = true;
    }

    return status;
}


QString Buteo::DeviceInfo::DeviceXmlFile()
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);
    return iDeviceInfoFile;
}

QMap<QString,QString> Buteo::DeviceInfo::getDeviceInformation()
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);
    QMap<QString,QString> deviceMap;

    switch(iSource) {

    case ReadFromSystem:
        foreach(const QString& property,iProperties) {
            if(property == XML_KEY_MANUFACTURER) {
                deviceMap.insert(property,getManufacturer());
            }else if (property == XML_KEY_MODEL) {
                deviceMap.insert(property,getModel());
            }else if (property == XML_KEY_SW_VER){
                deviceMap.insert(property,getSwVersion());
            }else if (property == XML_KEY_HW_VER) {
                deviceMap.insert(property,getHwVersion());
            } else if (property == XML_KEY_FW_VER) {
                deviceMap.insert(property,getFwVersion());
            }else if(property == XML_KEY_ID) {
                deviceMap.insert(property,getDeviceIMEI());
            } else if (property == XML_KEY_DEV_TYPE){
                deviceMap.insert(property,getDeviceType());
            } else {
                qCDebug(lcSyncMLPlugin) << "Unknown Property:" << property;
            }
        }
        break;
   case ReadFromXml:
        {
            QFile file(iDeviceInfoFile);
            if(file.open(QIODevice::ReadOnly))
            {
                QByteArray data = file.readAll();
                QXmlStreamReader reader(data);
                while(!reader.atEnd()) {
                     if(reader.tokenType() == QXmlStreamReader::StartElement) {
                         if(reader.name() ==  "DevInfo" ) {
                                  reader.readNext();
                         } else {
                            QString key =  reader.name().toString();
                            reader.readNext();
                            deviceMap.insert(key,reader.text().toString());
                            reader.readNext();
                         }
                     }
                        reader.readNext();
                }
                file.close();
            } else {
                qCDebug(lcSyncMLPlugin) << "Failed to open the file " << iDeviceInfoFile;
            }
        }
        break;
    default:
        qCDebug(lcSyncMLPlugin) << "Source to read the system information is not set ";
        break;
    }

    return deviceMap;
}


void Buteo::DeviceInfo::saveDevInfoToFile(QMap<QString,QString> &aDevInfo , QString &aFileName)
{
    FUNCTION_CALL_TRACE(lcSyncMLPluginTrace);
    QByteArray data;
    QXmlStreamWriter writer(&data);
    writer.setAutoFormatting(true);

    writer.writeStartDocument();
    writer.writeStartElement("DevInfo");
    // @TODO - add a DTD

    QMapIterator<QString, QString> i(aDevInfo);
    while (i.hasNext()) {
        i.next();
        qCDebug(lcSyncMLPlugin) << i.key() << ": " << i.value();
        writer.writeTextElement(i.key(),i.value());
    }

    writer.writeEndElement();
    writer.writeEndDocument();

    QFile file(aFileName);

    if(file.open(QIODevice::WriteOnly | QIODevice::Truncate)) {
        file.write(data);
        file.close();
    }

}