From 02ffeb6c3983158004b773aab616f8377df648f0 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Fri, 3 May 2019 16:17:32 -0400 Subject: [PATCH] Allow a test profile to be created at an arbitrary path. Currently there is a very messy tangle of dependencies between loaders, machines, sessions, and profiles. Right now the simplest way to create a test loader instance is to create a test profile, under which the machine and session instances will exist. --- oscar/SleepLib/loader_plugins/prs1_loader.h | 1 + oscar/SleepLib/profiles.cpp | 12 +++++++++--- oscar/SleepLib/profiles.h | 5 +++-- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.h b/oscar/SleepLib/loader_plugins/prs1_loader.h index 29a88f9f..d621b341 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.h +++ b/oscar/SleepLib/loader_plugins/prs1_loader.h @@ -1,5 +1,6 @@ /* SleepLib PRS1 Loader Header * + * Copyright (c) 2019 The OSCAR Team * Copyright (C) 2011-2018 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public diff --git a/oscar/SleepLib/profiles.cpp b/oscar/SleepLib/profiles.cpp index 619a3cb5..5ba6d08f 100644 --- a/oscar/SleepLib/profiles.cpp +++ b/oscar/SleepLib/profiles.cpp @@ -1,5 +1,6 @@ -/* SleepLib Profiles Implementation +/* SleepLib Profiles Implementation * + * Copyright (c) 2019 The OSCAR Team * Copyright (c) 2011-2018 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public @@ -971,9 +972,14 @@ Profile *Get(QString name) return nullptr; } -Profile *Create(QString name) +Profile *Create(QString name, const QString* in_path) { - QString path = p_pref->Get("{home}/Profiles/") + name; + QString path; + if (in_path == nullptr) { + path = p_pref->Get("{home}/Profiles/") + name; + } else { + path = *in_path; + } QDir dir(path); if (!dir.exists(path)) { diff --git a/oscar/SleepLib/profiles.h b/oscar/SleepLib/profiles.h index e1895022..52dd3b57 100644 --- a/oscar/SleepLib/profiles.h +++ b/oscar/SleepLib/profiles.h @@ -1,5 +1,6 @@ -/* SleepLib Profiles Header +/* SleepLib Profiles Header * + * Copyright (c) 2019 The OSCAR Team * Copyright (c) 2011-2018 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public @@ -263,7 +264,7 @@ void Scan(); // Initialize and load Profile void Done(); // Save all Profile objects and clear list int CleanupProfile(Profile *prof); -Profile *Create(QString name); +Profile *Create(QString name, const QString* in_path=nullptr); Profile *Get(QString name); Profile *Get();