monero-gui/pages/Mining.qml

359 lines
14 KiB
QML
Raw Normal View History

2019-03-12 23:32:11 +00:00
// Copyright (c) 2014-2019, The Monero Project
2015-04-01 08:56:05 +00:00
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be
// used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2019-04-11 01:17:29 +00:00
import QtQuick 2.9
import QtQuick.Layouts 1.1
import QtQuick.Dialogs 1.2
import "../components" as MoneroComponents
import moneroComponents.Wallet 1.0
2014-07-07 17:08:30 +00:00
Rectangle {
id: root
color: "transparent"
2019-05-07 05:19:40 +00:00
property alias miningHeight: mainLayout.height
property double currentHashRate: 0
property int threads: idealThreadCount / 2
ColumnLayout {
id: mainLayout
2019-02-01 21:20:38 +00:00
Layout.fillWidth: true
2019-09-05 22:11:12 +00:00
anchors.margins: 20
anchors.topMargin: 0
anchors.left: parent.left
anchors.top: parent.top
anchors.right: parent.right
2019-04-25 19:09:23 +00:00
spacing: 20
MoneroComponents.Label {
id: soloTitleLabel
2019-04-25 19:09:23 +00:00
fontSize: 24
text: qsTr("Solo mining") + translationManager.emptyString
}
2019-02-01 21:20:38 +00:00
MoneroComponents.WarningBox {
2019-04-25 19:09:23 +00:00
Layout.bottomMargin: 8
2019-02-01 21:20:38 +00:00
text: qsTr("Mining is only available on local daemons.") + translationManager.emptyString
visible: persistentSettings.useRemoteNode
}
2019-03-12 23:32:11 +00:00
MoneroComponents.WarningBox {
2019-04-25 19:09:23 +00:00
Layout.bottomMargin: 8
text: qsTr("Your daemon must be synchronized before you can start mining") + translationManager.emptyString
visible: !persistentSettings.useRemoteNode && !appWindow.daemonSynced
}
2019-04-11 01:17:29 +00:00
MoneroComponents.TextPlain {
id: soloMainLabel
2022-01-02 16:23:12 +00:00
text: qsTr("Mining with your computer helps strengthen the Monero network. The more people mine, the harder it is for the network to be attacked, and every little bit helps.\n\nMining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!") + translationManager.emptyString
wrapMode: Text.Wrap
Layout.fillWidth: true
font.family: MoneroComponents.Style.fontRegular.name
2019-04-25 19:09:23 +00:00
font.pixelSize: 14
color: MoneroComponents.Style.defaultFontColor
}
MoneroComponents.WarningBox {
id: warningLabel
2019-04-25 19:09:23 +00:00
Layout.topMargin: 8
Layout.bottomMargin: 8
text: qsTr("Mining may reduce the performance of other running applications and processes.") + translationManager.emptyString
}
2019-03-12 23:32:11 +00:00
GridLayout {
columns: 2
Layout.fillWidth: true
2019-04-25 19:09:23 +00:00
columnSpacing: 20
rowSpacing: 16
2019-03-12 23:32:11 +00:00
ColumnLayout {
Layout.fillWidth: true
Layout.alignment : Qt.AlignTop | Qt.AlignLeft
2019-03-12 23:32:11 +00:00
MoneroComponents.Label {
id: soloMinerThreadsLabel
color: MoneroComponents.Style.defaultFontColor
text: qsTr("CPU threads") + translationManager.emptyString
2019-04-25 19:09:23 +00:00
fontSize: 16
2019-03-12 23:32:11 +00:00
wrapMode: Text.WordWrap
}
}
2019-03-12 23:32:11 +00:00
ColumnLayout {
Layout.fillWidth: true
2019-04-25 19:09:23 +00:00
spacing: 16
RowLayout {
MoneroComponents.StandardButton {
id: removeThreadButton
small: true
primary: false
text: ""
enabled: threads > 1
onClicked: threads--
}
MoneroComponents.TextPlain {
Layout.bottomMargin: 1
Layout.minimumWidth: 45
color: MoneroComponents.Style.defaultFontColor
text: threads
horizontalAlignment: Text.AlignHCenter
font.pixelSize: 16
MouseArea {
anchors.fill: parent
scrollGestureEnabled: false
onWheel: {
if (wheel.angleDelta.y > 0 && threads < idealThreadCount) {
return threads++
} else if (wheel.angleDelta.y < 0 && threads > 1) {
return threads--
}
}
}
}
MoneroComponents.StandardButton {
id: addThreadButton
small: true
primary: false
text: "+"
enabled: threads < idealThreadCount
onClicked: threads++
}
}
2019-03-12 23:32:11 +00:00
RowLayout {
MoneroComponents.StandardButton {
id: autoRecommendedThreadsButton
small: true
primary: false
text: qsTr("Use half (recommended)") + translationManager.emptyString
2019-03-12 23:32:11 +00:00
enabled: startSoloMinerButton.enabled
onClicked: {
threads = idealThreadCount / 2
2019-03-12 23:32:11 +00:00
appWindow.showStatusMessage(qsTr("Set to use recommended # of threads"),3)
}
}
2019-03-12 23:32:11 +00:00
MoneroComponents.StandardButton {
id: autoSetMaxThreadsButton
small: true
primary: false
text: qsTr("Use all threads") + " (" + idealThreadCount + ")" + translationManager.emptyString
2019-03-12 23:32:11 +00:00
enabled: startSoloMinerButton.enabled
onClicked: {
threads = idealThreadCount
appWindow.showStatusMessage(qsTr("Set to use all threads") + translationManager.emptyString,3)
2019-03-12 23:32:11 +00:00
}
}
}
2019-03-12 23:32:11 +00:00
RowLayout {
// Disable this option until stable
visible: false
MoneroComponents.CheckBox {
id: ignoreBattery
enabled: startSoloMinerButton.enabled
checked: !persistentSettings.miningIgnoreBattery
onClicked: {persistentSettings.miningIgnoreBattery = !checked}
text: qsTr("Enable mining when running on battery") + translationManager.emptyString
}
}
}
ColumnLayout {
Layout.alignment: Qt.AlignTop | Qt.AlignLeft
Layout.minimumWidth: 140
MoneroComponents.Label {
id: optionsLabel
color: MoneroComponents.Style.defaultFontColor
text: qsTr("Options") + translationManager.emptyString
fontSize: 16
wrapMode: Text.Wrap
Layout.preferredWidth: manageSoloMinerLabel.textWidth
}
}
ColumnLayout {
Layout.fillWidth: true
spacing: 16
RowLayout {
MoneroComponents.CheckBox {
id: backgroundMining
enabled: startSoloMinerButton.enabled
checked: persistentSettings.allow_background_mining
onClicked: persistentSettings.allow_background_mining = checked
text: qsTr("Background mining (experimental)") + translationManager.emptyString
}
}
}
2019-03-12 23:32:11 +00:00
ColumnLayout {
Layout.alignment : Qt.AlignTop | Qt.AlignLeft
MoneroComponents.Label {
id: manageSoloMinerLabel
color: MoneroComponents.Style.defaultFontColor
text: qsTr("Manage miner") + translationManager.emptyString
2019-04-25 19:09:23 +00:00
fontSize: 16
2019-03-12 23:32:11 +00:00
wrapMode: Text.Wrap
Layout.preferredWidth: manageSoloMinerLabel.textWidth
}
}
2019-03-12 23:32:11 +00:00
ColumnLayout {
Layout.fillWidth: true
2019-04-25 19:09:23 +00:00
spacing: 16
2019-03-12 23:32:11 +00:00
RowLayout {
MoneroComponents.StandardButton {
visible: true
id: startSoloMinerButton
small: true
primary: !stopSoloMinerButton.enabled
2019-03-12 23:32:11 +00:00
text: qsTr("Start mining") + translationManager.emptyString
onClicked: {
var success = walletManager.startMining(appWindow.currentWallet.address(0, 0), threads, persistentSettings.allow_background_mining, persistentSettings.miningIgnoreBattery)
2019-03-12 23:32:11 +00:00
if (success) {
update()
} else {
errorPopup.title = qsTr("Error starting mining") + translationManager.emptyString;
errorPopup.text = qsTr("Couldn't start mining.<br>") + translationManager.emptyString
if (persistentSettings.useRemoteNode)
errorPopup.text += qsTr("Mining is only available on local daemons. Run a local daemon to be able to mine.<br>") + translationManager.emptyString
2019-03-12 23:32:11 +00:00
errorPopup.icon = StandardIcon.Critical
errorPopup.open()
}
}
}
2019-03-12 23:32:11 +00:00
MoneroComponents.StandardButton {
visible: true
id: stopSoloMinerButton
small: true
primary: stopSoloMinerButton.enabled
2019-03-12 23:32:11 +00:00
text: qsTr("Stop mining") + translationManager.emptyString
onClicked: {
walletManager.stopMining()
update()
}
}
}
}
2019-03-12 23:32:11 +00:00
ColumnLayout {
Layout.fillWidth: true
Layout.alignment : Qt.AlignTop | Qt.AlignLeft
MoneroComponents.Label {
id: statusLabel
color: MoneroComponents.Style.defaultFontColor
text: qsTr("Status") + translationManager.emptyString
2019-04-25 19:09:23 +00:00
fontSize: 16
2019-03-12 23:32:11 +00:00
}
}
ColumnLayout {
Layout.fillWidth: true
2019-04-25 19:09:23 +00:00
spacing: 16
2019-03-12 23:32:11 +00:00
MoneroComponents.LineEditMulti {
id: statusText
2019-04-25 19:09:23 +00:00
Layout.minimumWidth: 300
2019-03-12 23:32:11 +00:00
text: qsTr("Not mining") + translationManager.emptyString
borderDisabled: true
readOnly: true
wrapMode: Text.Wrap
inputPaddingLeft: 0
}
}
}
}
function updateStatusText() {
if (appWindow.isMining) {
var userHashRate = walletManager.miningHashRate();
if (userHashRate === 0) {
statusText.text = qsTr("Mining temporarily suspended.") + translationManager.emptyString;
}
else {
var blockTime = 120;
var blocksPerDay = 86400 / blockTime;
var globalHashRate = walletManager.networkDifficulty() / blockTime;
var probabilityFindNextBlock = userHashRate / globalHashRate;
var probabilityFindBlockDay = 1 - Math.pow(1 - probabilityFindNextBlock, blocksPerDay);
var chanceFindBlockDay = Math.round(1 / probabilityFindBlockDay);
statusText.text = qsTr("Mining at %1 H/s. It gives you a 1 in %2 daily chance of finding a block.").arg(userHashRate).arg(chanceFindBlockDay) + translationManager.emptyString;
}
}
else {
statusText.text = qsTr("Not mining") + translationManager.emptyString;
}
}
function onMiningStatus(isMining) {
var daemonReady = !persistentSettings.useRemoteNode && appWindow.daemonSynced
appWindow.isMining = isMining;
updateStatusText()
2019-03-12 23:32:11 +00:00
startSoloMinerButton.enabled = !appWindow.isMining && daemonReady
stopSoloMinerButton.enabled = !startSoloMinerButton.enabled && daemonReady
}
function update() {
walletManager.miningStatusAsync();
}
MoneroComponents.StandardDialog {
id: errorPopup
cancelVisible: false
}
Timer {
id: timer
interval: 2000; running: false; repeat: true
onTriggered: update()
}
function onPageCompleted() {
console.log("Mining page loaded");
update()
timer.running = !persistentSettings.useRemoteNode
}
function onPageClosed() {
timer.running = false
}
Component.onCompleted: {
walletManager.miningStatus.connect(onMiningStatus);
}
2014-07-07 17:08:30 +00:00
}