gem5  v22.1.0.0
Public Member Functions | Private Types | Private Attributes | List of all members
gem5::IniFile::Section Class Reference

A section. More...

#include <inifile.hh>

Public Member Functions

 Section ()
 Constructor. More...
 
bool isReferenced ()
 Has this section been used? More...
 
void addEntry (const std::string &entryName, const std::string &value, bool append)
 Add an entry to the table. More...
 
bool add (const std::string &assignment)
 Add an entry to the table given a string assigment. More...
 
EntryfindEntry (const std::string &entryName) const
 Find the entry with the given name. More...
 
bool printUnreferenced (const std::string &sectionName)
 Print the unreferenced entries in this section to cerr. More...
 
void dump (const std::string &sectionName)
 Print the contents of this section to cout (for debugging). More...
 
EntryTable::const_iterator begin () const
 
EntryTable::const_iterator end () const
 

Private Types

typedef std::unordered_map< std::string, Entry * > EntryTable
 EntryTable type. Map of strings to Entry object pointers. More...
 

Private Attributes

EntryTable table
 Table of entries. More...
 
bool referenced
 Has this section been used? More...
 

Detailed Description

A section.

Definition at line 94 of file inifile.hh.

Member Typedef Documentation

◆ EntryTable

typedef std::unordered_map<std::string, Entry *> gem5::IniFile::Section::EntryTable
private

EntryTable type. Map of strings to Entry object pointers.

Definition at line 97 of file inifile.hh.

Constructor & Destructor Documentation

◆ Section()

gem5::IniFile::Section::Section ( )
inline

Constructor.

Definition at line 104 of file inifile.hh.

Member Function Documentation

◆ add()

bool gem5::IniFile::Section::add ( const std::string &  assignment)

Add an entry to the table given a string assigment.

Assignment should be of the form "param=value" or "param+=value" (for append). This funciton parses the assignment statment and calls addEntry().

Return values
Truefor success, false if parse error.

Definition at line 99 of file inifile.cc.

References gem5::eat_white(), and gem5::ArmISA::offset.

Referenced by gem5::IniFile::load().

◆ addEntry()

void gem5::IniFile::Section::addEntry ( const std::string &  entryName,
const std::string &  value,
bool  append 
)

Add an entry to the table.

If an entry with the same name already exists, the 'append' parameter is checked If true, the new value will be appended to the existing entry. If false, the new value will replace the existing entry.

Definition at line 77 of file inifile.cc.

References gem5::auxv::Entry, and gem5::IniFile::table.

◆ begin()

IniFile::Section::EntryTable::const_iterator gem5::IniFile::Section::begin ( ) const

Definition at line 352 of file inifile.cc.

References gem5::IniFile::table.

◆ dump()

void gem5::IniFile::Section::dump ( const std::string &  sectionName)

Print the contents of this section to cout (for debugging).

Definition at line 333 of file inifile.cc.

References gem5::IniFile::table.

◆ end()

IniFile::Section::EntryTable::const_iterator gem5::IniFile::Section::end ( ) const

Definition at line 358 of file inifile.cc.

References gem5::IniFile::table.

◆ findEntry()

IniFile::Entry * gem5::IniFile::Section::findEntry ( const std::string &  entryName) const

Find the entry with the given name.

Return values
Pointerto the entry object, or NULL if none.

Definition at line 123 of file inifile.cc.

References gem5::IniFile::table.

Referenced by gem5::IniFile::entryExists(), gem5::IniFile::find(), and gem5::IniFile::printUnreferenced().

◆ isReferenced()

bool gem5::IniFile::Section::isReferenced ( )
inline

Has this section been used?

Definition at line 110 of file inifile.hh.

References referenced.

Referenced by gem5::IniFile::printUnreferenced().

◆ printUnreferenced()

bool gem5::IniFile::Section::printUnreferenced ( const std::string &  sectionName)

Print the unreferenced entries in this section to cerr.

Messages can be suppressed using "unref_section_ok" and "unref_entries_ok".

Parameters
sectionNameName of this section, for use in output message.
Return values
Trueif any entries were printed.

Definition at line 251 of file inifile.cc.

References gem5::IniFile::Entry::getValue(), gem5::IniFile::Entry::isReferenced(), gem5::IniFile::table, and gem5::tokenize().

Referenced by gem5::IniFile::printUnreferenced().

Member Data Documentation

◆ referenced

bool gem5::IniFile::Section::referenced
mutableprivate

Has this section been used?

Definition at line 100 of file inifile.hh.

Referenced by isReferenced().

◆ table

EntryTable gem5::IniFile::Section::table
private

Table of entries.

Definition at line 99 of file inifile.hh.


The documentation for this class was generated from the following files:

Generated on Wed Dec 21 2022 10:23:12 for gem5 by doxygen 1.9.1