X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/8717c8bf4f2860eed6a4b8552d63dceaa75f4dc5..b8c3dcf5e075cc961b2693b1fcb8d1b8604e8f7c:/writeout.cpp diff --git a/writeout.cpp b/writeout.cpp index 9a5409d..3849ac9 100644 --- a/writeout.cpp +++ b/writeout.cpp @@ -28,17 +28,25 @@ writeout::writeout(const string& wdir, const string& signature, numprocs = procs; sprintf(cRank, "%d", rank); fulldir = wdir + "/" + tstamp(timestamp) + "_" + signature + ".tmp"; - mkdir( fulldir.c_str(), 0775); + + mkdir(fulldir.c_str(), 0775); if(rank>0) of.open( (fulldir + "/rank" + cRank + ".tmp").c_str() ); else of.open( (fulldir + "/" + signature + ".dat").c_str() ); logf.open( (fulldir + "/rank" + cRank + ".log").c_str() ); + if ( (!of.is_open()) || (!logf.is_open()) ) { + cerr << "WRITEOUT: Could not open output- and/or log-file!" << endl << flush; + exit(1); + } + logf << "[ " << timestring() << " ] Log starts here." << endl; buf = of.rdbuf(); logbuf = logf.rdbuf(); + + cout << buf << endl; } else{ buf = cout.rdbuf(); @@ -70,7 +78,7 @@ writeout::~writeout() if( (nextfile=getdatfile()) == "" ) sleep(1); else { - cerr << "collecting " << nextfile << endl; + logf << "collecting " << nextfile << endl; ifstream myfile( (fulldir + "/" + nextfile).c_str() ); while(true){ @@ -106,7 +114,7 @@ string writeout::getdatfile() struct dirent *dirp; if((dp = opendir(fulldir.c_str())) == NULL) { - cerr << "Error(" << errno << ") opening " << fulldir << endl; + logf << "Error(" << errno << ") opening " << fulldir << endl; return ""; }