Skip to content
Snippets Groups Projects
LocalAndRemoteFileManager.java 21 KiB
Newer Older
tjc's avatar
tjc committed
/********************************************************************
*
*  This library is free software; you can redistribute it and/or
*  modify it under the terms of the GNU Library General Public
*  License as published by the Free Software Foundation; either
*  version 2 of the License, or (at your option) any later version.
*
*  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
*  Library General Public License for more details.
*
*  You should have received a copy of the GNU Library 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.
*
*  Copyright (C) Genome Research Limited
*
********************************************************************/

package uk.ac.sanger.artemis.components.filetree;

tjc's avatar
tjc committed
import uk.ac.sanger.artemis.components.database.DatabaseEntrySource;
import uk.ac.sanger.artemis.components.database.DatabaseJPanel;
import uk.ac.sanger.artemis.j2ssh.SshLogin;
import uk.ac.sanger.artemis.j2ssh.SshFileManager;
tjc's avatar
tjc committed
import uk.ac.sanger.artemis.util.StringVector;
import uk.ac.sanger.artemis.Options;

tjc's avatar
tjc committed
import javax.swing.table.TableColumn;
tjc's avatar
tjc committed
import javax.swing.*;
tjc's avatar
tjc committed
import java.io.File;
import java.io.FileFilter;
import java.awt.event.*;
import java.awt.*;
import java.util.Properties;
import java.util.Enumeration;
import java.util.Vector;
import javax.swing.border.Border;
tjc's avatar
tjc committed

public class LocalAndRemoteFileManager extends JFrame
{

tjc's avatar
tjc committed
  /***/
  private static final long serialVersionUID = 1L;
  private JScrollPane remoteTree;
  private SshJTreeTable sshtree;
  private JSplitPane treePane = null;
  private DatabaseEntrySource entry_source;
tjc's avatar
tjc committed
  public static JCheckBoxMenuItem lazyLoad = 
    new JCheckBoxMenuItem("Lazy load feature data", false);
  
  public static JCheckBoxMenuItem domainLoad = 
    new JCheckBoxMenuItem("Display protein domains", false);
tjc's avatar
tjc committed
  public LocalAndRemoteFileManager(JFrame frame)
  {
    this(frame,getArtemisFilter());
  }

  /**
  *
  * File Manager Frame
  * @param frame  parent frame
  * @param filter file name filter
tjc's avatar
tjc committed
  *
  */
  public LocalAndRemoteFileManager(JFrame frame, FileFilter filter)
  {
tjc's avatar
tjc committed
    super();
tjc's avatar
tjc committed

    final JPanel localPanel = new JPanel(new BorderLayout());
tjc's avatar
tjc committed
    
    final SshLogin ssh_login = new SshLogin();
    JTreeTable ftree = new JTreeTable(new FileSystemModel(getLocalDirectories(), 
                                      filter, this));
    JScrollPane localTree = new JScrollPane(ftree);
    localTree.getViewport().setBackground(Color.white);
    localPanel.add(localTree,BorderLayout.CENTER);

    final JLabel local_status_line = getStatusLabel("LOCAL");
    localPanel.add(local_status_line,BorderLayout.NORTH);

    final JPanel remotePanel = new JPanel(new BorderLayout());

    //
    final Dimension screen    = Toolkit.getDefaultToolkit().getScreenSize();
    final Dimension panelSize = new Dimension((int)(screen.getWidth()/3),
tjc's avatar
tjc committed
                                          (int)(screen.getHeight()/4));
    String remote_name = "";
    final JLabel remote_status_line = getStatusLabel("");

    if(FileList.ssh_client == null)  // if no connection etablished yet
tjc's avatar
tjc committed
    {
      final Box bdown = Box.createVerticalBox();
      JButton connect = new JButton("Connect");
      connect.addActionListener(new ActionListener()
      {
        public void actionPerformed(ActionEvent e)
        {
          login(remotePanel, bdown, ssh_login, panelSize, 
                local_status_line, remote_status_line);
        }
      });
 
      bdown.add(ssh_login.getLogin());
      // listen to passwd field for return press
      JPasswordField pwf = ssh_login.getJPasswordField();
      pwf.addActionListener(new ActionListener()
      {
        public void actionPerformed(ActionEvent e)
        {
          login(remotePanel, bdown, ssh_login, panelSize, 
                local_status_line, remote_status_line); 
        }
      });

      bdown.add(connect);
tjc's avatar
tjc committed
      /*int ypos = panelSize.height-connect.getPreferredSize().height;
      if(ypos>0)
tjc's avatar
tjc committed
        bdown.add(Box.createVerticalStrut(ypos/2));*/
      bdown.add(Box.createVerticalGlue());
      
      remotePanel.add(bdown, BorderLayout.SOUTH);
      remotePanel.setPreferredSize(panelSize);
    }
    else
    {
      FileList flist = new FileList();
      setRemoteTree(flist, sshtree, remoteTree, remotePanel,
                    panelSize, remote_status_line);
    }
tjc's avatar
tjc committed

    remote_status_line.setText("REMOTE "+remote_name);
    remotePanel.add(remote_status_line,BorderLayout.NORTH);
    treePane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
                                 localPanel,remotePanel);
tjc's avatar
tjc committed
    treePane.setOneTouchExpandable(true);
    
