git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@756 7ec92016-0320-0410-acc4-a06ded1c099a
85 lines
2.9 KiB
C++
85 lines
2.9 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (c) 2005 by Andrei Alexandrescu
|
|
// Copyright (c) 2006 Peter Kümmel
|
|
// Permission to use, copy, modify, distribute, and sell this software for any
|
|
// purpose is hereby granted without fee, provided that the above copyright
|
|
// notice appear in all copies and that both that copyright notice and this
|
|
// permission notice appear in supporting documentation.
|
|
// The author makes no representations about the suitability of this software
|
|
// for any purpose. It is provided "as is" without express or implied
|
|
// warranty.
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// $Id$
|
|
|
|
|
|
#include <loki/SafeFormat.h>
|
|
|
|
|
|
namespace Loki
|
|
{
|
|
|
|
// Crude writing method: writes straight to the file, unbuffered
|
|
// Must be combined with a buffer to work properly (and efficiently)
|
|
|
|
void write(std::FILE* f, const char* from, const char* to) {
|
|
assert(from <= to);
|
|
::std::fwrite(from, 1, to - from, f);
|
|
}
|
|
|
|
// Write to a string
|
|
|
|
void write(std::string& s, const char* from, const char* to) {
|
|
assert(from <= to);
|
|
s.append(from, to);
|
|
}
|
|
|
|
// Write to a stream
|
|
|
|
void write(std::ostream& f, const char* from, const char* to) {
|
|
assert(from <= to);
|
|
f.write(from, std::streamsize(to - from));
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// PrintfState class template
|
|
// Holds the formatting state, and implements operator() to format stuff
|
|
// Todo: make sure errors are handled properly
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
PrintfState<std::FILE*, char> Printf(const char* format) {
|
|
return PrintfState<std::FILE*, char>(stdout, format);
|
|
}
|
|
|
|
PrintfState<std::FILE*, char> Printf(const std::string& format) {
|
|
return PrintfState<std::FILE*, char>(stdout, format.c_str());
|
|
}
|
|
|
|
PrintfState<std::FILE*, char> FPrintf(std::FILE* f, const char* format) {
|
|
return PrintfState<std::FILE*, char>(f, format);
|
|
}
|
|
|
|
PrintfState<std::FILE*, char> FPrintf(std::FILE* f, const std::string& format) {
|
|
return PrintfState<std::FILE*, char>(f, format.c_str());
|
|
}
|
|
|
|
PrintfState<std::ostream&, char> FPrintf(std::ostream& f, const char* format) {
|
|
return PrintfState<std::ostream&, char>(f, format);
|
|
}
|
|
|
|
PrintfState<std::ostream&, char> FPrintf(std::ostream& f, const std::string& format) {
|
|
return PrintfState<std::ostream&, char>(f, format.c_str());
|
|
}
|
|
|
|
PrintfState<std::string&, char> SPrintf(std::string& s, const char* format) {
|
|
return PrintfState<std::string&, char>(s, format);
|
|
}
|
|
|
|
PrintfState<std::string&, char> SPrintf(std::string& s, const std::string& format) {
|
|
return PrintfState<std::string&, char>(s, format.c_str());
|
|
}
|
|
|
|
|
|
} // end namespace Loki
|
|
|