00001 #ifndef _XRD_TRACE_H 00002 #define _XRD_TRACE_H 00003 /******************************************************************************/ 00004 /* */ 00005 /* X r d T r a c e . h h */ 00006 /* */ 00007 /* (C) 2004 by the Board of Trustees of the Leland Stanford, Jr., University */ 00008 /* Produced by Andrew Hanushevsky for Stanford University under contract */ 00009 /* DE-AC02-76-SFO0515 with the Deprtment of Energy */ 00010 /* */ 00011 /* This file is part of the XRootD software suite. */ 00012 /* */ 00013 /* XRootD is free software: you can redistribute it and/or modify it under */ 00014 /* the terms of the GNU Lesser General Public License as published by the */ 00015 /* Free Software Foundation, either version 3 of the License, or (at your */ 00016 /* option) any later version. */ 00017 /* */ 00018 /* XRootD is distributed in the hope that it will be useful, but WITHOUT */ 00019 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */ 00020 /* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */ 00021 /* License for more details. */ 00022 /* */ 00023 /* You should have received a copy of the GNU Lesser General Public License */ 00024 /* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */ 00025 /* COPYING (GPL license). If not, see <http://www.gnu.org/licenses/>. */ 00026 /* */ 00027 /* The copyright holder's institutional names and contributor's names may not */ 00028 /* be used to endorse or promote products derived from this software without */ 00029 /* specific prior written permission of the institution or contributor. */ 00030 /******************************************************************************/ 00031 00032 // Trace flags 00033 // 00034 #define TRACE_NONE 0x0000 00035 #define TRACE_ALL 0x0fff 00036 #define TRACE_DEBUG 0x0001 00037 #define TRACE_CONN 0x0002 00038 #define TRACE_MEM 0x0004 00039 #define TRACE_NET 0x0008 00040 #define TRACE_POLL 0x0010 00041 #define TRACE_PROT 0x0020 00042 #define TRACE_SCHED 0x0040 00043 00044 #define TRACE_TLS 0x0500 00045 #define TRACE_TLSCTX 0x0100 00046 #define TRACE_TLSSIO 0x0200 00047 #define TRACE_TLSSOK 0x0400 00048 00049 #ifndef NODEBUG 00050 00051 #include "XrdOuc/XrdOucTrace.hh" 00052 00053 namespace XrdGlobal 00054 { 00055 extern XrdOucTrace XrdTrace; 00056 } 00057 00058 #include "XrdSys/XrdSysHeaders.hh" 00059 #include "XrdOuc/XrdOucTrace.hh" 00060 00061 #ifndef XRD_TRACE 00062 #define XRD_TRACE XrdGlobal::XrdTrace. 00063 #endif 00064 00065 #define TRACE(act, x) \ 00066 if (XRD_TRACE What & TRACE_ ## act) \ 00067 {XRD_TRACE Beg(TraceID); cerr <<x; XRD_TRACE End();} 00068 00069 #define TRACEI(act, x) \ 00070 if (XRD_TRACE What & TRACE_ ## act) \ 00071 {XRD_TRACE Beg(TraceID,TRACE_IDENT); cerr <<x; \ 00072 XRD_TRACE End();} 00073 00074 #define TRACING(x) XRD_TRACE What & x 00075 00076 #else 00077 00078 #define TRACE(act,x) 00079 #define TRACEI(act,x) 00080 #define TRACING(x) 0 00081 #endif 00082 00083 #endif