This is the mail archive of the java-patches@sources.redhat.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

resend of gij -jar patch



Window's clipboard lossage resulted in a mangled patch in my last mail.

Here it is again (in full).

Sun Aug 20 21:02:48 2000  Anthony Green  <green@redhat.com>

    * java/lang/natSystem.cc (init_properties): Change sourceware
    reference to sources.redhat.com.

    * include/java-props.h: Add _Jv_Jar_Class_Path.
    * prims.cc: Ditto.  Set it from	`gij -jar file' option.

    * java/lang/natSystem.cc (init_properties): Set java.class.path
    from
    {gij -jar file}:{CLASSPATH variable}:{-Djava.class.path= or .}

    * java/util/PropertyPermission.java: Import from GNU Classpath.
    * Makefile.in: Rebuilt.
    * Makefile.am: Add java/util/PropertyPermission.java.
    * java/lang/System.java: Add setProperty method.

    * gij.cc (main): Add -jar option to execute jar files.
    (help): Describe -jar option.
    * prims.cc (_Jv_RunMain): Add support for jar execution mode.
    * include/jvm.h: Add is_jar argument to _Jv_RunMain.
    * gnu/gcj/runtime/FirstThread.java (main): New method.

    * java/util/jar/Attributes.java: Correct comment spelling.


Index: libjava/Makefile.am
===================================================================
RCS file: /cvs/java/libgcj/libjava/Makefile.am,v
retrieving revision 1.80
diff -u -p -u -r1.80 Makefile.am
--- Makefile.am	2000/08/19 18:19:41	1.80
+++ Makefile.am	2000/08/21 05:33:16
@@ -1057,6 +1057,7 @@ java/util/NoSuchElementException.java \
 java/util/Observable.java \
 java/util/Observer.java	\
 java/util/Properties.java \
+java/util/PropertyPermission.java \
 java/util/PropertyResourceBundle.java \
 java/util/Random.java \
 java/util/ResourceBundle.java \
Index: libjava/Makefile.in
===================================================================
RCS file: /cvs/java/libgcj/libjava/Makefile.in,v
retrieving revision 1.87
diff -u -p -u -r1.87 Makefile.in
--- Makefile.in	2000/08/19 18:19:41	1.87
+++ Makefile.in	2000/08/21 05:33:16
@@ -827,6 +827,7 @@ java/util/NoSuchElementException.java \
 java/util/Observable.java \
 java/util/Observer.java	\
 java/util/Properties.java \
+java/util/PropertyPermission.java \
 java/util/PropertyResourceBundle.java \
 java/util/Random.java \
 java/util/ResourceBundle.java \
@@ -1443,6 +1444,7 @@ DEP_FILES =  .deps/$(srcdir)/$(CONVERT_D
 .deps/java/util/MissingResourceException.P \
 .deps/java/util/NoSuchElementException.P .deps/java/util/Observable.P \
 .deps/java/util/Observer.P .deps/java/util/Properties.P \
+.deps/java/util/PropertyPermission.P \
 .deps/java/util/PropertyResourceBundle.P .deps/java/util/Random.P \
 .deps/java/util/ResourceBundle.P .deps/java/util/Set.P \
 .deps/java/util/SimpleTimeZone.P .deps/java/util/Stack.P \
Index: libjava/gij.cc
===================================================================
RCS file: /cvs/java/libgcj/libjava/gij.cc,v
retrieving revision 1.10
diff -u -p -u -r1.10 gij.cc
--- gij.cc	2000/08/20 17:49:11	1.10
+++ gij.cc	2000/08/21 05:33:16
@@ -24,8 +24,10 @@ details.  */
 static void
 help ()
 {
-  printf ("Usage: gij [OPTION] ... CLASS [ARGS] ...\n\n");
-  printf ("Interpret Java bytecodes\n\n");
+  printf ("Usage: gij [OPTION] ... CLASS [ARGS] ...\n");
+  printf ("          to interpret Java bytecodes, or\n");
+  printf ("       gij -jar [OPTION] ... JARFILE [ARGS] ...\n");
+  printf ("          to execute a jar file\n\n");
   printf ("  -DVAR=VAL         define property VAR with value VAL\n");
   printf ("  --help            print this help, then exit\n");
   printf ("  --ms=NUMBER       set initial heap size\n");
@@ -51,6 +53,7 @@ main (int argc, const char **argv)
   /* We rearrange ARGV so that all the -D options appear near the
      beginning.  */
   int last_D_option = 0;
+  bool jar_mode = false;
 
   int i;
   for (i = 1; i < argc; ++i)
@@ -73,6 +76,12 @@ main (int argc, const char **argv)
 	  continue;
 	}
 
+      if (! strcmp (arg, "-jar"))
+	{
+	  jar_mode = true;
+	  continue;
+	}
+
       /* Allow both single or double hyphen for all remaining
 	 options.  */
       if (arg[1] == '-')
@@ -120,9 +129,12 @@ main (int argc, const char **argv)
   if (argc - i < 1)
     {
       fprintf (stderr, "Usage: gij [OPTION] ... CLASS [ARGS] ...\n");
+      fprintf (stderr, "          to interpret Java bytecodes, or\n");
+      fprintf (stderr, "       gij -jar [OPTION] ... JARFILE [ARGS] ...\n");
+      fprintf (stderr, "          to execute a jar file\n");
       fprintf (stderr, "Try `gij --help' for more information.\n");
       exit (1);
     }
 
