gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
inifile.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2001-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include "base/inifile.hh"
30 
31 #include <algorithm>
32 #include <fstream>
33 #include <iostream>
34 #include <string>
35 #include <vector>
36 
37 #include "base/str.hh"
38 
40 {}
41 
43 {
44  SectionTable::iterator i = table.begin();
45  SectionTable::iterator end = table.end();
46 
47  while (i != end) {
48  delete (*i).second;
49  ++i;
50  }
51 }
52 
53 bool
54 IniFile::load(const std::string &file)
55 {
56  std::ifstream f(file.c_str());
57 
58  if (!f.is_open())
59  return false;
60 
61  return load(f);
62 }
63 
64 
65 const std::string &
67 {
68  referenced = true;
69  return value;
70 }
71 
72 
73 void
74 IniFile::Section::addEntry(const std::string &entryName,
75  const std::string &value,
76  bool append)
77 {
78  EntryTable::iterator ei = table.find(entryName);
79 
80  if (ei == table.end()) {
81  // new entry
82  table[entryName] = new Entry(value);
83  }
84  else if (append) {
85  // append new reult to old entry
86  ei->second->appendValue(value);
87  }
88  else {
89  // override old entry
90  ei->second->setValue(value);
91  }
92 }
93 
94 
95 bool
96 IniFile::Section::add(const std::string &assignment)
97 {
98  std::string::size_type offset = assignment.find('=');
99  if (offset == std::string::npos) {
100  // no '=' found
101  std::cerr << "Can't parse .ini line " << assignment << std::endl;
102  return false;
103  }
104 
105  // if "+=" rather than just "=" then append value
106  bool append = (assignment[offset-1] == '+');
107 
108  std::string entryName = assignment.substr(0, append ? offset-1 : offset);
109  std::string value = assignment.substr(offset + 1);
110 
111  eat_white(entryName);
112  eat_white(value);
113 
114  addEntry(entryName, value, append);
115  return true;
116 }
117 
118 
120 IniFile::Section::findEntry(const std::string &entryName) const
121 {
122  referenced = true;
123 
124  EntryTable::const_iterator ei = table.find(entryName);
125 
126  return (ei == table.end()) ? NULL : ei->second;
127 }
128 
129 
131 IniFile::addSection(const std::string &sectionName)
132 {
133  SectionTable::iterator i = table.find(sectionName);
134 
135  if (i != table.end()) {
136  return i->second;
137  }
138  else {
139  // new entry
140  Section *sec = new Section();
141  table[sectionName] = sec;
142  return sec;
143  }
144 }
145 
146 
148 IniFile::findSection(const std::string &sectionName) const
149 {
150  SectionTable::const_iterator i = table.find(sectionName);
151 
152  return (i == table.end()) ? NULL : i->second;
153 }
154 
155 
156 // Take string of the form "<section>:<parameter>=<value>" and add to
157 // database. Return true if successful, false if parse error.
158 bool
159 IniFile::add(const std::string &str)
160 {
161  // find ':'
162  std::string::size_type offset = str.find(':');
163  if (offset == std::string::npos) // no ':' found
164  return false;
165 
166  std::string sectionName = str.substr(0, offset);
167  std::string rest = str.substr(offset + 1);
168 
169  eat_white(sectionName);
170  Section *s = addSection(sectionName);
171 
172  return s->add(rest);
173 }
174 
175 bool
176 IniFile::load(std::istream &f)
177 {
178  Section *section = NULL;
179 
180  while (!f.eof()) {
181  f >> std::ws; // Eat whitespace
182  if (f.eof()) {
183  break;
184  }
185 
186  std::string line;
187  getline(f, line);
188  if (line.size() == 0)
189  continue;
190 
191  eat_end_white(line);
192  int last = line.size() - 1;
193 
194  if (line[0] == '[' && line[last] == ']') {
195  std::string sectionName = line.substr(1, last - 1);
196  eat_white(sectionName);
197  section = addSection(sectionName);
198  continue;
199  }
200 
201  if (section == NULL)
202  continue;
203 
204  if (!section->add(line))
205  return false;
206  }
207 
208  return true;
209 }
210 
211 bool
212 IniFile::find(const std::string &sectionName, const std::string &entryName,
213  std::string &value) const
214 {
215  Section *section = findSection(sectionName);
216  if (section == NULL)
217  return false;
218 
219  Entry *entry = section->findEntry(entryName);
220  if (entry == NULL)
221  return false;
222 
223  value = entry->getValue();
224 
225  return true;
226 }
227 
228 bool
229 IniFile::entryExists(const std::string &sectionName,
230  const std::string &entryName) const
231 {
232  Section *section = findSection(sectionName);
233 
234  if (!section)
235  return false;
236  else
237  return section->findEntry(entryName);
238 }
239 
240 bool
241 IniFile::sectionExists(const std::string &sectionName) const
242 {
243  return findSection(sectionName) != NULL;
244 }
245 
246 
247 bool
248 IniFile::Section::printUnreferenced(const std::string &sectionName)
249 {
250  bool unref = false;
251  bool search_unref_entries = false;
252  std::vector<std::string> unref_ok_entries;
253 
254  Entry *entry = findEntry("unref_entries_ok");
255  if (entry != NULL) {
256  tokenize(unref_ok_entries, entry->getValue(), ' ');
257  if (unref_ok_entries.size()) {
258  search_unref_entries = true;
259  }
260  }
261 
262  for (EntryTable::iterator ei = table.begin();
263  ei != table.end(); ++ei) {
264  const std::string &entryName = ei->first;
265  entry = ei->second;
266 
267  if (entryName == "unref_section_ok" ||
268  entryName == "unref_entries_ok")
269  {
270  continue;
271  }
272 
273  if (!entry->isReferenced()) {
274  if (search_unref_entries &&
275  (std::find(unref_ok_entries.begin(), unref_ok_entries.end(),
276  entryName) != unref_ok_entries.end()))
277  {
278  continue;
279  }
280 
281  std::cerr << "Parameter " << sectionName << ":" << entryName
282  << " not referenced." << std::endl;
283  unref = true;
284  }
285  }
286 
287  return unref;
288 }
289 
290 
291 void
293 {
294  for (SectionTable::const_iterator i = table.begin();
295  i != table.end(); ++i)
296  {
297  list.push_back((*i).first);
298  }
299 }
300 
301 bool
303 {
304  bool unref = false;
305 
306  for (SectionTable::iterator i = table.begin();
307  i != table.end(); ++i) {
308  const std::string &sectionName = i->first;
309  Section *section = i->second;
310 
311  if (!section->isReferenced()) {
312  if (section->findEntry("unref_section_ok") == NULL) {
313  std::cerr << "Section " << sectionName << " not referenced."
314  << std::endl;
315  unref = true;
316  }
317  }
318  else {
319  if (section->printUnreferenced(sectionName)) {
320  unref = true;
321  }
322  }
323  }
324 
325  return unref;
326 }
327 
328 
329 void
330 IniFile::Section::dump(const std::string &sectionName)
331 {
332  for (EntryTable::iterator ei = table.begin();
333  ei != table.end(); ++ei) {
334  std::cout << sectionName << ": " << (*ei).first << " => "
335  << (*ei).second->getValue() << "\n";
336  }
337 }
338 
339 void
341 {
342  for (SectionTable::iterator i = table.begin();
343  i != table.end(); ++i) {
344  i->second->dump(i->first);
345  }
346 }
347 
348 IniFile::Section::EntryTable::const_iterator
350 {
351  return table.begin();
352 }
353 
354 IniFile::Section::EntryTable::const_iterator
356 {
357  return table.end();
358 }
359 
360 void
361 IniFile::visitSection(const std::string &sectionName,
363 {
364  const auto& section = *table.at(sectionName);
365  for (const auto& pair : section) {
366  cb(pair.first, pair.second->getValue());
367  }
368 }
IniFile::printUnreferenced
bool printUnreferenced()
Print unreferenced entries in object.
Definition: inifile.cc:302
eat_end_white
void eat_end_white(std::string &s)
Definition: str.hh:56
IniFile::Entry::getValue
const std::string & getValue() const
Fetch the value.
Definition: inifile.cc:66
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
IniFile::getSectionNames
void getSectionNames(std::vector< std::string > &list) const
Push all section names into the given vector.
Definition: inifile.cc:292
IniFile::~IniFile
~IniFile()
Destructor.
Definition: inifile.cc:42
IniFile::Section::addEntry
void addEntry(const std::string &entryName, const std::string &value, bool append)
Add an entry to the table.
Definition: inifile.cc:74
IniFile::find
bool find(const std::string &section, const std::string &entry, std::string &value) const
Find value corresponding to given section and entry names.
Definition: inifile.cc:212
IniFile::visitSection
void visitSection(const std::string &sectionName, VisitSectionCallback cb)
Iterate over key/value pairs of the given section.
Definition: inifile.cc:361
tokenize
void tokenize(std::vector< std::string > &v, const std::string &s, char token, bool ignore)
Definition: str.cc:65
sc_dt::list
static scfx_rep_node * list
Definition: scfx_rep.cc:368
std::vector< std::string >
IniFile::entryExists
bool entryExists(const std::string &section, const std::string &entry) const
Determine whether the entry exists within named section exists in the .ini file.
Definition: inifile.cc:229
IniFile::Section::dump
void dump(const std::string &sectionName)
Print the contents of this section to cout (for debugging).
Definition: inifile.cc:330
IniFile::VisitSectionCallback
std::function< void(const std::string &, const std::string &)> VisitSectionCallback
Visitor callback that receives key/value pairs.
Definition: inifile.hh:213
IniFile::add
bool add(const std::string &s)
Take string of the form "<section>:<parameter>=<value>" or "<section>:<parameter>+=<value>" and add t...
Definition: inifile.cc:159
str.hh
IniFile::Section::add
bool add(const std::string &assignment)
Add an entry to the table given a string assigment.
Definition: inifile.cc:96
IniFile::Section::findEntry
Entry * findEntry(const std::string &entryName) const
Find the entry with the given name.
Definition: inifile.cc:120
IniFile::Section::printUnreferenced
bool printUnreferenced(const std::string &sectionName)
Print the unreferenced entries in this section to cerr.
Definition: inifile.cc:248
inifile.hh
IniFile::addSection
Section * addSection(const std::string &sectionName)
Look up section with the given name, creating a new section if not found.
Definition: inifile.cc:131
IniFile::Section
A section.
Definition: inifile.hh:91
IniFile::Section::end
EntryTable::const_iterator end() const
Definition: inifile.cc:355
IniFile::Entry::value
std::string value
The entry value.
Definition: inifile.hh:61
eat_white
void eat_white(std::string &s)
Definition: str.hh:64
IniFile::Entry
A single key/value pair.
Definition: inifile.hh:59
IniFile::table
SectionTable table
Hash of section names to Section object pointers.
Definition: inifile.hh:146
IniFile::Section::begin
EntryTable::const_iterator begin() const
Definition: inifile.cc:349
IniFile::Entry::referenced
bool referenced
Has this entry been used?
Definition: inifile.hh:62
Stats::size_type
unsigned int size_type
Definition: types.hh:54
IniFile::Entry::isReferenced
bool isReferenced()
Has this entry been used?
Definition: inifile.hh:72
IniFile::load
bool load(std::istream &f)
Load parameter settings from given istream.
Definition: inifile.cc:176
ArmISA::s
Bitfield< 4 > s
Definition: miscregs_types.hh:556
IniFile::findSection
Section * findSection(const std::string &sectionName) const
Look up section with the given name.
Definition: inifile.cc:148
IniFile::Section::isReferenced
bool isReferenced()
Has this section been used?
Definition: inifile.hh:107
IniFile::sectionExists
bool sectionExists(const std::string &section) const
Determine whether the named section exists in the .ini file.
Definition: inifile.cc:241
IniFile::IniFile
IniFile()
Constructor.
Definition: inifile.cc:39
ArmISA::f
Bitfield< 6 > f
Definition: miscregs_types.hh:64
ArmISA::offset
Bitfield< 23, 0 > offset
Definition: types.hh:153
IniFile::dump
void dump()
Dump contents to cout. For debugging.
Definition: inifile.cc:340

Generated on Tue Mar 23 2021 19:41:24 for gem5 by doxygen 1.8.17