    JPanel pane = (JPanel)getContentPane();
    pane.setLayout(new BorderLayout());
tjc's avatar
tjc committed
    DbConnectionThread dbthread = null;
tjc's avatar
tjc committed
    if(System.getProperty("chado") != null)
    { 
      setTitle("Database and File Manager");
      entry_source = new DatabaseEntrySource();
tjc's avatar
tjc committed
      
      boolean promptUser = true;
      if(System.getProperty("read_only") != null)
      {
        promptUser = false;
        entry_source.setReadOnly(true);
      }
      
      if(!entry_source.setLocation(promptUser))
tjc's avatar
tjc committed
      JLabel label  = new JLabel(" Database Loading...");
      JPanel dbPane = new JPanel();
      dbPane.add(label);
      dbPane.setBackground(Color.white);
tjc's avatar
tjc committed
      dbPane.setPreferredSize(panelSize);
      
      JSplitPane mainSplit = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
                                            dbPane, treePane);
tjc's avatar
tjc committed
      dbthread = new DbConnectionThread(mainSplit, panelSize, 
                                        entry_source, dbPane);
tjc's avatar
tjc committed
      dbthread.start();
tjc's avatar
tjc committed

tjc's avatar
tjc committed
      treePane.setDividerLocation((int)(screen.getHeight()/4));
      mainSplit.setOneTouchExpandable(true);
      mainSplit.setDividerLocation((int)(screen.getHeight()/4));
      pane.add(mainSplit, BorderLayout.CENTER);
    }
    else
    {
      setTitle("File Manager");
      pane.add(treePane, BorderLayout.CENTER);
      treePane.setDividerLocation((int)(screen.getHeight()/4));
    }
    setJMenuBar(makeMenuBar(pane,ftree,sshtree,localPanel,
tjc's avatar
tjc committed
                            remotePanel,treePane,panelSize,dbthread));
    localPanel.add(getFileFileterComboBox(ftree), BorderLayout.SOUTH);
tjc's avatar
tjc committed

    localTree.setPreferredSize(panelSize);
tjc's avatar
tjc committed

    // Set the column width
    int width = panelSize.width;
    setColumnWidth(ftree, width);
tjc's avatar
tjc committed

tjc's avatar
tjc committed
  
    int yloc = (int)((screen.getHeight()-getHeight())/2);
    setLocation(0,yloc);  
    setVisible(true);
  }
tjc's avatar
tjc committed

  private void login(JPanel remotePanel, Box bdown, SshLogin ssh_login,
                     Dimension panelSize, JLabel local_status_line,
                     JLabel remote_status_line)
  {
    setCursor(new Cursor(Cursor.WAIT_CURSOR));

    final SshFileManager ssh_fm;
    try
    {
      ssh_fm = new SshFileManager(ssh_login);
    }
    catch(NullPointerException npe)
    {
      setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
      JOptionPane.showMessageDialog(LocalAndRemoteFileManager.this,
                                    "Check login details and try again.",
                                    "Failed Login", JOptionPane.ERROR_MESSAGE);
      return;
    }
    FileList flist = new FileList(ssh_fm);
    remotePanel.remove(bdown);
    int divider_loc = treePane.getDividerLocation();
    setRemoteTree(flist, sshtree, remoteTree, remotePanel,
                  panelSize, remote_status_line);

    if(treePane.getOrientation() == JSplitPane.HORIZONTAL_SPLIT)
      treePane.setBottomComponent(remotePanel);
    else
      treePane.setRightComponent(remotePanel);

    treePane.setDividerLocation(divider_loc);

    setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
  }
