Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/usr/include/solid/control/
Upload File :
Current File : /hdd/hdd21/main/usr/include/solid/control/modeminterface.h

/*  This file is part of the KDE project
    Copyright (C) 2010 Lamarque Souza <lamarque@gmail.com>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License version 2 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
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA 02110-1301, USA.

*/

#ifndef SOLID_CONTROL_MODEMINTERFACE_H
#define SOLID_CONTROL_MODEMINTERFACE_H

#include <QtCore/QObject>
#include <QtCore/QVariant>
#include <QtDBus/QtDBus>

#include <solid/networking.h>
#include "solid_control_export.h"
#include "networkipv4config.h"

namespace Solid
{
namespace Control
{
    class ModemInterfacePrivate;

    class SOLIDCONTROL_EXPORT ModemInterface: public QObject
    {
    Q_OBJECT
    Q_ENUMS(Type Method AllowedMode AccessTechnology Mode Band)
    Q_DECLARE_PRIVATE(ModemInterface)

    public:
        enum Type {
            UnknownType = 0, /* MM specification does not include this type though. */
            GsmType = 1,
            CdmaType = 2
        };

        enum Method {
            Ppp = 0, /* Use PPP to get the address. */
            Static = 1, /* Static configuration, the modem will provide IP information. */
            Dhcp = 2, /*Use DHCP */
            UnknownMethod = 0xff
        };

        /* Describes the device's current access mode preference;
         * ie the specific technology preferences the device is allowed to use
         * when connecting to a mobile network. */
        enum AllowedMode {
             AnyModeAllowed = 0x0, /* Any mode can be used */
             Prefer2g, /* Prefer 2G (GPRS or EDGE) */
             Prefer3g, /* Prefer 3G (UMTS or HSxPA) */
             UseOnly2g, /* Use only 2G (GPRS or EDGE) */
             UseOnly3g /* Use only 3G (UMTS or HSxPA) */
        };

        /* Describes various access technologies that a device uses when connected to a mobile network. */
        enum AccessTechnology {
            UnknownTechnology = 0x0, /* The access technology used is unknown */
            Gsm, /* GSM */
            GsmCompact, /* Compact GSM */
            Gprs, /* GPRS */
            Edge, /* EDGE (ETSI 27.007: "GSM w/EGPRS") */
            Umts, /* UMTS (ETSI 27.007: "UTRAN") */
            Hsdpa, /* HSDPA (ETSI 27.007: "UTRAN w/HSDPA") */
            Hsupa, /* HSUPA (ETSI 27.007: "UTRAN w/HSUPA") */
            Hspa /* HSPA (ETSI 27.007: "UTRAN w/HSDPA and HSUPA") */
        };

        /* A bitfield describing the specifc access modes and technologies supported by a device
         * and the access technology in-use when connected to a mobile network. */
        enum Mode {
            UnknownMode = 0x0, /* Unknown or invalid mode. */
            AnyMode = 0x1, /* For certain operations, allow the modem to pick any available mode. */
            GprsMode = 0x2, /* GPRS */
            EdgeMode = 0x4, /* EDGE */
            UmtsMode = 0x8, /* UMTS (3G) */
            HsdpaMode = 0x10, /* HSDPA (3G) */
            Prefer2gMode = 0x20, /* Prefer 2G (GPRS or EDGE) */
            Prefer3gMode = 0x40, /* Prefer 3G (UMTS/HSDPA/HSUPA/HSPA) */
            UseOnly2gMode = 0x80, /* Use only 2G (GPRS or EDGE) */
            UseOnly3gMode = 0x100, /* Use only 3G (UMTS/HSDPA/HSUPA/HSPA) */
            HsupaMode = 0x200, /* HSUPA (3G) */
            HspaMode = 0x400, /* HSPA (3G) */
            GsmMode = 0x800, /* GSM */
            GsmCompactMode = 0x1000 /* GSM Compact */
        };

