aboutsummaryrefslogtreecommitdiffstats
path: root/aspectj-attic/ajdoc-src/org/aspectj/tools/doclets/standard/Standard.java
blob: 916336eb7e0e2a3354084eba325c30d01344f49a (plain)
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
/* -*- Mode: JDE; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 *
 * This file is part of the debugger and core tools for the AspectJ(tm)
 * programming language; see http://aspectj.org
 *
 * The contents of this file are subject to the Mozilla Public License
 * Version 1.1 (the "License"); you may not use this file except in
 * compliance with the License. You may obtain a copy of the License at
 * either http://www.mozilla.org/MPL/ or http://aspectj.org/MPL/.
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * The Original Code is AspectJ.
 *
 * The Initial Developer of the Original Code is Xerox Corporation. Portions
 * created by Xerox Corporation are Copyright (C) 1999-2002 Xerox Corporation.
 * All Rights Reserved.
 */
package org.aspectj.tools.doclets.standard;

import org.aspectj.tools.ajdoc.Quietable;

import com.sun.javadoc.RootDoc;
import com.sun.tools.doclets.DocletAbortException;
import com.sun.tools.doclets.standard.AllClassesFrameWriter;
import com.sun.tools.doclets.standard.FrameOutputWriter;
import com.sun.tools.doclets.standard.HelpWriter;
import com.sun.tools.doclets.standard.PackageIndexFrameWriter;
import com.sun.tools.doclets.standard.PackageIndexWriter;
import com.sun.tools.doclets.standard.PackageListWriter;
import com.sun.tools.doclets.standard.PackagesFileWriter;
import com.sun.tools.doclets.standard.SerializedFormWriter;
import com.sun.tools.doclets.standard.StylesheetWriter;

import java.io.IOException;

/**
 * Main doclet for ajdoc.  It defines a number of
 * passes to use in generating the documentation.
 *
 * @author Jeff Palm
 */
public class Standard extends AbstractStandard {
    private static Standard SINGLETON; // todo: prefer early/final?
    public static final Standard getSingleton() {
        if (null == SINGLETON) {
            SINGLETON = new Standard();
        }
        return SINGLETON;
    }
    private Standard() {}

    public static boolean start(RootDoc root) throws IOException {
        return start(getSingleton(), root);
    }

    public ConfigurationStandard getConfiguration() {
        return (ConfigurationStandard)configuration();
    }

    public static void quiet() {
        if (configuration().root instanceof Quietable) {
            ((Quietable)configuration().root).quiet();
        }
    }
    public static void speak() {
        if (configuration().root instanceof Quietable) {
            ((Quietable)configuration().root).speak();
        }
    }

    public static class ClassUseMapperPass extends Pass {
        protected boolean cond() {
            return cs.classuse;
        }
        protected void gen() throws DocletAbortException {
            ClassUseMapper.generate(root, std.classtree);
        }
        public String title() { return "class use mapper"; }
    }

    public static class TreeWriterPass extends Pass {
        protected boolean cond() {
            return cs.createtree;
        }
        protected void gen() throws DocletAbortException {
            TreeWriter.generate(std.classtree);
        }
        public String title() { return "tree writer"; }
    }

    public static class SplitIndexWriterPass extends Pass {
        protected boolean cond() {
            return cs.createindex && cs.splitindex;
        }
        protected void gen() throws DocletAbortException {
            SplitIndexWriter.generate(std.indexBuilder(root, false));
        }
        public String title() { return "split index"; }
    }

    public static class SingleIndexWriterPass extends Pass {
        protected boolean cond() {
            return cs.createindex && !cs.splitindex;
        }
        protected void gen() throws DocletAbortException {
            SingleIndexWriter.generate(std.indexBuilder(root, false));
        }
        public String title() { return "single index"; }
    }

    public static class DeprecatedListWriterPass extends Pass {
        protected boolean cond() {
            return !cs.nodeprecatedlist && !cs.nodeprecated;
        }
        protected void gen() throws DocletAbortException {
            DeprecatedListWriter.generate(root);
        }
        public String title() { return "deprecated list"; }
    }

    public static class AllClassesFrameWriterPass extends Pass {
        protected void gen() throws DocletAbortException {
            AllClassesFrameWriter.generate(std.indexBuilder(root, true));
        }
        public String title() { return "all classes frame"; }
    }

    public static class FrameOutputWriterPass extends Pass {
        protected void gen() throws DocletAbortException {
            FrameOutputWriter.generate();
        }
        public String title() { return "output frame"; }
    }

    public static class PackagesFileWriterPass extends Pass {
        protected void gen() throws DocletAbortException {
            PackagesFileWriter.generate();
        }
        public String title() { return "packages files"; }
    }

    public static class PackageIndexWriterPass extends Pass {
        protected boolean cond(ConfigurationStandard cs) {
            return cs.createoverview;
        }
        protected void gen() throws DocletAbortException {
            PackageIndexWriter.generate(root);
        }
        public String title() { return "package index"; }
    }
    
    public static class PackageIndexFrameWriterPass extends Pass {
        protected boolean cond() {
            return cs.packages.length > 1;
        }
        protected void gen() throws DocletAbortException {
            PackageIndexFrameWriter.generate();
        }
        public String title() { return "package index frame"; }
    }
    
    protected Class[] preGenerationClasses() {
        return new Class[] {
            ClassUseMapperPass.class,
            TreeWriterPass.class,
            SplitIndexWriterPass.class,
            SingleIndexWriterPass.class,
            DeprecatedListWriterPass.class,
            AllClassesFrameWriterPass.class,
            FrameOutputWriterPass.class,
            PackagesFileWriterPass.class,
            PackageIndexWriterPass.class,
            PackageIndexFrameWriterPass.class,
        };
    }

    public static class SerializedFormWriterPass extends Pass {
        protected void gen() throws DocletAbortException {
            SerializedFormWriter.generate(root);
        }
        public String title() { return "serialized form"; }
    }

    public static class PackageListWriterPass extends Pass {
        protected void gen() throws DocletAbortException {
            PackageListWriter.generate(root);
        }
        public String title() { return "package list"; }
    }

    public static class HelpWriterPass extends Pass {
        protected boolean cond() {
            return cs.helpfile.length() == 0 &&
                !cs.nohelp;
        }
        protected void gen() throws DocletAbortException {
            HelpWriter.generate();
        }
        public String title() { return "help"; }
    }

    public static class StylesheetWriterPass extends Pass {
        protected boolean cond() {
            return cs.stylesheetfile.length() == 0;
        }
        protected void gen() throws DocletAbortException {
            StylesheetWriter.generate();
        }
        public String title() { return "style sheet"; }
    }

    
    protected Class[] postGenerationClasses() {
        return new Class[] {
            SerializedFormWriterPass.class,
            PackageListWriterPass.class,
            HelpWriterPass.class,
            StylesheetWriterPass.class,
        };
    }

    public static class NoPublicClassesToDocumentCheck extends Check {
        protected boolean cond() {
            return root.classes().length == 0;
        }
        protected String message() {
            return "doclet.No_Public_Classes_To_Document";
        }
    }
    public static class NoNonDeprecatedClassToDocumentCheck extends Check {
        protected boolean cond() {
            return cs.topFile.length() == 0;
        }
        protected String message() {
            return "doclet.No_Non_Deprecated_Classes_To_Document";
        }
    }

    protected Class[] checkClasses() {
        return new Class[] {
            NoPublicClassesToDocumentCheck.class,
            NoNonDeprecatedClassToDocumentCheck.class,
        };
    }
}