From babef8e580c4b9d2daae1bd7b4092b59b5fa70be Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Thu, 21 Jul 2011 02:43:49 +1000 Subject: - Added file extension checks to Heimdall Frontend (for partition files). - Made sure Heimdall command line always returns 1 if a device is not detected. - Minor interface tweaks for Heimdall Frontend. --- heimdall-frontend/Source/mainwindow.cpp | 52 +++++++++++++++++++++++++++++---- heimdall-frontend/mainwindow.ui | 6 ++-- 2 files changed, 49 insertions(+), 9 deletions(-) (limited to 'heimdall-frontend') diff --git a/heimdall-frontend/Source/mainwindow.cpp b/heimdall-frontend/Source/mainwindow.cpp index b71aef1..f3732c4 100644 --- a/heimdall-frontend/Source/mainwindow.cpp +++ b/heimdall-frontend/Source/mainwindow.cpp @@ -571,9 +571,26 @@ void MainWindow::SelectPartitionName(int index) unsigned int newPartitionIndex = unusedPartitionIds[index]; unusedPartitionIds.removeAt(index); - FileInfo& partitionInfo = workingPackageData.GetFirmwareInfo().GetFileInfos()[partitionsListWidget->currentRow()]; - unusedPartitionIds.append(partitionInfo.GetPartitionId()); - partitionInfo.SetPartitionId(newPartitionIndex); + FileInfo& fileInfo = workingPackageData.GetFirmwareInfo().GetFileInfos()[partitionsListWidget->currentRow()]; + unusedPartitionIds.append(fileInfo.GetPartitionId()); + fileInfo.SetPartitionId(newPartitionIndex); + + if (!fileInfo.GetFilename().isEmpty()) + { + PitEntry *pitEntry = currentPitData.FindEntry(newPartitionIndex); + QString partitionFilename = pitEntry->GetFilename(); + int lastPeriod = partitionFilename.lastIndexOf(QChar('.')); + + if (lastPeriod >= 0) + { + QString partitionFileExtension = partitionFilename.mid(lastPeriod + 1); + + lastPeriod = fileInfo.GetFilename().lastIndexOf(QChar('.')); + + if (lastPeriod < 0 || fileInfo.GetFilename().mid(lastPeriod + 1) != partitionFileExtension) + Alerts::DisplayWarning(QString("%1 partition expects files with file extension \"%2\".").arg(pitEntry->GetPartitionName(), partitionFileExtension)); + } + } partitionNameComboBox->clear(); @@ -588,9 +605,25 @@ void MainWindow::SelectPartitionFile(void) { QString path = PromptFileSelection(); - if (path != "" && !IsArchive(path)) + if (path != "") { - workingPackageData.GetFirmwareInfo().GetFileInfos()[partitionsListWidget->currentRow()].SetFilename(path); + FileInfo& fileInfo = workingPackageData.GetFirmwareInfo().GetFileInfos()[partitionsListWidget->currentRow()]; + PitEntry *pitEntry = currentPitData.FindEntry(fileInfo.GetPartitionId()); + + QString partitionFilename = pitEntry->GetFilename(); + int lastPeriod = partitionFilename.lastIndexOf(QChar('.')); + + if (lastPeriod >= 0) + { + QString partitionFileExtension = partitionFilename.mid(lastPeriod + 1); + + lastPeriod = path.lastIndexOf(QChar('.')); + + if (lastPeriod < 0 || path.mid(lastPeriod + 1) != partitionFileExtension) + Alerts::DisplayWarning(QString("%1 partition expects files with file extension \"%2\".").arg(pitEntry->GetPartitionName(), partitionFileExtension)); + } + + fileInfo.SetFilename(path); partitionFileLineEdit->setText(path); pitBrowseButton->setEnabled(true); @@ -1050,9 +1083,16 @@ void MainWindow::HandleHeimdallReturned(int exitCode, QProcess::ExitStatus exitS if (exitStatus == QProcess::NormalExit && byteExitCode >= 0) { if (heimdallState == MainWindow::kHeimdallStateFlashing) - flashLabel->setText("Flash completed sucessfully!"); + { + if (byteExitCode == 1) + flashLabel->setText("Failed to detect compatible device!"); + else + flashLabel->setText("Flash completed sucessfully!"); + } else if (heimdallState == MainWindow::kHeimdallStateDetectingDevice) + { deviceDetectedRadioButton->setChecked(byteExitCode == 0); + } } else { diff --git a/heimdall-frontend/mainwindow.ui b/heimdall-frontend/mainwindow.ui index 984f4ba..4aaf6fa 100644 --- a/heimdall-frontend/mainwindow.ui +++ b/heimdall-frontend/mainwindow.ui @@ -414,9 +414,9 @@ - 310 + 320 130 - 311 + 301 31 @@ -451,7 +451,7 @@ 10 130 - 291 + 301 21 -- cgit v1.1