use of cl.utfsm.acs.acg.core.IllegalOperationException in project ACS by ACS-Community.
the class AlarmsView method createFMWidgets.
private void createFMWidgets() {
Listener updateFaultMember = new Listener() {
public void handleEvent(Event event) {
TreeItem tmp = _tree.getSelection()[0];
String tfm = tmp.getText();
String tff = tmp.getParentItem().getParentItem().getText();
FaultMember fmt = new FaultMember();
//TODO: Error icon or something similar
if (_fmNameText.getText().isEmpty()) {
_fmErrorMessageLabel.setText("FaultMember Name Missing!");
return;
}
if (_fmNameText.getText().contains(" ")) {
_fmErrorMessageLabel.setText("Invalid FaultMember Name. No spaces allowed.");
return;
}
fmt.setName(_fmNameText.getText());
Location lt = new Location();
if (!_fmLocBuildingText.getText().isEmpty())
lt.setBuilding(_fmLocBuildingText.getText());
if (!_fmLocFloorText.getText().isEmpty())
lt.setFloor(_fmLocFloorText.getText());
if (!_fmLocRoomText.getText().isEmpty())
lt.setRoom(_fmLocRoomText.getText());
if (!_fmLocMnemonicText.getText().isEmpty())
lt.setMnemonic(_fmLocMnemonicText.getText());
if (!_fmLocPositionText.getText().isEmpty())
lt.setPosition(_fmLocPositionText.getText());
fmt.setLocation(lt);
_fmErrorMessageLabel.setText("");
try {
_alarmManager.updateFaultMember(_alarmManager.getFaultFamily(tff), _alarmManager.getFaultMember(tff, tfm), fmt);
tmp.setText(_fmNameText.getText());
if (tfm.compareTo(fmt.getName()) != 0) {
sortFaultFamilyList();
selectElementFromTree(tff, fmt.getName(), null);
}
} catch (IllegalOperationException e) {
_fmErrorMessageLabel.setText(e.getMessage());
} catch (NullPointerException e) {
_fmErrorMessageLabel.setText(e.getMessage());
}
}
};
_FMgroup = new Group(_compInitial, SWT.SHADOW_ETCHED_IN);
_FMgroup.setText("Fault Member detail");
GridData gd = new GridData();
gd.horizontalAlignment = SWT.FILL;
gd.grabExcessHorizontalSpace = true;
gd.verticalAlignment = SWT.FILL;
gd.grabExcessVerticalSpace = true;
_FMgroup.setLayoutData(gd);
GridLayout gl = new GridLayout();
gl.numColumns = 2;
_FMgroup.setLayout(gl);
_fmNameLabel = new Label(_FMgroup, SWT.NONE);
_fmNameLabel.setText("Name");
_fmNameText = new Text(_FMgroup, SWT.SINGLE | SWT.BORDER);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_fmNameText.setLayoutData(gd);
_fmNameText.addListener(SWT.Modify, updateFaultMember);
_fmLocGroup = new Group(_FMgroup, SWT.SHADOW_ETCHED_IN);
_fmLocGroup.setText("Location");
gl = new GridLayout();
gl.numColumns = 2;
gd = new GridData();
gd.horizontalAlignment = SWT.FILL;
gd.grabExcessHorizontalSpace = true;
gd.horizontalSpan = 2;
_fmLocGroup.setLayout(gl);
_fmLocGroup.setLayoutData(gd);
_fmLocBuildingLabel = new Label(_fmLocGroup, SWT.NONE);
_fmLocBuildingLabel.setText("Building");
_fmLocBuildingText = new Text(_fmLocGroup, SWT.SINGLE | SWT.BORDER);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_fmLocBuildingText.setLayoutData(gd);
_fmLocBuildingText.addListener(SWT.Modify, updateFaultMember);
_fmLocFloorLabel = new Label(_fmLocGroup, SWT.NONE);
_fmLocFloorLabel.setText("Floor");
_fmLocFloorText = new Text(_fmLocGroup, SWT.SINGLE | SWT.BORDER);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_fmLocFloorText.setLayoutData(gd);
_fmLocFloorText.addListener(SWT.Modify, updateFaultMember);
_fmLocRoomLabel = new Label(_fmLocGroup, SWT.NONE);
_fmLocRoomLabel.setText("Room");
_fmLocRoomText = new Text(_fmLocGroup, SWT.SINGLE | SWT.BORDER);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_fmLocRoomText.setLayoutData(gd);
_fmLocRoomText.addListener(SWT.Modify, updateFaultMember);
_fmLocMnemonicLabel = new Label(_fmLocGroup, SWT.NONE);
_fmLocMnemonicLabel.setText("Mnemonic");
_fmLocMnemonicText = new Text(_fmLocGroup, SWT.SINGLE | SWT.BORDER);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_fmLocMnemonicText.setLayoutData(gd);
_fmLocMnemonicText.addListener(SWT.Modify, updateFaultMember);
_fmLocPositionLabel = new Label(_fmLocGroup, SWT.NONE);
_fmLocPositionLabel.setText("Position");
_fmLocPositionText = new Text(_fmLocGroup, SWT.SINGLE | SWT.BORDER);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_fmLocPositionText.setLayoutData(gd);
_fmLocPositionText.addListener(SWT.Modify, updateFaultMember);
_fmErrorMessageLabel = new Label(_FMgroup, SWT.NONE);
_fmErrorMessageLabel.setText("");
_fmErrorMessageLabel.setForeground(getViewSite().getShell().getDisplay().getSystemColor(SWT.COLOR_RED));
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
gd.horizontalSpan = 2;
_fmErrorMessageLabel.setLayoutData(gd);
}
use of cl.utfsm.acs.acg.core.IllegalOperationException in project ACS by ACS-Community.
the class AlarmsView method createFMDWidgets.
private void createFMDWidgets() {
Listener updateFaultMemberDefault = new Listener() {
public void handleEvent(Event event) {
TreeItem tmp = _tree.getSelection()[0];
String tff = tmp.getParentItem().getParentItem().getText();
FaultMemberDefault fmdt = new FaultMemberDefault();
Location lt = new Location();
if (!_fmdLocBuildingText.getText().isEmpty())
lt.setBuilding(_fmdLocBuildingText.getText());
if (!_fmdLocFloorText.getText().isEmpty())
lt.setFloor(_fmdLocFloorText.getText());
if (!_fmdLocRoomText.getText().isEmpty())
lt.setRoom(_fmdLocRoomText.getText());
if (!_fmdLocMnemonicText.getText().isEmpty())
lt.setMnemonic(_fmdLocMnemonicText.getText());
if (!_fmdLocPositionText.getText().isEmpty())
lt.setPosition(_fmdLocPositionText.getText());
fmdt.setLocation(lt);
_fmdErrorMessageLabel.setText("");
try {
_alarmManager.setFaultMemberDefault(_alarmManager.getFaultFamily(tff), fmdt);
tmp.setText("Default Member");
//sortFaultFamilyList();
//selectElementFromTree(tff, "Default Member", null);
} catch (IllegalOperationException e) {
_fmdErrorMessageLabel.setText(e.getMessage());
} catch (NullPointerException e) {
_fmdErrorMessageLabel.setText(e.getMessage());
}
}
};
_FMDgroup = new Group(_compInitial, SWT.SHADOW_ETCHED_IN);
_FMDgroup.setText("Default Fault Member details");
GridData gd = new GridData();
gd.horizontalAlignment = SWT.FILL;
gd.grabExcessHorizontalSpace = true;
gd.verticalAlignment = SWT.FILL;
gd.grabExcessVerticalSpace = true;
_FMDgroup.setLayoutData(gd);
GridLayout gl = new GridLayout();
gl.numColumns = 2;
_FMDgroup.setLayout(gl);
_fmdLocGroup = new Group(_FMDgroup, SWT.SHADOW_ETCHED_IN);
_fmdLocGroup.setText("Location");
gl = new GridLayout();
gl.numColumns = 2;
gd = new GridData();
gd.horizontalAlignment = SWT.FILL;
gd.grabExcessHorizontalSpace = true;
gd.horizontalSpan = 2;
_fmdLocGroup.setLayout(gl);
_fmdLocGroup.setLayoutData(gd);
_fmdLocBuildingLabel = new Label(_fmdLocGroup, SWT.NONE);
_fmdLocBuildingLabel.setText("Building");
_fmdLocBuildingText = new Text(_fmdLocGroup, SWT.SINGLE | SWT.BORDER);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_fmdLocBuildingText.setLayoutData(gd);
_fmdLocBuildingText.addListener(SWT.Modify, updateFaultMemberDefault);
_fmdLocFloorLabel = new Label(_fmdLocGroup, SWT.NONE);
_fmdLocFloorLabel.setText("Floor");
_fmdLocFloorText = new Text(_fmdLocGroup, SWT.SINGLE | SWT.BORDER);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_fmdLocFloorText.setLayoutData(gd);
_fmdLocFloorText.addListener(SWT.Modify, updateFaultMemberDefault);
_fmdLocRoomLabel = new Label(_fmdLocGroup, SWT.NONE);
_fmdLocRoomLabel.setText("Room");
_fmdLocRoomText = new Text(_fmdLocGroup, SWT.SINGLE | SWT.BORDER);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_fmdLocRoomText.setLayoutData(gd);
_fmdLocRoomText.addListener(SWT.Modify, updateFaultMemberDefault);
_fmdLocMnemonicLabel = new Label(_fmdLocGroup, SWT.NONE);
_fmdLocMnemonicLabel.setText("Mnemonic");
_fmdLocMnemonicText = new Text(_fmdLocGroup, SWT.SINGLE | SWT.BORDER);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_fmdLocMnemonicText.setLayoutData(gd);
_fmdLocMnemonicText.addListener(SWT.Modify, updateFaultMemberDefault);
_fmdLocPositionLabel = new Label(_fmdLocGroup, SWT.NONE);
_fmdLocPositionLabel.setText("Position");
_fmdLocPositionText = new Text(_fmdLocGroup, SWT.SINGLE | SWT.BORDER);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_fmdLocPositionText.setLayoutData(gd);
_fmdLocPositionText.addListener(SWT.Modify, updateFaultMemberDefault);
_fmdErrorMessageLabel = new Label(_FMDgroup, SWT.NONE);
_fmdErrorMessageLabel.setText("");
_fmdErrorMessageLabel.setForeground(getViewSite().getShell().getDisplay().getSystemColor(SWT.COLOR_RED));
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
gd.horizontalSpan = 2;
_fmdErrorMessageLabel.setLayoutData(gd);
}
use of cl.utfsm.acs.acg.core.IllegalOperationException in project ACS by ACS-Community.
the class ReductionsView method createNRParentWidgets.
private void createNRParentWidgets() {
_updateNRParentFF = new Listener() {
public void handleEvent(Event event) {
_NRParentFMCombo.removeAll();
FaultMember[] fml = _alarmManager.getFaultFamily(_NRParentFFCombo.getText()).getFaultMember();
for (int j = 0; j < fml.length; j++) {
_NRParentFMCombo.add(fml[j].getName());
}
_NRParentFCCombo.removeAll();
FaultCode[] fcl = _alarmManager.getFaultFamily(_NRParentFFCombo.getText()).getFaultCode();
for (int j = 0; j < fcl.length; j++) {
_NRParentFCCombo.add(String.valueOf(fcl[j].getValue()));
}
_NRParentErrorMessageLabel.setText("Please choose a Fault Member and a Fault Code.");
}
};
_updateNRParent = new Listener() {
public void handleEvent(Event event) {
if (_tree.getSelection() == null || _tree.getSelection().length == 0)
return;
NodeType type = (NodeType) _tree.getSelection()[0].getData();
if (type != NodeType.NODE_REDUCTION_PARENT_DATA)
return;
if (_NRParentFMCombo.getText().isEmpty()) {
_NRParentErrorMessageLabel.setText("Please choose a Fault Member.");
return;
}
if (_NRParentFCCombo.getText().isEmpty()) {
_NRParentErrorMessageLabel.setText("Please choose a Fault Code.");
return;
}
String[] tr = getTriplet(_tree.getSelection()[0].getText());
ReductionRule nrr = _reductionManager.getNRParentByTriplet(tr[0], tr[1], Integer.parseInt(tr[2]));
ReductionRule nrr2 = _reductionManager.getNRParentByTriplet(_NRParentFFCombo.getText(), _NRParentFMCombo.getText(), Integer.parseInt(_NRParentFCCombo.getText()));
Alarm parent = null;
Alarm nParent;
fillNRParentChAlarmList(_NRParentFFCombo.getText(), _NRParentFMCombo.getText(), Integer.parseInt(_NRParentFCCombo.getText()));
if (nrr == null) {
_NRParentErrorMessageLabel.setText("There's no Reduction Rule (no children) for the selected Alarm.");
return;
} else
parent = nrr.getParent();
if (nrr2 == null)
nParent = _alarmManager.getAlarm(new String(_NRParentFFCombo.getText() + ":" + _NRParentFMCombo.getText() + ":" + _NRParentFCCombo.getText()));
else {
nParent = nrr2.getParent();
if (nrr != nrr2) {
ErrorDialog edialog = new ErrorDialog(ReductionsView.this.getViewSite().getShell(), "Reduction Rule Already Exists", "The reduction rule you are trying to create already exists", new Status(IStatus.ERROR, "cl.utfsm.acs.acg", "The reduction rule parent already exists"), IStatus.ERROR);
edialog.setBlockOnOpen(true);
edialog.open();
return;
}
}
if (parent != null) {
String[] ch = parent.getNodeChildren();
//Remove all Children from nrr and add them to nrr2.
for (int i = 0; i < ch.length; i++) {
Alarm aCh = _alarmManager.getAlarm(ch[i]);
if (aCh != null) {
try {
if (!_reductionManager.deleteNodeReductionRule(parent, aCh)) {
_NRParentErrorMessageLabel.setText("One or more children alarms didn't exist.");
continue;
}
_reductionManager.addNodeReductionRule(nParent, aCh);
} catch (IllegalOperationException e) {
_NRParentErrorMessageLabel.setText("The parent alarm didn't exist.");
}
}
}
_tree.getSelection()[0].setText("<" + nParent.getAlarmId().replace(':', ',') + ">");
_NRParentErrorMessageLabel.setText("");
if (tr[0].compareTo(_NRParentFFCombo.getText()) != 0 || tr[1].compareTo(_NRParentFMCombo.getText()) != 0 || tr[2].compareTo(_NRParentFCCombo.getText()) != 0) {
sortReductionRulesList();
Triplet t = nParent.getTriplet();
selectElementFromTree("<" + t.getFaultFamily() + "," + t.getFaultMember() + "," + t.getFaultCode() + ">", true);
}
}
}
};
_updateNRParentChFF = new Listener() {
public void handleEvent(Event event) {
_NRParentChFMCombo.removeAll();
_NRParentChFMCombo.add("Any");
if (_NRParentChFFCombo.getText().compareTo("Any") != 0) {
FaultMember[] fml = _alarmManager.getFaultFamily(_NRParentChFFCombo.getText()).getFaultMember();
for (int j = 0; j < fml.length; j++) {
_NRParentChFMCombo.add(fml[j].getName());
}
}
_NRParentChFMCombo.select(0);
_NRParentChFCCombo.removeAll();
_NRParentChFCCombo.add("Any");
if (_NRParentChFFCombo.getText().compareTo("Any") != 0) {
FaultCode[] fcl = _alarmManager.getFaultFamily(_NRParentChFFCombo.getText()).getFaultCode();
for (int j = 0; j < fcl.length; j++) {
_NRParentChFCCombo.add(String.valueOf(fcl[j].getValue()));
}
}
_NRParentChFCCombo.select(0);
TreeItem[] tmp = _tree.getSelection();
if (tmp == null || tmp.length == 0)
return;
TreeItem item = tmp[0];
String[] triplet = getTriplet(item.getText());
fillNRParentChAlarmList(triplet[0], triplet[1], Integer.parseInt(triplet[2]));
}
};
_updateNRParentCh = new Listener() {
public void handleEvent(Event event) {
TreeItem[] tmp = _tree.getSelection();
if (tmp == null || tmp.length == 0)
return;
TreeItem item = tmp[0];
String[] triplet = getTriplet(item.getText());
fillNRParentChAlarmList(triplet[0], triplet[1], Integer.parseInt(triplet[2]));
}
};
_NRParentGroup = new Group(_compInitial, SWT.SHADOW_ETCHED_IN);
GridLayout gl = new GridLayout();
gl.numColumns = 1;
GridData gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.grabExcessVerticalSpace = true;
gd.horizontalAlignment = SWT.FILL;
gd.verticalAlignment = SWT.FILL;
_NRParentGroup.setLayout(gl);
_NRParentGroup.setLayoutData(gd);
_NRParentFtGroup = new Group(_NRParentGroup, SWT.SHADOW_ETCHED_IN);
gl = new GridLayout();
gl.numColumns = 2;
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_NRParentFtGroup.setLayout(gl);
_NRParentFtGroup.setLayoutData(gd);
_NRParentFtGroup.setText("Parent Alarm");
_NRParentFFLabel = new Label(_NRParentFtGroup, SWT.NONE);
_NRParentFFLabel.setText("Fault Family:");
_NRParentFFCombo = new Combo(_NRParentFtGroup, SWT.DROP_DOWN | SWT.READ_ONLY);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_NRParentFFCombo.setLayoutData(gd);
_NRParentFFCombo.addListener(SWT.Selection, _updateNRParentFF);
_NRParentFMLabel = new Label(_NRParentFtGroup, SWT.NONE);
_NRParentFMLabel.setText("Fault Member:");
_NRParentFMCombo = new Combo(_NRParentFtGroup, SWT.DROP_DOWN | SWT.READ_ONLY);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_NRParentFMCombo.setLayoutData(gd);
_NRParentFMCombo.addListener(SWT.Selection, _updateNRParent);
_NRParentFCLabel = new Label(_NRParentFtGroup, SWT.NONE);
_NRParentFCLabel.setText("Fault Code:");
_NRParentFCCombo = new Combo(_NRParentFtGroup, SWT.DROP_DOWN | SWT.READ_ONLY);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_NRParentFCCombo.setLayoutData(gd);
_NRParentFCCombo.addListener(SWT.Selection, _updateNRParent);
//
_NRParentChGroup = new Group(_NRParentGroup, SWT.SHADOW_ETCHED_IN);
gl = new GridLayout();
gl.numColumns = 1;
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.grabExcessVerticalSpace = true;
gd.horizontalAlignment = SWT.FILL;
gd.verticalAlignment = SWT.FILL;
_NRParentChGroup.setLayout(gl);
_NRParentChGroup.setLayoutData(gd);
_NRParentChGroup.setText("Alarms to Hide");
_NRParentChFilterGroup = new Group(_NRParentChGroup, SWT.SHADOW_ETCHED_IN);
gl = new GridLayout();
gl.numColumns = 2;
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_NRParentChFilterGroup.setLayout(gl);
_NRParentChFilterGroup.setLayoutData(gd);
_NRParentChFilterGroup.setText("Filter Options");
_NRParentChFilterLevelGroup = new Group(_NRParentChFilterGroup, SWT.SHADOW_ETCHED_IN);
gl = new GridLayout();
gl.numColumns = 3;
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalSpan = 2;
gd.horizontalAlignment = SWT.FILL;
_NRParentChFilterLevelGroup.setLayout(gl);
_NRParentChFilterLevelGroup.setLayoutData(gd);
_NRParentChFilterLevelGroup.setText("Show");
_NRParentChAllRadio = new Button(_NRParentChFilterLevelGroup, SWT.RADIO);
_NRParentChAllRadio.setText("All");
_NRParentChAllRadio.addListener(SWT.Selection, _updateNRParentCh);
_NRParentChSelectedRadio = new Button(_NRParentChFilterLevelGroup, SWT.RADIO);
_NRParentChSelectedRadio.setText("Selected");
_NRParentChSelectedRadio.addListener(SWT.Selection, _updateNRParentCh);
_NRParentChUnselectedRadio = new Button(_NRParentChFilterLevelGroup, SWT.RADIO);
_NRParentChUnselectedRadio.setText("Unselected");
_NRParentChUnselectedRadio.addListener(SWT.Selection, _updateNRParentCh);
_NRParentChFFLabel = new Label(_NRParentChFilterGroup, SWT.NONE);
_NRParentChFFLabel.setText("Fault Family:");
_NRParentChFFCombo = new Combo(_NRParentChFilterGroup, SWT.DROP_DOWN | SWT.READ_ONLY);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_NRParentChFFCombo.setLayoutData(gd);
_NRParentChFFCombo.addListener(SWT.Selection, _updateNRParentChFF);
_NRParentChFMLabel = new Label(_NRParentChFilterGroup, SWT.NONE);
_NRParentChFMLabel.setText("Fault Member:");
_NRParentChFMCombo = new Combo(_NRParentChFilterGroup, SWT.DROP_DOWN | SWT.READ_ONLY);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_NRParentChFMCombo.setLayoutData(gd);
_NRParentChFMCombo.addListener(SWT.Selection, _updateNRParentCh);
_NRParentChFCLabel = new Label(_NRParentChFilterGroup, SWT.NONE);
_NRParentChFCLabel.setText("Fault Code:");
_NRParentChFCCombo = new Combo(_NRParentChFilterGroup, SWT.DROP_DOWN | SWT.READ_ONLY);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_NRParentChFCCombo.setLayoutData(gd);
_NRParentChFCCombo.addListener(SWT.Selection, _updateNRParentCh);
_NRParentChFilterLabel = new Label(_NRParentChFilterGroup, SWT.NONE);
_NRParentChFilterLabel.setText("Filter RegEx:");
_NRParentChFilterText = new Text(_NRParentChFilterGroup, SWT.BORDER);
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
_NRParentChFilterText.setLayoutData(gd);
_NRParentChFilterText.addListener(SWT.Modify, _updateNRParentCh);
_NRParentChAlarmList = new Table(_NRParentChGroup, SWT.BORDER);
gd = new GridData();
gd.verticalAlignment = SWT.FILL;
gd.horizontalAlignment = SWT.FILL;
gd.grabExcessVerticalSpace = true;
gd.grabExcessHorizontalSpace = true;
_NRParentChAlarmList.setLayoutData(gd);
_NRParentChAlarmList.addListener(SWT.KeyUp, _addRule);
_NRParentChAlarmList.addListener(SWT.MouseDoubleClick, _addRule);
_NRParentErrorMessageLabel = new Label(_NRParentGroup, SWT.NONE);
_NRParentErrorMessageLabel.setText("");
_NRParentErrorMessageLabel.setForeground(getViewSite().getShell().getDisplay().getSystemColor(SWT.COLOR_RED));
gd = new GridData();
gd.grabExcessHorizontalSpace = true;
gd.horizontalAlignment = SWT.FILL;
gd.horizontalSpan = 2;
_NRParentErrorMessageLabel.setLayoutData(gd);
}
use of cl.utfsm.acs.acg.core.IllegalOperationException in project ACS by ACS-Community.
the class ReductionsView method createViewWidgets.
private void createViewWidgets(Composite parent) {
_addElement = new Listener() {
public void handleEvent(Event event) {
TreeItem sel = null;
TreeItem item = null;
if (_tree.getSelection() == null || _tree.getSelection().length == 0)
return;
sel = _tree.getSelection()[0];
NodeType type = (NodeType) sel.getData();
item = sel;
if (type == NodeType.NODE_REDUCTION_PARENT_DATA || type == NodeType.MULTIPLICITY_REDUCTION_PARENT_DATA)
item = sel.getParentItem();
type = (NodeType) item.getData();
java.util.List<FaultFamily> ffs = _alarmManager.getAllAlarms();
java.util.List<String> ffnames = new ArrayList<String>();
for (FaultFamily ff : ffs) {
if (ff.getFaultCodeCount() > 0 && ff.getFaultMemberCount() > 0)
ffnames.add(ff.getName());
}
Collections.sort(ffnames, IGNORE_CASE_ORDER);
ListDialog dialog = new ListDialog(PlatformUI.getWorkbench().getDisplay().getActiveShell());
dialog.setTitle("Create Reduction Rule");
dialog.setMessage("Select Parent Fault Family");
dialog.setBlockOnOpen(true);
dialog.setInput(ffnames);
dialog.setContentProvider(new ArrayContentProvider());
dialog.setLabelProvider(new LabelProvider());
dialog.open();
if (dialog.getReturnCode() == InputDialog.CANCEL)
return;
String ffname = (String) dialog.getResult()[0];
FaultMember[] fms = _alarmManager.getFaultFamily(ffname).getFaultMember();
java.util.List<String> fmnames = new ArrayList<String>();
for (FaultMember fm : fms) {
fmnames.add(fm.getName());
}
Collections.sort(ffnames, IGNORE_CASE_ORDER);
dialog = new ListDialog(PlatformUI.getWorkbench().getDisplay().getActiveShell());
dialog.setTitle("Create Reduction Rule");
dialog.setMessage("Select Parent Fault Member");
dialog.setBlockOnOpen(true);
dialog.setInput(fmnames);
dialog.setContentProvider(new ArrayContentProvider());
dialog.setLabelProvider(new LabelProvider());
dialog.open();
if (dialog.getReturnCode() == InputDialog.CANCEL)
return;
String fmname = (String) dialog.getResult()[0];
FaultCode[] fcs = _alarmManager.getFaultFamily(ffname).getFaultCode();
java.util.List<String> fcvalues = new ArrayList<String>();
for (FaultCode fc : fcs) {
fcvalues.add(Integer.toString(fc.getValue()));
}
Collections.sort(ffnames, IGNORE_CASE_ORDER);
dialog = new ListDialog(PlatformUI.getWorkbench().getDisplay().getActiveShell());
dialog.setTitle("Create Reduction Rule");
dialog.setMessage("Select Parent Fault Code");
dialog.setBlockOnOpen(true);
dialog.setInput(fcvalues);
dialog.setContentProvider(new ArrayContentProvider());
dialog.setLabelProvider(new LabelProvider());
dialog.open();
if (dialog.getReturnCode() == InputDialog.CANCEL)
return;
String fcvalue = (String) dialog.getResult()[0];
ReductionRule parent = null;
boolean error = false;
if (type == NodeType.NODE_REDUCTION) {
parent = _reductionManager.getNRParentByTriplet(ffname, fmname, Integer.parseInt(fcvalue));
TreeItem[] chs = _tree.getItems()[0].getItems();
for (TreeItem ch : chs) {
if (ch.getText().compareTo("<" + ffname + "," + fmname + "," + fcvalue + ">") == 0)
error = true;
}
} else if (type == NodeType.MULTIPLICITY_REDUCTION) {
parent = _reductionManager.getMRParentByTriplet(ffname, fmname, Integer.parseInt(fcvalue));
TreeItem[] chs = _tree.getItems()[1].getItems();
for (TreeItem ch : chs) {
if (ch.getText().compareTo("<" + ffname + "," + fmname + "," + fcvalue + ">") == 0)
error = true;
}
}
if (error || parent != null) {
ErrorDialog edialog = new ErrorDialog(ReductionsView.this.getViewSite().getShell(), "Reduction Rule Already Exists", "The reduction rule you are trying to create already exists", new Status(IStatus.ERROR, "cl.utfsm.acs.acg", "The reduction rule parent already exists"), IStatus.ERROR);
edialog.setBlockOnOpen(true);
edialog.open();
return;
} else
parent = new ReductionRule(_alarmManager.getAlarm(ffname + ":" + fmname + ":" + fcvalue));
TreeItem pTree = new TreeItem(item, SWT.NONE);
pTree.setText("<" + ffname + "," + fmname + "," + fcvalue + ">");
if (type == NodeType.NODE_REDUCTION) {
pTree.setData(NodeType.NODE_REDUCTION_PARENT_DATA);
parent.setIsNodeReduction(true);
} else if (type == NodeType.MULTIPLICITY_REDUCTION) {
pTree.setData(NodeType.MULTIPLICITY_REDUCTION_PARENT_DATA);
parent.setIsNodeReduction(false);
}
_tree.setSelection(pTree);
Event e = new Event();
_tree.notifyListeners(SWT.Selection, e);
}
};
_addRule = new Listener() {
public void handleEvent(Event event) {
Table t = (Table) event.widget;
if (event.type == SWT.KeyUp)
if (!(event.keyCode == SWT.CR || event.keyCode == ' '))
return;
if (event.type == SWT.MouseDoubleClick) {
Point pt = new Point(event.x, event.y);
if (t.getItem(pt) == null)
return;
}
boolean isNode;
if (_tree.getSelection() == null || _tree.getSelection().length == 0)
return;
TreeItem tmp1 = _tree.getSelection()[0];
if ((NodeType) _tree.getSelection()[0].getData() == NodeType.NODE_REDUCTION_PARENT_DATA)
isNode = true;
else if ((NodeType) _tree.getSelection()[0].getData() == NodeType.MULTIPLICITY_REDUCTION_PARENT_DATA)
isNode = false;
else
return;
String[] tr = getTriplet(tmp1.getText());
ReductionRule parent;
if (isNode)
parent = _reductionManager.getNRParentByTriplet(tr[0], tr[1], Integer.parseInt(tr[2]));
else
parent = _reductionManager.getMRParentByTriplet(tr[0], tr[1], Integer.parseInt(tr[2]));
if (t.getSelection() == null || t.getSelection().length == 0)
return;
TableItem item = t.getSelection()[0];
Alarm p, c;
if (parent == null) {
if (isNode)
p = _alarmManager.getAlarm(_NRParentFFCombo.getText() + ":" + _NRParentFMCombo.getText() + ":" + _NRParentFCCombo.getText());
else
p = _alarmManager.getAlarm(_MRParentFFCombo.getText() + ":" + _MRParentFMCombo.getText() + ":" + _MRParentFCCombo.getText());
if (p == null) {
if (isNode)
_NRParentErrorMessageLabel.setText("Couldn't find parent alarm.");
else
_MRParentErrorMessageLabel.setText("Couldn't find parent alarm.");
return;
}
c = null;
} else {
p = parent.getParent();
c = parent.getChild(item.getText());
}
if (c == null) {
//Add child
c = _alarmManager.getAlarm(item.getText());
if (c == null) {
if (isNode)
_NRParentErrorMessageLabel.setText("Couldn't find child alarm.");
else
_MRParentErrorMessageLabel.setText("Couldn't find child alarm.");
return;
}
try {
if (isNode)
_reductionManager.addNodeReductionRule(p, c);
else {
_reductionManager.addMultiReductionRule(p, c);
if (parent == null)
_reductionManager.updateMultiThreshold(p, Integer.parseInt(_MRParentThresholdText.getText()));
}
item.setImage(Activator.getDefault().getImageRegistry().get(Activator.IMG_TICKET));
if (parent == null)
_tree.getSelection()[0].setText("<" + p.getAlarmId().replace(':', ',') + ">");
if (isNode)
_NRParentErrorMessageLabel.setText("");
else
_MRParentErrorMessageLabel.setText("");
} catch (IllegalOperationException e) {
if (isNode)
_NRParentErrorMessageLabel.setText(e.getMessage());
else
_MRParentErrorMessageLabel.setText(e.getMessage());
}
} else {
//Remove child
try {
//ReductionRule rr;
if (isNode) {
_reductionManager.deleteNodeReductionRule(p, c);
//rr = _reductionManager.getNRParentByTriplet(p.getTriplet().getFaultFamily(), p.getTriplet().getFaultMember(), p.getTriplet().getFaultCode());
} else {
_reductionManager.deleteMultiReductionRule(p, c);
//rr = _reductionManager.getMRParentByTriplet(p.getTriplet().getFaultFamily(), p.getTriplet().getFaultMember(), p.getTriplet().getFaultCode());
}
} catch (IllegalOperationException e) {
e.printStackTrace();
}
item.setImage((org.eclipse.swt.graphics.Image) null);
}
fillMRParentChAlarmList(tr[0], tr[1], Integer.parseInt(tr[2]));
sortReductionRulesList();
Triplet t2 = p.getTriplet();
if (isNode)
selectElementFromTree("<" + t2.getFaultFamily() + "," + t2.getFaultMember() + "," + t2.getFaultCode() + ">", true);
else
selectElementFromTree("<" + t2.getFaultFamily() + "," + t2.getFaultMember() + "," + t2.getFaultCode() + ">", false);
}
};
_removeElement = new Listener() {
public void handleEvent(Event event) {
boolean choice = MessageDialog.openQuestion(ReductionsView.this.getViewSite().getShell(), "Confirmation", "Are you sure you want to delete this element");
if (choice == true) {
TreeItem sel = null;
if (_tree.getSelection() == null || _tree.getSelection().length == 0)
return;
NodeType type = (NodeType) _tree.getSelection()[0].getData();
if (type == NodeType.NODE_REDUCTION || type == NodeType.MULTIPLICITY_REDUCTION)
return;
TreeItem item = _tree.getSelection()[0];
String[] tr = getTriplet(item.getText());
try {
if (type == NodeType.NODE_REDUCTION_PARENT_DATA) {
//Remove all the NODE REDUCTION Rules in which this node is parent.
ReductionRule rr = _reductionManager.getNRParentByTriplet(tr[0], tr[1], Integer.parseInt(tr[2]));
if (rr != null) {
Alarm p = rr.getParent();
List<Alarm> chL = rr.getChildren();
Alarm[] als = new Alarm[chL.size()];
chL.toArray(als);
for (int i = 0; i < als.length; i++) _reductionManager.deleteNodeReductionRule(p, als[i]);
}
} else if (type == NodeType.MULTIPLICITY_REDUCTION_PARENT_DATA) {
//Remove all the MULTIPLICITY REDUCTION Rules in which this node is a parent.
ReductionRule rr = _reductionManager.getMRParentByTriplet(tr[0], tr[1], Integer.parseInt(tr[2]));
if (rr != null) {
Alarm p = rr.getParent();
List<Alarm> chL = rr.getChildren();
Alarm[] als = new Alarm[chL.size()];
chL.toArray(als);
for (int i = 0; i < als.length; i++) _reductionManager.deleteMultiReductionRule(p, als[i]);
}
}
} catch (NullPointerException e) {
ErrorDialog error = new ErrorDialog(ReductionsView.this.getViewSite().getShell(), "Cannot delete the item", e.getMessage(), new Status(IStatus.ERROR, "cl.utfsm.acs.acg", e.getMessage()), IStatus.ERROR);
error.setBlockOnOpen(true);
error.open();
} catch (IllegalOperationException e) {
ErrorDialog error = new ErrorDialog(ReductionsView.this.getViewSite().getShell(), "Cannot delete the item", e.getMessage(), new Status(IStatus.ERROR, "cl.utfsm.acs.acg", e.getMessage()), IStatus.ERROR);
error.setBlockOnOpen(true);
error.open();
}
sel = _tree.getSelection()[0].getParentItem();
_tree.getSelection()[0].dispose();
_tree.setSelection(sel);
Event e = new Event();
_tree.notifyListeners(SWT.Selection, e);
}
}
};
_sash = new SashForm(parent, SWT.NONE);
_sash.setLayout(new FillLayout());
_reductionsComp = new Composite(_sash, SWT.NONE);
GridLayout layout = new GridLayout();
layout.numColumns = 1;
_reductionsComp.setLayout(layout);
_treeGroup = new Group(_reductionsComp, SWT.SHADOW_ETCHED_IN);
GridData gd = new GridData();
gd.horizontalAlignment = SWT.FILL;
gd.verticalAlignment = SWT.FILL;
gd.grabExcessHorizontalSpace = true;
gd.grabExcessVerticalSpace = true;
_treeGroup.setLayoutData(gd);
GridLayout gl = new GridLayout();
gl.numColumns = 1;
_treeGroup.setLayout(gl);
_treeGroup.setText("Reduction Rules List");
_tree = new Tree(_treeGroup, SWT.VIRTUAL | SWT.BORDER);
gd = new GridData();
gd.verticalAlignment = SWT.FILL;
gd.horizontalAlignment = SWT.FILL;
gd.grabExcessVerticalSpace = true;
gd.grabExcessHorizontalSpace = true;
_tree.setLayoutData(gd);
Menu treePopUp = new Menu(parent);
/*
MenuItem treePopUpDelete = new MenuItem(treePopUp,SWT.PUSH);
treePopUpDelete.setText("Delete");
treePopUpDelete.addListener(SWT.Selection, _removeElement);
MenuItem treePopUpAddRule = new MenuItem(treePopUp,SWT.PUSH);
treePopUpAddRule.setText("Add Rule");
treePopUpAddRule.addListener(SWT.Selection, _addElement);
MenuItem treePopUpAddChildren = new MenuItem(treePopUp,SWT.PUSH);
treePopUpAddChildren.setText("Add Children");
//treePopUpAddChildren.addListener(SWT.Selection, _addElement);
*/
_tree.setMenu(treePopUp);
treePopUp.addListener(SWT.Show, new Listener() {
public void handleEvent(Event e) {
TreeItem sel = _tree.getSelection()[0];
NodeType type = (NodeType) sel.getData();
Menu treePopUp = _tree.getMenu();
MenuItem[] items = treePopUp.getItems();
for (int i = 0; i < items.length; i++) items[i].dispose();
MenuItem mitem;
switch(type) {
case NODE_REDUCTION:
mitem = new MenuItem(treePopUp, SWT.PUSH);
mitem.setText("Add Node Reduction Rule Parent");
mitem.addListener(SWT.Selection, _addElement);
break;
case NODE_REDUCTION_PARENT_DATA:
mitem = new MenuItem(treePopUp, SWT.PUSH);
mitem.setText("Delete Node Reduction Rules for this parent");
mitem.addListener(SWT.Selection, _removeElement);
break;
case MULTIPLICITY_REDUCTION:
mitem = new MenuItem(treePopUp, SWT.PUSH);
mitem.setText("Add Multiplicity Reduction Rule Parent");
mitem.addListener(SWT.Selection, _addElement);
break;
case MULTIPLICITY_REDUCTION_PARENT_DATA:
mitem = new MenuItem(treePopUp, SWT.PUSH);
mitem.setText("Delete Multiplicity Reduction Rules for this parent");
mitem.addListener(SWT.Selection, _removeElement);
break;
default:
for (int i = 0; i < items.length; i++) items[i].dispose();
break;
}
}
});
_tree.addSelectionListener(new SelectionListener() {
public void widgetDefaultSelected(SelectionEvent e) {
widgetSelected(e);
}
public void widgetSelected(SelectionEvent e) {
TreeItem[] tmp = ((Tree) e.widget).getSelection();
if (tmp == null || tmp.length == 0)
return;
TreeItem item = tmp[0];
NodeType type = (NodeType) item.getData();
Control c = _compInitial.getChildren()[0];
if (c instanceof Label) {
c.dispose();
_compInitial.layout();
c = _compInitial.getChildren()[0];
}
if (type == NodeType.NODE_REDUCTION) {
_NRParentGroup.setVisible(false);
((GridData) _NRParentGroup.getLayoutData()).exclude = true;
_MRParentGroup.setVisible(false);
((GridData) _MRParentGroup.getLayoutData()).exclude = true;
} else if (type == NodeType.NODE_REDUCTION_PARENT_DATA) {
_NRParentGroup.setVisible(true);
((GridData) _NRParentGroup.getLayoutData()).exclude = false;
_MRParentGroup.setVisible(false);
((GridData) _MRParentGroup.getLayoutData()).exclude = true;
String[] triplet = getTriplet(item.getText());
fillNRParentWidgets(triplet[0], triplet[1], Integer.parseInt(triplet[2]));
_NRParentGroup.moveAbove(c);
_compInitial.layout();
} else if (type == NodeType.MULTIPLICITY_REDUCTION) {
_NRParentGroup.setVisible(false);
((GridData) _NRParentGroup.getLayoutData()).exclude = true;
_MRParentGroup.setVisible(false);
((GridData) _MRParentGroup.getLayoutData()).exclude = true;
} else if (type == NodeType.MULTIPLICITY_REDUCTION_PARENT_DATA) {
_NRParentGroup.setVisible(false);
((GridData) _NRParentGroup.getLayoutData()).exclude = true;
_MRParentGroup.setVisible(true);
((GridData) _MRParentGroup.getLayoutData()).exclude = false;
String[] triplet = getTriplet(item.getText());
fillMRParentWidgets(triplet[0], triplet[1], Integer.parseInt(triplet[2]));
_MRParentGroup.moveAbove(c);
_compInitial.layout();
}
}
});
/* Top widget of the right side */
_compInitial = new Composite(_sash, SWT.NONE);
_compInitial.setLayout(new GridLayout());
new Label(_compInitial, SWT.NONE).setText("Select a reduction rule");
/* NR/MR Details */
createNRParentWidgets();
createMRParentWidgets();
_NRParentGroup.setVisible(false);
_MRParentGroup.setVisible(false);
_sash.setWeights(new int[] { 3, 5 });
}
use of cl.utfsm.acs.acg.core.IllegalOperationException in project ACS by ACS-Community.
the class CategoriesView method updateName.
public void updateName() {
String[] lststr = _categoriesList.getSelection();
int[] lstsel = _categoriesList.getSelectionIndices();
if (lststr == null || lststr.length == 0)
return;
if (lstsel == null || lstsel.length == 0)
return;
String tmp = lststr[0];
int sel = lstsel[0];
if (tmp.startsWith("*"))
tmp = (String) _categoriesList.getData();
Category c = _categoryManager.getCategoryByPath(tmp);
if (c == null)
return;
Category ci = new Category();
if (_pathText.getText().isEmpty()) {
_errorMessageLabel.setText("Category Path Missing!");
return;
}
if (_pathText.getText().contains(" ")) {
_errorMessageLabel.setText("Invalid Category Path. No spaces allowed.");
return;
}
ci.setPath(_pathText.getText());
if (_descriptionText.getText().isEmpty()) {
_errorMessageLabel.setText("Category Description is Missing!");
return;
}
ci.setDescription(_descriptionText.getText());
ci.setIsDefault(c.getIsDefault());
ci.setAlarms(c.getAlarms());
_errorMessageLabel.setText("");
try {
_categoryManager.updateCategory(c, ci);
if (ci.getIsDefault())
_categoriesList.setItem(sel, "* " + _pathText.getText());
else
_categoriesList.setItem(sel, _pathText.getText());
sortCategoryList();
if (tmp.compareTo(ci.getPath()) != 0) {
IWorkbenchWindow _window = getViewSite().getWorkbenchWindow();
IViewReference[] views = _window.getActivePage().getViewReferences();
IMyViewPart view = ((IMyViewPart) views[3].getView(false));
//view.refreshContents();
view.fillWidgets();
}
} catch (IllegalOperationException e) {
_errorMessageLabel.setText(e.getMessage());
} catch (NullPointerException e) {
_errorMessageLabel.setText(e.getMessage());
}
}
Aggregations