Jamoma API  0.6.0.a19
CADebugPrintf.h
1 /* Copyright © 2007 Apple Inc. All Rights Reserved.
2 
3  Disclaimer: IMPORTANT: This Apple software is supplied to you by
4  Apple Inc. ("Apple") in consideration of your agreement to the
5  following terms, and your use, installation, modification or
6  redistribution of this Apple software constitutes acceptance of these
7  terms. If you do not agree with these terms, please do not use,
8  install, modify or redistribute this Apple software.
9 
10  In consideration of your agreement to abide by the following terms, and
11  subject to these terms, Apple grants you a personal, non-exclusive
12  license, under Apple's copyrights in this original Apple software (the
13  "Apple Software"), to use, reproduce, modify and redistribute the Apple
14  Software, with or without modifications, in source and/or binary forms;
15  provided that if you redistribute the Apple Software in its entirety and
16  without modifications, you must retain this notice and the following
17  text and disclaimers in all such redistributions of the Apple Software.
18  Neither the name, trademarks, service marks or logos of Apple Inc.
19  may be used to endorse or promote products derived from the Apple
20  Software without specific prior written permission from Apple. Except
21  as expressly stated in this notice, no other rights or licenses, express
22  or implied, are granted by Apple herein, including but not limited to
23  any patent rights that may be infringed by your derivative works or by
24  other works in which the Apple Software may be incorporated.
25 
26  The Apple Software is provided by Apple on an "AS IS" basis. APPLE
27  MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
28  THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
29  FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
30  OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
31 
32  IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
33  OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35  INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
36  MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
37  AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
38  STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
39  POSSIBILITY OF SUCH DAMAGE.
40 */
41 #if !defined(__CADebugPrintf_h__)
42 #define __CADebugPrintf_h__
43 
44 //=============================================================================
45 // Includes
46 //=============================================================================
47 
48 #if !defined(__COREAUDIO_USE_FLAT_INCLUDES__)
49  #include <CoreAudio/CoreAudioTypes.h>
50 #else
51  #include "CoreAudioTypes.h"
52 #endif
53 
54 //=============================================================================
55 // Macros to redirect debugging output to various logging services
56 //=============================================================================
57 
58 //#define CoreAudio_UseSysLog 1
59 //#define CoreAudio_UseSideFile "/CoreAudio-%d.txt"
60 
61 #if DEBUG || CoreAudio_Debug
62 
63  #if TARGET_OS_WIN32
64  #if defined(__cplusplus)
65  extern "C"
66  #endif
67  extern int CAWin32DebugPrintf(char* inFormat, ...);
68  #define DebugPrintfRtn CAWin32DebugPrintf
69  #define DebugPrintfFile
70  #define DebugPrintfLineEnding "\n"
71  #define DebugPrintfFileComma
72  #else
73  #if CoreAudio_UseSysLog
74  #include <sys/syslog.h>
75  #define DebugPrintfRtn syslog
76  #define DebugPrintfFile LOG_NOTICE
77  #define DebugPrintfLineEnding ""
78  #define DebugPrintfFileComma DebugPrintfFile,
79  #elif defined(CoreAudio_UseSideFile)
80  #include <stdio.h>
81  #if defined(__cplusplus)
82  extern "C"
83  #endif
84  void OpenDebugPrintfSideFile();
85  extern FILE* sDebugPrintfSideFile;
86  #define DebugPrintfRtn fprintf
87  #define DebugPrintfFile ((sDebugPrintfSideFile != NULL) ? sDebugPrintfSideFile : stderr)
88  #define DebugPrintfLineEnding "\n"
89  #define DebugPrintfFileComma DebugPrintfFile,
90  #else
91  #include <stdio.h>
92  #define DebugPrintfRtn fprintf
93  #define DebugPrintfFile stderr
94  #define DebugPrintfLineEnding "\n"
95  #define DebugPrintfFileComma DebugPrintfFile,
96  #endif
97  #endif
98 
99 #else
100  #define DebugPrintfRtn
101  #define DebugPrintfFile
102  #define DebugPrintfLineEnding
103  #define DebugPrintfFileComma
104 #endif
105 
106 
107 #endif