-
Notifications
You must be signed in to change notification settings - Fork 2
/
DocMethod.m
221 lines (181 loc) · 6.05 KB
/
DocMethod.m
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
/*
Copyright (C) 2008 Nicolas Roard
Author: Nicolas Roard
Author: Quentin Mathe <quentin.mathe@gmail.com>
Date: June 2008
License: Modified BSD (see COPYING)
*/
#import "DocMethod.h"
#import "DocIndex.h"
#import "DocHTMLElement.h"
#import "DocDescriptionParser.h"
#import "DocParameter.h"
@implementation DocMethod
- (id) init
{
SUPERINIT;
selectorKeywords = [NSMutableArray new];
return self;
}
- (void) dealloc
{
selectorKeywords = nil;
}
- (NSString *) signature
{
NSMutableString *signature = [NSMutableString string];
FOREACH(selectorKeywords, keyword, NSString *)
{
[signature appendString: keyword];
}
return signature;
}
- (void) setIsClassMethod: (BOOL)isTrue
{
isClassMethod = isTrue;
}
- (BOOL) isClassMethod
{
return isClassMethod;
}
- (void) appendSelectorKeyword: (NSString *)aSelector
{
[selectorKeywords addObject: aSelector];
}
- (NSString *) refMarkup
{
char sign = (isClassMethod ? '+' : '-');
return [NSString stringWithFormat: @"%c%@", sign, [self name]];
}
- (NSString *) refMarkupWithClassName: (NSString *)aClassName
{
char sign = (isClassMethod ? '+' : '-');
return [NSString stringWithFormat: @"%c[%@ %@]", sign, aClassName, [self name]];
}
- (NSString *) refMarkupWithProtocolName: (NSString *)aProtocolName
{
char sign = (isClassMethod ? '+' : '-');
return [NSString stringWithFormat: @"%c[(%@) %@]", sign, aProtocolName, [self name]];
}
- (DocHTMLElement *) HTMLAnchorRepresentation
{
/* -ownerSymbolRef can return either a class or protocol e.g. ClassName or
(ProtocolName), so -refMarkupWithClassName: with the latter would return
a protocol ref markup. */
NSString *linkId = [self refMarkupWithClassName: [self ownerSymbolRef]];
return [A name: [linkId stringByReplacingOccurrencesOfString: @" " withString: @"_"]];
}
/*
<dl>
<dt>+ (void) <strong>willVerify:</strong> (Class)aClass;</dt>
<dd>
This method will instantiate the contract and apply it
on a class (i.e. through methods interception)
</dd>
</dl>
*/
- (DocHTMLElement *) HTMLRepresentation
{
DocHTMLIndex *docIndex = [DocIndex currentIndex];
H hReturn = [[self returnParameter] HTMLRepresentationWithParentheses: YES];
H hSignature = [SPAN class: @"methodSignature"
with: [SPAN class: @"methodScope"
with: (isClassMethod ? @"+ " : @"- ")]
and: hReturn];
NSArray *params = [self parameters];
BOOL isUnaryMessage = [params isEmpty];
for (int i = 0; i < [selectorKeywords count]; i++)
{
NSString *selKeyword = [selectorKeywords objectAtIndex: i];
H hSelector = [SPAN class: @"selector" with: @" " and: selKeyword and: @" "];
[hSignature and: hSelector];
if (isUnaryMessage)
break;
DocParameter *p = [params objectAtIndex: i];
[hSignature and: [p HTMLRepresentationWithParentheses: YES]];
}
// FIXME: HTML output below broken
/*H hAnchoredSig = [[self HTMLAnchorRepresentation] with: hSignature];
H hMethodDesc = [DIV class: @"methodDescription"
with: [self HTMLDescriptionWithDocIndex: docIndex]];
H hMethodDiv = [DIV class: @"method" with: [DL with: [DT with: hAnchoredSig]
and: [DD with: hMethodDesc]]];*/
H hMethodDesc = [DIV class: @"methodDescription"
with: [self HTMLDescriptionWithDocIndex: docIndex]
and: [self HTMLAddendumRepresentation]];
H hMethodBlock = [DIV class: @"method" with: [self HTMLAnchorRepresentation]
and: [DL class: @"collapsable" with: [DT with: hSignature]
and: [DD with: hMethodDesc]]];
//NSLog(@"Method %@", hMethodBlock);
return hMethodBlock;
}
- (void) parser: (GSDocParser *)parser
startElement: (NSString *)elementName
withAttributes: (NSDictionary *)attributeDict
{
if ([elementName isEqualToString: @"method"]) /* Opening tag */
{
BEGINLOG();
[self setReturnType: [attributeDict objectForKey: @"type"]];
if ([[attributeDict objectForKey: @"factory"] isEqualToString: @"yes"])
{
[self setIsClassMethod: YES];
}
}
}
- (void) parser: (GSDocParser *)parser
endElement: (NSString *)elementName
withContent: (NSString *)trimmed
{
if ([elementName isEqualToString: @"sel"])
{
[self appendSelectorKeyword: trimmed];
}
else if ([elementName isEqualToString: @"arg"])
{
NSString *type = [parser argTypeFromArgsAttributes: [parser currentAttributes]];
[self addParameter: [DocParameter parameterWithName: trimmed type: type]];
}
else if ([elementName isEqualToString: @"desc"])
{
[self appendToRawDescription: trimmed];
CONTENTLOG();
}
else if ([elementName isEqualToString: @"method"]) /* Closing tag */
{
DocDescriptionParser *descParser = [DocDescriptionParser new];
[descParser parse: [self rawDescription]];
[self addInformationFrom: descParser];
/* Cache the signature as our name and allows inherited methods that use
-name to work transparently */
[self setName: [self signature]];
[[parser weaver] weaveMethod: self];
ENDLOG2([self name], [self task]);
}
}
- (void) parseProgramComponent: (SCKMethod *)programComponent
{
[self setName: [programComponent name]];
[self appendToRawDescription: [[programComponent documentation] string]];
// Needs fixing when there is proper API in SCK
#if 0
[self setReturnType: [programComponent returnType]];
for (NSString *selectorKeyword in [[programComponent arguments] allKeys])
{
NSString *argument = [[programComponent arguments] objectForKey: selectorKeyword];
[self addParameter: [self parameterFromSourceCodeArgument: argument]];
[self appendSelectorKeyword: selectorKeyword];
}
#endif
[self setIsClassMethod: [programComponent isClassMethod]];
DocDescriptionParser *descriptionParser = [DocDescriptionParser new];
[descriptionParser parse: [self rawDescription]];
[self addInformationFrom: descriptionParser];
}
- (DocParameter *)parameterFromSourceCodeArgument: (NSString *)anArg
{
DocParameter *parameter = [DocParameter new];
[parameter setType: anArg];
return parameter;
}
@end