001    /*
002     * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
003     * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
004     *
005     * This code is free software; you can redistribute it and/or modify it
006     * under the terms of the GNU General Public License version 2 only, as
007     * published by the Free Software Foundation.  Sun designates this
008     * particular file as subject to the "Classpath" exception as provided
009     * by Sun in the LICENSE file that accompanied this code.
010     *
011     * This code is distributed in the hope that it will be useful, but WITHOUT
012     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
013     * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
014     * version 2 for more details (a copy is included in the LICENSE file that
015     * accompanied this code).
016     *
017     * You should have received a copy of the GNU General Public License version
018     * 2 along with this work; if not, write to the Free Software Foundation,
019     * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
020     *
021     * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
022     * CA 95054 USA or visit www.sun.com if you need additional information or
023     * have any questions.
024     */
025    
026    package com.sun.tools.doclets.internal.toolkit.builders;
027    
028    import com.sun.tools.doclets.internal.toolkit.*;
029    import com.sun.tools.doclets.internal.toolkit.util.*;
030    import java.io.*;
031    import java.lang.reflect.*;
032    import java.util.*;
033    
034    /**
035     * The superclass for all builders.  A builder is a class that provides
036     * the structure and content of API documentation.  A builder is completely
037     * doclet independent which means that any doclet can use builders to
038     * construct documentation, as long as it impelements the appropriate
039     * writer interfaces.  For example, if a doclet wanted to use
040     * {@link ConstantsSummaryBuilder} to build a constant summary, all it has to
041     * do is implement the ConstantsSummaryWriter interface and pass it to the
042     * builder using a WriterFactory.
043     *
044     * This code is not part of an API.
045     * It is implementation that is subject to change.
046     * Do not use it as an API
047     *
048     * @author Jamie Ho
049     * @since 1.5
050     */
051    
052    public abstract class AbstractBuilder {
053    
054        /**
055         * The configuration used in this run of the doclet.
056         */
057        protected Configuration configuration;
058    
059        /**
060         * Keep track of which packages we have seen for
061         * efficiency purposes.  We don't want to copy the
062         * doc files multiple times for a single package.
063         */
064        protected static Set<String> containingPackagesSeen;
065    
066        /**
067         * True if we want to print debug output.
068         */
069        protected static final boolean DEBUG = false;
070    
071        /**
072         * Construct a Builder.
073         * @param configuration the configuration used in this run
074         *        of the doclet.
075         */
076        public AbstractBuilder(Configuration configuration) {
077            this.configuration = configuration;
078        }
079    
080        /**
081         * Return the name of this builder.
082         *
083         * @return the name of the builder.
084         */
085        public abstract String getName();
086    
087        /**
088         * Build the documentation.
089         *
090         * @throws IOException there was a problem writing the output.
091         */
092        public abstract void build() throws IOException;
093    
094        /**
095         * Build the documentation, as specified by the given XML elements.
096         *
097         * @param elements the XML elements that specify which components to
098         *                 document.
099         */
100        protected void build(List<?> elements) {
101            for (int i = 0; i < elements.size(); i++ ) {
102                Object element = elements.get(i);
103                String component = (String)
104                    ((element instanceof String) ?
105                         element :
106                        ((List<?>) element).get(0));
107                try {
108                    invokeMethod("build" + component,
109                        element instanceof String ?
110                            new Class<?>[] {} :
111                            new Class<?>[] {List.class},
112                        element instanceof String ?
113                            new Object[] {} :
114                            new Object[] {((List<?>) element).subList(1,
115                                ((List<?>) element).size())});
116                } catch (NoSuchMethodException e) {
117                    e.printStackTrace();
118                    configuration.root.printError("Unknown element: " + component);
119                    throw new DocletAbortException();
120                } catch (InvocationTargetException e) {
121                    e.getCause().printStackTrace();
122                } catch (Exception e) {
123                    e.printStackTrace();
124                    configuration.root.printError("Exception " +
125                        e.getClass().getName() +
126                        " thrown while processing element: " + component);
127                    throw new DocletAbortException();
128                }
129            }
130        }
131    
132        /**
133         * Given the name and parameters, invoke the method in the builder.  This
134         * method is required to invoke the appropriate build method as instructed
135         * by the builder XML file.
136         *
137         * @param methodName   the name of the method that we would like to invoke.
138         * @param paramClasses the types for each parameter.
139         * @param params       the parameters of the method.
140         */
141        protected abstract void invokeMethod(String methodName, Class<?>[] paramClasses,
142                Object[] params)
143        throws Exception;
144    }