Skip to content
Snippets Groups Projects
Commit f3d838f3 authored by Arthur Coolen's avatar Arthur Coolen
Browse files

BugID: 604

upload file to /tmp diR
added configPanelHelper
parent 008ecab4
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ import nl.astron.lofar.sas.otbcomponents.VICnodeDefViewPanel;
import org.apache.log4j.Logger;
/**
* Class that will show the components to the user, all component actions can be
Class that will show the components to the user, all component actions can be
* handled from within this Gui panel.
*
* @created 24-01-2006
......
......@@ -430,12 +430,13 @@ public class MainPanel extends javax.swing.JPanel
BufferedInputStream input = new BufferedInputStream(new FileInputStream(itsNewFile));
input.read(uldata,0,uldata.length);
input.close();
if (itsMainFrame.getSharedVars().getOTDBrmi().getRemoteFileTrans().uploadFile(uldata,itsNewFile.getName())) {
String aFileName= "/tmp/"+itsMainFrame.getUserAccount().getUserName()+"_"+itsNewFile.getName();
if (itsMainFrame.getSharedVars().getOTDBrmi().getRemoteFileTrans().uploadFile(uldata,aFileName)) {
logger.debug("upload finished");
// Create a new Tree from the found file.
int aTreeID=itsMainFrame.getSharedVars().getOTDBrmi().getRemoteMaintenance().loadMasterFile(itsNewFile.getPath());
int aTreeID=itsMainFrame.getSharedVars().getOTDBrmi().getRemoteMaintenance().loadMasterFile(aFileName);
if (aTreeID < 1) {
logger.debug("Error on fileLoad: " + itsNewFile.getPath());
logger.debug("Error on fileLoad: " + aFileName);
} else {
// set changed flag to reload mainpanel
itsMainFrame.setChanged(this.getFriendlyName(),true);
......@@ -651,10 +652,11 @@ public class MainPanel extends javax.swing.JPanel
BufferedInputStream input = new BufferedInputStream(new FileInputStream(itsNewFile));
input.read(uldata,0,uldata.length);
input.close();
if (itsMainFrame.getSharedVars().getOTDBrmi().getRemoteFileTrans().uploadFile(uldata,itsNewFile.getName())) {
String aFileName= "/tmp/"+itsMainFrame.getUserAccount().getUserName()+"_"+itsNewFile.getName();
if (itsMainFrame.getSharedVars().getOTDBrmi().getRemoteFileTrans().uploadFile(uldata,aFileName)) {
logger.debug("upload finished");
// Create a new Tree from the found file.
int anID=itsMainFrame.getSharedVars().getOTDBrmi().getRemoteMaintenance().loadComponentFile(itsNewFile.getName());
int anID=itsMainFrame.getSharedVars().getOTDBrmi().getRemoteMaintenance().loadComponentFile(aFileName);
if (anID < 1) {
logger.debug("Error on ComponentfileLoad: " + itsNewFile.getPath());
} else {
......
......@@ -29,10 +29,12 @@ import javax.swing.JComponent;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
import nl.astron.lofar.lofarutils.LofarUtils;
import nl.astron.lofar.sas.otb.MainFrame;
import nl.astron.lofar.sas.otb.jotdb2.jOTDBnode;
import nl.astron.lofar.sas.otb.jotdb2.jOTDBparam;
import nl.astron.lofar.sas.otb.jotdb2.jOTDBtree;
import nl.astron.lofar.sas.otb.util.ConfigPanelHelper;
import nl.astron.lofar.sas.otb.util.IViewPanel;
import nl.astron.lofar.sas.otb.util.UserAccount;
import nl.astron.lofar.sas.otb.util.treemanagers.OTDBNodeTreeManager;
......@@ -300,11 +302,12 @@ public class TemplateMaintenancePanel extends javax.swing.JPanel
jTabbedPane1.removeAll();
// Check if the nodename uses specific panels and create them
Vector<String> aPanelList=new Vector<String>();
//generic node panel
aPanelList.add("nl.astron.lofar.sas.otbcomponents.NodeViewPanel");
//generic parameter panel
aPanelList.add("nl.astron.lofar.sas.otbcomponents.ParameterViewPanel");
Vector aPanelList=null;
if (itsPanelHelper.isKey(LofarUtils.keyName(aNode.name))) {
aPanelList=itsPanelHelper.getPanels(LofarUtils.keyName(aNode.name));
} else {
aPanelList=itsPanelHelper.getPanels("*");
}
// Loop through all the panels and fill the tabPanel with them
......@@ -373,6 +376,8 @@ public class TemplateMaintenancePanel extends javax.swing.JPanel
// keep the TreeId that belongs to this panel
private int itsTreeID = 0;
private boolean changed = false;
private ConfigPanelHelper itsPanelHelper=ConfigPanelHelper.getConfigPanelHelper();
// Variables declaration - do not modify//GEN-BEGIN:variables
private nl.astron.lofar.sas.otbcomponents.ButtonPanel buttonPanel1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment