Spark插件開發完全入門手冊,多級組織架構初步(原創)


前言:Openfire +Spark 是實時的基於XMPP協議的開源即時消息傳輸平台,是原來的Jive Messenger,其靈活的插件開發架構深受開發者的喜愛。

問題:Spark只有單一組,沒有多級組織架構的分組,實際企業應用中,只要是稍微有些人數,就難以應對了,特別是需要和域進行同步的情況,為此,我們首先要在服務器端構建同步AD域組織架構的數據庫,並且是確保有版本控制功能(方便批次同步),客戶端同步最新的版本,獲取組織架構和用戶的改變,形成樹形的組織架構,類似下圖:

為此,我們需要開發Spark插件來實現這一功能。通過其自身的工廠類可以非常容易實現。

Spark的工廠類和監聽類,抄自官網:

  • Managers - Managers allow for better (lazy) loading of particular areas within the Spark client as well as providing access points to the system. Some of the more relevant managers are:
    • SparkManager -- Acts as the central manager for all of Spark. You use this manager to get instances of ChatManager, SessionManager, SoundManager, and UserManager.
    • ChatManager -- Handles registration of most chat listeners and filters, as well as creation and retrieval of chat rooms. It is also used to retrieve the UI of the ChatFrame.
    • SessionManager -- Contains the information about the current session, such as the server connected to, the handling of connection errors and notification of personal presence changes.
    • SoundManager -- Used to play sounds.
  • Event Handlers -- Spark contains numerous listeners and handlers to allow more pluggability into the Spark client. Some of the more common listeners and handlers are:
    • ChatRoomListener (and ChatRoomListenerAdapter) -- Allows the plugin to listen for chat rooms being opened, closed and activated. You would generally use this to customize individual chat rooms.
    • MessageListener -- Allows for notification when a message has been received or sent.
    • ContactGroupListener -- Allows for notification of changes to a Contact Group.
    • ContactListListener -- Allows for notification of changes to the Contact List.
    • FileTransferListener -- Allows you to intercept File transfers.
    • ContextMenuListener -- Allows for the addition or removal of actions or menu items to right-click (context menu) popups.
    • PresenceListener -- Allows for notification when Spark presence changes.
    • ContactItemHandler -- Allows the plugin to control the effects of presence changes within a ContactItem and the associated invoke call.
  • Components -- Spark contains many Swing components that will regularly be used during the creation of your plugin. Some of the more commonly used components are :
    • MainWindow -- The frame containing the Contact List. You use MainWindow to add new tabs, menu items, or force focus.
    • ChatRoom -- The base abstract class of all chat rooms within Spark. Known implementations are ChatRoomImpl and GroupChatRoom.
    • ChatArea -- The base chat viewer for both the TranscriptWindow and ChatInputEditor.
    • ContactList -- The ContactList UI in Spark.
    • ChatRoomButton -- The button that should be used to conform to the look and feel of other buttons within a ChatRoom.

第一步,先要了解Spark的面板結構,如果我們要在下方加頁簽,位於WorkspacePane,那么我們就必須通過SparkManager工廠類獲取Workspace,然后使用Add方法。

 

第二步,開始寫代碼,首先我們應該在工程的plugins目錄建立以下的結構:

代碼放置在src,然后先配置plugin.xml。注意,class節非常關鍵,必須正確填寫!

<!-- Define your plugin -->
<plugin>
    <name>Organizational Plugin</name>
    <version>1.0</version>
    <author>WangXin</author>
    <homePage></homePage>
    <email>WangXin@XYZ.com</email>
    <description></description>
    <class>com.jivesoftware.spark.plugin.ExamplePlugin</class>
    <minSparkVersion>2.0.0</minSparkVersion>
</plugin>

然后新建ExamplePlugin.java文件,增加一些必要的引用:

package com.jivesoftware.spark.plugin;

import javax.swing.JButton;
import javax.swing.JOptionPane;
import javax.swing.JTabbedPane;
import java.awt.*;

import javax.swing.*;
import javax.swing.tree.*;

import org.jivesoftware.spark.SparkManager;
import org.jivesoftware.spark.Workspace;
import org.jivesoftware.spark.component.tabbedPane.SparkTabbedPane;
import org.jivesoftware.spark.plugin.Plugin;

 

然后,開始編寫插件類,最重要的事情就是重寫initialize方法,我們可以做很多事情,比如控件生成、數據庫連接、IO處理,等等,

在這里簡單的例子里,我們定義了一個JTree,然后放置在由工廠生成的SparkTabbedPane容器里。

public class ExamplePlugin implements Plugin{

