TweetFollow Us on Twitter

Jun 02 Cover Story

Volume Number: 18 (2002)
Issue Number: 06
Column Tag: Java Programming

by Andrew S. Downs

Dock Tile Imaging

Changing a Java application’s dock tile at runtime

Overview

The Dock Manager API allows a programmer to alter the tile for an application at runtime. Using the Java Native Interface, a Java application can change its tile dynamically as well. This involves a combination of Java and native code.

Two approaches are illustrated in this article. The first captures the pixels from a Java image and passes them to a native library function, which uses the CoreGraphics (Quartz) API to replace the application’s tile (see Figure 1).


Figure 1. A modified Dock tile.

The second example uses QuickDraw to paint a progress bar over the tile, as shown in Figure 2. The progress data is sent from Java to a native library function, and the imaging is done in the library.


Figure 2. The progress bar at the bottom of the tile, showing 60% complete.

If you want to code along with the examples, my recommendation is to first download the JNISample project from Apple’s developer site (see the URLs at the end of this article). That project served as the structural basis for the code in this article. All the build settings are already in place, making it an easy-to-use learning tool. (There are targets for compiling both the Java and native code, generating the javah file, building a library, etc.) I kept the filenames the same, but replaced the content of the various files. In the listings below you will see the filenames as they exist in that project.

Java

One class (DockTiler) provides most of the functionality for this example. It relies on two other classes for getting and drawing (offscreen) an image from a local file. You can also load an image via a non-local URL, which would allow the app to change the tile in response to outside conditions. For example, an application that retrieves weather data can change the tile to reflect current conditions or the forecast.

The JNISample class contains main(), the entry point for the Java application. It is used simply to instantiate DockTiler and invoke one of its instance methods.

Listing 1: JNISample.java

JNISample
The classes contained here include:
   JNISample: creates and calls a DockTiler instance.
   DockTiler: loads the image and sends it to the native drawing code.
   LocalFiler: allows the user to select a local file for display in the tile.
   PictureFrame: an offscreen Canvas which draws the image, allowing DockTiler
    to retrieve the image pixels.

// The image support comes from the AWT and the image package. 
import java.awt.*;
import java.awt.image.*;
import java.util.*;

public class JNISample {
   public JNISample() {}

   // Test code.
   public static void main (String args[]) {
      DockTiler dock = new DockTiler();
        
      dock.test();

      System.out.println( “Finished.” );
   }
}

class DockTiler {
   // If we have trouble loading an image, the values of its width and height will 
   // remain at -1. See loadImage().
   int mWidth = -1, mHeight = -1;
   int mPixels[];

   static {
      // Load the library when this class gets loaded.
      System.loadLibrary( “Example” );
   }

   public DockTiler() {
   }
   
   // These are the two functions in the shared library that we will call.
   // Note the declaration as native.
   native void setDockTile( int[] pixels, int width, 
      int height );

   native void updateProgressBar( int currPercent );
   
   // The primary test driver.
   public void test() {
      loadImage();
      
      setDockTile( mPixels, mWidth, mHeight );

      performTask();
   }

   // Read in the image and retrieve its pixels.
   protected void loadImage() {
      LocalFile lf = new LocalFile();
      String filename = lf.getFilePath();
      
      Image image = 
         Toolkit.getDefaultToolkit().getImage( filename );

      // Send the image to the Canvas, where it will be rendered.
      PictureFrame pf = new PictureFrame( image );
      
      Frame f = new Frame( “Image” );

      // Setup offscreen.
      f.setBounds( -250, -250, 200, 200 );

      f.setLayout( new BorderLayout() );
      f.add( “Center”, pf );
      pf.setSize( 128, 128 );
      f.pack();

      // An invisible window won’t render an image.
      f.setVisible( true );

      f.repaint();
      pf.repaint();
      
      // Use the Canvas as the observer during the loading process.
      int width = image.getWidth( pf );
      int height = image.getHeight( pf );
      
      // Allocate storage for the image data.
      mPixels = new int[ width * height ];
         
      // Create an object to copy the image pixel data into our array.
      PixelGrabber pg = new PixelGrabber( image, 0, 0, 
         width, height, mPixels, 0, width );
         
      // Copy the pixels to the array.
      try {
         pg.grabPixels();
      
         // Check for error using bit values in the ImageObserver class.
         if ( ( pg.getStatus() & ImageObserver.ABORT ) != 0 )
            return;
            
         // If successful, set instance attributes to legitimate values (not –1).
         mWidth = width;
         mHeight = height;
      }
      catch ( InterruptedException e ) {
         return;
      }
   }

   // For a task that may take some time, it helps to wrap it in a separate method or
   // even class, and spin it off as a thread. Here, simply get the current progress
   // and display it.
   protected void performTask() {
      int percentComplete = 0;
      
      boolean taskComplete = false;
      
      while ( !taskComplete ) {
         // Call the native method that draws the progress bar.
         updateProgressBar( percentComplete );
         
         percentComplete = updateTask();
         
         if ( percentComplete >= 100 )
            taskComplete = true;
      }
   }

   int mCount = 0;
   
   // Lengthy tasks will use a sophisticated approach to determining completion.
   // This example uses a simple loop so we can watch the bar move.
   protected int updateTask() {
      return mCount++;
   }
}

class LocalFile {
   FileDialog mFileDialog = null;
   
   // Display a dialog asking the user to choose a file.
   public LocalFile() {
      if ( mFileDialog == null ) {
         mFileDialog = new FileDialog( new Frame(), 
            “Select an image file”, FileDialog.LOAD );
      }
   }
   
   // Build and return the path to the file (if selected).
   public String getFilePath() {
      mFileDialog.setVisible( true );
      
      String retval = “”;
      
      if ( mFileDialog.getFile() != null && 
         mFileDialog.getFile().length() > 0 ) {
         retval = mFileDialog.getDirectory();
         
         if ( !retval.endsWith( 
            System.getProperty( “file.separator” ) ) )
            retval += System.getProperty( “file.separator” );
         
         retval += mFileDialog.getFile();
      }
      
      return retval;
   }
}

// A subclass of java.awt.Canvas that draws an Image object.
class PictureFrame extends Canvas {
   Image mImage;
   
   PictureFrame( Image img ) {
      super();
      mImage = img;
      setBackground( Color.white );
   }
   
   public void update( Graphics g ) {
      paint( g );
   }
   
   // Draw the image.
   public void paint( Graphics g ) {
      g.drawImage( mImage, 0, 0, this );
   }
}

Java Native Interface Code

JNI code is C code that bridges the Java and native worlds, handling the conversion between Java data types and their native counterparts. The JNIEnv pointer in each function indirectly points to a function table containing JNI functions, and the jobject references the instance of the class making the call. Any additional arguments are the values passed from the Java code to the native code.

Listing 2: ExampleJNILib.c

ExampleJNILib
The JNI glue for converting arguments prior to calling through to the native code.

#include “JNISample.h”
#include “ExampleDylib.h”

JNIEXPORT void JNICALL Java_DockTiler_setDockTile( 
   JNIEnv *env, jobject this, jintArray pixels, jint width, 
   jint height ) {
   // Obtain a pointer to the array to pass to the native function.
   jint *theArray = (*env)->GetIntArrayElements( 
      env, pixels, NULL );

   if ( theArray != NULL ) {
      // Call the library function.
      // Note that no adjustments are made to the primitive values.
      setDockTile( theArray, width, height );
  
      // Tell the VM we are no longer interested in the array.
      (*env)->ReleaseIntArrayElements( env, pixels, theArray, 
         0 );
   }
}

JNIEXPORT void JNICALL Java_DockTiler_updateProgressBar( 
   JNIEnv *env, jobject this, jint currPercent ) {
   // Call the library function.
   // No additional translation is needed on primitive values.
   updateProgressBar( currPercent );
}

The Library

The native library contains the actual tile drawing code. One function creates an image and replaces the existing tile with the new one. The second function uses a completion percentage value to determine how much of the progress bar to paint. It draws over the bottom of the existing tile.

Listing 3: ExampleDylib.c

ExampleDylib.c
Perform drawing in the Dock tile.

#include 
#include 
#include 

