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