LogDownloadPage.qml 8.41 KB
Newer Older
1 2
/****************************************************************************
 *
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

10 11
import QtQuick              2.3
import QtQuick.Controls     1.2
12
import QtQuick.Dialogs      1.2
13
import QtQuick.Layouts      1.2
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

import QGroundControl               1.0
import QGroundControl.Palette       1.0
import QGroundControl.Controls      1.0
import QGroundControl.Controllers   1.0
import QGroundControl.ScreenTools   1.0

AnalyzePage {
    id:                 logDownloadPage
    pageComponent:      pageComponent
    pageName:           qsTr("Log Download")
    pageDescription:    qsTr("Log Download allows you to download binary log files from your vehicle. Click Refresh to get list of available logs.")

    property real _margin:          ScreenTools.defaultFontPixelWidth
    property real _butttonWidth:    ScreenTools.defaultFontPixelWidth * 10

    QGCPalette { id: palette; colorGroupEnabled: enabled }

    Component {
        id: pageComponent

        RowLayout {
            width:  availableWidth
            height: availableHeight

39 40 41 42 43 44 45 46 47 48 49 50 51
            Connections {
                target: logController
                onSelectionChanged: {
                    tableView.selection.clear()
                    for(var i = 0; i < logController.model.count; i++) {
                        var o = logController.model.get(i)
                        if (o && o.selected) {
                            tableView.selection.select(i, i)
                        }
                    }
                }
            }

52 53
            TableView {
                id: tableView
54
                Layout.fillHeight:  true
55
                model:              logController.model
56 57 58 59 60 61 62 63 64 65
                selectionMode:      SelectionMode.MultiSelection
                Layout.fillWidth:   true

                TableViewColumn {
                    title: qsTr("Id")
                    width: ScreenTools.defaultFontPixelWidth * 6
                    horizontalAlignment: Text.AlignHCenter
                    delegate : Text  {
                        horizontalAlignment: Text.AlignHCenter
                        text: {
66
                            var o = logController.model.get(styleData.row)
67 68 69 70 71 72 73 74 75
                            return o ? o.id : ""
                        }
                    }
                }

                TableViewColumn {
                    title: qsTr("Date")
                    width: ScreenTools.defaultFontPixelWidth * 34
                    horizontalAlignment: Text.AlignHCenter
76
                    delegate: Text  {
77
                        text: {
78
                            var o = logController.model.get(styleData.row)
79 80
                            if (o) {
                                //-- Have we received this entry already?
81 82
                                if(logController.model.get(styleData.row).received) {
                                    var d = logController.model.get(styleData.row).time
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
                                    if(d.getUTCFullYear() < 2010)
                                        return qsTr("Date Unknown")
                                    else
                                        return d.toLocaleString()
                                }
                            }
                            return ""
                        }
                    }
                }

                TableViewColumn {
                    title: qsTr("Size")
                    width: ScreenTools.defaultFontPixelWidth * 18
                    horizontalAlignment: Text.AlignHCenter
                    delegate : Text  {
                        horizontalAlignment: Text.AlignRight
                        text: {
101
                            var o = logController.model.get(styleData.row)
102 103 104 105 106 107 108 109 110 111 112 113
                            return o ? o.sizeStr : ""
                        }
                    }
                }

                TableViewColumn {
                    title: qsTr("Status")
                    width: ScreenTools.defaultFontPixelWidth * 22
                    horizontalAlignment: Text.AlignHCenter
                    delegate : Text  {
                        horizontalAlignment: Text.AlignHCenter
                        text: {
114
                            var o = logController.model.get(styleData.row)
115 116 117 118 119 120 121 122 123
                            return o ? o.status : ""
                        }
                    }
                }
            }
            Column {
                spacing:            _margin
                Layout.alignment:   Qt.AlignTop | Qt.AlignLeft
                QGCButton {
124
                    enabled:    !logController.requestingList && !logController.downloadingLogs
125 126 127 128
                    text:       qsTr("Refresh")
                    width:      _butttonWidth
                    onClicked: {
                        if (!QGroundControl.multiVehicleManager.activeVehicle || QGroundControl.multiVehicleManager.activeVehicle.isOfflineEditingVehicle) {
129
                            mainWindow.showMessageDialog(qsTr("Log Refresh"), qsTr("You must be connected to a vehicle in order to download logs."))
130
                        } else {
131
                            logController.refresh()
132 133 134 135
                        }
                    }
                }
                QGCButton {
136
                    enabled:    !logController.requestingList && !logController.downloadingLogs && tableView.selection.count > 0
137 138 139 140
                    text:       qsTr("Download")
                    width:      _butttonWidth
                    onClicked: {
                        //-- Clear selection
141 142
                        for(var i = 0; i < logController.model.count; i++) {
                            var o = logController.model.get(i)
143 144 145 146
                            if (o) o.selected = false
                        }
                        //-- Flag selected log files
                        tableView.selection.forEach(function(rowIndex){
147
                            var o = logController.model.get(rowIndex)
148 149
                            if (o) o.selected = true
                        })
150 151 152 153 154 155 156 157 158 159
                        if (ScreenTools.isMobile) {
                            // You can't pick folders in mobile, only default location is used
                            logController.download()
                        } else {
                            fileDialog.title =          qsTr("Select save directory")
                            fileDialog.selectExisting = true
                            fileDialog.folder =         QGroundControl.settingsManager.appSettings.logSavePath
                            fileDialog.selectFolder =   true
                            fileDialog.openForLoad()
                        }
160 161 162 163 164 165 166
                    }
                    QGCFileDialog {
                        id: fileDialog
                        onAcceptedForLoad: {
                            logController.download(file)
                            close()
                        }
167 168 169
                    }
                }
                QGCButton {
170
                    enabled:    !logController.requestingList && !logController.downloadingLogs && logController.model.count > 0
171 172
                    text:       qsTr("Erase All")
                    width:      _butttonWidth
173 174 175 176 177
                    onClicked:  mainWindow.showComponentDialog(
                        eraseAllMessage,
                        qsTr("Delete All Log Files"),
                        mainWindow.showDialogDefaultWidth,
                        StandardButton.Yes | StandardButton.No)
178 179 180 181 182
                    Component {
                        id: eraseAllMessage
                        QGCViewMessage {
                            message:    qsTr("All log files will be erased permanently. Is this really what you want?")
                            function accept() {
183
                                logController.eraseAll()
184
                                hideDialog()
185 186 187 188 189 190 191
                            }
                        }
                    }
                }
                QGCButton {
                    text:       qsTr("Cancel")
                    width:      _butttonWidth
192 193
                    enabled:    logController.requestingList || logController.downloadingLogs
                    onClicked:  logController.cancel()
194
                }
195 196 197 198
            }
        }
    }
}