File: DeviceInfo.h

package info (click to toggle)
buteo-sync-plugins 0.8.36-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,076 kB
  • sloc: cpp: 8,130; xml: 755; sh: 207; perl: 82; makefile: 11
file content (148 lines) | stat: -rw-r--r-- 3,685 bytes parent folder | download
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
/*
 * 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
 *
 */

#ifndef DEFAULTDEVICEINFO_H
#define DEFAULTDEVICEINFO_H

#include <QString>
#include <QStringList>
#include <QMutex>
#include <QMap>

#ifdef HAS_SYSTEMSETTINGS
    #include <deviceinfo.h>
#else
    #include <QDeviceInfo>
#endif

namespace Buteo {

    /*! \brief Default Implementation of DeviceInfo class
     *
     */
    class DeviceInfo
    {

    public:

        //! getDeviceInformation call checks this enum
        enum Source {
            //! read from system
            ReadFromSystem,

            //! read from xml
            ReadFromXml
        };

        /*! \brief Constructor
         *
         */
        DeviceInfo();

        /*! \brief Destructor
         *
         */
        virtual ~DeviceInfo();

        /*! \brief set properties to read from the devicse
         *
         * This API sets the source to read from
         * @return none
         */
        void setSourceToRead(Source &);


        /*! \brief get method for source
         *
         * @return Source
         */
        Source getSourceToRead();


        /*! \brief set the file path to read device information from
         *
         * This API sets the xml file on the system
         * from where the device info has to be read from
         * @return value of the QFile exists method
         */
        bool setDeviceXmlFile(QString &fileName);


        /*! \brief get the file name from where the device information is read from
         *
         * get method
         * @return value of the fileName set
         */
        QString DeviceXmlFile();


        /*! \brief Retrieves Device Information as Map
         *
         * This API reads the device information as per the respective implementation
         * @return key , value Map
         */
        QMap<QString,QString> getDeviceInformation();

        /*! \brief Saves Device Information to the filename
         *
         * This API saves the  device information to the  file
         */
        void saveDevInfoToFile(QMap<QString,QString> &aDevInfo , QString &aFileName);

    protected:

    private:
        Source iSource;
        QStringList iProperties;
        QString iDeviceInfoFile;

        QString iManufacturer;
        QString iModel;
        QString iSwVersion;
        QString iHwVersion;
        QString iFwVersion;
        QString iDeviceIMEI;
        QString iDeviceType;

        QString getManufacturer();
        QString getModel();
        QString getSwVersion();
        QString getHwVersion();
        QString getFwVersion();
        QString getDeviceIMEI();
        QString getDeviceType();

#if defined(HAS_SYSTEMSETTINGS)
        ::DeviceInfo deviceInfo;
#else
        QDeviceInfo deviceInfo;
#endif

#ifdef SYNC_APP_UNITTESTS
       friend class DeviceInfoTest;
#endif
    };
}


#endif // DEFAULTDEVICEINFO_H