        /* A bitfield describing the specific radio bands supported by the device
         * and the radio bands the device is allowed to use when connecting to a mobile network. */
        enum Band {
            UnknownBand = 0x0, /* Unknown or invalid band */
            AnyBand = 0x1, /* For certain operations allow the modem to select a band automatically. */
            Egsm = 0x2, /* GSM/GPRS/EDGE 900 MHz */
            Dcs = 0x4, /* GSM/GPRS/EDGE 1800 MHz */
            Pcs = 0x8, /* GSM/GPRS/EDGE 1900 MHz */
            G850 = 0x10, /* GSM/GPRS/EDGE 850 MHz */
            U2100 = 0x20, /* WCDMA 2100 MHz (Class I) */
            U1800 = 0x40, /* WCDMA 3GPP 1800 MHz (Class III) */
            U17IV = 0x80, /* WCDMA 3GPP AWS 1700/2100 MHz (Class IV) */
            U800 = 0x100, /* WCDMA 3GPP UMTS 800 MHz (Class VI) */
            U850 = 0x200, /* WCDMA 3GPP UMTS 850 MHz (Class V) */
            U900 = 0x400, /* WCDMA 3GPP UMTS 900 MHz (Class VIII) */
            U17IX = 0x800, /* WCDMA 3GPP UMTS 1700 MHz (Class IX) */
            U19IX = 0x1000 /* WCDMA 3GPP UMTS 1900 MHz (Class II) */
        };

        enum GsmInterfaceType {
            NotGsm,
            GsmCard,
            GsmContacts,
            GsmNetwork,
            GsmSms,
            GsmHso,
            GsmUssd
        };

        class Ip4ConfigType
        {
        public:
            QString ip4Address,
                    dns1,
                    dns2,
                    dns3;
        };

        class InfoType
        {
        public:
            QString manufacturer,
                    model,
                    version;
        };

        /**
         * Creates a new ModemInterface object.
         *
         * @param backendObject the modem object provided by the backend
         */
        explicit ModemInterface(QObject *backendObject);

        /**
         * Constructs a copy of a modem.
         *
         * @param modem the modem to copy
         */
        ModemInterface(const ModemInterface &modem);

        /**
         * Destroys a ModemInterface object.
         */
        virtual ~ModemInterface();

        QString udi() const;

        void enable(const bool enable) const;

        void connectModem(const QString & number) const;

        void connectModem(const QVariantMap & properties) const;

        void disconnectModem() const;

        Ip4ConfigType getIp4Config() const;

        InfoType getInfo() const;

        QVariantMap getStatus() const;

        /*
         * Properties
         */
        QString device() const;

        QString masterDevice() const;

        QString driver() const;

        Type type() const;

        bool enabled() const;

        QString unlockRequired() const;

        Method ipMethod() const;

        static QString convertTypeToString(const Type type);

        /**
         * Return a description of the band id.
         *
         * @param band the band id
         */
        static QString convertBandToString(const Band band);

        static QString convertAllowedModeToString(const AllowedMode mode);

        /**
         * Return a description of the access technology used.
         *
         * @param tech the access technology.
         */
        static QString convertAccessTechnologyToString(const AccessTechnology tech);

    public Q_SLOTS:
        void slotDeviceChanged(const QString & device);

        void slotMasterDeviceChanged(const QString & masterDevice);

        void slotDriverChanged(const QString & driver);

        void slotUnlockRequiredChanged(const QString & codeRequired);
    Q_SIGNALS:
        void deviceChanged(const QString & device);

        void masterDeviceChanged(const QString & masterDevice);

        void driverChanged(const QString & driver);

        void typeChanged(const Solid::Control::ModemInterface::Type type);

        void enabledChanged(const bool enabled);

        void unlockRequiredChanged(const QString & codeRequired);

        void ipMethodChanged(const Solid::Control::ModemInterface::Method ipMethod);

    protected:
        /**
         * @internal
         */
        ModemInterface(ModemInterfacePrivate &dd, QObject *backendObject);

        /**
         * @internal
         */
        ModemInterface(ModemInterfacePrivate &dd, const ModemInterface &modem);

        ModemInterfacePrivate *d_ptr;
    };

} // Control
} // Solid

#endif