-  _Jv_RunMain (argv[i], argc - i, argv + i);
+  _Jv_RunMain (argv[i], argc - i, argv + i, jar_mode);
 }
Index: libjava/prims.cc
===================================================================
RCS file: /cvs/java/libgcj/libjava/prims.cc,v
retrieving revision 1.33
diff -u -p -u -r1.33 prims.cc
--- prims.cc	2000/06/20 13:30:14	1.33
+++ prims.cc	2000/08/21 05:33:16
@@ -79,6 +80,9 @@ static java::lang::OutOfMemoryError *no_
 // Properties set at compile time.
 const char **_Jv_Compiler_Properties;
 
+// The JAR file to add to the beginning of java.class.path.
+const char *_Jv_Jar_Class_Path;
+
 #ifndef DISABLE_GETENV_PROPERTIES
 // Property key/value pairs.
 property_pair *_Jv_Environment_Properties;
@@ -888,8 +892,9 @@ JvRunMain (jclass klass, int argc, const
 }
 
 void
-_Jv_RunMain (const char *class_name, int argc, const char **argv)
+_Jv_RunMain (const char *name, int argc, const char **argv, bool is_jar)
 {
+  jstring class_name;
   PROCESS_GCJ_PROPERTIES;
 
   main_init ();
@@ -900,12 +905,31 @@ _Jv_RunMain (const char *class_name, int
   _Jv_ThisExecutable (exec_name);
 #endif
 
+  if (is_jar)
+    {
+      _Jv_Jar_Class_Path = strdup (name);
+      arg_vec = JvConvertArgv (1, &_Jv_Jar_Class_Path);
+
+      main_thread = 
+	new gnu::gcj::runtime::FirstThread (&_CL_Q43gnu3gcj7runtime11FirstThread,
+					    arg_vec);
+      main_thread->start();
+      _Jv_ThreadWait ();
+      
+      class_name = gnu::gcj::runtime::FirstThread::jarMainClassName;
+    }
+  else
+    class_name = JvNewStringLatin1 (name);
+
   arg_vec = JvConvertArgv (argc - 1, argv + 1);
-  main_thread = new gnu::gcj::runtime::FirstThread (JvNewStringLatin1 (class_name),
-						    arg_vec);
-  main_thread->start();
-  _Jv_ThreadWait ();
 
+  if (class_name)
+    {
+      main_thread = new gnu::gcj::runtime::FirstThread (class_name, arg_vec);
+      main_thread->start();
+      _Jv_ThreadWait ();
+    }
+  
   java::lang::Runtime::getRuntime ()->exit (0);
 }
 
Index: libjava/gnu/gcj/runtime/FirstThread.java
===================================================================
RCS file: /cvs/java/libgcj/libjava/gnu/gcj/runtime/FirstThread.java,v
retrieving revision 1.3
diff -u -p -u -r1.3 FirstThread.java
--- FirstThread.java	2000/06/20 13:27:41	1.3
+++ FirstThread.java	2000/08/21 05:33:16
@@ -10,6 +10,8 @@ details.  */
 
 package gnu.gcj.runtime;
 
+import java.util.jar.*;
+
 /**
  * @author Tom Tromey <tromey@cygnus.com>
  * @date August 24, 1998 
@@ -42,6 +44,27 @@ final class FirstThread extends Thread
     System.err.println(s);
     System.exit(1);
   }
+
+  public static void main (String[] args)
+  {
+    try {
+
+      JarFile j = new JarFile (args[0]);
+
+      Attributes a = j.getManifest().getMainAttributes();
+
+      jarMainClassName = a.getValue(Attributes.Name.MAIN_CLASS);
+
+    } catch (Exception e) {
+
+      System.err.println ("Failed to load Main-Class manifest attribute from\n" + args[0]);
+
+    }
+  }
+
+  // If interpreter is invoked with -jar, the main class name is recorded
+  // here.
+  public static String jarMainClassName;
 
   // Private data.
   private Class klass;
Index: libjava/include/java-props.h
===================================================================
RCS file: /cvs/java/libgcj/libjava/include/java-props.h,v
retrieving revision 1.6
diff -u -p -u -r1.6 java-props.h
--- java-props.h	2000/03/07 19:55:25	1.6
+++ java-props.h	2000/08/21 05:33:16
@@ -22,6 +22,9 @@ typedef struct
 // Set to NULL-terminated list of properties set at compile time.
 extern const char **_Jv_Compiler_Properties;
 
+// The JAR file to add to the beginning of java.class.path.
+extern const char *_Jv_Jar_Class_Path;
+
 // Properties taken from the user's environment.
 extern property_pair *_Jv_Environment_Properties;
 
Index: libjava/include/jvm.h
===================================================================
RCS file: /cvs/java/libgcj/libjava/include/jvm.h,v
retrieving revision 1.26
diff -u -p -u -r1.26 jvm.h
--- jvm.h	2000/08/16 15:30:02	1.26
+++ jvm.h	2000/08/21 05:33:16
@@ -157,7 +157,7 @@ void _Jv_SetMaximumHeapSize (const char 
 void *_Jv_AllocBytesChecked (jsize size) __attribute__((__malloc__));
 
 extern "C" void JvRunMain (jclass klass, int argc, const char **argv);
-void _Jv_RunMain (const char* name, int argc, const char **argv);
+void _Jv_RunMain (const char* name, int argc, const char **argv, bool is_jar);
 
 // This function is used to determine the hash code of an object.
 inline jint
Index: libjava/java/lang/System.java
===================================================================
RCS file: /cvs/java/libgcj/libjava/java/lang/System.java,v
retrieving revision 1.3
diff -u -p -u -r1.3 System.java
--- System.java	2000/03/07 19:55:26	1.3
+++ System.java	2000/08/21 05:33:16
@@ -19,6 +19,7 @@ import java.io.PrintStream;
 import java.io.BufferedInputStream;
 import java.io.BufferedOutputStream;
 import java.util.Properties;
+import java.util.PropertyPermission;
 
 /**
  * @author Tom Tromey <tromey@cygnus.com>
@@ -132,8 +133,12 @@ public final class System
     properties = props;
   }
 
-  // TODO 1.2.
-  // public static String setProperty (String key, String value);
+  public static String setProperty (String key, String value)
+  {
+    if (secman != null)
+      secman.checkPermission (new PropertyPermission (key, "write"));
+    return (String) properties.setProperty (key, value);
+  }
 
   // TODO 1.2.
   // public static String mapLibraryName (String libname);
Index: libjava/java/lang/natSystem.cc
===================================================================
RCS file: /cvs/java/libgcj/libjava/java/lang/natSystem.cc,v
retrieving revision 1.22
diff -u -p -u -r1.22 natSystem.cc
--- natSystem.cc	2000/08/02 21:54:04	1.22
+++ natSystem.cc	2000/08/21 05:33:16
@@ -32,6 +32,7 @@ details.  */
 #include <java/lang/ArrayStoreException.h>
 #include <java/lang/ArrayIndexOutOfBoundsException.h>
 #include <java/lang/NullPointerException.h>
+#include <java/lang/StringBuffer.h>
 #include <java/util/Properties.h>
 #include <java/io/PrintStream.h>
 #include <java/io/InputStream.h>
@@ -216,7 +217,7 @@ java::lang::System::init_properties (voi
   // (introduced in 1.2), and earlier versioning properties.
   SET ("java.version", VERSION);
   SET ("java.vendor", "Free Software Foundation");
-  SET ("java.vendor.url", "http://sourceware.cygnus.com/java/");
+  SET ("java.vendor.url", "http://sources.redhat.com/java/");
   SET ("java.class.version", GCJVERSION);
   SET ("java.vm.specification.version", "1.1");
   SET ("java.vm.specification.name", "Java(tm) Virtual Machine Specification");
@@ -263,13 +264,6 @@ java::lang::System::init_properties (voi
     }
 #endif /* HAVE_UNAME */
 
-  char *classpath = ::getenv("CLASSPATH");
-  // FIXME: find libgcj.zip and append its path?
-  if (classpath != NULL)
-    SET ("java.class.path", classpath);
-  else
-    SET ("java.class.path", ".");
-
 #ifndef NO_GETUID
 #ifdef HAVE_PWD_H
   uid_t user_id = getuid ();
@@ -353,4 +347,35 @@ java::lang::System::init_properties (voi
 	  i++;
 	}
     }
+
+  // FIXME: find libgcj.zip and append its path?
+  char *classpath = ::getenv("CLASSPATH");
+  jstring cp = properties->getProperty (JvNewStringLatin1("java.class.path"));
+  java::lang::StringBuffer *sb = new java::lang::StringBuffer ();
+
+  if (_Jv_Jar_Class_Path)
+    {
+      sb->append (JvNewStringLatin1 (_Jv_Jar_Class_Path));
+#ifdef WIN32
+      sb->append ((jchar) ';');
+#else
+      sb->append ((jchar) ':');
+#endif;
+    }
+  if (classpath)
+    {
+      sb->append (JvNewStringLatin1 (classpath));
+#ifdef WIN32
+      sb->append ((jchar) ';');
+#else
+      sb->append ((jchar) ':');
+#endif;
+    }
+  if (cp != NULL)
+    sb->append (cp);
+  else
+    sb->append ((jchar) '.');
+
+  properties->put(JvNewStringLatin1 ("java.class.path"),
+		  sb->toString ());
 }
