Source Code Cross Referenced for Extern.java in  » 6.0-JDK-Modules-com.sun » tools » com » sun » tools » doclets » internal » toolkit » util » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules com.sun » tools » com.sun.tools.doclets.internal.toolkit.util 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright 1998-2003 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.util;
027:
028:        import com.sun.tools.doclets.internal.toolkit.*;
029:
030:        import com.sun.javadoc.*;
031:        import java.util.Map;
032:        import java.util.HashMap;
033:        import java.io.*;
034:        import java.net.*;
035:
036:        /**
037:         * Process and manage "-link" and "-linkoffline" to external packages. The
038:         * options "-link" and "-linkoffline" both depend on the fact that Javadoc now
039:         * generates "package-list"(lists all the packages which are getting
040:         * documented) file in the current or the destination directory, while
041:         * generating the documentation.
042:         *
043:         * This code is not part of an API.
044:         * It is implementation that is subject to change.
045:         * Do not use it as an API
046:         * 
047:         * @author Atul M Dambalkar
048:         * @author Robert Field
049:         */
050:        public class Extern {
051:
052:            /**
053:             * Map package names onto Extern Item objects.
054:             * Lazily initialized.
055:             */
056:            private Map packageToItemMap;
057:
058:            /**
059:             * The global configuration information for this run.
060:             */
061:            private final Configuration configuration;
062:
063:            /**
064:             * True if we are using -linkoffline and false if -link is used instead.
065:             */
066:            private boolean linkoffline = false;
067:
068:            /**
069:             * Stores the info for one external doc set
070:             */
071:            private class Item {
072:
073:                /**
074:                 * Package name, found in the "package-list" file in the {@link path}.
075:                 */
076:                final String packageName;
077:
078:                /**
079:                 * The URL or the directory path at which the package documentation will be
080:                 * avaliable.
081:                 */
082:                final String path;
083:
084:                /**
085:                 * If given path is directory path then true else if it is a URL then false.
086:                 */
087:                final boolean relative;
088:
089:                /**
090:                 * Constructor to build a Extern Item object and map it with the package name.
091:                 * If the same package name is found in the map, then the first mapped
092:                 * Item object or offline location will be retained.
093:                 *
094:                 * @param packagename Package name found in the "package-list" file.
095:                 * @param path        URL or Directory path from where the "package-list"
096:                 * file is picked.
097:                 * @param relative    True if path is URL, false if directory path.
098:                 */
099:                Item(String packageName, String path, boolean relative) {
100:                    this .packageName = packageName;
101:                    this .path = path;
102:                    this .relative = relative;
103:                    if (packageToItemMap == null) {
104:                        packageToItemMap = new HashMap();
105:                    }
106:                    if (!packageToItemMap.containsKey(packageName)) { // save the previous
107:                        packageToItemMap.put(packageName, this ); // mapped location
108:                    }
109:                }
110:
111:                /**
112:                 * String representation of "this" with packagename and the path.
113:                 */
114:                public String toString() {
115:                    return packageName + (relative ? " -> " : " => ") + path;
116:                }
117:            }
118:
119:            public Extern(Configuration configuration) {
120:                this .configuration = configuration;
121:            }
122:
123:            /**
124:             * Determine if a doc item is externally documented.
125:             *
126:             * @param doc A ProgramElementDoc.
127:             */
128:            public boolean isExternal(ProgramElementDoc doc) {
129:                if (packageToItemMap == null) {
130:                    return false;
131:                }
132:                return packageToItemMap.get(doc.containingPackage().name()) != null;
133:            }
134:
135:            /**
136:             * Convert a link to be an external link if appropriate.
137:             *
138:             * @param pkgName The package name.
139:             * @param relativepath    The relative path.
140:             * @param link    The link to convert.
141:             * @return if external return converted link else return null
142:             */
143:            public String getExternalLink(String pkgName, String relativepath,
144:                    String link) {
145:                Item fnd = findPackageItem(pkgName);
146:                if (fnd != null) {
147:                    String externlink = fnd.path + link;
148:                    if (fnd.relative) { // it's a relative path.
149:                        return relativepath + externlink;
150:                    } else {
151:                        return externlink;
152:                    }
153:                }
154:                return null;
155:            }
156:
157:            /**
158:             * Build the extern package list from given URL or the directory path.
159:             * Flag error if the "-link" or "-linkoffline" option is already used.
160:             *
161:             * @param url        URL or Directory path.
162:             * @param pkglisturl This can be another URL for "package-list" or ordinary
163:             *                   file.
164:             * @param reporter   The <code>DocErrorReporter</code> used to report errors.
165:             * @param linkoffline True if -linkoffline isused and false if -link is used.
166:             */
167:            public boolean url(String url, String pkglisturl,
168:                    DocErrorReporter reporter, boolean linkoffline) {
169:                this .linkoffline = linkoffline;
170:                String errMsg = composeExternPackageList(url, pkglisturl);
171:                if (errMsg != null) {
172:                    reporter.printWarning(errMsg);
173:                    return false;
174:                } else {
175:                    return true;
176:                }
177:            }
178:
179:            /**
180:             * Get the Extern Item object associated with this package name.
181:             *
182:             * @param pkgname Package name.
183:             */
184:            private Item findPackageItem(String pkgName) {
185:                if (packageToItemMap == null) {
186:                    return null;
187:                }
188:                return (Item) packageToItemMap.get(pkgName);
189:            }
190:
191:            /**
192:             * Adjusts the end file separator if it is missing from the URL or the
193:             * directory path and depending upon the URL or file path, fetch or
194:             * read the "package-list" file.
195:             *
196:             * @param urlOrDirPath        URL or the directory path.
197:             * @param pkgListUrlOrDirPath URL or directory path for the "package-list" file or the "package-list"
198:             * file itself.
199:             */
200:            private String composeExternPackageList(String urlOrDirPath,
201:                    String pkgListUrlOrDirPath) {
202:                urlOrDirPath = adjustEndFileSeparator(urlOrDirPath);
203:                pkgListUrlOrDirPath = adjustEndFileSeparator(pkgListUrlOrDirPath);
204:                return isUrl(pkgListUrlOrDirPath) ? fetchURLComposeExternPackageList(
205:                        urlOrDirPath, pkgListUrlOrDirPath)
206:                        : readFileComposeExternPackageList(urlOrDirPath,
207:                                pkgListUrlOrDirPath);
208:            }
209:
210:            /**
211:             * If the URL or Directory path is missing end file separator, add that.
212:             */
213:            private String adjustEndFileSeparator(String url) {
214:                String filesep = "/";
215:                if (!url.endsWith(filesep)) {
216:                    url += filesep;
217:                }
218:                return url;
219:            }
220:
221:            /**
222:             * Fetch the URL and read the "package-list" file.
223:             *
224:             * @param urlpath        Path to the packages.
225:             * @param pkglisturlpath URL or the path to the "package-list" file.
226:             */
227:            private String fetchURLComposeExternPackageList(String urlpath,
228:                    String pkglisturlpath) {
229:                String link = pkglisturlpath + "package-list";
230:                try {
231:                    readPackageList((new URL(link)).openStream(), urlpath,
232:                            false);
233:                } catch (MalformedURLException exc) {
234:                    return configuration.getText("doclet.MalformedURL", link);
235:                } catch (IOException exc) {
236:                    return configuration.getText("doclet.URL_error", link);
237:                }
238:                return null;
239:            }
240:
241:            /**
242:             * Read the "package-list" file which is available locally.
243:             *
244:             * @param path URL or directory path to the packages.
245:             * @param pkgListPath Path to the local "package-list" file.
246:             */
247:            private String readFileComposeExternPackageList(String path,
248:                    String pkgListPath) {
249:
250:                String link = pkgListPath + "package-list";
251:                if (!((new File(pkgListPath)).isAbsolute() || linkoffline)) {
252:                    link = configuration.destDirName + link;
253:                }
254:                try {
255:                    File file = new File(link);
256:                    if (file.exists() && file.canRead()) {
257:                        readPackageList(new FileInputStream(file), path,
258:                                !((new File(path)).isAbsolute() || isUrl(path)));
259:                    } else {
260:                        return configuration.getText("doclet.File_error", link);
261:                    }
262:                } catch (FileNotFoundException exc) {
263:                    return configuration.getText("doclet.File_error", link);
264:                } catch (IOException exc) {
265:                    return configuration.getText("doclet.File_error", link);
266:                }
267:                return null;
268:            }
269:
270:            /**
271:             * Read the file "package-list" and for each package name found, create
272:             * Extern object and associate it with the package name in the map.
273:             *
274:             * @param input    InputStream from the "package-list" file.
275:             * @param path     URL or the directory path to the packages.
276:             * @param relative Is path relative?
277:             */
278:            private void readPackageList(InputStream input, String path,
279:                    boolean relative) throws IOException {
280:                BufferedReader in = new BufferedReader(new InputStreamReader(
281:                        input));
282:                StringBuffer strbuf = new StringBuffer();
283:                try {
284:                    int c;
285:                    while ((c = in.read()) >= 0) {
286:                        char ch = (char) c;
287:                        if (ch == '\n' || ch == '\r') {
288:                            if (strbuf.length() > 0) {
289:                                String packname = strbuf.toString();
290:                                String packpath = path
291:                                        + packname.replace('.', '/') + '/';
292:                                new Item(packname, packpath, relative);
293:                                strbuf.setLength(0);
294:                            }
295:                        } else {
296:                            strbuf.append(ch);
297:                        }
298:                    }
299:                } finally {
300:                    input.close();
301:                }
302:            }
303:
304:            public boolean isUrl(String urlCandidate) {
305:                try {
306:                    new URL(urlCandidate);
307:                    //No exception was thrown, so this must really be a URL.
308:                    return true;
309:                } catch (MalformedURLException e) {
310:                    //Since exception is thrown, this must be a directory path.
311:                    return false;
312:                }
313:            }
314:        }
w_w___w__._j__a___va_2s_._c___o_m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.