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
|
/* Copyright (C) 2001 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
import java.io.*;
import com.sun.javadoc.*;
public class TexinfoDoclet
{
static PrintStream outfile;
public static int optionLength(String option)
{
if (option.equals("-outfile"))
return 2;
return 0;
}
private static String replace (String s, String text, String replacement)
{
int i = s.indexOf (text);
while (i != -1)
{
s = s.substring(0, i) + replacement + s.substring(i+text.length());
i = s.indexOf (text);
}
return s;
}
private static String texify (String s)
{
if (s.indexOf('<') == -1)
return s;
s = replace (s, "<code>", "@code{");
s = replace (s, "</code>", "}");
s = replace (s, "<ol>", "\n@itemize @bullet\n");
s = replace (s, "</ol>", "\n@end itemize\n");
s = replace (s, "<ul>", "\n@itemize @bullet\n");
s = replace (s, "</ul>", "\n@end itemize\n");
s = replace (s, "<li>", "\n@item\n");
s = replace (s, "</li>", "\n");
s = replace (s, "<p>", "\n\n");
s = replace (s, "<CODE>", "@code{");
s = replace (s, "</CODE>", "}");
s = replace (s, "<OL>", "\n@itemize @bullet\n");
s = replace (s, "</OL>", "\n@end itemize\n");
s = replace (s, "<UL>", "\n@itemize @bullet\n");
s = replace (s, "</UL>", "\n@end itemize\n");
s = replace (s, "<LI>", "\n@item\n");
s = replace (s, "</LI>", "\n");
s = replace (s, "<P>", "\n\n");
return s;
}
private static void emitMethod (ClassDoc c, MethodDoc m)
{
outfile.print ("@deftypemethod " + c.typeName()
+ " {" + m.modifiers()
+ " " + m.returnType().typeName()
+ "} " + m.name());
outfile.print (" (");
Parameter p[] = m.parameters();
boolean first = true;
for (int i = 0; i < p.length; i++)
{
if (!first)
outfile.print (", ");
outfile.print (p[i].typeName()
+ "@w{ }@var{"
+ p[i].name()
+ "}");
first = false;
}
outfile.print (") ");
ClassDoc exceptions[] = m.thrownExceptions();
if (exceptions.length > 0)
{
outfile.print ("@*throws ");
first = true;
for (int i = 0; i < exceptions.length; i++)
{
if (!first)
outfile.print (", ");
outfile.print (exceptions[i].typeName());
first = false;
}
}
outfile.println ("");
outfile.println (texify (m.commentText()));
outfile.println ("@end deftypemethod");
}
private static void emitClass (ClassDoc c)
{
MethodDoc[] methods = c.methods();
for (int i = 0; i < methods.length; i++)
{
emitMethod (c, methods[i]);
}
}
public static boolean start (RootDoc root)
{
String options[][] = root.options ();
for (int i = 0; i < options.length; i++)
{
try
{
if (options[i][0].equals ("-outfile"))
{
outfile = new PrintStream (new FileOutputStream (options[i][1]));
}
} catch (java.io.IOException e) {
System.err.println ("Can't write to file " + options[i][1]);
return false;
}
}
ClassDoc[] classes = root.classes();
for (int i = 0; i < classes.length; i++)
{
emitClass (classes[i]);
}
return true;
}
}
|