528b0d74593e6c990ae499cd681c2f5f7629d681
[org.ibex.core.git] / src / org / ibex / graphics / Picture.java
1 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.ibex.graphics;
3 import java.io.*;
4 import org.ibex.js.*;
5 import org.ibex.plat.*;
6 import org.ibex.util.*;
7 import org.ibex.core.*;
8
9 /** 
10  *    The in-memory representation of a PNG or GIF image. It is
11  *    read-only. It is usually passed to PixelBuffer.drawPicture()
12  *
13  *    Implementations of the Platform class should return objects
14  *    supporting this interface from the createPicture() method. These
15  *    implementations may choose to implement caching strategies (for
16  *    example, using a Pixmap on X11).
17  */
18 public class Picture {
19
20     public Picture() { this.stream = null; }
21     public Picture(JS r) { this.stream = r; }
22     private static Cache cache = new Cache(100);   ///< Picture, keyed by the Stream that loaded them
23
24     public JS stream = null;                       ///< the stream we were loaded from
25     public int width = -1;                         ///< the width of the image
26     public int height = -1;                        ///< the height of the image
27     public int[] data = null;                      ///< argb samples
28     public boolean isLoaded = false;               ///< true iff the image is fully loaded
29
30     /** invoked when an image is fully loaded; subclasses can use this to initialize platform-specific constructs */
31     protected void loaded() { isLoaded = true; }
32
33     /** turns a stream into a Picture.Source and passes it to the callback */
34     public static Picture load(final JS stream, final Task callback) {
35         Picture ret = (Picture)cache.get(stream);
36         if (ret == null) cache.put(stream, ret = Platform.createPicture(stream));
37         final Picture p = ret;
38         if (!ret.isLoaded && callback != null) {
39             final Ibex.Blessing b = Ibex.Blessing.getBlessing(stream);
40             new java.lang.Thread() { public void run() {
41                 InputStream in = null;
42                 try {
43                     in = b == null ? Stream.getInputStream(stream) : b.getImage();
44                 } catch (IOException e) { Log.error(Picture.class, e);
45                 } catch (JSExn e) { Log.error(Picture.class, e);
46                 }
47                 if (in == null) { Log.warn(Picture.class, "couldn't load image for stream " + stream.unclone()); return; }
48                 try {
49                     PushbackInputStream pbis = new PushbackInputStream(in);
50                     int firstByte = pbis.read();
51                     if (firstByte == -1) throw new JSExn("empty stream reading image");
52                     pbis.unread(firstByte);
53                     if ((firstByte & 0xff) == 'G') GIF.load(pbis, p);
54                     else if ((firstByte & 0xff) == 137)  PNG.load(pbis, p);
55                     else if ((firstByte & 0xff) == 0xff) Platform.decodeJPEG(pbis, p);
56                     else throw new JSExn("couldn't figure out image type from first byte");
57                     p.loaded();
58                     Scheduler.add(callback);
59                 } catch (Exception e) {
60                     Log.info(this, "exception while loading image");
61                     Log.info(this, e);
62                 }
63             } }.start();
64         }
65         return ret;
66     }
67 }