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
|
/*
* Copyright (C) 2024 UBports Foundation
*
* Authors:
* Muhammad <muhammad23012009@hotmail.com>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, 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 General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "usb-config-helper.h"
UsbConfigHelper::UsbConfigHelper(QObject *parent):
QObject(parent)
{
m_iface = new QDBusInterface(USB_MODED_SERVICE, USB_MODED_PATH, USB_MODED_SERVICE, QDBusConnection::systemBus(), this);
if (m_iface->isValid()) {
QDBusConnection::systemBus().connect(USB_MODED_SERVICE, USB_MODED_PATH, USB_MODED_SERVICE, "sig_usb_target_state_ind", this, SLOT(targetModeChanged(QString)));
QDBusReply<QString> reply = m_iface->call("get_config");
updateValues(reply.value());
}
}
UsbConfigHelper::ConfigMode UsbConfigHelper::str_to_mode(QString str)
{
if (str.contains("charging_only"))
return USB_CHARGING_ONLY;
else if (str.contains("mtp"))
return USB_MTP;
else if (str.contains("rndis"))
return USB_RNDIS;
}
QString UsbConfigHelper::mode_to_str(ConfigMode mode)
{
if (mode == USB_CHARGING_ONLY)
return "charging_only";
else if (mode == USB_MTP)
return "mtp";
else if (mode == USB_RNDIS)
return "rndis";
}
// public
bool UsbConfigHelper::developerModeCapable()
{
if (m_iface->isValid()) {
QDBusReply<QString> reply = m_iface->call("get_modes");
return reply.value().contains("_adb");
}
return false;
}
UsbConfigHelper::ConfigMode UsbConfigHelper::getMode()
{
return m_mode;
}
void UsbConfigHelper::setMode(ConfigMode mode)
{
if (m_mode == mode || m_mode == USB_INVALID)
return;
m_mode = mode;
QString mode_str = mode_to_str(mode);
if (m_adbEnabled)
mode_str.append("_adb");
setMode(mode_str);
Q_EMIT modeChanged();
}
bool UsbConfigHelper::getAdbEnabled()
{
return m_adbEnabled;
}
void UsbConfigHelper::setAdbEnabled(bool enabled)
{
if (m_adbEnabled == enabled)
return;
m_adbEnabled = enabled;
QString mode_str = mode_to_str(m_mode);
if (m_adbEnabled)
mode_str.append("_adb");
setMode(mode_str);
Q_EMIT adbEnabledChanged();
}
void UsbConfigHelper::setMode(QString str)
{
m_iface->call("set_config", str);
m_iface->call("set_mode", str);
}
void UsbConfigHelper::targetModeChanged(QString mode)
{
updateValues(mode);
}
void UsbConfigHelper::updateValues(QString mode)
{
if (str_to_mode(mode) != m_mode) {
m_mode = str_to_mode(mode);
Q_EMIT modeChanged();
}
m_adbEnabled = mode.contains("_adb");
Q_EMIT adbEnabledChanged();
}
|