summaryrefslogtreecommitdiff
path: root/src/base/inifile.cc
diff options
context:
space:
mode:
authorAndreas Sandberg <andreas.sandberg@arm.com>2016-10-04 11:22:16 +0100
committerAndreas Sandberg <andreas.sandberg@arm.com>2016-10-04 11:22:16 +0100
commit18135ce6abc0ee02e36aef424be183cd7238a558 (patch)
treed42079cc180d7f385e2efff5594964b6dfc5db39 /src/base/inifile.cc
parentee7875885783d8b0945d27052bbf1e0a43aca18e (diff)
downloadgem5-18135ce6abc0ee02e36aef424be183cd7238a558.tar.xz
sim: Add a checkpoint function to test for entries
When loading a checkpoint, it's sometimes desirable to be able to test whether an entry within a secion exists. This is currently done automatically in the UNSERIALIZE_OPT_SCALAR macro, but it isn't possible to do for arrays, containers, or enums. Instead of adding even more macros, add a helper function (CheckpointIn::entryExists()) that tests for the presence of an entry. Change-Id: I4b4646b03276b889fd3916efefff3bd552317dbc Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com>
Diffstat (limited to 'src/base/inifile.cc')
-rw-r--r--src/base/inifile.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/base/inifile.cc b/src/base/inifile.cc
index 402c6469f..80ed3eb06 100644
--- a/src/base/inifile.cc
+++ b/src/base/inifile.cc
@@ -230,6 +230,17 @@ IniFile::find(const string &sectionName, const string &entryName,
}
bool
+IniFile::entryExists(const string &sectionName, const string &entryName) const
+{
+ Section *section = findSection(sectionName);
+
+ if (!section)
+ return false;
+ else
+ return section->findEntry(entryName);
+}
+
+bool
IniFile::sectionExists(const string &sectionName) const
{
return findSection(sectionName) != NULL;