tjc's avatar
tjc committed

  private void setRemoteTree(final FileList flist, SshJTreeTable sshtree, 
                          JScrollPane remoteTree, JPanel remotePanel,
                          final Dimension panelSize, final JLabel remote_status_line)
  {
    sshtree = new SshJTreeTable(new FileSystemModel( 
                      getRemoteDirectories(flist.pwd()), LocalAndRemoteFileManager.this),
                      LocalAndRemoteFileManager.this);
    remoteTree = new JScrollPane(sshtree);
    remoteTree.setPreferredSize(panelSize);
    remoteTree.getViewport().setBackground(Color.white);
    remotePanel.add(remoteTree,BorderLayout.CENTER);

    String remote_name = SshLogin.getHostname();
    if(!SshLogin.getPort().equals(""))
      remote_name = remote_name + ":" + SshLogin.getPort();
    remote_status_line.setText("REMOTE "+remote_name);
    setColumnWidth(sshtree, panelSize.width);
  }
  private void setColumnWidth(JTable table, int width)
  {
    TableColumn col0 = table.getColumnModel().getColumn(0);
    col0.setPreferredWidth( (int)(width*0.60) );
tjc's avatar
tjc committed

    TableColumn col1  = table.getColumnModel().getColumn(1);
    col1.setPreferredWidth( (int)(width*0.12) );
tjc's avatar
tjc committed

    TableColumn col2 = table.getColumnModel().getColumn(2);
    col2.setPreferredWidth( (int)(width*0.28) );
tjc's avatar
tjc committed
  }

  /**
  *
  * Create a status JLabel with bevelled border
  *
  */
  private JLabel getStatusLabel(String status)
  {
    final JLabel status_line = new JLabel(status);
    Border loweredbevel = BorderFactory.createLoweredBevelBorder();
    Border raisedbevel = BorderFactory.createRaisedBevelBorder();
    Border compound = BorderFactory.createCompoundBorder(raisedbevel,loweredbevel);
    status_line.setBorder(compound);

    final FontMetrics fm =
      this.getFontMetrics(status_line.getFont());
    final int font_height = fm.getHeight()+10;

    status_line.setMinimumSize(new Dimension(100, font_height));
    status_line.setPreferredSize(new Dimension(100, font_height));
    return status_line;
  }

  /**
  *
  * Look in j2ssh.properties for local directories.
  *
  */
  private File[] getLocalDirectories()
  {
    final Properties settings = SshLogin.getProperties();
    Enumeration enum_prop = settings.propertyNames();
    Vector dirs = new Vector();

    dirs.add(new File(System.getProperty("user.home")));
    dirs.add(new File(System.getProperty("user.dir")));

    while(enum_prop.hasMoreElements())
    {
      final String property = (String)enum_prop.nextElement();
      File f = new File(settings.getProperty(property));
      if(property.startsWith("localdir") && f.exists())
        dirs.add(f);
    }

    File fdirs[] = new File[dirs.size()];
    for(int i=0; i<dirs.size(); i++)
      fdirs[i] = (File)dirs.get(i);

    return fdirs;
  }

  /**
  *
  * Look in j2ssh.properties for remote directories.
  *
  */
  private String[] getRemoteDirectories(String pwd)
  {
    final Properties settings = SshLogin.getProperties();
    Enumeration enum_prop = settings.propertyNames();
    Vector dirs = new Vector();
    dirs.add(pwd);
    while(enum_prop.hasMoreElements())
    {
      final String property = (String)enum_prop.nextElement();
      if(property.startsWith("remotedir"))
        dirs.add(settings.getProperty(property));
    }

    String sdirs[] = new String[dirs.size()];
    for(int i=0; i<dirs.size(); i++)
      sdirs[i] = (String)dirs.get(i);

    return sdirs;
  }

tjc's avatar
tjc committed
  protected JComboBox getFileFileterComboBox(final JTreeTable ftree)
tjc's avatar
tjc committed
  {
    String[] filters = { "Artemis Files", "Sequence Files", 
                         "Feature Files", "All Files" };
    final JComboBox comboFilter = new JComboBox(filters);
    comboFilter.addActionListener(new ActionListener()
    {
      public void actionPerformed(ActionEvent e)
      {
tjc's avatar
tjc committed
        FileSystemModel model = (FileSystemModel)(ftree.getTree().getModel());
tjc's avatar
tjc committed
        String select = (String)comboFilter.getSelectedItem(); 
        if(select.equals("Artemis Files"))
tjc's avatar
tjc committed
          model.setFilter(getArtemisFilter());
tjc's avatar
tjc committed
        else if(select.equals("Sequence Files"))
tjc's avatar
tjc committed
          model.setFilter(getSequenceFilter());
tjc's avatar
tjc committed
        else if(select.equals("Feature Files"))
tjc's avatar
tjc committed
          model.setFilter(getFeatureFilter());
tjc's avatar
tjc committed
        else if(select.equals("All Files"))
        {
tjc's avatar
tjc committed
          model.setFilter(new FileFilter()
tjc's avatar
tjc committed
          {
            public boolean accept(File pathname)
            {
              if(pathname.getName().startsWith("."))
                return false;
              return true;
            }
          });
        }
tjc's avatar
tjc committed
        ftree.refreshAll();
tjc's avatar
tjc committed
        ftree.revalidate();
tjc's avatar
tjc committed
      }
    });
    return comboFilter;
  }

  /**
  *
  * Get a file filter for sequence and feature suffixes.
  * @return file filter
  */
  protected static FileFilter getArtemisFilter()
  {
    final StringVector sequence_suffixes =
      Options.getOptions().getOptionValues("sequence_file_suffixes");

    final StringVector feature_suffixes =
      Options.getOptions().getOptionValues("feature_file_suffixes");

    final FileFilter artemis_filter = new FileFilter()
    {
      public boolean accept(File pathname)
      {
        if(pathname.isDirectory() &&
           !pathname.getName().startsWith("."))
          return true;
          
        for(int i = 0; i<sequence_suffixes.size(); ++i)
        {
tjc's avatar
tjc committed
          final String suffix = (String)sequence_suffixes.elementAt(i);
tjc's avatar
tjc committed

          if(pathname.getName().endsWith("." + suffix) ||
             pathname.getName().endsWith("." + suffix + ".gz"))
            return true;
        }

        for(int i = 0; i<feature_suffixes.size(); ++i)
        {
tjc's avatar
tjc committed
          final String suffix = (String)feature_suffixes.elementAt(i);
tjc's avatar
tjc committed

          if(pathname.getName().endsWith("." + suffix) ||
             pathname.getName().endsWith("." + suffix + ".gz"))
            return true;
        }
        return false;
      }
    };
    return artemis_filter;
  }


  /**
  *
  * Get a file filter for feature suffixes.
  * @return file filter
  */
  protected static FileFilter getFeatureFilter()
  {
    final StringVector feature_suffixes =
      Options.getOptions().getOptionValues("feature_file_suffixes");

    final FileFilter feature_filter = new FileFilter()
    {
      public boolean accept(File pathname)
      {
        if(pathname.isDirectory() &&
           !pathname.getName().startsWith("."))
          return true;

        for(int i = 0; i<feature_suffixes.size(); ++i)
        {
tjc's avatar
tjc committed
          final String suffix = (String)feature_suffixes.elementAt(i);
tjc's avatar
tjc committed

          if(pathname.getName().endsWith("." + suffix) ||
             pathname.getName().endsWith("." + suffix + ".gz"))
            return true;
        }
        return false;
      }
    };
    return feature_filter;
  }

  /**
  *
  * Get a file filter for sequence suffixes.
  * @return file filter
  */
  protected static FileFilter getSequenceFilter()
  {
    final StringVector sequence_suffixes =
      Options.getOptions().getOptionValues("sequence_file_suffixes");

    final FileFilter seq_filter = new FileFilter()
    {
      public boolean accept(File pathname)
      {
        if(pathname.isDirectory() &&
           !pathname.getName().startsWith("."))
          return true;
         
        for(int i = 0; i<sequence_suffixes.size(); ++i)
        {
tjc's avatar
tjc committed
          final String suffix = (String)sequence_suffixes.elementAt(i);
tjc's avatar
tjc committed

          if(pathname.getName().endsWith("." + suffix) ||
             pathname.getName().endsWith("." + suffix + ".gz"))
            return true;
        }

        return false;
      }
    };
    return seq_filter;
  }

  /**
  *
  * Set up a menu and tool bar
  * @param pane   panel to add toolbar to
  * @param ftree  file tree display
  *
  */
