Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

ECF/Bot Framework

< ECF

The Bot Framework was introduced as a new API in ECF's 1.0.0M6 release. It interoperated with the presence API which allowed it to be leveraged as both a typical chatroom-oriented bot in addition to one that was based around instant messaging. A bot can easily be created with just an implementation of an interface in addition to the declaration of extension points.

The tutorial below will show you just how easy it is to create a bot for IRC. This tutorial assumes the reader has some basic knowledge about plug-in development. This tutorial was tested on Linux using Sun's 1.4.2.13 JDK, the 3.3M6 build of the Eclipse SDK, and code from Eclipse.org's HEAD branch.

Requirements

As regular expression pattern matching is used, a Java runtime environment of 1.4.2 or higher is required.

The Bot Framework leverages code that is new to Equinox in Eclipse 3.3, so a recent milestone must be installed for this example to work.

ECF Plug-ins

  • org.eclipse.ecf (core ECF APIs)
  • org.eclipse.ecf.core.identity (identity and namespace APIs)
  • org.eclipse.ecf.presence (presence APIs for monitoring messages and presence status)
  • org.eclipse.ecf.presence.bot (bot API)
  • org.eclipse.ecf.provider.irc (IRC implementation and ECF bridging code)

Please see ECF's downloads page to find out how to retrieve these plug-ins.

Project Setup

Dependencies

  1. Create a Plug-in Project like how you normally would. Since this is a bot that will be run in headless mode, we do not need any UI components. You do not even need an activator class.
  2. Open the MANIFEST.MF file and go to the 'Dependencies' tab.
  3. Add org.eclipse.ecf, org.eclipse.ecf.presence, and org.eclipse.ecf.presence.bot as a 'Required Plug-in'.
  4. Now add org.eclipse.core.runtime as an 'Imported Package'.

MANIFEST.MF

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Geir Plug-in
Bundle-SymbolicName: org.eclipse.ecf.example.geir;singleton:=true
Bundle-Version: 1.0.0
Require-Bundle: org.eclipse.ecf,
 org.eclipse.ecf.presence,
 org.eclipse.ecf.presence.bot
Import-Package: org.eclipse.core.runtime

Extensions

  1. Open the Extensions tab.
  2. Add the org.eclipse.ecf.presence.bot.chatRoomRobot and the org.eclipse.ecf.presence.bot.chatRoomMessageHandler extension point.
  3. Select the org.eclipse.ecf.presence.bot.chatRoomRobot extension.
  4. Fill in something unique for your 'id'. org.eclipse.ecf.example.bot.geir2
  5. Fill in ecf.irc.irclib for your 'containerFactoryName'.
  6. For the 'connectId', select an IRC server of your choice and a name for the bot. irc://geir2@irc.freenode.net
  7. For the 'chatRoom' field, pick the channel that you want your bot to join upon successful connection to the server above. #eclipse
  8. Now select the org.eclipse.ecf.presence.bot.chatRoomMessageHandler extension point.
  9. For your 'id', copy the same 'id' that you filled in above. org.eclipse.ecf.example.bot.geir2
  10. In 'filterExpression', enter a regular expression that should be matched for parsing purposes for your bot. (~bug[0-9]*)
  11. Click on the 'class*' hyperlink and then create a new class that implements the 'org.eclipse.ecf.presence.bot.IChatRoomMessageHandler' interface. For this example, I will assume that your class's name is Geir2Bot under the org.eclipse.ecf.example.bot package..

plugin.xml

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
   <extension
         point="org.eclipse.ecf.presence.bot.chatRoomMessageHandler">
      <handler
            chatRoomRobotId="org.eclipse.ecf.example.bot.geir2"
            class="org.eclipse.ecf.example.bot.Geir2Bot"
            filterExpression="(~bug[0-9]*)">
      </handler>
   </extension>
   <extension
         point="org.eclipse.ecf.presence.bot.chatRoomRobot">
      <chatRoomRobot            
            connectId="irc://geir2@irc.freenode.net"
            containerFactoryName="ecf.irc.irclib"
            id="org.eclipse.ecf.example.bot.geir2"
            >
     <chatRooms
               name="#eclipse">
         </chatRooms>    
      </chatRoomRobot>
   </extension>
</plugin>

Writing the Code

