]> err.no Git - sope/blob - sope-appserver/NGObjWeb/WOResponse+private.h
improved SOPE security exceptions
[sope] / sope-appserver / NGObjWeb / WOResponse+private.h
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
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 // $Id$
22
23 #ifndef __NGObjWeb_WOResponse_private_H__
24 #define __NGObjWeb_WOResponse_private_H__
25
26 #include <NGObjWeb/WOResponse.h>
27
28 // fast inline functions (non-WO)
29
30 #define WOResponse_AddChar(__R__,__C__) \
31   if (__R__) {__R__->addChar(__R__, @selector(appendContentCharacter:), __C__);}
32
33 #define WOResponse_AddString(__R__,__C__) \
34   if (__R__) {__R__->addStr(__R__, @selector(appendContentString:), __C__);}
35 #define WOResponse_AddCString(__R__,__C__) \
36   if (__R__) {__R__->addCStr(__R__, @selector(appendContentCString:), __C__);}
37
38 #define WOResponse_AddHtmlString(__R__,__C__) \
39   if (__R__) {__R__->addHStr(__R__, @selector(appendContentHTMLString:), __C__);}
40
41 // TODO: performance ! - use static buffer and appendContentCString !
42
43 #define WOResponse_AddUInt(__R__,__C__) \
44   if (__R__) {\
45     switch(__C__) {\
46       case 0: __R__->addCStr(__R__, @selector(appendContentCString:),"0");break;\
47       case 1: __R__->addCStr(__R__, @selector(appendContentCString:),"1");break;\
48       case 2: __R__->addCStr(__R__, @selector(appendContentCString:),"2");break;\
49       case 3: __R__->addCStr(__R__, @selector(appendContentCString:),"3");break;\
50       case 4: __R__->addCStr(__R__, @selector(appendContentCString:),"4");break;\
51       default: {\
52         char buf[12]; sprintf(buf,"%d", __C__); \
53         __R__->addCStr(__R__, @selector(appendContentCString:), buf);}\
54     }\
55   }
56
57 #define WOResponse_AddInt(__R__,__C__) \
58   if (__R__) {\
59     switch(__C__) {\
60       case 0: __R__->addCStr(__R__, @selector(appendContentCString:),"0");break;\
61       case 1: __R__->addCStr(__R__, @selector(appendContentCString:),"1");break;\
62       case 2: __R__->addCStr(__R__, @selector(appendContentCString:),"2");break;\
63       case 3: __R__->addCStr(__R__, @selector(appendContentCString:),"3");break;\
64       case 4: __R__->addCStr(__R__, @selector(appendContentCString:),"4");break;\
65       default: {\
66         char buf[12]; sprintf(buf,"%i", __C__); \
67         __R__->addCStr(__R__, @selector(appendContentCString:), buf);}\
68     }\
69   }
70
71 #endif /* __NGObjWeb_WOResponse_private_H__ */