X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/da40516c45a68dd97bf15d7df02f960897bfa42e..4d3aa1df919cc19d1bf2f66e5272d9ecda95d463:/writeout.cpp diff --git a/writeout.cpp b/writeout.cpp index 2290a94..81f1e02 100644 --- a/writeout.cpp +++ b/writeout.cpp @@ -13,6 +13,24 @@ using namespace std; +bool writeout::DirectoryExists( const char* pzPath ) +{ + if ( pzPath == NULL) return false; + + DIR *pDir; + bool bExists = false; + + pDir = opendir (pzPath); + + if (pDir != NULL) + { + bExists = true; + (void) closedir (pDir); + } + + return bExists; +} + string writeout::tstamp(const long& timestamp) { stringstream sstr; @@ -28,17 +46,45 @@ 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); + + for(int itry=0; itry<100 && (!DirectoryExists(fulldir.c_str())); itry++) { + if (rank==0) + mkdir( fulldir.c_str(), 0775); + sleep(1); + } 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(); + logbuf = cerr.rdbuf(); } out = new ostream(buf); + log = new ostream(logbuf); +} + +string writeout::timestring() +{ + time_t rawtime; + string timestring; + time( &rawtime ); + timestring = asctime( localtime( &rawtime ) ); + return timestring.substr(0, timestring.size()-1);; } writeout::~writeout() @@ -54,7 +100,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){ @@ -79,6 +125,8 @@ writeout::~writeout() (fulldir + "/rank" + cRank + ".part").c_str()); } } + logf << "[ " << timestring() << " ] Log ends here." << endl; + logf.close(); } string writeout::getdatfile() @@ -88,7 +136,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 ""; }