From: Alex Schmidt Date: Tue, 29 Jan 2013 11:27:17 +0000 (+0100) Subject: more conservative output-dir creation X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/commitdiff_plain/f22a863cf42971e874834d74a152b972f5dc6a03?hp=b576d1ec1596088056cd5110f0ee24e8d3dfe913 more conservative output-dir creation --- diff --git a/writeout.cpp b/writeout.cpp index 9a5409d..67e90d3 100644 --- a/writeout.cpp +++ b/writeout.cpp @@ -24,21 +24,36 @@ string writeout::tstamp(const long& timestamp) writeout::writeout(const string& wdir, const string& signature, const int& rank, const int& procs, const long& timestamp) { + struct stat sb; + if(wdir != ""){ numprocs = procs; sprintf(cRank, "%d", rank); fulldir = wdir + "/" + tstamp(timestamp) + "_" + signature + ".tmp"; - mkdir( fulldir.c_str(), 0775); + + if ( rank == 0 ) + for (int itry=0; itry < 10 && mkdir( fulldir.c_str(), 0775) != 0; itry++) + sleep(1); + else + while ( ! (stat(fulldir.c_str(), &sb) == 0 && S_ISDIR(sb.st_mode)) ) + 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();