-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathGSMarkupTagObject.j
executable file
·376 lines (310 loc) · 7.36 KB
/
GSMarkupTagObject.j
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
/* -*-objc-*-
Author: Nicola Pero <[email protected]>
Date: January 2003
Author of Cappuccino port: Daniel Boehringer (2012)
This file is part of GNUstep Renaissance
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; see the file COPYING.LIB.
If not, write to the Free Software Foundation,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
@import <Foundation/CPBundle.j>
@import "GSMarkupAwaker.j"
/*
* Private method to check that 'aClass' is the same, or a subclass,
* of 'aPotentialSuperClass'. Return YES if so, and NO if not.
*/
@implementation CPObject(_IsClassSubclassOfClass)
+(BOOL) isSubclassOfClass:(Class) aPotentialSuperClass
{ var aClass =[self class];
if (aClass == aPotentialSuperClass)
{
return YES;
}
else
{
while (aClass != Nil)
{
aClass = [aClass superclass];
if (aClass == aPotentialSuperClass)
{
return YES;
}
}
return NO;
}
}
@end
@implementation GSMarkupTagObject: CPObject
{ CPDictionary _attributes;
CPArray _content;
id _platformObject;
/* The following is used, if not nil, to translate localizable
* strings when creating the platform objects. */
id _localizer;
/* The following is used, if not nil, to record the platformObject
* the first time that it is created. The method
* -(void)recordPlatformObject: of the _awaker must be called when
* the _platformObject is created. Later, the decoder will ask the
* _awaker to awake all platformObjects registered with it. The
* _awaker will send a awakeFromGSMarkup message to all registered
* platformObjects which respond to that message.
*/
id _awaker;
}
+ (CPString) tagName
{
return nil;
}
- (id) initWithAttributes: (CPDictionary)attributes
content: (CPArray)content
{
_attributes = attributes;
_content = content;
return self;
}
- (void) dealloc
{
[super dealloc];
}
- (CPDictionary) attributes
{
return _attributes;
}
- (CPArray) content
{
return _content;
}
- (CPArray) localizableStrings
{
var a = [CPMutableArray array];
var att;
var i, count;
/* First, extract localizable strings from content. */
count = [_content count];
for (i = 0; i < count; i++)
{
var o = [_content objectAtIndex: i];
if ([o isKindOfClass: [GSMarkupTagObject class]])
{
var k = [o localizableStrings];
if (k != nil)
{
[a addObjectsFromArray: k];
}
}
else if ([o isKindOfClass: [CPString class]])
{
[a addObject: o];
}
}
/* Then, extract localizable strings from attributes. */
att = [[self class] localizableAttributes];
count = [att count];
for (i = 0; i < count; i++)
{
var attribute = [att objectAtIndex: i];
var value = [_attributes objectForKey: attribute];
if (value != nil)
{
[a addObject: value];
}
}
return a;
}
+ (CPArray) localizableAttributes
{
return nil;
}
- (void) setAwaker: (GSMarkupAwaker)awaker
{
var i, count;
_awaker = awaker;
count = [_content count];
for (i = 0; i < count; i++)
{
var o = [_content objectAtIndex: i];
if ([o isKindOfClass: [GSMarkupTagObject class]])
{
[o setAwaker: awaker];
}
}
}
- (void) setPlatformObject: (id)object
{
if (_platformObject == object)
{
return;
}
if (_platformObject != nil)
{
/* The following will do nothing if _awaker is nil. */
[_awaker deregisterObject: _platformObject];
}
_platformObject = object;
if (object != nil)
{
/* The following will do nothing if _awaker is nil. */
[_awaker registerObject: object];
}
}
- (id) platformObject
{
if (!_platformObject)
{
/* Build the object. */
var platformObject = [self allocPlatformObject];
platformObject = [self initPlatformObject: platformObject];
platformObject = [self postInitPlatformObject: platformObject];
[self setPlatformObject: platformObject];
}
/* We own the object we return ... it is released when we are
* deallocated. The caller should RETAIN it if it wants it to
* survive our deallocation.
*/
return _platformObject;
}
- (id) allocPlatformObject
{
var selfClass = [self class];
var poclass = [selfClass platformObjectClass];
if ([selfClass useInstanceOfAttribute])
{
var className = [_attributes objectForKey: @"instanceOf"];
if (className != nil)
{
var nonStandardClass = CPClassFromString (className);
if (nonStandardClass != Nil)
{
if ([nonStandardClass isSubclassOfClass:poclass])
{
poclass = nonStandardClass;
}
}
}
}
return [poclass alloc];
}
+ (Class) platformObjectClass
{
return Nil;
}
+ (BOOL) useInstanceOfAttribute
{
return NO;
}
- (id) initPlatformObject: (id)platformObject
{
return [platformObject init];
}
- (id) postInitPlatformObject: (id)platformObject
{
return platformObject;
}
- (CPString) description
{
return [CPString stringWithFormat:
@"%@\nvar attributes =%@\nvar content =%@\var platformObject =%@",
[super description],
[_attributes description],
[_content description],
[_platformObject description]];
}
- (int) intValueForAttribute: (CPString)attribute
{ return parseInt([_attributes objectForKey:attribute]);
}
- (int) stringValueForAttribute: (CPString)attribute
{ return [_attributes objectForKey:attribute];
}
- (int) boolValueForAttribute: (CPString)attribute
{
var value = [_attributes objectForKey: attribute];
if (value == nil)
{
return -1;
}
switch ([value length])
{
case 1:
{
var a = [value characterAtIndex: 0];
switch (a)
{
case 'y':
case 'Y':
return 1;
case 'n':
case 'N':
return 0;
}
return -1;
}
case 2:
{
var a = [value characterAtIndex: 0];
if (a == 'n' || a == 'N')
{
var b = [value characterAtIndex: 1];
if (b == 'o' || b == 'O')
{
return 0;
}
}
return -1;
}
case 3:
{
var a = [value characterAtIndex: 0];
if (a == 'y' || a == 'Y')
{
var b = [value characterAtIndex: 1];
if (b == 'e' || b == 'E')
{
var c = [value characterAtIndex: 2];
if (c == 's' || c == 'S')
{
return 1;
}
}
}
return -1;
}
}
return -1;
}
- (void) setLocalizer: (GSMarkupLocalizer)localizer
{
var i, count;
_localizer = localizer;
count = [_content count];
for (i = 0; i < count; i++)
{
var o = [_content objectAtIndex: i];
if ([o isKindOfClass: [GSMarkupTagObject class]])
{
[o setLocalizer: localizer];
}
}
}
- (CPString) localizedStringValueForAttribute: (CPString)attribute
{
var value = [_attributes objectForKey: attribute];
if (value == nil)
{
return nil;
}
else
{
return value; //<!>
return [_localizer localizeString: value];
}
}
@end