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 #ifndef NODEBUG 00045 00046 #include "XrdSys/XrdSysHeaders.hh" 00047 #include "XrdOuc/XrdOucTrace.hh" 00048 00049 #ifndef XRD_TRACE 00050 #define XRD_TRACE XrdTrace. 00051 #endif 00052 00053 #define TRACE(act, x) \ 00054 if (XRD_TRACE What & TRACE_ ## act) \ 00055 {XRD_TRACE Beg(TraceID); cerr <<x; XRD_TRACE End();} 00056 00057 #define TRACEI(act, x) \ 00058 if (XRD_TRACE What & TRACE_ ## act) \ 00059 {XRD_TRACE Beg(TraceID,TRACELINK->ID); cerr <<x; \ 00060 XRD_TRACE End();} 00061 00062 #define TRACING(x) XRD_TRACE What & x 00063 00064 #else 00065 00066 #define TRACE(act,x) 00067 #define TRACEI(act,x) 00068 #define TRACING(x) 0 00069 #endif 00070 00071 #endif