tjc's avatar
tjc committed
  private JMenuBar makeMenuBar(JPanel pane, 
                               final JTreeTable ftree, final SshJTreeTable sshtree,
tjc's avatar
tjc committed
                               final JPanel localPanel, final JPanel remotePanel,
tjc's avatar
tjc committed
                               final JSplitPane treePane, final Dimension panelSize,
                               final DbConnectionThread dbthread)
tjc's avatar
tjc committed
  {
    JMenuBar mBar = new JMenuBar();
    JMenu fileMenu = new JMenu("File");
    mBar.add(fileMenu);
    
    JRadioButtonMenuItem prefV = new JRadioButtonMenuItem("Vertical Split");
    fileMenu.add(prefV);
    prefV.addActionListener(new ActionListener()
    {
      public void actionPerformed(ActionEvent e)
      {
        treePane.remove(remotePanel);
        treePane.remove(localPanel);
        treePane.setOrientation(JSplitPane.VERTICAL_SPLIT);
        treePane.setTopComponent(localPanel);
        treePane.setBottomComponent(remotePanel);
        remotePanel.setPreferredSize(panelSize);
        localPanel.setPreferredSize(panelSize);

        pack();
        treePane.setDividerLocation(0.5);
      }
    });
tjc's avatar
tjc committed
    prefV.setSelected(true);
tjc's avatar
tjc committed
    ButtonGroup group = new ButtonGroup();
    group.add(prefV);

    JRadioButtonMenuItem prefH = new JRadioButtonMenuItem("Horizontal Split");
    fileMenu.add(prefH);
    prefH.addActionListener(new ActionListener()
    {
      public void actionPerformed(ActionEvent e)
      {
        treePane.remove(remotePanel);
        treePane.remove(localPanel);
        treePane.setOrientation(JSplitPane.HORIZONTAL_SPLIT);
        treePane.setLeftComponent(localPanel);
        treePane.setRightComponent(remotePanel);

        remotePanel.setPreferredSize(panelSize);
        localPanel.setPreferredSize(panelSize);

        pack();
        treePane.setDividerLocation(0.5);
      }
    });
    group.add(prefH);
tjc's avatar
tjc committed
//  prefH.setSelected(true);
tjc's avatar
tjc committed

tjc's avatar
tjc committed
    if(System.getProperty("chado") != null)
    {
      fileMenu.add(new JSeparator());
tjc's avatar
tjc committed
      JMenuItem fileShow = new JMenuItem("Open Selected Database Sequence ...");
      fileShow.addActionListener(new ActionListener()
      {
        public void actionPerformed(ActionEvent e)
        {
          if(dbthread.getDatabaseJPanel() != null)
            dbthread.getDatabaseJPanel().showSelected(entry_source, null);
        }
      });
      fileMenu.add(fileShow);
      
      final JCheckBoxMenuItem splitGFF = new JCheckBoxMenuItem(
          "Split into entries ...", false);
tjc's avatar
tjc committed
      splitGFF.addActionListener(new ActionListener()
      {
        public void actionPerformed(ActionEvent e)
        {
          if(splitGFF.isSelected())
          {
            DatabaseEntryFilterPanel messagePanel = new DatabaseEntryFilterPanel();
            int val = JOptionPane.showConfirmDialog(
                LocalAndRemoteFileManager.this, messagePanel, "Define Entry",
                JOptionPane.OK_CANCEL_OPTION);

            if(val == JOptionPane.OK_OPTION)
              messagePanel.setTypesForEntries();
            else
              splitGFF.setSelected(false);
          }
          
tjc's avatar
tjc committed
          dbthread.setSplitGFFEntry(splitGFF.isSelected());
        }
      });
      fileMenu.add(splitGFF);
      
      fileMenu.add(domainLoad);
tjc's avatar
tjc committed
      fileMenu.add(lazyLoad);
    }
    
tjc's avatar
tjc committed
    JMenuItem fileMenuClose = new JMenuItem("Close");
    fileMenuClose.addActionListener(new ActionListener()
    {
      public void actionPerformed(ActionEvent e)
      {
        setVisible(false);
      }
    });
tjc's avatar
tjc committed
    fileMenu.add(new JSeparator());
tjc's avatar
tjc committed
    fileMenu.add(fileMenuClose);

    // remote tool bar set up
//  JToolBar remoteToolBar  = new JToolBar();
//  remotePanel.add(remoteToolBar, BorderLayout.NORTH);
tjc's avatar
tjc committed

    // local tool bar set up
//  JToolBar toolBar  = new JToolBar();
//  localPanel.add(toolBar, BorderLayout.NORTH);
tjc's avatar
tjc committed

    return mBar;
  }
