]> err.no Git - sope/blob - sope-appserver/WOExtensions/common.h
updated framework version
[sope] / sope-appserver / WOExtensions / common.h
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 #ifndef __common_H__
23 #define __common_H__
24
25 #import <Foundation/Foundation.h>
26 #include <NGObjWeb/NGObjWeb.h>
27 #include <NGExtensions/NGExtensions.h>
28
29 #if NeXT_Foundation_LIBRARY || APPLE_Foundation_LIBRARY
30 #  include <NGExtensions/NGObjectMacros.h>
31 #endif
32
33 static inline id WOExtGetProperty(NSDictionary *_set, NSString *_name) {
34   id propValue;
35   
36   if ((propValue = [_set objectForKey:_name]) == nil)
37     return nil;
38   
39   propValue = [propValue retain];
40   [(NSMutableDictionary *)_set removeObjectForKey:_name];
41   return propValue;
42 }
43
44 static inline NSString *WOUriOfResource(NSString *_name, WOContext *_ctx) {
45   NSArray           *languages;
46   WOResourceManager *resourceManager;
47   NSString          *uri;
48
49   if (_name == nil)
50     return nil;
51
52   languages       = [_ctx resourceLookupLanguages];
53   resourceManager = [[_ctx application] resourceManager];
54
55   uri = [resourceManager urlForResourceNamed:_name
56                          inFramework:nil
57                          languages:languages
58                          request:[_ctx request]];
59   if ([uri rangeOfString:@"/missingresource?"].length > 0)
60     uri = nil;
61   
62   return uri;
63 }
64
65
66 #define OWGetProperty WOExtGetProperty
67
68 #endif /* __common_H__ */