/* easylog.cc - a fairly minimal logging-to-file implementation Adrian Groves, FMRIB Image Analysis Group Copyright (C) 2007-2008 University of Oxford */ /* Part of FSL - FMRIB's Software Library http://www.fmrib.ox.ac.uk/fsl fsl@fmrib.ox.ac.uk Developed at FMRIB (Oxford Centre for Functional Magnetic Resonance Imaging of the Brain), Department of Clinical Neurology, Oxford University, Oxford, UK LICENCE FMRIB Software Library, Release 5.0 (c) 2012, The University of Oxford (the "Software") The Software remains the property of the University of Oxford ("the University"). The Software is distributed "AS IS" under this Licence solely for non-commercial use in the hope that it will be useful, but in order that the University as a charitable foundation protects its assets for the benefit of its educational and research purposes, the University makes clear that no condition is made or to be implied, nor is any warranty given or to be implied, as to the accuracy of the Software, or that it will be suitable for any particular purpose or for use under any specific conditions. Furthermore, the University disclaims all responsibility for the use which is made of the Software. It further disclaims any liability for the outcomes arising from using the Software. The Licensee agrees to indemnify the University and hold the University harmless from and against any and all claims, damages and liabilities asserted by third parties (including claims for negligence) which arise directly or indirectly from the use of the Software or the sale of any products based on the Software. No part of the Software may be reproduced, modified, transmitted or transferred in any form or by any means, electronic or mechanical, without the express permission of the University. The permission of the University is not required if the said reproduction, modification, transmission or transference is done without financial return, the conditions of this Licence are imposed upon the receiver of the product, and all original and amended source code is included in any transmitted product. You may be held legally responsible for any copyright infringement that is caused or encouraged by your failure to abide by these terms and conditions. You are not permitted under this Licence to use this Software commercially. Use for which any financial return is received shall be defined as commercial use, and includes (1) integration of all or part of the source code or the Software into a product for sale or license by or on behalf of Licensee to third parties or (2) use of the Software or any derivative of it for research with the final aim of developing software products for sale or license to a third party or (3) use of the Software or any derivative of it for research with the final aim of developing non-software products for sale or license to a third party, or (4) use of the Software to provide any service to an external organisation for which payment is received. If you are interested in using the Software commercially, please contact Isis Innovation Limited ("Isis"), the technology transfer company of the University, to negotiate a licence. Contact details are: innovation@isis.ox.ac.uk quoting reference DE/9564. */ #include "easylog.h" #include "easyoptions.h" #include "assert.h" #include #include #include #include #include ostream* EasyLog::filestream = NULL; string EasyLog::outDir = ""; void EasyLog::StartLog(const string& basename, bool overwrite) { assert(filestream == NULL); assert(basename != ""); outDir = basename; // From Wooly's utils/log.cc int count = 0; while(true) { if(count >= 50) // I'm using a lot for some things { throw Runtime_error(("Cannot create directory (bad path, or too many + signs?):\n " + outDir).c_str()); } // not portable! //int ret = system(("mkdir "+ outDir + " 2>/dev/null").c_str()); // Is this portable? errno = 0; // Clear errno so it can be inspected later; result is only meaningful if mkdir fails. int ret = mkdir(outDir.c_str(), 0777); if(ret == 0) // Success, directory created break; else if (overwrite) { if (errno == EEXIST) // Directory already exists -- that's fine. Although note it might not be a directory. break; else // Other error -- might be a problem! throw Runtime_error(("Unexpected problem creating directory in --overwrite mode:\n " + outDir).c_str()); } outDir += "+"; count++; } filestream = new ofstream( (outDir + "/logfile").c_str() ); if (!filestream->good()) { delete filestream; filestream = NULL; cout << "Cannot open logfile in " << outDir; throw runtime_error("Cannot open logfile!"); } // Might be useful for jobs running on the queue: system( ("uname -a > " + outDir + "/uname.txt").c_str() ); // try to make a link to the latest version // REMOVED because it's annoying, not terribly useful, and implemented // badly (only really works output dir is in current dir). // PUT BACK because Michael uses it and finds it useful! system(("ln -sfn '" + outDir + "' '" + basename + "_latest'").c_str()); // If this fails, it doesn't really matter. This'll fail (hopefully silently) in Windows. } void EasyLog::StartLogUsingStream(ostream& s) { assert(filestream == NULL); filestream = &s; outDir = ""; } void EasyLog::StopLog(bool gzip) { assert(filestream != NULL); if (outDir != "") // we created this ofstream delete filestream; filestream = NULL; // release the stream if (gzip) { int retVal = system(("gzip " + outDir + "/logfile").c_str()); if (retVal != 0) cout << "Failed to gzip logfile. Oh well." << endl; } outDir = ""; } // Basically a private global variable, initially empty: map Warning::issueCount; // Note that we have to use LOG_ERR_SAFE because warnings could be issued when there's no valid logfile yet. void Warning::IssueOnce(const string& text) { if (++issueCount[text] == 1) LOG_ERR_SAFE("WARNING ONCE: " << text << endl); } void Warning::IssueAlways(const string& text) { ++issueCount[text]; LOG_ERR_SAFE("WARNING ALWAYS: " << text << endl); } void Warning::ReissueAll() { if (issueCount.size() == 0) return; // avoid issuing pointless message LOG_ERR_SAFE("\nSummary of warnings (" << issueCount.size() << " distinct warnings)\n"); for (map::iterator it = issueCount.begin(); it != issueCount.end(); it++) LOG_ERR_SAFE("Issued " << ( (it->second==1)? "once: " : stringify(it->second)+" times: " ) << it->first << endl); }