⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mainpanel.java

📁 java实现的P2P多agent中间件
💻 JAVA
字号:
/*****************************************************************
JADE - Java Agent DEvelopment Framework is a framework to develop 
multi-agent systems in compliance with the FIPA specifications.
Copyright (C) 2000 CSELT S.p.A. 

GNU Lesser General Public License

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation, 
version 2.1 of the License. 

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA  02111-1307, USA.
*****************************************************************/

package jade.tools.rma;

import java.io.*;
import java.util.*;

import java.awt.*;
import java.awt.datatransfer.*;
import java.awt.dnd.*;
import java.awt.event.*;

import javax.swing.*;
import javax.swing.tree.TreePath;
import javax.swing.event.TreeSelectionListener;
import javax.swing.event.TreeSelectionEvent;

import jade.core.*;
import jade.lang.acl.*;
import jade.gui.AgentTree;
import jade.gui.APDescriptionPanel;     
import jade.domain.FIPAAgentManagement.APDescription;
import jade.util.Logger;

/**
   
   @author Francisco Regi, Andrea Soracchi - Universita` di Parma
   @version $Date: 2005-11-03 10:14:43 +0100 (gio, 03 nov 2005) $ $Revision: 5809 $
 */
class MainPanel extends JPanel
    implements DropTargetListener, TreeSelectionListener
{

  private APDescriptionPanel APDescription_panel;
  AgentTree treeAgent;       // FIXME: It should be private
  private TablePanel table;
  private JScrollPane scroll;
  private JSplitPane pan;
  private JSplitPane pane;
  private MainWindow mainWnd;
  private PopupMouser popM;
  private rma myRma = null;
  
  //logging
  private static Logger logger = Logger.getMyLogger(MainPanel.class.getName());
  
        
  public MainPanel(rma anRMA, MainWindow mainWnd)
  {
   
    myRma = anRMA;
    table = new TablePanel();
    this.mainWnd = mainWnd;
    Font f;
    f = new Font("SanSerif",Font.PLAIN,14);
    setFont(f);
    setLayout(new BorderLayout(10,10));

    treeAgent = new AgentTree(f);
    new DropTarget(treeAgent.tree, this);
    
    //To allow single selection on the tree.
    //  treeAgent.tree.getSelectionModel().setSelectionMode
    //  (javax.swing.tree.TreeSelectionModel.SINGLE_TREE_SELECTION);
    
   
    pan = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,new JScrollPane(treeAgent.tree),table.createTable());
    pan.setContinuousLayout(true);

    add(pan);
   
    treeAgent.tree.addTreeSelectionListener(this);
    //popM=new PopupMouser(treeAgent.tree,treeAgent);
    //treeAgent.tree.addMouseListener(popM);

  }

  public void dragOver(java.awt.dnd.DropTargetDragEvent p1) {
      if(logger.isLoggable(Logger.FINEST))
      	logger.log(Logger.FINEST,"dragOver");
  }    

  public void dropActionChanged(java.awt.dnd.DropTargetDragEvent p1) {
      if(logger.isLoggable(Logger.FINEST))
      	logger.log(Logger.FINEST,"dropActionChanged");
  }
    
  public void dragEnter(java.awt.dnd.DropTargetDragEvent dragEvent)
  {
      if (treeAgent.tree.getSelectionCount() < 1) {
        // FIXME: This output should probably be put in a message dialog
        // or something.
        if(logger.isLoggable(Logger.FINEST))
        	logger.log(Logger.FINEST,"No agents selected!");
        dragEvent.rejectDrag();
      }
  }

  public void dragExit(java.awt.dnd.DropTargetEvent p1) {
      if(logger.isLoggable(Logger.FINEST))
      	logger.log(Logger.FINEST,"dragExit");
  }

  public void drop(java.awt.dnd.DropTargetDropEvent dropEvent)
  {
      boolean completionStatus = false;
      TreePath[] selectedItems = null;
      java.util.List fileList = null;

      try {
         selectedItems = treeAgent.tree.getSelectionPaths();
         if (selectedItems == null) {
            // FIXME: This output should probably be put in a message dialog
            // or something.
            if(logger.isLoggable(Logger.WARNING))
            	logger.log(Logger.WARNING,"No agents selected!");
             dropEvent.rejectDrop();
             dropEvent.dropComplete(completionStatus);
             return;
         }

          dropEvent.acceptDrop(DnDConstants.ACTION_COPY);
          Transferable xferInfo = dropEvent.getTransferable();

          fileList = (java.util.List)(xferInfo.getTransferData(DataFlavor.javaFileListFlavor));
            
          completionStatus = true;
      }
      catch (UnsupportedFlavorException exc) {
          completionStatus = false;
      }
      catch (IOException exc) {
          // FIXME: This output should probably be put in a message dialog
          // or something.
          if(logger.isLoggable(Logger.WARNING))
          	logger.log(Logger.WARNING,"DragAndDrop operation failed: " + exc);

          completionStatus = false;
      }
      finally {
          dropEvent.dropComplete(completionStatus);
      }


     if ( (fileList != null) && (selectedItems != null) )
     {
        Iterator fileItor = fileList.iterator();
        ACLParser aclParser = ACLParser.create();
        while (fileItor.hasNext())
        {
            try {
              java.io.File f = (java.io.File)(fileItor.next());
              FileReader aclMsgFile = new FileReader(f);
              ACLMessage msg = aclParser.parse(aclMsgFile);

              msg.clearAllReceiver();
              msg.clearAllReplyTo();
              msg.setSender(myRma.getAID());

              for(int i=0; i<selectedItems.length; i++)
              {
                  Object lastPath = selectedItems[i].getLastPathComponent();
                    if (lastPath instanceof AgentTree.Node) {
                      AgentTree.Node node = (AgentTree.Node)lastPath;
                      AID recipient = new AID(node.getName(), AID.ISGUID);
                      msg.addReceiver(recipient);
                    }
                } //~ for(int i=0;i<numPaths;i++)

              myRma.send(msg);
            }
            catch (IOException exc) {
                // FIXME: This output should probably be put in a message dialog
                // or something.
               if(logger.isLoggable(Logger.WARNING))
               	logger.log(Logger.WARNING,"Unable to send message: " + exc);
            }
            catch (ParseException exc) {
                // FIXME: This output should probably be put in a message dialog
                // or something.
                if(logger.isLoggable(Logger.WARNING))
                	logger.log(Logger.WARNING,"Unable to send message: " + exc);
            }
            catch (Exception exc) {
                // FIXME: This output should probably be put in a message dialog
                // or something.
                if(logger.isLoggable(Logger.WARNING))
                	logger.log(Logger.WARNING,"Unable to send message: " + exc);
            }
            catch (Error exc) {
                // FIXME: This output should probably be put in a message dialog
                // or something.
                if(logger.isLoggable(Logger.WARNING))
                	logger.log(Logger.WARNING,"Unable to send message: " + exc);
            }
            catch (Throwable exc) {
                // FIXME: This output should probably be put in a message dialog
                // or something.
                if(logger.isLoggable(Logger.WARNING))
                	logger.log(Logger.WARNING,"Unable to send message: " + exc);
            }
        } //~ while (fileItor.hasNext())
     } //~ if (selectedItems != null)

  } //END drop(dropEvent)

 public void  valueChanged(TreeSelectionEvent e) {
   TreePath paths[] = treeAgent.tree.getSelectionPaths();
   Object[] relCur;
   
   if (paths!=null) {
     
     java.util.ArrayList agentPaths = new java.util.ArrayList();
     for(int i=0; i < paths.length;i++)
     {
        relCur = paths[i].getPath();
        for(int j=0;j<relCur.length;j++)
        {
                if (relCur[j] instanceof AgentTree.AgentNode)
                //to display in the table only the agent.
                        agentPaths.add(paths[i]);       
          else
          if (relCur[j] instanceof AgentTree.SuperContainer)
                {//show the APDescription in the TextArea
                }
        }
     }
     
     //table.setData(paths);
     TreePath[] agents = new TreePath [agentPaths.size()];
     for(int i= 0;i<agentPaths.size(); i++)
        agents[i]=(TreePath)agentPaths.get(i);
     table.setData(agents);
   }
 }


  public void adjustDividersLocation() {
    //int rootSize = pane.getDividerLocation(); // This is the height of a single tree folder
    //pane.setDividerLocation(7*rootSize); // The initial agent tree has 6 elements; one more empty space
    pan.setDividerLocation(300);
   
    
  }

  public Dimension getPreferredSize() {
    return new Dimension(200, 200);
  }
  
  
  
  
} 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -