mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Allow purging of any machine, not just CPAP.
Otherwise there was no way to purge and re-import Somnopose or hypnogram data, nor oximetry apart from one day at a time.
This commit is contained in:
parent
a585b6dcfe
commit
ea66563521
@ -374,10 +374,20 @@ void MainWindow::PopulatePurgeMenu()
|
|||||||
ui->menuPurge_CPAP_Data->disconnect(ui->menuPurge_CPAP_Data, SIGNAL(triggered(QAction*)), this, SLOT(on_actionPurgeMachine(QAction *)));
|
ui->menuPurge_CPAP_Data->disconnect(ui->menuPurge_CPAP_Data, SIGNAL(triggered(QAction*)), this, SLOT(on_actionPurgeMachine(QAction *)));
|
||||||
ui->menuPurge_CPAP_Data->clear();
|
ui->menuPurge_CPAP_Data->clear();
|
||||||
|
|
||||||
|
// Only allow rebuilding for CPAP for now, since that's the only thing that makes backups.
|
||||||
QList<Machine *> machines = p_profile->GetMachines(MT_CPAP);
|
QList<Machine *> machines = p_profile->GetMachines(MT_CPAP);
|
||||||
for (int i=0; i < machines.size(); ++i) {
|
for (int i=0; i < machines.size(); ++i) {
|
||||||
Machine *mach = machines.at(i);
|
Machine *mach = machines.at(i);
|
||||||
addMachineToMenu(mach, ui->menu_Rebuild_CPAP_Data);
|
addMachineToMenu(mach, ui->menu_Rebuild_CPAP_Data);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add any imported machine (except the built-in journal) to the purge menu.
|
||||||
|
machines = p_profile->GetMachines();
|
||||||
|
for (int i=0; i < machines.size(); ++i) {
|
||||||
|
Machine *mach = machines.at(i);
|
||||||
|
if (mach->type() == MT_JOURNAL) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
addMachineToMenu(mach, ui->menuPurge_CPAP_Data);
|
addMachineToMenu(mach, ui->menuPurge_CPAP_Data);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1997,7 +2007,7 @@ void MainWindow::on_actionPurgeMachine(QAction *action)
|
|||||||
QString data = action->data().toString();
|
QString data = action->data().toString();
|
||||||
QString cls = data.section(":",0,0);
|
QString cls = data.section(":",0,0);
|
||||||
QString serial = data.section(":", 1);
|
QString serial = data.section(":", 1);
|
||||||
QList<Machine *> machines = p_profile->GetMachines(MT_CPAP);
|
QList<Machine *> machines = p_profile->GetMachines();
|
||||||
Machine * mach = nullptr;
|
Machine * mach = nullptr;
|
||||||
for (int i=0; i < machines.size(); ++i) {
|
for (int i=0; i < machines.size(); ++i) {
|
||||||
Machine * m = machines.at(i);
|
Machine * m = machines.at(i);
|
||||||
@ -2008,13 +2018,30 @@ void MainWindow::on_actionPurgeMachine(QAction *action)
|
|||||||
}
|
}
|
||||||
if (!mach) return;
|
if (!mach) return;
|
||||||
|
|
||||||
|
QString machname = mach->brand() + " " + mach->model() + " " + mach->modelnumber();
|
||||||
|
if (!mach->serial().isEmpty()) {
|
||||||
|
machname += QString(" (%1)").arg(mach->serial());
|
||||||
|
}
|
||||||
|
|
||||||
|
QString backupnotice;
|
||||||
|
QString bpath = mach->getBackupPath();
|
||||||
|
bool backups = (dirCount(bpath) > 0) ? true : false;
|
||||||
|
if (backups) {
|
||||||
|
backupnotice = "<p>" + tr("Note as a precaution, the backup folder will be left in place.") + "</p>";
|
||||||
|
} else {
|
||||||
|
backupnotice = "<p>" + tr("OSCAR does not have any backups for this machine!") + "</p>" +
|
||||||
|
"<p>" + tr("Unless you have made <i>your <b>own</b> backups for ALL of your data for this machine</i>, "
|
||||||
|
"<font size=+2>you will lose this machine's data <b>permanently</b>!</font>") + "</p>";
|
||||||
|
}
|
||||||
|
|
||||||
if (QMessageBox::question(this, STR_MessageBox_Warning,
|
if (QMessageBox::question(this, STR_MessageBox_Warning,
|
||||||
"<p><b>"+STR_MessageBox_Warning+":</b> " +
|
"<p><b>"+STR_MessageBox_Warning+":</b> " +
|
||||||
tr("You are about to <font size=+2>obliterate</font> OSCAR's machine database for the following machine:</p>") +
|
tr("You are about to <font size=+2>obliterate</font> OSCAR's machine database for the following machine:</p>") +
|
||||||
"<p>"+mach->brand() + " " + mach->model() + " " + mach->modelnumber() + " (" + mach->serial() + ")" + "</p>" +
|
"<p><font size=+2>" + machname + "</font></p>" +
|
||||||
"<p>"+tr("Note as a precaution, the backup folder will be left in place.")+"</p>"+
|
backupnotice+
|
||||||
"<p>"+tr("Are you <b>absolutely sure</b> you want to proceed?")+"</p>",
|
"<p>"+tr("Are you <b>absolutely sure</b> you want to proceed?")+"</p>",
|
||||||
QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::Yes) {
|
QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::Yes) {
|
||||||
|
qDebug() << "Purging" << machname;
|
||||||
purgeMachine(mach);
|
purgeMachine(mach);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2031,14 +2058,14 @@ void MainWindow::purgeMachine(Machine * mach)
|
|||||||
mach->day.clear();
|
mach->day.clear();
|
||||||
QDir dir;
|
QDir dir;
|
||||||
QString path = mach->getDataPath();
|
QString path = mach->getDataPath();
|
||||||
qDebug() << "path to machine" << path;
|
|
||||||
path.chop(1);
|
path.chop(1);
|
||||||
|
qDebug() << "path to machine" << path;
|
||||||
|
|
||||||
p_profile->DelMachine(mach);
|
p_profile->DelMachine(mach);
|
||||||
delete mach;
|
delete mach;
|
||||||
// remove the directory unless it's got unexpected crap in it..
|
// remove the directory unless it's got unexpected crap in it..
|
||||||
bool deleted = false;
|
bool deleted = false;
|
||||||
if (!dir.remove(path)) {
|
if (!dir.rmdir(path)) {
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
wchar_t* directoryPtr = (wchar_t*)path.utf16();
|
wchar_t* directoryPtr = (wchar_t*)path.utf16();
|
||||||
SetFileAttributes(directoryPtr, GetFileAttributes(directoryPtr) & ~FILE_ATTRIBUTE_READONLY);
|
SetFileAttributes(directoryPtr, GetFileAttributes(directoryPtr) & ~FILE_ATTRIBUTE_READONLY);
|
||||||
|
@ -2895,7 +2895,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
</widget>
|
</widget>
|
||||||
<widget class="QMenu" name="menuPurge_CPAP_Data">
|
<widget class="QMenu" name="menuPurge_CPAP_Data">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
<string>Purge ALL CPAP Data</string>
|
<string>Purge ALL Machine Data</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
<addaction name="actionPurge_Current_Day"/>
|
<addaction name="actionPurge_Current_Day"/>
|
||||||
|
Loading…
Reference in New Issue
Block a user