tycho / crisscross

A C++ library with various uses.

This URL has Read+Write access

crisscross / source / core_io_writer.cpp
100644 201 lines (153 sloc) 3.948 kb
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
/*
* CrissCross
* A multi-purpose cross-platform library.
*
* A product of Uplink Laboratories.
*
* (c) 2006-2009 Steven Noonan.
* Licensed under the New BSD License.
*
*/
 
#include <crisscross/universal_include.h>
 
#include <crisscross/debug.h>
#include <crisscross/core_io.h>
#include <crisscross/system.h>
 
using namespace CrissCross::System;
 
namespace CrissCross
{
namespace IO
{
CoreIOWriter::CoreIOWriter(FILE * _fileBuffer, bool _isUnicode, LineEndingType _lnEnding) : m_fileOutputPointer(_fileBuffer),
m_unicode(_isUnicode)
{
SetLineEndings(_lnEnding);
}
 
CoreIOWriter::~CoreIOWriter()
{
}
 
void CoreIOWriter::Flush()
{
CoreAssert(this != NULL);
if (!IsOpen()) return;
 
#ifndef __GNUC__
MutexHolder mh(&m_ioMutex);
#endif
fflush(m_fileOutputPointer);
#ifdef TARGET_OS_NDSFIRMWARE
swiWaitForVBlank();
#endif
}
 
bool CoreIOWriter::IsOpen()
{
CoreAssert(this != NULL);
 
if (m_fileOutputPointer == NULL)
return false;
else
return true;
}
 
CrissCross::Errors CoreIOWriter::SetLineEndings(LineEndingType _ending)
{
CoreAssert(this != NULL);
 
if (_ending == CC_LN_NATIVE) {
#if defined (TARGET_OS_WINDOWS)
_ending = CC_LN_CRLF;
#elif defined (TARGET_OS_LINUX) || defined (TARGET_OS_MACOSX) || defined (TARGET_OS_FREEBSD) || \
defined (TARGET_OS_NETBSD) || defined (TARGET_OS_OPENBSD) || defined (TARGET_OS_NDSFIRMWARE)
_ending = CC_LN_LF;
#else
#error You are not using a supported OS.
#endif
}
 
switch (_ending)
{
case CC_LN_CR:
sprintf(m_lineEnding, "\r");
break;
case CC_LN_LF:
sprintf(m_lineEnding, "\n");
break;
case CC_LN_CRLF:
sprintf(m_lineEnding, "\r\n");
break;
default:
return CC_ERR_BADPARAMETER;
}
return CC_ERR_NONE;
}
 
CrissCross::Errors CoreIOWriter::WriteLine(const char *_format, ...)
{
CoreAssert(this != NULL);
if (!IsOpen()) return CC_ERR_INVALID_BUFFER;
 
if (_format == NULL)
return CC_ERR_BADPARAMETER;
 
#ifndef __GNUC__
MutexHolder mh(&m_ioMutex);
#endif
 
va_list args;
 
va_start(args, _format);
 
/* Print out the string */
vfprintf(m_fileOutputPointer, _format, args);
 
if (fprintf(m_fileOutputPointer, "%s", m_lineEnding) < 0)
return CC_ERR_WRITE;
 
va_end(args);
 
Flush();
 
return CC_ERR_NONE;
}
 
CrissCross::Errors CoreIOWriter::WriteLine(std::string &_string)
{
CoreAssert(this != NULL);
if (!IsOpen()) return CC_ERR_INVALID_BUFFER;
 
if (_string.empty() == true)
return CC_ERR_BADPARAMETER;
 
#ifndef __GNUC__
MutexHolder mh(&m_ioMutex);
#endif
 
if (fprintf(m_fileOutputPointer, "%s%s", _string.c_str(), m_lineEnding) < 0)
return CC_ERR_WRITE;
 
Flush();
 
return CC_ERR_NONE;
}
 
CrissCross::Errors CoreIOWriter::Write(std::string &_string)
{
CoreAssert(this != NULL);
if (!IsOpen()) return CC_ERR_INVALID_BUFFER;
 
if (_string.empty() == true)
return CC_ERR_BADPARAMETER;
 
#ifndef __GNUC__
MutexHolder mh(&m_ioMutex);
#endif
 
if (fprintf(m_fileOutputPointer, "%s", _string.c_str()) < 0)
return CC_ERR_WRITE;
 
return CC_ERR_NONE;
}
 
 
CrissCross::Errors CoreIOWriter::WriteLine()
{
CoreAssert(this != NULL);
if (!IsOpen()) return CC_ERR_INVALID_BUFFER;
 
#ifndef __GNUC__
MutexHolder mh(&m_ioMutex);
#endif
 
if (fprintf(m_fileOutputPointer, "%s", m_lineEnding) < 0)
return CC_ERR_WRITE;
 
return CC_ERR_NONE;
}
 
CrissCross::Errors CoreIOWriter::Write(const char *_format, ...)
{
CoreAssert(this != NULL);
if (!IsOpen()) return CC_ERR_INVALID_BUFFER;
 
if (_format == NULL)
return CC_ERR_BADPARAMETER;
 
#ifndef __GNUC__
MutexHolder mh(&m_ioMutex);
#endif
 
va_list args;
 
va_start(args, _format);
 
/* Print out the string */
if (vfprintf(m_fileOutputPointer, _format, args) < 0)
return CC_ERR_WRITE;
 
fflush(m_fileOutputPointer);
 
va_end(args);
 
return CC_ERR_NONE;
}
}
}