Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Related Pages

ArLog.h

00001 /*
00002 ActivMedia Robotics Interface for Applications (ARIA)
00003 Copyright (C) 2004,2005 ActivMedia Robotics, LLC
00004 
00005 
00006      This program is free software; you can redistribute it and/or modify
00007      it under the terms of the GNU General Public License as published by
00008      the Free Software Foundation; either version 2 of the License, or
00009      (at your option) any later version.
00010 
00011      This program is distributed in the hope that it will be useful,
00012      but WITHOUT ANY WARRANTY; without even the implied warranty of
00013      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014      GNU General Public License for more details.
00015 
00016      You should have received a copy of the GNU General Public License
00017      along with this program; if not, write to the Free Software
00018      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00019 
00020 If you wish to redistribute ARIA under different terms, contact 
00021 ActivMedia Robotics for information about a commercial version of ARIA at 
00022 robots@activmedia.com or 
00023 ActivMedia Robotics, 19 Columbia Drive, Amherst, NH 03031; 800-639-9481
00024 
00025 */
00026 
00027 #ifndef ARLOG_H
00028 #define ARLOG_H
00029 
00030 #ifndef WIN32
00031 #include <stdio.h>
00032 #endif
00033 #include <string>
00034 #include "ariaTypedefs.h"
00035 #include "ArMutex.h"
00036 #include "ArFunctor.h"
00037 
00038 class ArConfig;
00039 
00041 
00048 class ArLog
00049 {
00050 public:
00051 
00052   typedef enum {
00053     StdOut, 
00054     StdErr, 
00055     File, 
00056     Colbert, 
00057     None 
00058   } LogType;
00059   typedef enum {
00060     Terse, 
00061     Normal, 
00062     Verbose 
00063   } LogLevel;
00064 
00065 #ifndef SWIG
00066 
00067   static void log(LogLevel level, const char *str, ...);
00068 #endif
00071   static void logPlain(LogLevel level, const char *str);
00072 
00073   static bool init(LogType type, LogLevel level,
00074                             const char *fileName="",
00075                             bool logTime = false, bool alsoPrint = false, 
00076                             bool printThisCall = true);
00078   static void close();
00079 
00080 #ifndef SWIG // this is internal we don't need to wrap it
00081   // Do not use this unless you know what you are doing...
00082   static void logNoLock(LogLevel level, const char *str, ...);
00083 #endif 
00084   // We use this to print to a Colbert stream, if available
00085   static void (* colbertPrint)(int i, const char *str);
00086 
00088   static void addToConfig(ArConfig *config);
00089 protected:
00090   static bool processFile(void);
00091 
00092   static ArLog *ourLog;
00093   static ArMutex ourMutex;
00094   static LogType ourType;
00095   static LogLevel ourLevel;
00096   static bool ourLoggingTime;
00097   static FILE *ourFP;
00098   static int ourColbertStream;
00099   static std::string ourFileName;
00100   static bool ourAlsoPrint;
00101   
00102   static LogType ourConfigLogType;
00103   static LogLevel ourConfigLogLevel;
00104   static char ourConfigFileName[1024];
00105   static bool ourConfigLogTime;
00106   static bool ourConfigAlsoPrint;
00107   static ArGlobalRetFunctor<bool> ourConfigProcessFileCB;
00108 };
00109 
00110 
00111 #endif

Generated on Wed Oct 19 12:56:36 2005 for Aria by  doxygen 1.4.0