blob: e7a5540134820bcdf28cb0e6e1f22c2685c5b592 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2004 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26package sun.tools.jstat;
27
28import java.util.*;
29import java.net.*;
30import java.io.*;
31
32/**
33 * A class for listing the available options in the jstat_options file.
34 *
35 * @author Brian Doherty
36 * @since 1.5
37 */
38public class OptionLister {
39 private static final boolean debug = false;
40 private URL[] sources;
41
42 public OptionLister(URL[] sources) {
43 this.sources = sources;
44 }
45
46 public void print(PrintStream ps) {
47 Comparator<OptionFormat> c = new Comparator<OptionFormat>() {
48 public int compare(OptionFormat o1, OptionFormat o2) {
49 OptionFormat of1 = o1;
50 OptionFormat of2 = o2;
51 return (of1.getName().compareTo(of2.getName()));
52 }
53 };
54
55 Set<OptionFormat> options = new TreeSet<OptionFormat>(c);
56
57 for (int i = 0; i < sources.length; i++) {
58 try {
59 URL u = sources[i];
60 Reader r = new BufferedReader(
61 new InputStreamReader(u.openStream()));
62 Set<OptionFormat> s = new Parser(r).parseOptions();
63 options.addAll(s);
64 } catch (IOException e) {
65 if (debug) {
66 System.err.println(e.getMessage());
67 e.printStackTrace();
68 }
69 } catch (ParserException e) {
70 // Exception in parsing the options file.
71 System.err.println(sources[i] + ": " + e.getMessage());
72 System.err.println("Parsing of " + sources[i] + " aborted");
73 }
74 }
75
76 for ( OptionFormat of : options) {
77 if (of.getName().compareTo("timestamp") == 0) {
78 // ignore the special timestamp OptionFormat.
79 continue;
80 }
81 ps.println("-" + of.getName());
82 }
83 }
84}