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.

 
AAPL
$501.11
Apple Inc.
+2.43
MSFT
$34.64
Microsoft Corpora
+0.15
GOOG
$898.03
Google Inc.
+16.02

MacTech Search:
Community Search:

Software Updates via MacUpdate

CrossOver 12.5.1 - Run Windows apps on y...
CrossOver can get your Windows productivity applications and PC games up and running on your Mac quickly and easily. CrossOver runs the Windows software that you need on Mac at home, in the office,... Read more
Paperless 2.3.1 - Digital documents mana...
Paperless is a digital documents manager. Remember when everyone talked about how we would soon be a paperless society? Now it seems like we use paper more than ever. Let's face it - we need and we... Read more
Apple HP Printer Drivers 2.16.1 - For OS...
Apple HP Printer Drivers includes the latest HP printing and scanning software for Mac OS X 10.6, 10.7 and 10.8. For information about supported printer models, see this page.Version 2.16.1: This... Read more
Yep 3.5.1 - Organize and manage all your...
Yep is a document organization and management tool. Like iTunes for music or iPhoto for photos, Yep lets you search and view your documents in a comfortable interface, while offering the ability to... Read more
Apple Canon Laser Printer Drivers 2.11 -...
Apple Canon Laser Printer Drivers is the latest Canon Laser printing and scanning software for Mac OS X 10.6, 10.7 and 10.8. For information about supported printer models, see this page.Version 2.11... Read more
Apple Java for Mac OS X 10.6 Update 17 -...
Apple Java for Mac OS X 10.6 delivers improved security, reliability, and compatibility by updating Java SE 6.Version Update 17: Java for Mac OS X 10.6 Update 17 delivers improved security,... Read more
Arq 3.3 - Online backup (requires Amazon...
Arq is online backup for the Mac using Amazon S3 and Amazon Glacier. It backs-up and faithfully restores all the special metadata of Mac files that other products don't, including resource forks,... Read more
Apple Java 2013-005 - For OS X 10.7 and...
Apple Java for OS X 2013-005 delivers improved security, reliability, and compatibility by updating Java SE 6 to 1.6.0_65. On systems that have not already installed Java for OS X 2012-006, this... Read more
DEVONthink Pro 2.7 - Knowledge base, inf...
Save 10% with our exclusive coupon code: MACUPDATE10 DEVONthink Pro is your essential assistant for today's world, where almost everything is digital. From shopping receipts to important research... Read more
VirtualBox 4.3.0 - x86 virtualization so...
VirtualBox is a family of powerful x86 virtualization products for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers... Read more

Briquid Gets Updated with New Undo Butto...
Briquid Gets Updated with New Undo Button, Achievements, and Leaderboards, on Sale for $0.99 Posted by Andrew Stevens on October 16th, 2013 [ | Read more »
Halloween – iLovecraft Brings Frightenin...
Halloween – iLovecraft Brings Frightening Stories From Author H.P. | Read more »
The Blockheads Creator David Frampton Gi...
The Blockheads Creator David Frampton Gives a Postmortem on the Creation Process of the Game Posted by Andrew Stevens on October 16th, 2013 [ permalink ] Hey, a | Read more »
Sorcery! Enhances the Gameplay in Latest...
Sorcery! | Read more »
It Came From Australia: Tiny Death Star
NimbleBit and Disney have teamed up to make Star Wars: Tiny Death Star, a Star Wars take on Tiny Tower. Right now, the game is in testing in Australia (you will never find a more wretched hive of scum and villainy) but we were able to sneak past... | Read more »
FIST OF AWESOME Review
FIST OF AWESOME Review By Rob Rich on October 16th, 2013 Our Rating: :: TALK TO THE FISTUniversal App - Designed for iPhone and iPad A totalitarian society of bears is only the tip of the iceberg in this throwback brawler.   | Read more »
PROVERBidioms Paints English Sayings in...
PROVERBidioms Paints English Sayings in a Picture for Users to Find Posted by Andrew Stevens on October 16th, 2013 [ permalink ] | Read more »
OmniFocus 2 for iPhone Review
OmniFocus 2 for iPhone Review By Carter Dotson on October 16th, 2013 Our Rating: :: OMNIPOTENTiPhone App - Designed for the iPhone, compatible with the iPad OmniFocus 2 for iPhone is a task management app for people who absolutely... | Read more »
Ingress – Google’s Augmented-Reality Gam...
Ingress – Google’s Augmented-Reality Game to Make its Way to iOS Next Year Posted by Andrew Stevens on October 16th, 2013 [ permalink ] | Read more »
CSR Classics is Full of Ridiculously Pre...
CSR Classics is Full of Ridiculously Pretty Classic Automobiles Posted by Rob Rich on October 16th, 2013 [ permalink ] | Read more »

Price Scanner via MacPrices.net

Apple Store Canada offers refurbished 11-inch...
 The Apple Store Canada has Apple Certified Refurbished 2013 11″ MacBook Airs available starting at CDN$ 849. Save up to $180 off the cost of new models. An Apple one-year warranty is included with... Read more
Updated MacBook Price Trackers
We’ve updated our MacBook Price Trackers with the latest information on prices, bundles, and availability on MacBook Airs, MacBook Pros, and the MacBook Pros with Retina Displays from Apple’s... Read more
13-inch Retina MacBook Pros on sale for up to...
B&H Photo has the 13″ 2.5GHz Retina MacBook Pro on sale for $1399 including free shipping. Their price is $100 off MSRP. They have the 13″ 2.6GHz Retina MacBook Pro on sale for $1580 which is $... Read more
AppleCare Protection Plans on sale for up to...
B&H Photo has 3-Year AppleCare Warranties on sale for up to $105 off MSRP including free shipping plus NY sales tax only: - Mac Laptops 15″ and Above: $244 $105 off MSRP - Mac Laptops 13″ and... Read more
Apple’s 64-bit A7 Processor: One Step Closer...
PC Pro’s Darien Graham-Smith reported that Canonical founder and Ubuntu Linux creator Mark Shuttleworth believes Apple intends to follow Ubuntu’s lead and merge its desktop and mobile operating... Read more
MacBook Pro First, Followed By iPad At The En...
French site Info MacG’s Florian Innocente says he has received availability dates and order of arrival for the next MacBook Pro and the iPad from the same contact who had warned hom of the arrival of... Read more
Chart: iPad Value Decline From NextWorth
With every announcement of a new Apple device, serial upgraders begin selling off their previous models – driving down the resale value. So, with the Oct. 22 Apple announcement date approaching,... Read more
SOASTA Survey: What App Do You Check First in...
SOASTA Inc., the leader in cloud and mobile testing announced the results of its recent survey showing which mobile apps are popular with smartphone owners in major American markets. SOASTA’s survey... Read more
Apple, Samsung Reportedly Both Developing 12-...
Digitimes’ Aaron Lee and Joseph Tsai report that Apple and Samsung Electronics are said to both be planning to release 12-inch tablets, and that Apple is currently cooperating with Quanta Computer on... Read more
Apple’s 2011 MacBook Pro Lineup Suffering Fro...
Appleinsider’s Shane Cole says that owners of early-2011 15-inch and 17-inch MacBook Pros are reporting issues with those models’ discrete AMD graphics processors, which in some cases results in the... Read more

Jobs Board

*Apple* Retail - Manager - Apple (United Sta...
Job SummaryKeeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, youre a master of them all. In the stores fast-paced, dynamic Read more
*Apple* Support / *Apple* Technician / Mac...
Apple Support / Apple Technician / Mac Support / Mac Set up / Mac TechnicianMac Set up and Apple Support technicianThe person we are looking for will have worked Read more
Senior Mac / *Apple* Systems Engineer - 318...
318 Inc, a top provider of Apple solutions is seeking a new Senior Apple Systems Engineer to be based out of our Santa Monica, California location. We are a Read more
*Apple* Retail - Manager - Apple Inc. (Unite...
Job Summary Keeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, you’re a master of them all. In the store’s fast-paced, Read more
*Apple* Solutions Consultant - Apple (United...
**Job Summary** Apple Solutions Consultant (ASC) - Retail Representatives Apple Solutions Consultants are trained by Apple on selling Apple -branded products Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.