]> err.no Git - sope/blob - sope-core/NGExtensions/NGExtensions/NGResourceLocator.h
added NGResourceLocator
[sope] / sope-core / NGExtensions / NGExtensions / NGResourceLocator.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 __NGExtensions_NGResourceLocator_H__
23 #define __NGExtensions_NGResourceLocator_H__
24
25 #import <Foundation/NSObject.h>
26
27 /*
28   NGResourceLocator
29   
30   This class can be used by libraries to lookup resources in either the GNUstep
31   hierarchy or in FHS locations (/usr/local etc).
32 */
33
34 @class NSString, NSArray, NSFileManager, NSMutableDictionary;
35
36 @interface NGResourceLocator : NSObject
37 {
38   NSString      *gsSubPath;
39   NSString      *fhsSubPath;
40   NSFileManager *fileManager;
41   
42   NSArray             *searchPathes;
43   NSMutableDictionary *nameToPathCache;
44   
45   struct {
46     int cacheSearchPathes:1;
47     int cachePathHits:1;
48     int cachePathMisses:1;
49     int reserved:29;
50   } flags;
51 }
52
53 + (id)resourceLocatorForGNUstepPath:(NSString *)_path fhsPath:(NSString *)_fhs;
54 - (id)initWithGNUstepPath:(NSString *)_path fhsPath:(NSString *)_fhs;
55
56 /* resource pathes */
57
58 - (NSArray *)gsRootPathes;  /* GNUSTEP_PATHPREFIX_LIST or MacOSX */
59 - (NSArray *)fhsRootPathes;
60 - (NSArray *)searchPathes;
61
62 /* operations */
63
64 - (NSString *)lookupFileWithName:(NSString *)_name;
65 - (NSString *)lookupFileWithName:(NSString *)_name extension:(NSString *)_ext;
66
67 @end
68
69 #endif /* __NGExtensions_NGResourceLocator_H__ */