forked from umd-memsys/DRAMSim2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CSVWriter.h
229 lines (208 loc) · 6.73 KB
/
CSVWriter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/*********************************************************************************
* Copyright (c) 2010-2011, Elliott Cooper-Balis
* Paul Rosenfeld
* Bruce Jacob
* University of Maryland
* dramninjas [at] gmail [dot] com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*********************************************************************************/
#ifndef _CSV_WRITER_H_
#define _CSV_WRITER_H_
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <vector>
#include <string>
#include <string.h>
using std::vector;
using std::ostream;
using std::string;
/*
* CSVWriter: Writes CSV data with headers to an underlying ofstream
* This wrapper is meant to look like an ofstream, but it captures
* the names of each field and prints it out to a header before printing
* the CSV data below.
*
* Note: the first finalize() will not print the values out, only the headers.
* One way to fix this problem would be to use a sstringstream (or something)
* to buffer out the values and flush them all in one go instead of passing them
* directly to the underlying stream as is the case now.
*
* Example usage:
*
* CSVWriter sw(cout); // send output to cout
* sw <<"Bandwidth" << 0.5; // value ignored
* sw <<"Latency" << 5; // value ignored
* sw.finalize(); // flush the header
* sw <<"Bandwidth" << 1.5; // field name ignored
* sw <<"Latency" << 15; // field name ignored
* sw.finalize(); // values printed to csv line
* sw <<"Bandwidth" << 2.5; // field name ignored
* sw <<"Latency" << 25; // field name ignored
* sw.finalize(); // values printed to csv line
*
* The output of this example will be:
*
* Bandwidth,Latency
* 1.5,15
* 2.5,25
*
*/
namespace DRAMSim {
class CSVWriter {
public :
struct IndexedName {
static const size_t MAX_TMP_STR = 64;
static const unsigned SINGLE_INDEX_LEN = 4;
string str;
// functions
static bool isNameTooLong(const char *baseName, unsigned numIndices)
{
return (strlen(baseName)+(numIndices*SINGLE_INDEX_LEN)) > MAX_TMP_STR;
}
static void checkNameLength(const char *baseName, unsigned numIndices)
{
if (isNameTooLong(baseName, numIndices))
{
ERROR("Your string "<<baseName<<" is too long for the max stats size ("<<MAX_TMP_STR<<", increase MAX_TMP_STR");
exit(-1);
}
}
IndexedName(const char *baseName, unsigned channel)
{
checkNameLength(baseName,1);
char tmp_str[MAX_TMP_STR];
snprintf(tmp_str, MAX_TMP_STR,"%s[%u]", baseName, channel);
str = string(tmp_str);
}
IndexedName(const char *baseName, unsigned channel, unsigned rank)
{
checkNameLength(baseName,2);
char tmp_str[MAX_TMP_STR];
snprintf(tmp_str, MAX_TMP_STR,"%s[%u][%u]", baseName, channel, rank);
str = string(tmp_str);
}
IndexedName(const char *baseName, unsigned channel, unsigned rank, unsigned bank)
{
checkNameLength(baseName,3);
char tmp_str[MAX_TMP_STR];
snprintf(tmp_str, MAX_TMP_STR,"%s[%u][%u][%u]", baseName, channel, rank, bank);
str = string(tmp_str);
}
};
// where the output will eventually go
ostream &output;
vector<string> fieldNames;
bool finalized;
unsigned idx;
public:
// Functions
void finalize()
{
//TODO: tag unlikely
if (!finalized)
{
for (unsigned i=0; i<fieldNames.size(); i++)
{
output << fieldNames[i] << ",";
}
output << std::endl << std::flush;
finalized=true;
}
else
{
if (idx < fieldNames.size())
{
printf(" Number of fields doesn't match values (fields=%u, values=%u), check each value has a field name before it\n", idx, (unsigned)fieldNames.size());
}
idx=0;
output << std::endl;
}
}
// Constructor
CSVWriter(ostream &_output) : output(_output), finalized(false), idx(0)
{}
// Insertion operators for field names
CSVWriter &operator<<(const char *name)
{
if (!finalized)
{
// cout <<"Adding "<<name<<endl;
fieldNames.push_back(string(name));
}
return *this;
}
CSVWriter &operator<<(const string &name)
{
if (!finalized)
{
fieldNames.push_back(string(name));
}
return *this;
}
CSVWriter &operator<<(const IndexedName &indexedName)
{
if (!finalized)
{
// cout <<"Adding "<<indexedName.str<<endl;
fieldNames.push_back(indexedName.str);
}
return *this;
}
bool isFinalized()
{
// printf("obj=%p", this);
return finalized;
}
ostream &getOutputStream()
{
return output;
}
// Insertion operators for value types
// All of the other types just need to pass through to the underlying
// ofstream, so just write this small wrapper function to make the
// whole thing less verbose
#define ADD_TYPE(T) \
CSVWriter &operator<<(T value) \
{ \
if (finalized) \
{ \
output << value <<","; \
idx++; \
} \
return *this; \
}
ADD_TYPE(int);
ADD_TYPE(unsigned);
ADD_TYPE(long);
ADD_TYPE(uint64_t);
ADD_TYPE(float);
ADD_TYPE(double);
//disable copy constructor and assignment operator
private:
CSVWriter(const CSVWriter &);
CSVWriter &operator=(const CSVWriter &);
}; // class CSVWriter
} // namespace DRAMSim
#endif // _CSV_WRITER_H_