Skip to content
Snippets Groups Projects
log.h 5.83 KiB
Newer Older
Mark Woolrich's avatar
Mark Woolrich committed
/*  log.h

    Mark Woolrich, FMRIB Image Analysis Group

    Copyright (C) 1999-2000 University of Oxford  */

Mark Woolrich's avatar
Mark Woolrich committed
/* The Log class allows for instantiation of more than one Log
either sharing directories or not. However, Logs can not share log files.
Or you can work with the LogSIngleton class.

A Log can open new logfiles in the same log directory or start on an
entirely new directory. You can stream directly to a Log with flags   
determining streaming to the Logfile and/or cout. */

Mark Woolrich's avatar
Mark Woolrich committed
/*  CCOPYRIGHT  */

#if !defined(log_h)
#define log_h

#include <iostream>
#include <fstream>
#include <string>
Christian Beckmann's avatar
Christian Beckmann committed
#include <iomanip>
Mark Woolrich's avatar
Mark Woolrich committed
#include <strstream>
#include "newmatap.h"
#include "newmatio.h"

using namespace std;

Mark Woolrich's avatar
Mark Woolrich committed
// for the Exception class:
using namespace NEWMAT;

namespace Utilities{

  template<class t> string tostring(const t obj)
  {
    char strc[100];
    ostrstream str(strc,100);
    str << obj << '\0';
    return string(strc);
  }

Mark Woolrich's avatar
Mark Woolrich committed
  class Log;
Mark Woolrich's avatar
Mark Woolrich committed

Mark Woolrich's avatar
Mark Woolrich committed
  template<class t> Log& operator<<(Log& log, const t& obj)
Mark Woolrich's avatar
Mark Woolrich committed
    {
      if(log.stream_to_logfile)
	log.logfileout << obj;

      if(log.stream_to_cout)
	cout << obj;

      return log;
    }

Mark Woolrich's avatar
Mark Woolrich committed
  template<class t> Log& operator<<(Log& log, t& obj)
    {
      if(log.stream_to_logfile)
	log.logfileout << obj;

      if(log.stream_to_cout)
	cout << obj;

      return log;
    }

Mark Woolrich's avatar
Mark Woolrich committed
  class Log
Mark Woolrich's avatar
Mark Woolrich committed
    {
    public:
Mark Woolrich's avatar
Mark Woolrich committed
      Log():logEstablished(false) {}
Mark Woolrich's avatar
Mark Woolrich committed

Mark Woolrich's avatar
Mark Woolrich committed
      Log(const string& pdirname, const string& plogfilename = "logfile", bool pstream_to_logfile = true, bool pstream_to_cout = false, bool makedir = true):logEstablished(false) 
Mark Woolrich's avatar
Mark Woolrich committed
	{
	  if(makedir)
	    makeDir(pdirname, plogfilename, pstream_to_logfile, pstream_to_cout);
	  else
	    setDir(pdirname, plogfilename, pstream_to_logfile, pstream_to_cout);
	}

Mark Woolrich's avatar
Mark Woolrich committed
      ~Log() { logfileout.close(); }
Mark Woolrich's avatar
Mark Woolrich committed

Mark Woolrich's avatar
Mark Woolrich committed
      /** Need to call makeDir or setDir before Log can be used */
Mark Woolrich's avatar
Mark Woolrich committed

      /** Makes a directory to place results into:
	  keeps adding "+" to pdirname until unique directory is made. */
      /** The stream_to* variables define the streaming behaviour */
      void makeDir(const string& pdirname, const string& plogfilename = "logfile", bool pstream_to_logfile = true, bool pstream_to_cout = false);

      /** Sets an existing directory to place results into. */
      /** The stream_to* variables define the streaming behaviour */
      void setDir(const string& pdirname, const string& plogfilename = "logfile", bool pstream_to_logfile = true, bool pstream_to_cout = false); 

      /** Closes old logfile buffer and attempts to open new one with name specified and sets streaming to logfile on */
      void setLogFile(const string& plogfilename);

      const string& getDir() const { if(!logEstablished)throw Exception("Log not setup");return dir; }

      const string& getLogFileName() const { if(!logEstablished)throw Exception("Log not setup");return logfilename; }

      /** returns passed in filename appended onto the end of the dir name */
      const string appendDir(const string& filename) const;

      /** allows streaming into cout and/or logfile depending upon the */
      /** stream_to_cout and stream_to_logfile respectively */
      /** use like a normal ostream, e.g. log.str() << "hello" << endl */
      /** NOTE: can simply stream straight to Log instead, e.g. log << "hello" << endl */
Mark Woolrich's avatar
Mark Woolrich committed
      Log& str();
Mark Woolrich's avatar
Mark Woolrich committed
            
      /** sets whether or not you stream to cout */
      void set_stream_to_cout(bool in = true) { stream_to_cout = in; }

      /** sets whether or not you stream to logfile */
      void set_stream_to_logfile(bool in = true) { 
	if(!stream_to_logfile && in)
	  {
	    if(logfileout.bad())
	      {
		cerr << "Warning: Unable to stream to logfile " << logfilename << ". Need to have called log.setLogFile. Therefore, no streaming to logfile will be performed" << endl;
	      }
	  }
	else stream_to_logfile = in; 
      }

    private:      
      
Mark Woolrich's avatar
Mark Woolrich committed
      const Log& operator=(Log&);
      Log(Log&);
Mark Woolrich's avatar
Mark Woolrich committed
      
      string dir;
      ofstream logfileout;
      string logfilename;

      bool logEstablished;

      bool stream_to_logfile;
      bool stream_to_cout;

Christian Beckmann's avatar
Christian Beckmann committed
      friend Log& operator<<(Log& log, ostream& (*obj) (ostream &));

Mark Woolrich's avatar
Mark Woolrich committed
      template<class t> 
Mark Woolrich's avatar
Mark Woolrich committed
	friend Log& operator<<(Log& log, const t& obj); 
Mark Woolrich's avatar
Mark Woolrich committed

      template<class t> 
	friend Log& operator<<(Log& log, t& obj); 
Mark Woolrich's avatar
Mark Woolrich committed
    };
   
  class LogSingleton
    {
    public:

Mark Woolrich's avatar
Mark Woolrich committed
      static Log& getInstance();
Mark Woolrich's avatar
Mark Woolrich committed

      ~LogSingleton() { delete logger; }      

      /** hacked in utility provides a global counter for general use: */
      static int counter() { return count++; }

    private:
      LogSingleton() {}
      
      const LogSingleton& operator=(LogSingleton&);
      LogSingleton(LogSingleton&);
      
Mark Woolrich's avatar
Mark Woolrich committed
      static Log* logger;
Mark Woolrich's avatar
Mark Woolrich committed
      
      static int count;
      
    };

Mark Woolrich's avatar
Mark Woolrich committed
  inline Log& LogSingleton::getInstance(){
Mark Woolrich's avatar
Mark Woolrich committed
    if(logger == NULL)
Mark Woolrich's avatar
Mark Woolrich committed
      logger = new Log();
Mark Woolrich's avatar
Mark Woolrich committed
  
    return *logger;
  }
  
Mark Woolrich's avatar
Mark Woolrich committed
  inline void Log::setLogFile(const string& plogfilename) {
Mark Woolrich's avatar
Mark Woolrich committed

    if(!logEstablished)
      {
	throw Exception("Log not setup");
      }

    logfileout.close();

    logfilename = plogfilename;
    
    // setup logfile
    logfileout.open((dir + "/" + logfilename).c_str(), ios::out);
    if(logfileout.bad())
      {
	throw Exception(string(string("Unable to setup logfile ")+logfilename+string(" in directory ")+dir).c_str());
      }
    
    stream_to_logfile = true;

    logEstablished = true;
  }

Mark Woolrich's avatar
Mark Woolrich committed
  inline Log& Log::str() { 
Mark Woolrich's avatar
Mark Woolrich committed
    
    if(!logEstablished)
      {
	throw Exception("Log not setup");
      }

    return *this; 
  }
 
Mark Woolrich's avatar
Mark Woolrich committed
  inline const string Log::appendDir(const string& filename) const { 
Mark Woolrich's avatar
Mark Woolrich committed

    if(!logEstablished)
      {
	throw Exception("Log not setup");
      }
  
    return dir + "/" + filename;
  }

Christian Beckmann's avatar
Christian Beckmann committed

  inline Log& operator<<(Log& log, ostream& (*obj)(ostream &))
    {
      if(log.stream_to_logfile)
 	log.logfileout << obj;
      
      if(log.stream_to_cout)
  	cout << obj;
      
      return log;
    }