OSDN Git Service

GNU Classpath import (libgcj-snapshot-20100921).
[pf3gnuchains/gcc-fork.git] / libjava / classpath / tools / gnu / classpath / tools / javah / PathOptionGroup.java
1 /* PathOptionGroup.java - handle classpath-setting options
2  Copyright (C) 2006, 2007 Free Software Foundation, Inc.
3
4  This file is part of GNU Classpath.
5
6  GNU Classpath is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2, or (at your option)
9  any later version.
10
11  GNU Classpath is distributed in the hope that it will be useful, but
12  WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  General Public License for more details.
15
16  You should have received a copy of the GNU General Public License
17  along with GNU Classpath; see the file COPYING.  If not, write to the
18  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19  02110-1301 USA.
20
21  Linking this library statically or dynamically with other modules is
22  making a combined work based on this library.  Thus, the terms and
23  conditions of the GNU General Public License cover the whole
24  combination.
25
26  As a special exception, the copyright holders of this library give you
27  permission to link this library with independent modules to produce an
28  executable, regardless of the license terms of these independent
29  modules, and to copy and distribute the resulting executable under
30  terms of your choice, provided that you also meet, for each linked
31  independent module, the terms and conditions of the license of that
32  module.  An independent module is a module which is not derived from
33  or based on this library.  If you modify this library, you may extend
34  this exception to your version of the library, but you are not
35  obligated to do so.  If you do not wish to do so, delete this
36  exception statement from your version. */
37
38
39 package gnu.classpath.tools.javah;
40
41 import gnu.classpath.tools.getopt.Option;
42 import gnu.classpath.tools.getopt.OptionException;
43 import gnu.classpath.tools.getopt.OptionGroup;
44
45 import java.io.File;
46 import java.io.FilenameFilter;
47 import java.net.MalformedURLException;
48 import java.net.URL;
49 import java.net.URLClassLoader;
50 import java.util.ArrayList;
51 import java.util.Arrays;
52 import java.util.Iterator;
53 import java.util.StringTokenizer;
54
55 public class PathOptionGroup
56     extends OptionGroup
57 {
58   ArrayList<String> classpath = new ArrayList<String>();
59
60   ArrayList<String> bootclasspath = new ArrayList<String>();
61
62   void setPath(ArrayList<String> list, String path)
63   {
64     list.clear();
65     StringTokenizer st = new StringTokenizer(path, File.pathSeparator);
66     while (st.hasMoreTokens())
67       {
68         list.add(st.nextToken());
69       }
70   }
71
72   void addExtDirs(ArrayList<String> list, String path)
73   {
74     StringTokenizer tok = new StringTokenizer(path, File.pathSeparator);
75     while (tok.hasMoreTokens())
76       {
77         File dir = new File(tok.nextToken());
78         list.addAll(Arrays.asList(dir.list(new FilenameFilter()
79         {
80           public boolean accept(File dir, String name)
81           {
82             return name.endsWith(".zip") || name.endsWith(".jar");
83           }
84         })));
85       }
86   }
87
88   public PathOptionGroup()
89   {
90     super("Class path options");
91
92     // Use the VM's built-in boot class path by default.
93     String boot = System.getProperty("sun.boot.class.path");
94     if (boot != null)
95       setPath(bootclasspath, boot);
96
97     add(new Option("classpath", "Set the class path", "PATH")
98     {
99       public void parsed(String path) throws OptionException
100       {
101         setPath(classpath, path);
102       }
103     });
104     add(new Option("cp", "Set the class path", "PATH")
105     {
106       public void parsed(String path) throws OptionException
107       {
108         setPath(classpath, path);
109       }
110     });
111     add(new Option('I', "Add directory to class path", "DIR", true)
112     {
113       public void parsed(String path) throws OptionException
114       {
115         classpath.add(path);
116       }
117     });
118     add(new Option("bootclasspath", "Set the boot class path", "PATH")
119     {
120       public void parsed(String path) throws OptionException
121       {
122         setPath(bootclasspath, path);
123       }
124     });
125     add(new Option("extdirs", "Set the extension directory path", "PATH")
126     {
127       public void parsed(String path) throws OptionException
128       {
129         addExtDirs(classpath, path);
130       }
131     });
132   }
133
134   public URLClassLoader getLoader() throws MalformedURLException
135   {
136     ArrayList<URL> urls = new ArrayList<URL>();
137     classpath.addAll(bootclasspath);
138     Iterator<String> i = classpath.iterator();
139     while (i.hasNext())
140       {
141         String f = i.next();
142         urls.add(new File(f).toURL());
143       }
144     URL[] urlArray = urls.toArray(new URL[0]);
145     return new URLClassLoader(urlArray);
146   }
147 }