]> err.no Git - sope/blob - sope-appserver/NGObjWeb/common.h
enhanced NGBundleManager search path processing, fixed some
[sope] / sope-appserver / NGObjWeb / common.h
1 /*
2   Copyright (C) 2000-2004 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
5
6   OGo 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   OGo 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 OGo; 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 #ifndef __NGObjWeb_common_H__
23 #define __NGObjWeb_common_H__
24
25 // common include files
26
27 #if !defined(__MINGW32__)
28 #  include <strings.h>
29 #endif
30
31 #include <unistd.h>
32 #include <sys/stat.h>
33
34 #if NeXT_Foundation_LIBRARY
35 #  include <NGExtensions/NGObjectMacros.h>
36 #  include <NGExtensions/NSString+Ext.h>
37 #  include <NGExtensions/NSRunLoop+FileObjects.h>
38 #  include "UnixSignalHandler.h"
39 #endif
40
41 #if !LIB_FOUNDATION_LIBRARY
42 #  include <NGExtensions/NGPropertyListParser.h>
43 #endif
44
45 #include <objc/objc-api.h>
46 #import <Foundation/Foundation.h>
47 #import <Foundation/NSDateFormatter.h>
48 #import <Foundation/NSNumberFormatter.h>
49 #import <Foundation/NSHost.h>
50
51 #include <NGExtensions/NGExtensions.h>
52 #include <NGStreams/NGStreams.h>
53
54 #if NeXT_RUNTIME || APPLE_RUNTIME
55 #  ifndef sel_get_name
56 #    define sel_get_name(__XXX__)    sel_getName(__XXX__)
57 #    define sel_get_any_uid(__XXX__) sel_getUid(__XXX__)
58 #  endif
59 #endif
60
61 #define IS_DEPRECATED \
62   NSLog(@"WARNING: used deprecated method: %s:%i.", \
63         __PRETTY_FUNCTION__, __LINE__);
64
65 #if PROFILE
66 #  define BEGIN_PROFILE \
67      { NSTimeInterval __ti = [[NSDate date] timeIntervalSince1970],__last=__ti;
68
69 #  define END_PROFILE \
70      __ti = [[NSDate date] timeIntervalSince1970] - __ti;\
71      if (__ti > 0.05) \
72        printf("***PROF[%s]: %0.3fs\n", __PRETTY_FUNCTION__, __ti);\
73      else if (__ti > 0.005) \
74        printf("PROF[%s]: %0.3fs\n", __PRETTY_FUNCTION__, __ti);\
75      }
76
77 #  define PROFILE_CHECKPOINT(__key__) \
78      {\
79        NSTimeInterval __new = [[NSDate date] timeIntervalSince1970];\
80        printf("---PROF[%s] CP %s: %0.3fs %0.3fs\n", __PRETTY_FUNCTION__,\
81               __key__, __new - __ti, __new - __last);\
82        __last=__new; \
83      }
84
85 #else
86 #  define BEGIN_PROFILE {
87 #  define END_PROFILE   }
88 #  define PROFILE_CHECKPOINT(__key__)
89 #endif
90
91 @interface NSException(setUserInfo)
92 - (id)setReason:(NSString *)_reason;
93 - (id)setUserInfo:(NSDictionary *)_userInfo;
94 @end
95
96 #endif /* __NGObjWeb_common_H__ */