]> err.no Git - sope/blob - sope-appserver/NGObjWeb/WOElementID.h
fixed makefiles to search FHS locations at the last resort
[sope] / sope-appserver / NGObjWeb / WOElementID.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_WOElementID_H__
24 #define __NGObjWeb_WOElementID_H__
25
26 #import <Foundation/NSObject.h>
27
28 /*
29   WOElementID
30   
31   This object is used to keep efficient representations of a NGObjWeb
32   element-id. An element id is a "path" to an object kept in a tree.
33 */
34
35 #define NGObjWeb_MAX_ELEMENT_ID_COUNT 100
36
37 @class NSString, NSMutableString;
38
39 typedef struct {
40   NSString     *string;
41   unsigned int number;
42   NSString     *fqn;
43 } WOElementIDPart;
44
45 @interface WOElementID : NSObject
46 {
47 @public
48   WOElementIDPart elementId[NGObjWeb_MAX_ELEMENT_ID_COUNT + 1];
49   char elementIdCount;
50   char idPos;
51   
52   /* keep a mutable string around ... */
53   NSMutableString *cs;
54   IMP addStr;
55 }
56
57 - (id)initWithString:(NSString *)_s;
58
59 /* methods */
60
61 - (NSString *)elementID;
62
63 - (void)appendElementIDComponent:(NSString *)_eid;
64 - (void)deleteAllElementIDComponents;
65
66 - (void)appendZeroElementIDComponent;
67 - (void)deleteLastElementIDComponent;
68 - (void)incrementLastElementIDComponent;
69 - (void)appendIntElementIDComponent:(int)_eid;
70
71 /* request ID processing */
72
73 - (id)currentElementID;
74 - (id)consumeElementID;
75
76 @end
77
78 #endif /* __NGObjWeb_WOElementID_H__ */