stats: miscellaneous cleanup
[gem5.git] / src / base / output.cc
1 /*
2 * Copyright (c) 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 * Authors: Nathan Binkert
29 */
30
31 #include <errno.h>
32 #include <limits.h>
33 #include <stdlib.h>
34 #include <sys/stat.h>
35 #include <sys/types.h>
36
37 #include <fstream>
38
39 #include <gzstream.hh>
40
41 #include "base/misc.hh"
42 #include "base/output.hh"
43
44 using namespace std;
45
46 OutputDirectory simout;
47
48 /**
49 *
50 */
51 OutputDirectory::OutputDirectory()
52 {}
53
54 OutputDirectory::~OutputDirectory()
55 {
56 for (map_t::iterator i = files.begin(); i != files.end(); i++) {
57 if (i->second)
58 delete i->second;
59 }
60 }
61
62 std::ostream *
63 OutputDirectory::checkForStdio(const string &name) const
64 {
65 if (name == "cerr" || name == "stderr")
66 return &cerr;
67
68 if (name == "cout" || name == "stdout")
69 return &cout;
70
71 return NULL;
72 }
73
74 ostream *
75 OutputDirectory::openFile(const string &filename,
76 ios_base::openmode mode) const
77 {
78 if (filename.find(".gz", filename.length()-3) < filename.length()) {
79 ogzstream *file = new ogzstream(filename.c_str(), mode);
80
81 if (!file->is_open())
82 fatal("Cannot open file %s", filename);
83
84 return file;
85 } else {
86 ofstream *file = new ofstream(filename.c_str(), mode);
87
88 if (!file->is_open())
89 fatal("Cannot open file %s", filename);
90
91 return file;
92 }
93 }
94
95 void
96 OutputDirectory::setDirectory(const string &d)
97 {
98 if (!dir.empty())
99 panic("Output directory already set!\n");
100
101 dir = d;
102
103 // guarantee that directory ends with a '/'
104 if (dir[dir.size() - 1] != '/')
105 dir += "/";
106 }
107
108 const string &
109 OutputDirectory::directory() const
110 {
111 if (dir.empty())
112 panic("Output directory not set!");
113
114 return dir;
115 }
116
117 inline string
118 OutputDirectory::resolve(const string &name) const
119 {
120 return (name[0] != '/') ? dir + name : name;
121 }
122
123 ostream *
124 OutputDirectory::create(const string &name, bool binary)
125 {
126 ostream *file = checkForStdio(name);
127 if (file)
128 return file;
129
130 string filename = resolve(name);
131 ios_base::openmode mode =
132 ios::trunc | binary ? ios::binary : (ios::openmode)0;
133 file = openFile(filename, mode);
134
135 return file;
136 }
137
138 ostream *
139 OutputDirectory::find(const string &name)
140 {
141 ostream *file = checkForStdio(name);
142 if (file)
143 return file;
144
145 string filename = resolve(name);
146 map_t::iterator i = files.find(filename);
147 if (i != files.end())
148 return (*i).second;
149
150 file = openFile(filename);
151 files[filename] = file;
152 return file;
153 }
154
155 bool
156 OutputDirectory::isFile(const std::ostream *os)
157 {
158 return os && os != &cerr && os != &cout;
159 }