    @Override
    public void initialize() {

    ExamplePreference mypreference = new ExamplePreference();
    SparkManager.getPreferenceManager().addPreference(mypreference);

    JOptionPane.showMessageDialog(null, "Plugin has been successfully loaded");
    
    // 通過SparkManager獲取Workspace
   Workspace workspace = SparkManager.getWorkspace();

   // 獲取父容器,並添加Tree
   SparkTabbedPane tabbedPane = workspace.getWorkspacePane();
   tabbedPane.addTab("\u7EC4\u7EC7\u67B6\u6784", null, InitTree());
    }
 
   
   public JTree InitTree()
   {
 
      // 定義Tree節點對象

          DefaultMutableTreeNode root = new DefaultMutableTreeNode("\u96C6\u56E2\u516C\u53F8");
          DefaultMutableTreeNode country = new DefaultMutableTreeNode("\u7F8E\u56FD\u5206\u516C\u53F8");
          root.add(country);
          DefaultMutableTreeNode state = new DefaultMutableTreeNode("IT\u516C\u53F8");
          country.add(state);
          DefaultMutableTreeNode city = new DefaultMutableTreeNode("\u5FAE\u8F6F");
          state.add(city);
          city = new DefaultMutableTreeNode("IBM");
          state.add(city);
          state = new DefaultMutableTreeNode("\u670D\u52A1\u516C\u53F8");
          country.add(state);
          city = new DefaultMutableTreeNode("P&G");
          state.add(city);
          country = new DefaultMutableTreeNode("\u4E2D\u56FD\u516C\u53F8");
          root.add(country);
          state = new DefaultMutableTreeNode("\u4E1A\u52A1\u4E00\u90E8");
          country.add(state);
          city = new DefaultMutableTreeNode("\u4E1A\u52A1\u4E8C\u90E8");
          state.add(city);

      // 構建樹形架構

      JTree tree = new JTree(root);

      
      return tree;
   }


    

    @Override
    public void shutdown() {
    JOptionPane.showMessageDialog(null, "Plugin has been shutdown");    
    }

    @Override
    public boolean canShutDown() {
    
    return false;
    }

    @Override
    public void uninstall() {
  
    JOptionPane.showMessageDialog(null, "Plugin has been uninstalled");
    
    }

}

 

 

其中,用到了一個接口實現類ExamplePreference,實現了Preference接口,用於系統配置。

package com.jivesoftware.spark.plugin;

import javax.swing.Icon;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JPanel;

import org.jivesoftware.spark.preference.Preference;

public class ExamplePreference implements Preference{

    @Override
    public String getTitle() {
    return "Example";
    }

    @Override
    public Icon getIcon() {
    return null;
    }

    @Override
    public String getTooltip() {
    return "tooltip of my preference";
    }

    @Override
    public String getListName() {
    return "Example";
    }

    @Override
    public String getNamespace() {
    return "EXAMPLE";
    }

    @Override
    public JComponent getGUI() {
    
    JPanel panel = new JPanel();
    panel.add(new JButton("Welcome to my Preferences"));
    return panel;
    // you would need to add your own JComponent class here
    }

    @Override
    public void load() {
    //initizialize the gui maybe
    // or load saved preferences
    
    }

    @Override
    public void commit() {
    // save changes in the preference gui
    }

    @Override
    public boolean isDataValid() {
    return false;
    }

    @Override
    public String getErrorMessage() {
    return "EEERROOOOORRR";
    }

    @Override
    public Object getData() {
    return null;
    }

    @Override
    public void shutdown() {
    // do something
    }

}

 

 

然后,還需要寫好build.xml,以方便Ant生成jar包,都進入敏捷時代了,我們必須要用先進生產工具。

<?xml version="1.0" encoding="UTF-8"?>
<project name="ExamplePlugin" default="release" basedir="..">
 <property name="src.dir" value="src" />
 <property name="dest.dir" value="bin" />
 <property name="lib.dir" value="lib" />
 <property name="im.path" value="lib/dist" />


 <property name="spark.home" value="http://www.cnblogs.com/../target/build/lib" />


 <path id="lib.classpath">
  <fileset dir="${spark.home}" includes="**/*.jar, **/*.zip" />
 </path>

 <target name="clean">
  <delete dir="${dest.dir}" />
  <delete dir="${lib.dir}" />
  <delete dir="${im.path}" />
 </target>

 <target name="init" depends="clean">
  <mkdir dir="${dest.dir}" />
  <mkdir dir="${lib.dir}" />
  <mkdir dir="${im.path}" />
 </target>

 <target name="build" depends="init">
  <javac srcdir="${src.dir}" destdir="${dest.dir}" classpathref="lib.classpath" target="1.6" />
 </target>

 <!-- 最重要的是這里,打兩次包 -->
 <target name="jar" depends="build">
  <jar jarfile="${lib.dir}/ExamplePlugin.jar" basedir="${dest.dir}" />
  <jar jarfile="${im.path}/ExamplePlugin.jar">
   <fileset dir=".">
    <include name="lib/*.jar" />
   </fileset>
   <fileset dir=".">
    <include name="plugin.xml" />
   </fileset>
  </jar>
 </target>
 <target name="release" depends="jar">
 
 </target>
</project>

 

 

接下來,使用Ant生成Jar包,雙擊release自動完成,Jar包目錄在X:\workspace\spark_2_6_XX\src\plugins\sample\lib\dist。

最后,將jar包保存進Spark的安裝目錄的plugins目錄里,Spark在每次啟動的時候就能自動認出插件了。

是不是很簡單?

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM