// // Logging.m // MYUtilities // // Created by Jens Alfke on 1/5/08. // Copyright 2008 Jens Alfke. All rights reserved. // #import "Logging.h" #import "CollectionUtils.h" #include #include #include #include NSString* LOC( NSString *key ) // Localized string lookup { NSString *value = [[NSBundle mainBundle] localizedStringForKey:key value:nil table:nil]; if( value == key ) { Warn(@"No localized string for '%@' in Localizable.strings!",key); value = [key uppercaseString]; } return value; } typedef enum { kLoggingToOther, kLoggingToFile, kLoggingToTTY, kLoggingToColorTTY } MYLoggingTo; int _gShouldLog = -1; static MYLoggingTo sLoggingTo; static NSMutableSet *sEnabledDomains; /** Does the file descriptor connect to console output, i.e. a terminal or Xcode? */ static MYLoggingTo getLoggingMode( int fd ) { if( isatty(fd) ) { const char *term = getenv("TERM"); if( term && (strstr(term,"ANSI") || strstr(term,"ansi") || strstr(term,"color")) ) return kLoggingToColorTTY; else return kLoggingToTTY; } else { char path[MAXPATHLEN]; if( fcntl(fd, F_GETPATH, path) == 0 ) return kLoggingToFile; else return kLoggingToOther; } } static void InitLogging() { if( _gShouldLog != -1 ) return; NSAutoreleasePool *pool = [NSAutoreleasePool new]; _gShouldLog = NO; sEnabledDomains = [[NSMutableSet alloc] init]; NSDictionary *dflts = [[NSUserDefaults standardUserDefaults] dictionaryRepresentation]; for( NSString *key in dflts ) { if( [key hasPrefix: @"Log"] ) { BOOL value = [[NSUserDefaults standardUserDefaults] boolForKey: key]; if( key.length==3 ) _gShouldLog = value; else if( value ) [sEnabledDomains addObject: [key substringFromIndex: 3]]; } } sLoggingTo = getLoggingMode(STDERR_FILENO); Log(@"Logging mode %i enabled in domains: {%@}", sLoggingTo, [[[sEnabledDomains allObjects] sortedArrayUsingSelector: @selector(caseInsensitiveCompare:)] componentsJoinedByString: @", "]); [pool drain]; } BOOL EnableLog( BOOL enable ) { if( _gShouldLog == -1 ) InitLogging(); BOOL old = _gShouldLog; _gShouldLog = enable; return old; } BOOL _WillLogTo( NSString *domain ) { if( _gShouldLog == -1 ) InitLogging(); return _gShouldLog && (domain==nil || [sEnabledDomains containsObject: domain]); } BOOL _EnableLogTo( NSString *domain, BOOL enable ) { if( _gShouldLog == -1 ) InitLogging(); BOOL old = [sEnabledDomains containsObject: domain]; if( enable ) [sEnabledDomains addObject: domain]; else [sEnabledDomains removeObject: domain]; return old; } #define kWarningPrefix @"\007WARNING*** " #define COLOR(STR) (sLoggingTo==kLoggingToColorTTY ?@"\033["#STR"m" :@"") static void _Logv( NSString *prefix, NSString *msg, va_list args ) { if( sLoggingTo > kLoggingToOther ) { NSAutoreleasePool *pool = [NSAutoreleasePool new]; static NSDateFormatter *sTimestampFormat; if( ! sTimestampFormat ) { sTimestampFormat = [[NSDateFormatter alloc] init]; sTimestampFormat.dateFormat = @"HH:mm:ss.SSS"; } NSDate *now = [[NSDate alloc] init]; NSString *timestamp = [sTimestampFormat stringFromDate: now]; [now release]; NSString *separator = prefix.length ?@": " :@""; msg = [[NSString alloc] initWithFormat: msg arguments: args]; NSString *prefixColor = (prefix==kWarningPrefix) ?COLOR(91) :COLOR(93); NSString *msgColor = (prefix==kWarningPrefix) ?@"" :COLOR(0); NSString *finalMsg = [[NSString alloc] initWithFormat: @"%@%@| %@%@%@%@%@\n", COLOR(30),timestamp, prefixColor,prefix,separator, msgColor,msg]; fputs([finalMsg UTF8String], stderr); [finalMsg release]; [msg release]; [pool drain]; } else { if( prefix.length ) msg = $sprintf(@"%@: %@", prefix,msg); NSLogv(msg,args); } } void AlwaysLog( NSString *msg, ... ) { va_list args; va_start(args,msg); _Logv(@"",msg,args); va_end(args); } void _Log( NSString *msg, ... ) { if( _gShouldLog == -1 ) InitLogging(); if( _gShouldLog ) { va_list args; va_start(args,msg); _Logv(@"",msg,args); va_end(args); } } void _LogTo( NSString *domain, NSString *msg, ... ) { if( _gShouldLog == -1 ) InitLogging(); if( _gShouldLog && [sEnabledDomains containsObject: domain] ) { va_list args; va_start(args,msg); _Logv(domain, msg, args); va_end(args); } } void Warn( NSString *msg, ... ) { va_list args; va_start(args,msg); _Logv(kWarningPrefix,msg,args); va_end(args); } /* Copyright (c) 2008, Jens Alfke . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRI- BUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */