]> err.no Git - sope/blob - sope-core/NGExtensions/NGLogging.subproj/NGLogEventFormatter.m
Drop apache 1 build-dependency
[sope] / sope-core / NGExtensions / NGLogging.subproj / NGLogEventFormatter.m
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #include "NGLogEventFormatter.h"
23 #include "NGLogEvent.h"
24 #include "common.h"
25
26 @implementation NGLogEventFormatter
27
28 static NSString *defaultFormatterClassName = nil;
29
30 + (void)initialize {
31   static BOOL    didInit = NO;
32   NSUserDefaults *ud;
33   
34   if (didInit) return;
35   
36   didInit = YES;
37   ud      = [NSUserDefaults standardUserDefaults];
38   defaultFormatterClassName =
39     [[ud stringForKey:@"NGLogDefaultLogEventFormatterClass"] retain];
40   if (defaultFormatterClassName == nil)
41     defaultFormatterClassName = @"NGLogEventFormatter";
42 }
43
44 + (id)logEventFormatterFromConfig:(NSDictionary *)_config {
45   NSString *className;
46   Class    clazz;
47   id       formatter;
48   
49   className   = [_config objectForKey:@"Class"];
50   if (!className)
51     className = defaultFormatterClassName;
52   clazz = NSClassFromString(className);
53   if (clazz == Nil) {
54     NSLog(@"ERROR: can't instantiate log event formatter class named '%@'",
55           className);
56     return nil;
57   }
58   formatter = [[[clazz alloc] initWithConfig:_config] autorelease];
59   return formatter;
60 }
61
62 - (id)initWithConfig:(NSDictionary *)_config {
63   self = [super init];
64   if (self) {
65   }
66   return self;
67 }
68
69 /* formatting */
70
71 - (NSString *)formattedEvent:(NGLogEvent *)_event {
72   return [_event message];
73 }
74
75 @end /* NGLogEventFormatter */