Go to the documentation of this file.
44 SectionTable::iterator
i =
table.begin();
45 SectionTable::iterator end =
table.end();
56 std::ifstream
f(file.c_str());
75 const std::string &value,
78 EntryTable::iterator ei =
table.find(entryName);
80 if (ei ==
table.end()) {
86 ei->second->appendValue(value);
90 ei->second->setValue(value);
99 if (
offset == std::string::npos) {
101 std::cerr <<
"Can't parse .ini line " << assignment << std::endl;
106 bool append = (assignment[
offset-1] ==
'+');
108 std::string entryName = assignment.substr(0, append ?
offset-1 :
offset);
109 std::string value = assignment.substr(
offset + 1);
114 addEntry(entryName, value, append);
124 EntryTable::const_iterator ei =
table.find(entryName);
126 return (ei ==
table.end()) ? NULL : ei->second;
133 SectionTable::iterator
i =
table.find(sectionName);
141 table[sectionName] = sec;
150 SectionTable::const_iterator
i =
table.find(sectionName);
152 return (
i ==
table.end()) ? NULL :
i->second;
163 if (
offset == std::string::npos)
166 std::string sectionName = str.substr(0,
offset);
167 std::string rest = str.substr(
offset + 1);
188 if (line.size() == 0)
192 int last = line.size() - 1;
194 if (line[0] ==
'[' && line[last] ==
']') {
195 std::string sectionName = line.substr(1, last - 1);
204 if (!section->
add(line))
213 std::string &value)
const
230 const std::string &entryName)
const
251 bool search_unref_entries =
false;
254 Entry *entry = findEntry(
"unref_entries_ok");
257 if (unref_ok_entries.size()) {
258 search_unref_entries =
true;
262 for (EntryTable::iterator ei =
table.begin();
263 ei !=
table.end(); ++ei) {
264 const std::string &entryName = ei->first;
267 if (entryName ==
"unref_section_ok" ||
268 entryName ==
"unref_entries_ok")
274 if (search_unref_entries &&
275 (std::find(unref_ok_entries.begin(), unref_ok_entries.end(),
276 entryName) != unref_ok_entries.end()))
281 std::cerr <<
"Parameter " << sectionName <<
":" << entryName
282 <<
" not referenced." << std::endl;
294 for (SectionTable::const_iterator
i =
table.begin();
297 list.push_back((*i).first);
306 for (SectionTable::iterator
i =
table.begin();
308 const std::string §ionName =
i->first;
312 if (section->
findEntry(
"unref_section_ok") == NULL) {
313 std::cerr <<
"Section " << sectionName <<
" not referenced."
332 for (EntryTable::iterator ei =
table.begin();
333 ei !=
table.end(); ++ei) {
334 std::cout << sectionName <<
": " << (*ei).first <<
" => "
335 << (*ei).second->getValue() <<
"\n";
342 for (SectionTable::iterator
i =
table.begin();
344 i->second->dump(
i->first);
348 IniFile::Section::EntryTable::const_iterator
351 return table.begin();
354 IniFile::Section::EntryTable::const_iterator
364 const auto& section = *
table.at(sectionName);
365 for (
const auto& pair : section) {
366 cb(pair.first, pair.second->getValue());
bool printUnreferenced()
Print unreferenced entries in object.
void eat_end_white(std::string &s)
const std::string & getValue() const
Fetch the value.
void getSectionNames(std::vector< std::string > &list) const
Push all section names into the given vector.
void addEntry(const std::string &entryName, const std::string &value, bool append)
Add an entry to the table.
bool find(const std::string §ion, const std::string &entry, std::string &value) const
Find value corresponding to given section and entry names.
void visitSection(const std::string §ionName, VisitSectionCallback cb)
Iterate over key/value pairs of the given section.
void tokenize(std::vector< std::string > &v, const std::string &s, char token, bool ignore)
static scfx_rep_node * list
bool entryExists(const std::string §ion, const std::string &entry) const
Determine whether the entry exists within named section exists in the .ini file.
void dump(const std::string §ionName)
Print the contents of this section to cout (for debugging).
std::function< void(const std::string &, const std::string &)> VisitSectionCallback
Visitor callback that receives key/value pairs.
bool add(const std::string &s)
Take string of the form "<section>:<parameter>=<value>" or "<section>:<parameter>+=<value>" and add t...
bool add(const std::string &assignment)
Add an entry to the table given a string assigment.
Entry * findEntry(const std::string &entryName) const
Find the entry with the given name.
bool printUnreferenced(const std::string §ionName)
Print the unreferenced entries in this section to cerr.
Section * addSection(const std::string §ionName)
Look up section with the given name, creating a new section if not found.
EntryTable::const_iterator end() const
std::string value
The entry value.
void eat_white(std::string &s)
SectionTable table
Hash of section names to Section object pointers.
EntryTable::const_iterator begin() const
bool referenced
Has this entry been used?
bool isReferenced()
Has this entry been used?
bool load(std::istream &f)
Load parameter settings from given istream.
Section * findSection(const std::string §ionName) const
Look up section with the given name.
bool isReferenced()
Has this section been used?
bool sectionExists(const std::string §ion) const
Determine whether the named section exists in the .ini file.
void dump()
Dump contents to cout. For debugging.
Generated on Tue Mar 23 2021 19:41:24 for gem5 by doxygen 1.8.17