Package org.eclipse.ecf.presence.bot.application

Source Code of org.eclipse.ecf.presence.bot.application.ChatRoomBotApplication

/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ecf.presence.bot.application;

import java.util.Iterator;
import java.util.Map;

import org.eclipse.ecf.internal.presence.bot.Activator;
import org.eclipse.ecf.presence.bot.IChatRoomBotEntry;
import org.eclipse.ecf.presence.bot.impl.ChatRoomBot;
import org.eclipse.equinox.app.IApplication;
import org.eclipse.equinox.app.IApplicationContext;

/**
* Application for getting bots defined in extension registry and running them.
* This application will continue to run indefinitely. Subclasses may be
* implemented as desired.
*/
public class ChatRoomBotApplication implements IApplication {

  protected Map getBotsFromExtensionRegistry() {
    return Activator.getDefault().getChatRoomBots();
  }

  public Object start(IApplicationContext context) throws Exception {

    Map bots = getBotsFromExtensionRegistry();

    for (Iterator it = bots.values().iterator(); it.hasNext();) {
      IChatRoomBotEntry entry = (IChatRoomBotEntry) it.next();
      // Create default chat room bot
      ChatRoomBot bot = new ChatRoomBot(entry);
      // connect
      bot.connect();
    }

    while (true) {
      try {
        Thread.sleep(100);
      } catch (InterruptedException ie) {
        break;
      }
    }

    return IApplication.EXIT_OK;
  }

  public void stop() {
  }

}
TOP

Related Classes of org.eclipse.ecf.presence.bot.application.ChatRoomBotApplication

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.