]> err.no Git - sope/blob - sope-core/NGExtensions/NGLogging.subproj/NGLogEvent.m
fixed copyrights for 2005
[sope] / sope-core / NGExtensions / NGLogging.subproj / NGLogEvent.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 "NGLogEvent.h"
23 #include "common.h"
24
25 @implementation NGLogEvent
26
27 static Class DateClass = Nil;
28
29 + (void)initialize {
30   static BOOL didInit = NO;
31
32   if (didInit) return;
33   didInit = YES;
34
35   DateClass = [NSCalendarDate class];
36 }
37
38 - (id)initWithLevel:(NGLogLevel)_level message:(NSString *)_msg {
39   self = [super init];
40   if (self) {
41     // TODO: get time using libc function, cheaper
42     self->date  = [DateClass timeIntervalSinceReferenceDate];
43     self->level = _level;
44     self->msg   = [_msg copy];
45   }
46   return self;
47 }
48
49 - (void)dealloc {
50   [self->msg release];
51   [super dealloc];
52 }
53
54 /* accessors */
55
56 - (NGLogLevel)level {
57   return self->level;
58 }
59
60 - (NSString *)message {
61   return self->msg;
62 }
63
64 - (NSCalendarDate *)date {
65   // TODO: set to GMT?
66   return [DateClass dateWithTimeIntervalSinceReferenceDate:self->date];
67 }
68
69 /* description */
70
71 - (NSString *)description {
72   NSString *lvl;
73   
74   switch (self->level) {
75     case NGLogLevelOff:   lvl = @"OFF";   break;
76     case NGLogLevelDebug: lvl = @"DEBUG"; break;
77     case NGLogLevelInfo:  lvl = @"INFO";  break;
78     case NGLogLevelWarn:  lvl = @"WARN";  break;
79     case NGLogLevelError: lvl = @"ERROR"; break;
80     case NGLogLevelFatal: lvl = @"FATAL"; break;
81     default:              lvl = @"ALL";   break;
82   }
83   return [NSString stringWithFormat:@"<%@[0x%08X] date=%@ level=%@ msg:%@>",
84                       NSStringFromClass([self class]), self,
85                       [self date], lvl, self->msg];
86 }
87
88 @end /* NGLogEvent */