AMenuStartItem.java
| Index Score | ||
|---|---|---|
![]() |
![]() |
org.compiere.apps |
![]() |
![]() |
Compiere |
View: Reasons, Metrics, Source Code
These are the metrics that contribute to the Enerjy Score for this file, ranked by impact. So the metrics listed at the top influence the score to a greater extent that the metrics listed at the bottom.
/******************************************************************************
* Product: Compiere ERP & CRM Smart Business Solution *
* Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. *
* This program is free software, you can redistribute it and/or modify it *
* under the terms version 2 of the GNU General Public License as published *
* by the Free Software Foundation. This program 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 General Public License for more details. *
* You should have received a copy of the GNU General Public License along *
* with this program, if not, write to the Free Software Foundation, Inc., *
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *
* For the text or an alternative of this public license, you may reach us *
* ComPiere, Inc., 3600 Bridge Parkway #102, Redwood City, CA 94065, USA *
* or via info@compiere.org or http://www.compiere.org/license.html *
*****************************************************************************/
package org.compiere.apps;
import java.awt.event.*;
import java.sql.*;
import java.util.logging.*;
import javax.swing.*;
import org.compiere.apps.form.*;
import org.compiere.model.*;
import org.compiere.util.*;
/**
* Start Menu Item & UpdateProgress Bar
*
* @author Jorg Janke
* @version $Id: AMenuStartItem.java,v 1.2 2006/07/30 00:51:27 jjanke Exp $
*/
public class AMenuStartItem extends Thread implements ActionListener
{
/**
* Start Menu Item
*
* @param ID ID
* @param isMenu false if Workflow
* @param name Name
* @param menu Menu
*/
public AMenuStartItem (int ID, boolean isMenu, String name, AMenu menu)
{
m_ID = ID;
m_isMenu = isMenu;
m_name = name;
m_menu = menu;
if (menu != null)
m_increment = (menu.progressBar.getMaximum()-menu.progressBar.getMinimum()) / 5;
} // UpdateProgress
/** The ID */
private int m_ID = 0;
private boolean m_isMenu = false;
private String m_name;
AMenu m_menu;
/** Logger */
private static CLogger log = CLogger.getCLogger(AMenuStartItem.class);
// Reset Progress Bar
private Runnable m_resetPB = new Runnable()
{
public void run()
{
m_value = 0;
if (m_menu != null)
m_menu.progressBar.setValue(0);
}
};
// Progress Bar tick
private Runnable m_tickPB = new Runnable()
{
public void run()
{
if (m_menu == null)
return;
// 100/5 => 20 ticks - every .5 sec => 10 seconds loadtime
final int tick = 5;
if (m_menu.progressBar.getValue() < (m_menu.progressBar.getMaximum() - tick))
m_menu.progressBar.setValue(m_menu.progressBar.getValue() + tick);
}
};
// Progress Bar max state
private Runnable m_updatePB = new Runnable()
{
public void run()
{
if (m_menu == null)
return;
m_value += m_increment;
if (m_menu.progressBar.getValue() > m_value) // max value
m_menu.progressBar.setValue(m_value);
}
};
/** Value */
int m_value = 0;
/** Increment */
int m_increment = 20;
/** Timer */
private Timer m_timer = new Timer(500, this); // every 1/2 second
/**
* Start Menu Item
*/
@Override
public void run()
{
if (m_menu != null)
m_menu.setBusy (true);
SwingUtilities.invokeLater(m_resetPB);
m_timer.start();
SwingUtilities.invokeLater(m_updatePB);
try
{
String sql = "SELECT * FROM AD_Menu WHERE AD_Menu_ID=?";
if (!m_isMenu)
sql = "SELECT * FROM AD_WF_Node WHERE AD_WF_Node_ID=?";
PreparedStatement pstmt = DB.prepareStatement(sql, null);
pstmt.setInt(1, m_ID);
ResultSet rs = pstmt.executeQuery();
SwingUtilities.invokeLater(m_updatePB);
if (rs.next()) // should only be one
{
String Action = rs.getString("Action");
int cmd;
if (Action.equals("W")) // Window
{
cmd = rs.getInt("AD_Window_ID");
startWindow(0, cmd);
}
else if (Action.equals("P") || Action.equals("R")) // Process & Report
{
cmd = rs.getInt("AD_Process_ID");
startProcess(cmd);
}
else if (Action.equals("B")) // Workbench
{
cmd = rs.getInt("AD_Workbench_ID");
startWindow (cmd, 0);
}
else if (Action.equals("F")) // WorkFlow
{
if (m_isMenu)
cmd = rs.getInt("AD_Workflow_ID");
else
cmd = rs.getInt("Workflow_ID");
if (m_menu != null)
m_menu.startWorkFlow(cmd);
}
else if (Action.equals("T")) // Task
{
cmd = rs.getInt("AD_Task_ID");
startTask(cmd);
}
else if (Action.equals("X")) // Form
{
cmd = rs.getInt("AD_Form_ID");
startForm(cmd);
}
else
log.log(Level.SEVERE, "No valid Action in ID=" + m_ID);
} // for all records
SwingUtilities.invokeLater(m_updatePB);
rs.close();
pstmt.close();
}
catch (Exception e)
{
log.log(Level.SEVERE, "ID=" + m_ID, e);
ADialog.error(0, null, "Error", Msg.parseTranslation(Env.getCtx(), e.getMessage()));
}
try {Thread.sleep(1000);} // 1 sec
catch (InterruptedException ie) {}
// ready for next
m_timer.stop();
SwingUtilities.invokeLater(m_resetPB);
if (m_menu != null)
{
m_menu.updateInfo();
m_menu.setBusy(false);
}
} // run
/**
* Actlion Listener for Timer
* @param e event
*/
public void actionPerformed (ActionEvent e)
{
SwingUtilities.invokeLater(m_tickPB);
} // actionPerformed
/**
* Start Window
*
* @param AD_Workbench_ID workbench
* @param AD_Window_ID window
*/
private void startWindow(int AD_Workbench_ID, int AD_Window_ID)
{
if (Env.showWindow(AD_Window_ID))
return;
SwingUtilities.invokeLater(m_updatePB); // 1
AWindow frame = new AWindow();
boolean OK = false;
if (AD_Workbench_ID != 0)
OK = frame.initWorkbench(AD_Workbench_ID);
else
OK = frame.initWindow(AD_Window_ID, null); // No Query Value
if (!OK)
return;
SwingUtilities.invokeLater(m_updatePB); // 2
frame.pack();
// Center the window
SwingUtilities.invokeLater(m_updatePB); // 3
AEnv.showCenterScreen(frame);
// if (wfPanel.isVisible())
// m_WF_Window = frame; // maintain one reference
frame = null;
} // startWindow
/**
* Start Process.
* Start/show Process Dialog which calls ProcessCtl
* @param AD_Process_ID process
*/
private void startProcess (int AD_Process_ID)
{
SwingUtilities.invokeLater(m_updatePB); // 1
m_timer.stop();
ProcessDialog pd = new ProcessDialog (AD_Process_ID);
if (!pd.init())
return;
m_timer.start();
SwingUtilities.invokeLater(m_updatePB); // 2
pd.pack();
// Center the window
SwingUtilities.invokeLater(m_updatePB); // 3
AEnv.showCenterScreen(pd);
} // startProcess
/**
* Start OS Task
* @param AD_Task_ID task
*/
private void startTask (int AD_Task_ID)
{
SwingUtilities.invokeLater(m_updatePB); // 1
// Get Command
MTask task = null;
String sql = "SELECT * FROM AD_Task WHERE AD_Task_ID=?";
try
{
PreparedStatement pstmt = DB.prepareStatement(sql, null);
pstmt.setInt(1, AD_Task_ID);
ResultSet rs = pstmt.executeQuery();
if (rs.next())
task = new MTask (Env.getCtx(), rs, null);
rs.close();
pstmt.close();
}
catch (SQLException e)
{
log.log(Level.SEVERE, sql, e);
}
if (task == null)
return;
SwingUtilities.invokeLater(m_updatePB); // 2
new ATask(m_name, task);
// ATask.start(m_name, task);
} // startTask
/**
* Start Form
* @param AD_Form_ID form
*/
private void startForm (int AD_Form_ID)
{
FormFrame ff = new FormFrame();
SwingUtilities.invokeLater(m_updatePB); // 1
ff.openForm(AD_Form_ID);
SwingUtilities.invokeLater(m_updatePB); // 2
ff.pack();
// Center the window
SwingUtilities.invokeLater(m_updatePB); // 3
AEnv.showCenterScreen(ff);
} // startForm
} // StartItem
The table below shows all metrics for AMenuStartItem.java.




