gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
output.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2013 Andreas Sandberg
15  * Copyright (c) 2005 The Regents of The University of Michigan
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
42 #ifndef __BASE_OUTPUT_HH__
43 #define __BASE_OUTPUT_HH__
44 
45 #include <ios>
46 #include <map>
47 #include <string>
48 
49 #include "base/compiler.hh"
50 
51 class OutputDirectory;
52 
54 {
55  public:
56  virtual ~OutputStream();
57 
59  std::ostream *stream() const { return _stream; };
60 
67  virtual bool recreateable() const { return false; }
68 
70  const std::string &name() const { return _name; }
71 
72  protected:
73  friend class OutputDirectory;
74 
76  OutputStream(const std::string &name,
77  std::ostream *stream);
78 
79  /* Prevent copying */
80  OutputStream(const OutputStream &f);
81 
83  virtual void relocate(const OutputDirectory &dir);
84 
86  const std::string _name;
87 
89  std::ostream *const _stream;
90 };
91 
92 template<class StreamType>
94  : public OutputStream
95 {
96  public:
97  typedef StreamType stream_type_t;
98 
99  virtual ~OutputFile();
100 
107  bool recreateable() const override { return _recreateable; }
108 
109  protected:
110  friend class OutputDirectory;
111 
113  const std::string &name,
114  std::ios_base::openmode mode,
115  bool recreateable);
116 
117  /* Prevent copying */
119 
121  void relocate(const OutputDirectory &dir) override;
122 
124  const std::ios_base::openmode _mode;
125 
127  const bool _recreateable;
128 
130  stream_type_t *const _fstream;
131 };
132 
135 {
136  private:
138  typedef std::map<std::string, OutputStream *> file_map_t;
139 
141  typedef std::map<std::string, OutputDirectory *> dir_map_t;
142 
144  file_map_t files;
145 
147  dir_map_t dirs;
148 
150  std::string dir;
151 
153  static const char PATH_SEPARATOR = '/';
154 
157 
158  protected:
167  static OutputStream *checkForStdio(const std::string &name);
168 
169  public:
171  OutputDirectory();
172 
174  OutputDirectory(const std::string &name);
175 
177  ~OutputDirectory();
178 
187  std::string resolve(const std::string &name) const;
188 
193  void setDirectory(const std::string &dir);
194 
199  const std::string &directory() const;
200 
219  OutputStream *create(const std::string &name,
220  bool binary = false,
221  bool no_gz = false);
222 
237  OutputStream *open(const std::string &name,
238  std::ios_base::openmode mode,
239  bool recreateable = true,
240  bool no_gz = false);
241 
251  void close(OutputStream *file);
252 
259  OutputStream *find(const std::string &name) const;
260 
261  OutputStream *findOrCreate(const std::string &name, bool binary = false);
262 
269  bool isFile(const std::string &name) const;
270 
274  static inline bool isAbsolute(const std::string &name) {
275  return name[0] == PATH_SEPARATOR;
276  }
277 
283  OutputDirectory *createSubdirectory(const std::string &name);
284 
299  void remove(const std::string &name, bool recursive=false);
300 };
301 
302 extern OutputDirectory simout;
303 
304 #endif // __BASE_OUTPUT_HH__
bool recreateable() const override
Can the file be recreated if the output directory is moved?
Definition: output.hh:107
virtual void relocate(const OutputDirectory &dir)
Re-create the in a new location if recreateable.
Definition: output.cc:74
std::map< std::string, OutputDirectory * > dir_map_t
Output subdirectories.
Definition: output.hh:141
const Info * resolve(const std::string &name)
Definition: statistics.cc:578
virtual ~OutputStream()
Definition: output.cc:69
std::ostream *const _stream
Underlying output stream.
Definition: output.hh:89
OutputDirectory simout
Definition: output.cc:61
StreamType stream_type_t
Definition: output.hh:97
Bitfield< 4, 0 > mode
const std::string & name() const
Get the file name in the output directory.
Definition: output.hh:70
const bool _recreateable
Can the file be recreated in a new location?
Definition: output.hh:127
std::ostream * stream() const
Get the output underlying output stream.
Definition: output.hh:59
Bitfield< 6 > f
file_map_t files
Open file streams within this directory.
Definition: output.hh:144
const std::string _name
Name in output directory.
Definition: output.hh:86
virtual bool recreateable() const
Can the file be recreated if the output directory is moved?
Definition: output.hh:67
const std::ios_base::openmode _mode
File mode when opened.
Definition: output.hh:124
friend class OutputDirectory
Definition: output.hh:73
static OutputStream stdout
Definition: output.hh:155
static OutputStream stderr
Definition: output.hh:156
OutputStream(const std::string &name, std::ostream *stream)
Wrap an existing stream.
Definition: output.cc:64
static bool isAbsolute(const std::string &name)
Test if a path is absolute.
Definition: output.hh:274
std::string dir
Name of this directory.
Definition: output.hh:150
dir_map_t dirs
Output sub-directories.
Definition: output.hh:147
std::map< std::string, OutputStream * > file_map_t
File names and associated stream handles.
Definition: output.hh:138
Interface for creating files in a gem5 output directory.
Definition: output.hh:134
stream_type_t *const _fstream
Pointer to the file stream.
Definition: output.hh:130

Generated on Thu May 28 2020 16:21:29 for gem5 by doxygen 1.8.13