2018-08-05 18:53:20 +00:00
|
|
|
// Copyright (c) 2014-2018, The Monero Project
|
|
|
|
//
|
|
|
|
// 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
|
2018-07-18 13:20:13 +00:00
|
|
|
import QtQuick.Layouts 1.1
|
|
|
|
import QtQuick.Controls 2.0
|
|
|
|
|
|
|
|
import "../../js/Utils.js" as Utils
|
|
|
|
import "../../components" as MoneroComponents
|
|
|
|
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
property alias consoleArea: consoleArea
|
|
|
|
color: "transparent"
|
|
|
|
height: 1400
|
|
|
|
Layout.fillWidth: true
|
2018-07-18 16:26:34 +00:00
|
|
|
|
2018-07-18 13:20:13 +00:00
|
|
|
ColumnLayout {
|
|
|
|
id: settingsLog
|
|
|
|
property int itemHeight: 60 * scaleRatio
|
|
|
|
Layout.fillWidth: true
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.right: parent.right
|
2018-12-08 15:55:29 +00:00
|
|
|
anchors.margins: (isMobile)? 17 * scaleRatio : 20 * scaleRatio
|
2018-07-18 13:20:13 +00:00
|
|
|
anchors.topMargin: 0
|
|
|
|
spacing: 10
|
|
|
|
|
|
|
|
// Rectangle {
|
|
|
|
// // divider
|
|
|
|
// Layout.preferredHeight: 1 * scaleRatio
|
|
|
|
// Layout.fillWidth: true
|
|
|
|
// Layout.bottomMargin: 8 * scaleRatio
|
|
|
|
// color: MoneroComponents.Style.dividerColor
|
|
|
|
// opacity: MoneroComponents.Style.dividerOpacity
|
|
|
|
// }
|
2018-07-18 16:26:34 +00:00
|
|
|
|
2019-04-11 01:17:29 +00:00
|
|
|
MoneroComponents.TextPlain {
|
2018-07-18 13:20:13 +00:00
|
|
|
Layout.bottomMargin: 2 * scaleRatio
|
|
|
|
color: MoneroComponents.Style.defaultFontColor
|
|
|
|
font.pixelSize: 18 * scaleRatio
|
|
|
|
font.family: MoneroComponents.Style.fontRegular.name
|
|
|
|
text: qsTr("Log level") + translationManager.emptyString
|
|
|
|
}
|
|
|
|
|
2018-12-13 18:02:02 +00:00
|
|
|
ColumnLayout {
|
|
|
|
spacing: 10 * scaleRatio
|
2018-07-18 13:20:13 +00:00
|
|
|
Layout.fillWidth: true
|
2018-12-13 18:02:02 +00:00
|
|
|
id: logColumn
|
2018-07-18 13:20:13 +00:00
|
|
|
z: parent.z + 1
|
|
|
|
|
2018-12-13 18:02:02 +00:00
|
|
|
ListModel {
|
|
|
|
id: logLevel
|
|
|
|
ListElement { column1: "0"; name: "none"; }
|
|
|
|
ListElement { column1: "1"; }
|
|
|
|
ListElement { column1: "2"; }
|
|
|
|
ListElement { column1: "3"; }
|
|
|
|
ListElement { column1: "4"; }
|
|
|
|
ListElement { column1: "custom"; }
|
|
|
|
}
|
2018-07-18 13:20:13 +00:00
|
|
|
|
2018-12-13 18:02:02 +00:00
|
|
|
MoneroComponents.StandardDropdown {
|
|
|
|
id: logLevelDropdown
|
|
|
|
dataModel: logLevel
|
|
|
|
itemTopMargin: 2 * scaleRatio
|
|
|
|
currentIndex: appWindow.persistentSettings.logLevel;
|
|
|
|
onChanged: {
|
|
|
|
if (currentIndex == 5) {
|
|
|
|
console.log("log categories changed: ", logCategories.text);
|
|
|
|
walletManager.setLogCategories(logCategories.text);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
console.log("log level changed: ",currentIndex);
|
|
|
|
walletManager.setLogLevel(currentIndex);
|
2018-07-18 13:20:13 +00:00
|
|
|
}
|
2018-12-13 18:02:02 +00:00
|
|
|
appWindow.persistentSettings.logLevel = currentIndex;
|
2018-07-18 13:20:13 +00:00
|
|
|
}
|
2018-12-13 18:02:02 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.preferredWidth: logColumn.width
|
|
|
|
z: parent.z + 1
|
2018-07-18 13:20:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MoneroComponents.LineEdit {
|
|
|
|
id: logCategories
|
2018-12-13 18:02:02 +00:00
|
|
|
visible: logLevelDropdown.currentIndex === 5
|
2018-07-18 13:20:13 +00:00
|
|
|
Layout.fillWidth: true
|
2018-12-13 18:02:02 +00:00
|
|
|
Layout.preferredWidth: logColumn.width
|
2018-07-18 13:20:13 +00:00
|
|
|
text: appWindow.persistentSettings.logCategories
|
|
|
|
placeholderText: "(e.g. *:WARNING,net.p2p:DEBUG)"
|
|
|
|
placeholderFontSize: 14 * scaleRatio
|
2018-08-05 17:36:17 +00:00
|
|
|
fontSize: 14 * scaleRatio
|
2018-07-18 13:20:13 +00:00
|
|
|
enabled: logLevelDropdown.currentIndex === 5
|
|
|
|
onEditingFinished: {
|
|
|
|
if(enabled) {
|
|
|
|
console.log("log categories changed: ", text);
|
|
|
|
walletManager.setLogCategories(text);
|
|
|
|
appWindow.persistentSettings.logCategories = text;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-11 01:17:29 +00:00
|
|
|
MoneroComponents.TextPlain {
|
2018-07-18 13:20:13 +00:00
|
|
|
Layout.topMargin: 10 * scaleRatio
|
|
|
|
Layout.bottomMargin: 2 * scaleRatio
|
|
|
|
color: MoneroComponents.Style.defaultFontColor
|
|
|
|
font.pixelSize: 18 * scaleRatio
|
|
|
|
font.family: MoneroComponents.Style.fontRegular.name
|
|
|
|
text: qsTr("Daemon log") + translationManager.emptyString
|
|
|
|
}
|
|
|
|
|
2018-12-19 04:54:43 +00:00
|
|
|
Item {
|
|
|
|
Layout.fillHeight: true
|
2018-07-18 13:20:13 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.preferredHeight: 240 * scaleRatio
|
|
|
|
|
2018-12-19 04:54:43 +00:00
|
|
|
Rectangle {
|
2018-07-18 13:20:13 +00:00
|
|
|
anchors.fill: parent
|
2018-12-19 04:54:43 +00:00
|
|
|
color: "transparent"
|
2019-04-11 01:17:29 +00:00
|
|
|
border.color: MoneroComponents.Style.inputBorderColorInActive
|
2018-12-19 04:54:43 +00:00
|
|
|
border.width: 1
|
|
|
|
radius: 4
|
|
|
|
}
|
2018-07-18 13:20:13 +00:00
|
|
|
|
2018-12-19 04:54:43 +00:00
|
|
|
Flickable {
|
|
|
|
id: flickable
|
|
|
|
anchors.fill: parent
|
2018-07-18 13:20:13 +00:00
|
|
|
|
2018-12-19 04:54:43 +00:00
|
|
|
TextArea.flickable: TextArea {
|
|
|
|
id : consoleArea
|
|
|
|
color: MoneroComponents.Style.defaultFontColor
|
2019-04-11 01:17:29 +00:00
|
|
|
selectionColor: MoneroComponents.Style.textSelectionColor
|
2018-12-19 04:54:43 +00:00
|
|
|
textFormat: TextEdit.RichText
|
|
|
|
selectByMouse: true
|
|
|
|
selectByKeyboard: true
|
|
|
|
font.family: MoneroComponents.Style.defaultFontColor
|
|
|
|
font.pixelSize: 14 * scaleRatio
|
|
|
|
wrapMode: TextEdit.Wrap
|
|
|
|
readOnly: true
|
|
|
|
function logCommand(msg){
|
|
|
|
msg = log_color(msg, "lime");
|
|
|
|
consoleArea.append(msg);
|
|
|
|
}
|
|
|
|
function logMessage(msg){
|
|
|
|
msg = msg.trim();
|
2019-04-11 01:17:29 +00:00
|
|
|
var color = MoneroComponents.Style.defaultFontColor;
|
2018-12-19 04:54:43 +00:00
|
|
|
if(msg.toLowerCase().indexOf('error') >= 0){
|
2019-04-11 01:17:29 +00:00
|
|
|
color = MoneroComponents.Style.errorColor;
|
2018-12-19 04:54:43 +00:00
|
|
|
} else if (msg.toLowerCase().indexOf('warning') >= 0){
|
2019-04-11 01:17:29 +00:00
|
|
|
color = MoneroComponents.Style.warningColor;
|
2018-12-19 04:54:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// format multi-lines
|
|
|
|
if(msg.split("\n").length >= 2){
|
|
|
|
msg = msg.split("\n").join('<br>');
|
|
|
|
}
|
|
|
|
|
|
|
|
log(msg, color);
|
|
|
|
}
|
|
|
|
function log_color(msg, color){
|
|
|
|
return "<span style='color: " + color + ";' >" + msg + "</span>";
|
|
|
|
}
|
|
|
|
function log(msg, color){
|
|
|
|
var timestamp = Utils.formatDate(new Date(), {
|
|
|
|
weekday: undefined,
|
|
|
|
month: "numeric",
|
|
|
|
timeZoneName: undefined
|
|
|
|
});
|
|
|
|
|
2019-04-11 01:17:29 +00:00
|
|
|
var _timestamp = log_color("[" + timestamp + "]", MoneroComponents.Style.defaultFontColor);
|
2018-12-19 04:54:43 +00:00
|
|
|
var _msg = log_color(msg, color);
|
|
|
|
consoleArea.append(_timestamp + " " + _msg);
|
|
|
|
|
|
|
|
// scroll to bottom
|
|
|
|
//if(flickable.contentHeight > content.height){
|
|
|
|
// flickable.contentY = flickable.contentHeight;
|
|
|
|
//}
|
|
|
|
}
|
2018-07-18 13:20:13 +00:00
|
|
|
}
|
|
|
|
|
2018-12-19 04:54:43 +00:00
|
|
|
ScrollBar.vertical: ScrollBar {}
|
2018-07-18 13:20:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MoneroComponents.LineEdit {
|
|
|
|
id: sendCommandText
|
|
|
|
Layout.fillWidth: true
|
|
|
|
fontBold: false
|
2018-08-05 17:36:17 +00:00
|
|
|
placeholderText: qsTr("command + enter (e.g 'help' or 'status')") + translationManager.emptyString
|
2018-07-18 13:20:13 +00:00
|
|
|
placeholderFontSize: 16 * scaleRatio
|
|
|
|
onAccepted: {
|
|
|
|
if(text.length > 0) {
|
|
|
|
consoleArea.logCommand(">>> " + text)
|
|
|
|
daemonManager.sendCommand(text, currentWallet.nettype);
|
|
|
|
}
|
|
|
|
text = ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
2018-12-13 18:02:02 +00:00
|
|
|
logLevelDropdown.currentIndex = appWindow.persistentSettings.logLevel;
|
2018-07-18 13:20:13 +00:00
|
|
|
logLevelDropdown.update();
|
2018-07-18 16:26:34 +00:00
|
|
|
|
2018-07-18 13:20:13 +00:00
|
|
|
if(typeof daemonManager != "undefined")
|
|
|
|
daemonManager.daemonConsoleUpdated.connect(onDaemonConsoleUpdated)
|
|
|
|
}
|
|
|
|
}
|