// Args include the array of pixel RGBA values, and the actual image width and height.
extern void setDockTile( int * imagePixels, int width, 
   int height ) {
   // How many bytes in each pixel? Java uses 4-byte ints.
   int kNumComponents = 4;
   
   OSStatus   theError;

   // Several CoreGraphics variables.
   CGContextRef theContext;
   CGDataProviderRef theProvider;
   CGColorSpaceRef theColorspace;
   CGImageRef theImage;

   // How many bytes in each row?
   size_t bytesPerRow = width * kNumComponents;

   // Obtain graphics context in which to render.
   theContext = BeginCGContextForApplicationDockTile();

   if ( theContext != NULL ) {   
      // Use the pixels passed in as the image source.
      theProvider = CGDataProviderCreateWithData( 
         NULL, imagePixels, ( bytesPerRow * height ), NULL );
   
      theColorspace = CGColorSpaceCreateDeviceRGB();
      
      // Create the image. This is similar to creating a PixMap. 
      // - The width and height were passed as arguments. 
      // - The next two values (8 and 32) are the bits per pixel component and 
      //    total bits per pixel, respectively. 
      // - bytesPerRow was calculated above. 
      // - Use the colorspace ref obtained previously. 
      // - The alpha or transparency data is in the first byte of each pixel. 
      // - Use the data source created a few lines above.
      // - The remaining parameters are typical defaults. Consult the API docs for 
      //    more info.
      theImage = CGImageCreate( width, height, 8, 32, 
         bytesPerRow, theColorspace, kCGImageAlphaFirst, 
         theProvider, NULL, 0, kCGRenderingIntentDefault );
   
      CGDataProviderRelease( theProvider );
      CGColorSpaceRelease( theColorspace );
      
      // Set the created image as the tile.
      theError = SetApplicationDockTileImage( theImage );

      CGContextFlush( theContext );
   
      CGImageRelease( theImage );

      EndCGContextForApplicationDockTile( theContext );
   }
}

extern void updateProgressBar( const int currPercent ) {
   CgrafPtr thePort;
   Rect   theRect;
   float   right = 0;
   
   // Obtain graphics context.
   thePort = BeginQDContextForApplicationDockTile();

   if ( thePort != NULL ) {
      // Good ol’ QuickDraw.
      GetPortBounds( thePort, &theRect );
      
      // Initially, draw the background of the bar and frame it.
      if ( currPercent == 0 ) {
         SetRect( &theRect, theRect.left, theRect.bottom - 10, 
            theRect.right, theRect.bottom );
         ForeColor( redColor );
         PaintRect( &theRect );
         ForeColor( blackColor );
         FrameRect( &theRect );
      }
      
      // Calculate right-edge of progress bar.
      if ( currPercent >= 100 )
         right = ( float )theRect.right;
      else
         right = ( ( ( float )theRect.right – 
            ( float )theRect.left ) / 
            ( float )100 ) * ( float )currPercent;

      // Draw the entire progress bar up until this point.
      ForeColor( greenColor );

      // Inset the progress rectangle on our own.
      SetRect( &theRect, theRect.left + 1, 
         theRect.bottom - 9, ( int )right, 
         theRect.bottom - 1 );

      PaintRect( &theRect );

      QDFlushPortBuffer( thePort, NULL );

      EndQDContextForApplicationDockTile( thePort );
   }
}

The image creation using the CoreGraphics API is the trickiest part. This example uses the fact that a Java int is 4 bytes, and that alpha (transparency) data, if included, is stored in the most significant byte. After some trial and error, I found that the settings shown here work for the images I tested against.

Useful URLs

I used quite a few outside sources (primarily Apple) in preparing this article. Though some of these URLs may change, I want to at least point you in the right direction.


Andrew has been a Java fan since his first encounter with the language at the WebEdge III conference in 1996. You can reach him at andrew@downs.ws.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Tokkun Studio unveils alpha trailer for...
We are back on the MMORPG news train, and this time it comes from the sort of international developers Tokkun Studio. They are based in France and Japan, so it counts. Anyway, semantics aside, they have released an alpha trailer for the upcoming... | Read more »
Win a host of exclusive in-game Honor of...
To celebrate its latest Jujutsu Kaisen crossover event, Honor of Kings is offering a bounty of login and achievement rewards kicking off the holiday season early. [Read more] | Read more »
Miraibo GO comes out swinging hard as it...
Having just launched what feels like yesterday, Dreamcube Studio is wasting no time adding events to their open-world survival Miraibo GO. Abyssal Souls arrives relatively in time for the spooky season and brings with it horrifying new partners to... | Read more »
Ditch the heavy binders and high price t...
As fun as the real-world equivalent and the very old Game Boy version are, the Pokemon Trading Card games have historically been received poorly on mobile. It is a very strange and confusing trend, but one that The Pokemon Company is determined to... | Read more »
Peace amongst mobile gamers is now shatt...
Some of the crazy folk tales from gaming have undoubtedly come from the EVE universe. Stories of spying, betrayal, and epic battles have entered history, and now the franchise expands as CCP Games launches EVE Galaxy Conquest, a free-to-play 4x... | Read more »
Lord of Nazarick, the turn-based RPG bas...
Crunchyroll and A PLUS JAPAN have just confirmed that Lord of Nazarick, their turn-based RPG based on the popular OVERLORD anime, is now available for iOS and Android. Starting today at 2PM CET, fans can download the game from Google Play and the... | Read more »
Digital Extremes' recent Devstream...
If you are anything like me you are impatiently waiting for Warframe: 1999 whilst simultaneously cursing the fact Excalibur Prime is permanently Vault locked. To keep us fed during our wait, Digital Extremes hosted a Double Devstream to dish out a... | Read more »
The Frozen Canvas adds a splash of colou...
It is time to grab your gloves and layer up, as Torchlight: Infinite is diving into the frozen tundra in its sixth season. The Frozen Canvas is a colourful new update that brings a stylish flair to the Netherrealm and puts creativity in the... | Read more »
Back When AOL WAS the Internet – The Tou...
In Episode 606 of The TouchArcade Show we kick things off talking about my plans for this weekend, which has resulted in this week’s show being a bit shorter than normal. We also go over some more updates on our Patreon situation, which has been... | Read more »
Creative Assembly's latest mobile p...
The Total War series has been slowly trickling onto mobile, which is a fantastic thing because most, if not all, of them are incredibly great fun. Creative Assembly's latest to get the Feral Interactive treatment into portable form is Total War:... | Read more »

Price Scanner via MacPrices.net

Early Black Friday Deal: Apple’s newly upgrad...
Amazon has Apple 13″ MacBook Airs with M2 CPUs and 16GB of RAM on early Black Friday sale for $200 off MSRP, only $799. Their prices are the lowest currently available for these newly upgraded 13″ M2... Read more
13-inch 8GB M2 MacBook Airs for $749, $250 of...
Best Buy has Apple 13″ MacBook Airs with M2 CPUs and 8GB of RAM in stock and on sale on their online store for $250 off MSRP. Prices start at $749. Their prices are the lowest currently available for... Read more
Amazon is offering an early Black Friday $100...
Amazon is offering early Black Friday discounts on Apple’s new 2024 WiFi iPad minis ranging up to $100 off MSRP, each with free shipping. These are the lowest prices available for new minis anywhere... Read more
Price Drop! Clearance 14-inch M3 MacBook Pros...
Best Buy is offering a $500 discount on clearance 14″ M3 MacBook Pros on their online store this week with prices available starting at only $1099. Prices valid for online orders only, in-store... Read more
Apple AirPods Pro with USB-C on early Black F...
A couple of Apple retailers are offering $70 (28%) discounts on Apple’s AirPods Pro with USB-C (and hearing aid capabilities) this weekend. These are early AirPods Black Friday discounts if you’re... Read more
Price drop! 13-inch M3 MacBook Airs now avail...
With yesterday’s across-the-board MacBook Air upgrade to 16GB of RAM standard, Apple has dropped prices on clearance 13″ 8GB M3 MacBook Airs, Certified Refurbished, to a new low starting at only $829... Read more
Price drop! Apple 15-inch M3 MacBook Airs now...
With yesterday’s release of 15-inch M3 MacBook Airs with 16GB of RAM standard, Apple has dropped prices on clearance Certified Refurbished 15″ 8GB M3 MacBook Airs to a new low starting at only $999.... Read more
Apple has clearance 15-inch M2 MacBook Airs a...
Apple has clearance, Certified Refurbished, 15″ M2 MacBook Airs now available starting at $929 and ranging up to $410 off original MSRP. These are the cheapest 15″ MacBook Airs for sale today at... Read more
Apple drops prices on 13-inch M2 MacBook Airs...
Apple has dropped prices on 13″ M2 MacBook Airs to a new low of only $749 in their Certified Refurbished store. These are the cheapest M2-powered MacBooks for sale at Apple. Apple’s one-year warranty... Read more
Clearance 13-inch M1 MacBook Airs available a...
Apple has clearance 13″ M1 MacBook Airs, Certified Refurbished, now available for $679 for 8-Core CPU/7-Core GPU/256GB models. Apple’s one-year warranty is included, shipping is free, and each... Read more

Jobs Board

Seasonal Cashier - *Apple* Blossom Mall - J...
Seasonal Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Seasonal Fine Jewelry Commission Associate -...
…Fine Jewelry Commission Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) Read more
Seasonal Operations Associate - *Apple* Blo...
Seasonal Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Read more
Hair Stylist - *Apple* Blossom Mall - JCPen...
Hair Stylist - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.