mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 09:11:55 +00:00
8552ac617c
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@1 67975925-1194-0748-b3d5-c16f83f1a3a1
129 lines
2.8 KiB
C++
129 lines
2.8 KiB
C++
// Regression test for STL seekg
|
|
|
|
#include <cstdio> // I really like formatted output.
|
|
#include <cstdarg>
|
|
#include <fstream>
|
|
#include <vector>
|
|
#include <iostream>
|
|
|
|
#ifndef cstd
|
|
#ifdef _MSC_VER
|
|
#define cstd
|
|
#else
|
|
#define cstd std
|
|
#endif
|
|
#endif
|
|
|
|
class Error : public std::exception
|
|
{
|
|
public:
|
|
Error(const char *pszfmt, ...);
|
|
const char *what() const;
|
|
private:
|
|
char mMessage[256];
|
|
};
|
|
|
|
#define countof(x) (sizeof(x)/sizeof((x)[0]))
|
|
|
|
Error::Error(const char *pszfmt, ...)
|
|
{
|
|
using cstd::va_list;
|
|
|
|
cstd::va_list ap;
|
|
va_start(ap, pszfmt);
|
|
cstd::vsnprintf(mMessage, countof(mMessage), pszfmt, ap);
|
|
va_end(ap);
|
|
}
|
|
|
|
const char *Error::what() const
|
|
{
|
|
return mMessage;
|
|
}
|
|
|
|
// usage: testseek filename
|
|
int main(int argc, char **argv)
|
|
{
|
|
try
|
|
{
|
|
if (argc != 2) {
|
|
throw Error("Wrong number of arguments (Usage: testseek filename)");
|
|
}
|
|
std::ifstream ifs;
|
|
ifs.exceptions(std::ios::badbit);
|
|
ifs.open(argv[1]);
|
|
|
|
// First pass: read contents of file into character vector
|
|
std::vector<char> charvec;
|
|
cstd::printf("First pass:\n");
|
|
for(;;)
|
|
{
|
|
char ch;
|
|
if (!ifs.get(ch)) {
|
|
break;
|
|
}
|
|
cstd::printf("%c", ch);
|
|
charvec.push_back(ch);
|
|
}
|
|
cstd::printf("First pass done\n");
|
|
|
|
// Second pass: get positions into pos vector, checking chars
|
|
std::vector<std::ios::pos_type> posvec;
|
|
ifs.clear(); // necessary?
|
|
ifs.seekg(0);
|
|
std::vector<char>::const_iterator char_it;
|
|
cstd::printf("Second pass:\n");
|
|
for(char_it = charvec.begin(); char_it != charvec.end(); ++char_it)
|
|
{
|
|
std::ios::pos_type pos = ifs.tellg();
|
|
posvec.push_back(pos);
|
|
char ch;
|
|
if (!ifs.get(ch)) {
|
|
break;
|
|
}
|
|
cstd::printf("%c", ch);
|
|
if (ch != *char_it) {
|
|
throw Error("Character mismatch: got '%c', expected '%c'",
|
|
ch, *char_it);
|
|
}
|
|
}
|
|
if (char_it != charvec.end()) {
|
|
throw Error("Unexpected end of file");
|
|
}
|
|
cstd::printf("Second pass done\n");
|
|
|
|
// Third pass: seek to each saved position and read next char
|
|
ifs.clear(); // necessary, but I don't like it
|
|
std::vector<std::ios::pos_type>::const_iterator pos_it;
|
|
cstd::printf("Third pass:\n");
|
|
for(char_it = charvec.begin(), pos_it = posvec.begin();
|
|
char_it != charvec.end(); ++char_it, ++pos_it)
|
|
{
|
|
ifs.seekg(*pos_it);
|
|
char ch;
|
|
if (!ifs.get(ch)) {
|
|
throw Error("End of file when expecting '%c'", *char_it);
|
|
}
|
|
cstd::printf("%c", ch);
|
|
if (ch != *char_it) {
|
|
throw Error("Character mismatch: got '%c', expected '%c'",
|
|
ch, *char_it);
|
|
}
|
|
}
|
|
cstd::printf("Third pass done\n");
|
|
cstd::printf("Test passed\n");
|
|
std::cerr<<"Testing cerr...\n";
|
|
std::cerr<<"Testing cerr"<<std::endl;
|
|
std::cerr<<"Testing cerr with char "<<(char)'5'<<std::endl;
|
|
std::cerr<<"Testing cerr with float "<<(float)5.555<<std::endl;
|
|
std::cerr<<"Testing cerr with int "<<(int)5<<std::endl;
|
|
|
|
}
|
|
catch (std::exception &e)
|
|
{
|
|
cstd::printf("\nCaught exception: %s\n", e.what());
|
|
cstd::printf("Test failed!\n");
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
// end of program
|