tjc's avatar
tjc committed
  private class DbConnectionThread extends Thread
tjc's avatar
tjc committed
  {
tjc's avatar
tjc committed
    private JSplitPane dbSplitPane;
tjc's avatar
tjc committed
    private Dimension panelSize;
    private DatabaseEntrySource entry_source;
    private JPanel topPanel;
tjc's avatar
tjc committed
    private DatabaseJPanel dbPane;
    private boolean splitGFFEntry = false;
tjc's avatar
tjc committed
    public DbConnectionThread(final JSplitPane dbSplitPane,
tjc's avatar
tjc committed
                              final Dimension panelSize,
                              final DatabaseEntrySource entry_source,
                              final JPanel topPanel)
tjc's avatar
tjc committed
    {
tjc's avatar
tjc committed
      this.dbSplitPane = dbSplitPane;
tjc's avatar
tjc committed
      this.panelSize = panelSize;
      this.entry_source = entry_source;
      this.topPanel = topPanel;
tjc's avatar
tjc committed
    }

tjc's avatar
tjc committed
    public void run()
      topPanel.setCursor(new Cursor(Cursor.WAIT_CURSOR));
tjc's avatar
tjc committed
      dbPane = new DatabaseJPanel(entry_source, null);
tjc's avatar
tjc committed
      dbPane.setPreferredSize(panelSize);
tjc's avatar
tjc committed
      dbPane.setSplitGFFEntry(splitGFFEntry);
tjc's avatar
tjc committed
      dbSplitPane.setTopComponent(dbPane);
      topPanel.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
tjc's avatar
tjc committed
    
    protected void setSplitGFFEntry(final boolean splitGFFEntry)
    {
      if(dbPane != null)
        dbPane.setSplitGFFEntry(splitGFFEntry);
      else
        this.splitGFFEntry = splitGFFEntry;
    }
    
    protected DatabaseJPanel getDatabaseJPanel()
    {
      return dbPane;
    }
tjc's avatar
tjc committed
  public static void main(String args[])
  {
tjc's avatar
tjc committed
    //final javax.swing.LookAndFeel look_and_feel =
    //  javax.swing.UIManager.getLookAndFeel();
tjc's avatar
tjc committed

    final javax.swing.plaf.FontUIResource font_ui_resource =
      Options.getOptions().getFontUIResource();

    java.util.Enumeration keys = UIManager.getDefaults().keys();
    while(keys.hasMoreElements())
    {
      Object key = keys.nextElement();
      Object value = UIManager.get(key);
      if(value instanceof javax.swing.plaf.FontUIResource)
        UIManager.put(key, font_ui_resource);
    }

    JFrame frame = new LocalAndRemoteFileManager(null);
    frame.pack();
    frame.setVisible(true);
  }
  public DatabaseEntrySource getDatabaseEntrySource()
  {
    return entry_source;
  }
tjc's avatar
tjc committed

tjc's avatar
tjc committed
}