File: upm_powerchanged.cpp

package info (click to toggle)
ukui-power-manager 4.0.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,032 kB
  • sloc: cpp: 7,679; xml: 402; makefile: 50; sh: 14
file content (67 lines) | stat: -rw-r--r-- 2,445 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
/*
 * Copyright (C) 2023, KylinSoft Co., Ltd.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 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 <https://www.gnu.org/licenses/>.
 *
 */
#include "upm_powerchanged.h"

UpmPowerChanged::UpmPowerChanged(QObject *parent) : QObject(parent)
{
    connect(UpmUpowerDBus::self(), &UpmUpowerDBus::acOnlineStateChanged,
            this, &UpmPowerChanged::dealAcOnlineStateChanged);
}

void UpmPowerChanged::dealAcOnlineStateChanged(int acIndex, bool acOnline)
{
    qDebug() << "ac index:" << acIndex << "ac online state :" << acOnline;
    if (true == UpmUpowerDBus::self()->getAcOnlineState()) {
        setPowerModePolicy();
//        UpmCommonDBus::self()->playSystemSound(POWER_PLUG);
    } else {
        setBatteryModePolicy();
    }
}

void UpmPowerChanged::setPowerModePolicy()
{
    QVariant value;
    if (true == UpmGsettings::self()->getGsettingsConfig(GSETTINGS_KEY_POWER_POLICY_AC, value)) {
        UpmControlDBus::self()->controlPowerManagement(UPM_DBUS_METHOD_SET_PC_POLICY, value.toInt());
    }
}

void UpmPowerChanged::setBatteryModePolicy()
{
    QVariant value;
    int percentageLow = 0;
    bool lowBatteryAutoSave = false;
    double currentPercent = UpmUpowerDBus::self()->getBatteryPercentage();

    if (true == UpmGsettings::self()->getGsettingsConfig(GSETTINGS_KEY_LOW_BATTERY_AUTO_SAVE, value)) {
        lowBatteryAutoSave = value.toBool();
    }

    if (true == UpmGsettings::self()->getGsettingsConfig(GSETTINGS_KEY_PERCENTAGE_LOW, value)) {
        percentageLow = value.toInt();
    }

    if (percentageLow > currentPercent && true == lowBatteryAutoSave) {
        qDebug() << "power low and auto save";
    } else {
        if (true == UpmGsettings::self()->getGsettingsConfig(GSETTINGS_KEY_POWER_POLICY_BATTERY, value)) {
            UpmControlDBus::self()->controlPowerManagement(UPM_DBUS_METHOD_SET_PC_POLICY, value.toInt());
        }
    }
}