Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4257468

Memory leakage with JDK1.2.2 (with new Font instruction)

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.2.2
    • client-libs
    • 2d
    • x86
    • windows_95, windows_nt



      Name: skT88420 Date: 07/27/99


      ##
      java version "1.2.2"
      Classic VM (build JDK-1.2.2-W, native threads, symcjit)

      java full version "JDK-1.2.2-W"
      ##

      The following example shows that memory is increasing when typing the button "+". Moreover, appletviewer finishes by crashing when I continue typing the button "+" for a while..

      ##program java - begin
      //<APPLET CODE=TestFont1.class WIDTH=500 HEIGHT=400>
      //</APPLET>

      import java.applet.*;
      import java.awt.*;
      import java.awt.event.*;
      import java.awt.font.*;
      import java.awt.geom.*;
      import javax.swing.*;

      public class TestFont1 extends Applet
      {
      int fontSize=10;
      Font font=new Font("Courier",Font.PLAIN,fontSize);
      Button b1,b2;
      ZDessin zd;

      public void init()
      {
      setLayout(new BorderLayout());
      b1=new Button("+");
      b1.addActionListener(new B1AL());
      b2=new Button("-");
      b2.addActionListener(new B2AL());
      add("North",b1);
      add("South",b2);
      zd=new ZDessin();
      add("Center",zd);

      doLayout();

      zd.init(this);
      }

      class B1AL implements ActionListener
      {
      public void actionPerformed(ActionEvent e)
      {
      font=font.deriveFont(Font.PLAIN,++fontSize);
      zd.dessine();
      }
      }

      class B2AL implements ActionListener
      {
      public void actionPerformed(ActionEvent e)
      {
      font=font.deriveFont(Font.PLAIN,--fontSize);
      zd.dessine();
      }
      }
      }

      class ZDessin extends Canvas
      {
      Image buf;
      Graphics gBuf;
      String text;
      TestFont1 pere;
      int w,h;

      public void init(TestFont1 app)
      {
      pere=app;
      text="abcd...";
      w=getSize().width;
      h=getSize().height;
      try
      {
      buf=createImage(w,h);
      gBuf=buf.getGraphics();
      System.out.println("ZDessin.init(1): w="+w+" h="+h);
      }
      catch (Exception e)
      {
      System.out.println("ZDessin.init(2): w="+w+" h="+h+"\n"+e);
      }

      dessine();
      }

      public void paint(Graphics g)
      {
      g.drawImage(buf,0,0,this);
      }

      public void dessine()
      {
      System.gc();


      gBuf=(Graphics2D)gBuf;
      gBuf.setColor(Color.white);
      gBuf.fillRect(0,0,w,h);
      gBuf.setFont(pere.font);
      gBuf.setColor(Color.black);
      gBuf.drawString(text,20,h-20);

      repaint();

      }
      }
      ##program java - end

      PS. I'm sorry if this bug is allready reported..!!
      I didn't check the bugParad ..
      (Review ID: 88450)
      ======================================================================

      Name: skT88420 Date: 07/28/99


      problem: when i grow the font of a text field in IFC (which is
      built on top of AWT), the system crashes after a few steps. i have
      to shut down the machine and restart.
      i looked this with the System Monitor: the allocated memory
      reliably grows by about 20 Mega(!)bytes every fews seconds.
      when windows starts running out of memory (which is at about 400M
      on my machine) the application crashes with an ugly dialog box.
      most other applications running at the same time also crash.

      i tried doing the same thing in Swing, but could not repro it there.
      i looked at it with OptimizeIt, and there are no memory leaks
      on the IFC side, so i still think it is a VM issue. also, it works
      just fine under java 1.1.x, only java 1.2.x shows the problem (another
      hint that it must be the VM).


      we have an application that allows the user to change the font size...

      1., 2. to reproduce, get netscapes IFC framework and run the follwing
      program on windows 95, Java 1.2.2, no other apps running:
      /*
      Trivial application - crashes within a couple of steps under Windows 95/JDK 1.2.2
      */

      // import netscape IFC package
      import netscape.application.*;

      public class TrivialApplication extends Application {

      public static void main(String args[]) {
      Application app = new TrivialApplication();
      app.run();
      }

      public void init() {
      // set up the main root window
      ExternalWindow drawSpace = new ExternalWindow();

      application().setMainRootView(drawSpace.rootView());

      drawSpace.show();

      // put up a window with a text view
      InternalWindow win = new InternalWindow(0, 0, 300, 300);
      TextView t = new TextView(0, 0, 300, 300);
      t.setString("Crash");
      win.addSubview(t); // bug will still happen if this is commented out
      // e.g. it is not a problem with drawing!!
      win.show();
      // grow the font size from 300 to 400, pause so that gc has a chance to do things
      for (int size=300; size<400; size++) {
      Font font = new Font("Helvetica", Font.PLAIN, size);
      t.setFont(font);
      // System.gc(); // does not help
      try { Thread.sleep(50); }
      catch (java.lang.InterruptedException e) {};

      }

      }
      }

      5.
      java version "1.2.2"
      Classic VM (build JDK-1.2.2-W, native threads, symcjit)
      java full version "JDK-1.2.2-W"

      6. this happens reliably on all our windows machines
      (different manufacturers). it is not a hardware issue.
      (Review ID: 93128)
      ======================================================================

            prr Philip Race
            skonchad Sandeep Konchady
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: