Blogg

Här finns tekniska artiklar, presentationer och nyheter om arkitektur och systemutveckling. Håll dig uppdaterad, följ oss på Twitter

Callista medarbetare Niklas Gustavsson

XMPP on the roll

// Niklas Gustavsson

XMPP, aka Jabber, is making great strides into the world of instant messaging. Since Jeremie Miller released the first version in 1998, it has been the obvious alternative for those preferring open protocols over the proprietary networks pushed by ICQ, AOL, MSN and others. With big guys like Apple and Google using XMPP it began making noise in the corporate world. Now, with AOL (one of the biggest IM network provider) looking at XMPP, the road to world dominance seems clear ahead.

So what’s in it for us, the application developers? One example is keeping an eye on our applications. XMPP provides two perfectly fitting concepts:

  • Presence - what modules are up and running
  • Messages - communicate with your application

Let’s have a look at a simple example. Note this is a demo code, quality code might use things like clever things like exception handling and external configuration. But for now, this will do.

First of all, you need two Jabber/GTalk accounts. Go create them (if you don’t already have a few), make sure they are buddies and get back here… back already? That was fast.

Now, let’s write a simple OSGi bundle that sends its presence based on the state in its life cycle. Feel free to imagining how this would work with Spring or EJB life cycle if that’s tickles you more. OSGi has what is called a BundleActivator that keeps track of when a bundle is started and stopped (that’s InitializingBean and DisposableBean for all of you in Spring land). Let’s create an implementation.

import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;

public class Activator implements BundleActivator {

  @Override
  public void start(BundleContext context) throws Exception {
  }

  @Override
  public void stop(BundleContext context) throws Exception {
  }
}

Choose one of many XMPP clients available in Java. One of the easier is the Smack client from Jive^H^H^H^H Ignite Realtime, also available for all your Maven needs. Let’s create and connect one when our BundleActivator is created:

import org.jivesoftware.smack.ConnectionConfiguration;
import org.jivesoftware.smack.XMPPConnection;
import org.jivesoftware.smack.XMPPException;
import org.jivesoftware.smack.packet.Message;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;

public class Activator implements BundleActivator {

  private XMPPConnection conn;

  private String server = "jabber.org";
  private int port = 5222;
  private String userName = "myuser";
  private String password = "secret";
  private String receiver = "myotheruser@gmail.com";

  public Activator() throws XMPPException  {
    ConnectionConfiguration config = new ConnectionConfiguration(server, port);
    conn = new XMPPConnection(config);
  }

  ...
}

I did tell you this is demo-quality code, right. If this were production code you would certainly want to inject that connection into your code rather than hard coding it. Fine, now, let’s show when the bundle goes active or is stopped by indicating our presence:

import org.jivesoftware.smack.ConnectionConfiguration;
import org.jivesoftware.smack.XMPPConnection;
import org.jivesoftware.smack.XMPPException;
import org.jivesoftware.smack.packet.Message;
import org.jivesoftware.smack.packet.Presence;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;

public class Activator implements BundleActivator {

  private static final Presence AVAILABLE =
      new Presence(Presence.Type.AVAILABLE);
  private static final Presence UNAVAILABLE =
      new Presence(Presence.Type.UNAVAILABLE);

  ...

  @Override
  public void start(BundleContext context) throws Exception {
    conn.login(userName, password);
    conn.sendPacket(AVAILABLE);
  }

  @Override
  public void stop(BundleContext context) throws Exception {
    conn.sendPacket(UNAVAILABLE);
    conn.close();
  }
}

We’re almost done. Why not get a message that tells us that the bundle has started and all is good. This is the complete code listing:

import org.jivesoftware.smack.ConnectionConfiguration;
import org.jivesoftware.smack.XMPPConnection;
import org.jivesoftware.smack.XMPPException;
import org.jivesoftware.smack.packet.Message;
import org.jivesoftware.smack.packet.Presence;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;

public class Activator implements BundleActivator {

  private static final Presence AVAILABLE =
      new Presence(Presence.Type.AVAILABLE);
  private static final Presence UNAVAILABLE =
      new Presence(Presence.Type.UNAVAILABLE);

  private XMPPConnection conn;

  private String server = "jabber.org";
  private int port = 5222;
  private String userName = "myuser";
  private String password = "secret";
  private String receiver = "myotheruser@gmail.com";

  public Activator() throws XMPPException  {
    ConnectionConfiguration config = new ConnectionConfiguration(server, port);
    conn = new XMPPConnection(config);
  }

  @Override
  public void start(BundleContext context) throws Exception {
    conn.login(userName, password);
    conn.sendPacket(AVAILABLE);

    Message msg = new Message(receiver);
    msg.setBody("Bundle " + context.getBundle().getSymbolicName() + " started");
    conn.sendPacket(msg);
  }

  @Override
  public void stop(BundleContext context) throws Exception {
    Message msg = new Message(receiver);
    msg.setBody("Bundle " + context.getBundle().getSymbolicName() + " stopped");
    conn.sendPacket(msg);
    conn.sendPacket(UNAVAILABLE);
    conn.close();
  }
}

We’re done with coding. An OSGi bundle requires some extra attributes in the manifest but I won’t describe them in any detail here, go read any of the OSGi tutorials or the surprisingly readable specification if you want to understand them.

Bundle-Version: 1.0
Bundle-SymbolicName: se.callistaenterprise.osgi.xmpp
Bundle-Name: XMPP-Bundle
Bundle-Vendor: Callista
Bundle-ManifestVersion: 2
Bundle-Activator: se.callistaenterprise.osgi.xmpp.Activator
Import-Package: org.osgi.framework,javax.net.ssl
Bundle-ClassPath: .,lib/smack-2.2.1.jar

Now package all of that into a JAR, including the Smack JAR, and fire up your favorite OSGi implementation. You do have a a favorite one, right?

For me, that means the Apache Felix shell:

$ java -jar bin/felix.jar

Welcome to Felix.
=================

Enter profile name: xmpp

DEBUG: WIRE: 1.0 -> org.ungoverned.osgi.service.shell -> 1.0
DEBUG: WIRE: 1.0 -> org.osgi.service.startlevel -> 0
DEBUG: WIRE: 1.0 -> org.apache.felix.shell -> 1.0
DEBUG: WIRE: 1.0 -> org.osgi.framework -> 0
DEBUG: WIRE: 1.0 -> org.osgi.service.packageadmin -> 0
DEBUG: WIRE: 2.0 -> org.apache.felix.shell -> 1.0
DEBUG: WIRE: 2.0 -> org.osgi.framework -> 0
DEBUG: WIRE: 3.0 -> org.osgi.framework -> 0
DEBUG: WIRE: 3.0 -> org.osgi.service.obr -> 3.0
DEBUG: WIRE: 3.0 -> org.apache.felix.shell -> 1.0
->

Start the bundle by running “start 4” and you should see the Jabber user getting online and get a message saying that everything is okay. Stop it with “stop 4” and you should get a message and see it go offline. Imagining having that with all your components and not having to depend on that monitoring system or wading through log files.

-> install file:///path/to/project/xmpp-bundle-1.0.jar
Bundle ID: 4
-> start 4
# Some error messages from Smack that you can happily ignore
-> stop 4

For all you OSGi geeks, have a go at wrapping this code into a service that all your bundles can use. That’s what I do.

Seems useful? Got any ideas as to where you could use XMPP communicating with you?

Tack för att du läser Callistas blogg.
Hjälp oss att nå ut med information genom att dela nyheter och artiklar i ditt nätverk.

Kommentarer