Interface Implementation

  1. Open the Geir2Bot class that you have created.
  2. Since we want our bot to be able to say something, we need to retrieve an interface that will provide us with such a functionality.
  3. Add a field to the class of type IChatMessageSender.
  4. We will retrieve our instance in the preChatRoomConnect(IChatRoomContainer, ID) method. This method will be called right before our bot joins the channel (#eclipse in our case). You can retrieve an instance of an IChatMessageSender by calling getChatRoomMessageSender() on the provided IChatRoomContainer instance.
  5. Now that our bot has a mechanism for replying, we should write some code to parse the messages that the bot receives so that it can give a correct response. To get the string that's been said, use the getMessage() method from the IChatRoomMessage interface that's passed into the handleRoomMessage(IChatRoomMessage) method.
  6. Our regular expression of (~bug[0-9]*) implies that any string beginning with ~bug followed by any number of digits will be a valid input for our bot to read. So let's add some string handling code to route people to Eclipse's bugzilla when they type something like ~bug150000 or ~bug180078.
  7. To send a reply to the IRC channel, simply use IChatRoomMessageSender's sendMessage(String) method. This method will throw an ECFException, but given this simple scenario, we won't bother to handle it.

org.eclipse.ecf.example.bot.Geir2Bot

package org.eclipse.ecf.example.bot;
 
import org.eclipse.ecf.core.IContainer;
import org.eclipse.ecf.core.identity.ID;
import org.eclipse.ecf.core.util.ECFException;
import org.eclipse.ecf.presence.bot.IChatRoomBotEntry;
import org.eclipse.ecf.presence.bot.IChatRoomMessageHandler;
import org.eclipse.ecf.presence.chatroom.IChatRoomContainer;
import org.eclipse.ecf.presence.chatroom.IChatRoomMessage;
import org.eclipse.ecf.presence.chatroom.IChatRoomMessageSender;
 
public class Geir2Bot implements IChatRoomMessageHandler {
 
	private IChatRoomMessageSender sender;
 
	public void handleRoomMessage(IChatRoomMessage message) {
		// use substring 1 to just truncate the opening tilda (~)
		String msg = message.getMessage().substring(1);
		try {
			if (msg.equals("bug")) { //$NON-NLS-1$
				// if no number was provided, just send them to bugzilla
				sender.sendMessage("https://bugs.eclipse.org/bugs/"); //$NON-NLS-1$
			} else {
				// otherwise, give the person a direct link to the bug
 				sender.sendMessage("https://bugs.eclipse.org/bugs/" //$NON-NLS-1$
						+ "show_bug.cgi?id=" + msg.substring(3)); //$NON-NLS-1$
			}
		} catch (ECFException e) {
			e.printStackTrace();
		}
	}
 
	public void init(IChatRoomBotEntry robot) {
		// nothing to do
	}
 
	public void preChatRoomConnect(IChatRoomContainer roomContainer, ID roomID) { 
		sender = roomContainer.getChatRoomMessageSender();
	}
 
	public void preContainerConnect(IContainer container, ID targetID) {
		// nothing to do
	}
 
}

Running the Example

  1. Open the 'Run' dialog and then right-click on 'Eclipse Application' and select 'New'.
  2. In the 'Main' tab, from the combo drop down in the 'Program to Run' section, select 'Run an application:' and choose org.eclipse.ecf.presence.bot.chatRoomRobot.
  3. Click on the Plug-ins tab.
  4. From the top, select plug-ins selected below only from the drop down box.
  5. Pick the plug-in you created (in the example, this was org.eclipse.ecf.example.geir) and org.eclipse.ecf.provider.irc.
  6. Click on the Add Required Plug-ins button on the right and then hit Run.
  7. Moments later, your bot should appear in the server and channel that you specified in the plugin.xml file.
* geir2 (n=geir2@bas3-kitchener06-1096650252.dsl.bell.ca) has joined #eclipse
<rcjsuen> ~bug
<geir2> https://bugs.eclipse.org/bugs/
<rcjsuen> ~bug76759
<geir2> https://bugs.eclipse.org/bugs/show_bug.cgi?id=76759

Tip: If you get an error about "ContainerTypeDescription cannot be null" you probably forgot to select the org.eclipse.ecf.provider.irc plugin in step 5 above!

Working Demo

A working and well-featured implementation is currently being run on Eclipse-related channels on freenode.

Conclusion

I hope you learned enough from this tutorial to be ready to go out and write your own bots using ECF's bot framework. If you have any questions, please do not hesitate to on the newsgroup. For questions, comments, inquiries, and anything else to the development of the framework or ECF in general, please join the ecf-dev mailing lists.

Eclipse Communication Framework
API
API DocumentationJavadocProviders
Development
Development GuidelinesIntegrators Guide

Back to the top