Index: libjava/java/util/PropertyPermission.java
===================================================================
RCS file: PropertyPermission.java
diff -N PropertyPermission.java
--- /dev/null	Tue May  5 13:32:27 1998
+++ PropertyPermission.java	Sun Aug 20 22:33:16 2000
@@ -0,0 +1,238 @@
+/* java.util.PropertyPermission
+   Copyright (C) 1999 Free Software Foundation, Inc.
+
+This file is part of GNU Classpath.
+
+GNU Classpath is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+ 
+GNU Classpath is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU Classpath; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+02111-1307 USA.
+
+As a special exception, if you link this library with other files to
+produce an executable, this library does not by itself cause the
+resulting executable to be covered by the GNU General Public License.
+This exception does not however invalidate any other reasons why the
+executable file might be covered by the GNU General Public License. */
+
+
+package java.util;
+import java.security.Permission;
+import java.security.BasicPermission;
+import java.security.PermissionCollection;
+import java.io.ObjectStreamField;
+import java.io.ObjectInputStream;
+import java.io.ObjectOutputStream;
+import java.io.IOException;
+
+/**
+ * This class represents the permission to access and modify a property.<br>
+ *
+ * The name is the name of the property, e.g. xxx.  You can also
+ * use an asterisk "*" as described in BasicPermission <br>
+ *
+ * The action string is a comma-separated list if keywords.  There are
+ * two possible actions:
+ * <dl>
+ * <dt>read</dt> 
+ * <dd>Allows to read the property via <code>System.getProperty</code>.</dd>
+ * <dt>write</dt> 
+ * <dd>Allows to write the property via <code>System.setProperty</code>.</dd>
+ * </dl>
+ * 
+ * The action string is case insensitive (it is converted to lower case).
+ *
+ * @see Permission
+ * @see BasicPermission
+ * @author Jochen Hoenicke 
+ */
+public final class PropertyPermission extends BasicPermission
+{
+  /**
+   * @serialField action String
+   *   The action string.
+   */
+  private static final ObjectStreamField[] serialPersistentFields =
+  {
+    new ObjectStreamField("action", String.class)
+  };
+
+  private static final long serialVersionUID = 885438825399942851L;
+
+  private static final int READ  = 1;
+  private static final int WRITE = 2;
+  private transient int actions;
+
+  private static String actionStrings[] = 
+  { 
+    "", "read", "write", "read,write" 
+  };
+
+  /**
+   * Constructs a PropertyPermission witha he specified property.  Possible
+   * actions are read and write.
+   * @param name the name of the property.
+   * @param actions the action string.
+   * @exception IllegalArgumentException if name string contains an
+   * illegal wildcard or actions string contains an illegal action
+   */
+  public PropertyPermission(String name, String actions)
+  {
+    super(name);
+    setActions(actions.toLowerCase());
+  }
+
+  /**
+   * Parse the action string and convert actions from external to internal
+   * form.  This will set the internal actions field.
+   * @param actions the action string.
+   * @exception IllegalArgumentException if actions string contains an
+   * illegal action */
+  private void setActions(String actions)
+  {
+    this.actions = 0;
+    StringTokenizer actionTokenizer = new StringTokenizer(actions, ",");
+    while (actionTokenizer.hasMoreElements())
+      {
+	String anAction = actionTokenizer.nextToken();
+	if ("read".equals(anAction))
+	  this.actions |= READ;
+	else if ("write".equals(anAction))
+	  this.actions |= WRITE;
+	else
+	  throw new IllegalArgumentException("illegal action "+anAction);
+      }
+  }
+
+  /**
+   * Check if this permission implies p.  This returns true iff all of
+   * the following conditions are true:
+   * <ul>
+   * <li> p is a PropertyPermission </li>
+   * <li> this.getName() implies p.getName(),  
+   *  e.g. <code>java.*</code> implies <code>java.home</code> </li>
+   * <li> this.getActions is a subset of p.getActions </li>
+   * </ul>
+   */
+  public boolean implies(Permission p)
+  {
+    if (!(p instanceof PropertyPermission))
+      return false;
+    
+    // We have to check the actions.
+    PropertyPermission pp = (PropertyPermission) p;
+    if ((pp.actions & ~actions) != 0)
+      return false;
+
+    // BasicPermission checks for name.
+    if (!super.implies(p))
+      return false;
+
+    return true;
+  }
+
+  /**
+   * Returns the action string.  Note that this may differ from the string
+   * given at the constructor:  The actions are converted to lowercase and
+   * may be reordered.
+   */
+  public String getActions()
+  {
+    return actionStrings[actions];
+  }
+
+  /**
+   * Reads an object from the stream. This converts the external to the
+   * internal representation.
+   */
+  private void readObject(ObjectInputStream s) 
+    throws IOException, ClassNotFoundException
+  {
+    ObjectInputStream.GetField fields = s.readFields();
+    setActions((String) fields.get("actions", null));
+  }
+
+  /**
+   * Writes an object to the stream. This converts the internal to the
+   * external representation.
+   */
+  private void writeObject(ObjectOutputStream s) 
+    throws IOException
+  {
+    ObjectOutputStream.PutField fields = s.putFields();
+    fields.put("actions", getActions());
+    s.writeFields();
+  }
+
+  /**
+   * Returns a permission collection suitable to take
+   * PropertyPermission objects.
+   * @return a new empty PermissionCollection.  
+   */
+  public PermissionCollection newPermissionCollection() 
+  {
+    return new PermissionCollection() 
+      {
+	Hashtable permissions = new Hashtable();
+	int allActions = 0;
+	
+	public void add(Permission permission) 
+	  {
+	    if (isReadOnly())
+	      throw new IllegalStateException("readonly");
+
+	    // also check that permission is of correct type.
+	    PropertyPermission pp = (PropertyPermission) permission;
+	    String name = pp.getName();
+	    if (name.equals("*"))
+	      allActions |= pp.actions;
+	    permissions.put(name, pp);
+	  }
+	
+	public boolean implies(Permission permission)
+	  {
+	    if (!(permission instanceof PropertyPermission))
+	      return false;
+
+	    PropertyPermission toImply = (PropertyPermission) permission;
+	    if ((toImply.actions & ~allActions) == 0)
+	      return true;
+
+	    String name = toImply.getName();
+	    if (name.equals("*"))
+	      return false;
+
+	    int prefixLength = name.length();
+	    if (name.endsWith("*"))
+	      prefixLength -= 2;
+
+	    while (true) {
+	      PropertyPermission forName = 
+		(PropertyPermission) permissions.get(name);
+	      if (forName != null
+		  && (toImply.actions & ~forName.actions) == 0)
+		return true;
+
+	      prefixLength = name.lastIndexOf('.', prefixLength);
+	      if (prefixLength < 0)
+		return false;
+	      name = name.substring(0, prefixLength + 1) + '*';
+	    }
+	  }
+	
+	public Enumeration elements()
+	  {
+	    return permissions.elements();
+	  }
+      };
+  }
+}
Index: libjava/java/util/jar/Attributes.java
===================================================================
RCS file: /cvs/java/libgcj/libjava/java/util/jar/Attributes.java,v
retrieving revision 1.1
diff -u -p -u -r1.1 Attributes.java
--- Attributes.java	2000/08/19 18:19:42	1.1
+++ Attributes.java	2000/08/21 05:33:16
@@ -460,7 +460,7 @@ public class Attributes implements Clone
     }
 
     /**
-     * Gives a Set of atrribute name and values pairs as MapEntries.
+     * Gives a Set of attribute name and values pairs as MapEntries.
      * @see java.util.Map.Entry
      * @see java.util.Map#entrySet()
      *

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]