Search in sources :

Example 1 with ReductionLinkDefinitionListType

use of alma.alarmsystem.alarmmessage.generated.ReductionLinkDefinitionListType in project ACS by ACS-Community.

the class ACSAlarmDAOImpl method getReductionRules.

public alma.alarmsystem.alarmmessage.generated.ReductionDefinitions getReductionRules() {
    if (conf == null)
        throw new IllegalStateException("null configuration accessor");
    alma.alarmsystem.alarmmessage.generated.ReductionDefinitions rds;
    String xml;
    try {
        xml = conf.getConfiguration(REDUCTION_DEFINITION_PATH);
    } catch (CDBRecordDoesNotExistEx e) {
        rds = new alma.alarmsystem.alarmmessage.generated.ReductionDefinitions();
        ReductionLinkDefinitionListType rld = new ReductionLinkDefinitionListType();
        rld.setReductionLink(new alma.alarmsystem.alarmmessage.generated.ReductionLinkType[0]);
        rds.setLinksToCreate(rld);
        alma.alarmsystem.alarmmessage.generated.Thresholds ths = new alma.alarmsystem.alarmmessage.generated.Thresholds();
        ths.setThreshold(new alma.alarmsystem.alarmmessage.generated.Threshold[0]);
        rds.setThresholds(ths);
        return rds;
    } catch (Exception e) {
        e.printStackTrace();
        return null;
    }
    StringReader FFReader = new StringReader(xml);
    Unmarshaller FF_unmarshaller = new Unmarshaller(alma.alarmsystem.alarmmessage.generated.ReductionDefinitions.class);
    FF_unmarshaller.setValidation(false);
    try {
        rds = (alma.alarmsystem.alarmmessage.generated.ReductionDefinitions) FF_unmarshaller.unmarshal(FFReader);
    } catch (MarshalException e) {
        e.printStackTrace();
        return null;
    } catch (ValidationException e) {
        e.printStackTrace();
        return null;
    }
    try {
        rds.validate();
    } catch (ValidationException e) {
        e.printStackTrace();
    }
    return rds;
}
Also used : Thresholds(alma.alarmsystem.alarmmessage.generated.Thresholds) MarshalException(org.exolab.castor.xml.MarshalException) ValidationException(org.exolab.castor.xml.ValidationException) Thresholds(alma.alarmsystem.alarmmessage.generated.Thresholds) ReductionDefinitions(alma.alarmsystem.alarmmessage.generated.ReductionDefinitions) ReductionDefinitions(alma.alarmsystem.alarmmessage.generated.ReductionDefinitions) LaserObjectNotFoundException(cern.laser.business.LaserObjectNotFoundException) PatternSyntaxException(java.util.regex.PatternSyntaxException) ValidationException(org.exolab.castor.xml.ValidationException) MarshalException(org.exolab.castor.xml.MarshalException) MalformedURLException(java.net.MalformedURLException) IOException(java.io.IOException) CDBRecordDoesNotExistEx(alma.cdbErrType.CDBRecordDoesNotExistEx) ReductionLinkType(alma.alarmsystem.alarmmessage.generated.ReductionLinkType) StringReader(java.io.StringReader) Unmarshaller(org.exolab.castor.xml.Unmarshaller) ReductionLinkDefinitionListType(alma.alarmsystem.alarmmessage.generated.ReductionLinkDefinitionListType) Threshold(alma.alarmsystem.alarmmessage.generated.Threshold)

Example 2 with ReductionLinkDefinitionListType

use of alma.alarmsystem.alarmmessage.generated.ReductionLinkDefinitionListType in project ACS by ACS-Community.

the class ACSAlarmDAOImpl method loadReductionRules.

/**
	 * Load the reduction rules from the CDB.
	 * 
	 * Read the reduction rules from the CDB and set up the alarms accordingly
	 */
private void loadReductionRules() {
    ReductionDefinitions rds = getReductionDefinitions();
    if (rds == null)
        return;
    // Read the links to create from the CDB
    ReductionLinkDefinitionListType ltc = rds.getLinksToCreate();
    //	Read the thresholds from the CDB
    Thresholds thresholds = rds.getThresholds();
    if (thresholds != null) {
        // Store the thresholds in the HashMap
        Threshold[] threshold = thresholds.getThreshold();
        for (Threshold t : threshold) {
            StringBuilder alarmID = new StringBuilder();
            alarmID.append(t.getAlarmDefinition().getFaultFamily());
            alarmID.append(':');
            alarmID.append(t.getAlarmDefinition().getFaultMember());
            alarmID.append(':');
            alarmID.append(t.getAlarmDefinition().getFaultCode());
            Integer thresholdValue = Integer.valueOf(t.getValue());
            theThreshods.put(alarmID.toString(), thresholdValue);
        }
    }
    if (ltc != null) {
        ReductionLinkType[] rls = ltc.getReductionLink();
        for (ReductionLinkType link : rls) {
            LinkSpec newRule = new LinkSpec(link);
            reductionRules.add(newRule);
            if (logger.isLoggable(AcsLogLevel.DEBUG)) {
                Parent p = link.getParent();
                Child c = link.getChild();
                StringBuffer buf = new StringBuffer();
                buf.replace(0, buf.length(), "");
                if (newRule._isMultiplicity) {
                    buf.append("Found MULTIPLICITY RR: parent <");
                } else {
                    buf.append("Found NODE RR: parent=<");
                }
                buf.append(p.getAlarmDefinition().getFaultFamily());
                buf.append(", ");
                buf.append(p.getAlarmDefinition().getFaultMember());
                buf.append(", ");
                buf.append(p.getAlarmDefinition().getFaultCode());
                buf.append("> child=<");
                buf.append(c.getAlarmDefinition().getFaultFamily());
                buf.append(", ");
                buf.append(c.getAlarmDefinition().getFaultMember());
                buf.append(", ");
                buf.append(c.getAlarmDefinition().getFaultCode());
                buf.append('>');
                logger.log(AcsLogLevel.DEBUG, buf.toString());
            }
        }
    }
    logger.log(AcsLogLevel.DEBUG, reductionRules.size() + " reduction rules read from CDB");
    updateReductionRules();
}
Also used : Thresholds(alma.alarmsystem.alarmmessage.generated.Thresholds) Parent(alma.alarmsystem.alarmmessage.generated.Parent) ReductionDefinitions(alma.alarmsystem.alarmmessage.generated.ReductionDefinitions) ReductionLinkType(alma.alarmsystem.alarmmessage.generated.ReductionLinkType) LinkSpec(com.cosylab.acs.laser.dao.utils.LinkSpec) ReductionLinkDefinitionListType(alma.alarmsystem.alarmmessage.generated.ReductionLinkDefinitionListType) Child(alma.alarmsystem.alarmmessage.generated.Child) Threshold(alma.alarmsystem.alarmmessage.generated.Threshold)

Example 3 with ReductionLinkDefinitionListType

use of alma.alarmsystem.alarmmessage.generated.ReductionLinkDefinitionListType in project ACS by ACS-Community.

the class ACSAlarmDAOImpl method loadReductionRules.

/**
	 * Load the reduction rules from the CDB.
	 * 
	 * Read the reduction rules from the CDB and set up the alarms accordingly
	 */
private void loadReductionRules() {
    if (conf == null) {
        throw new IllegalStateException("Missing dal");
    }
    // The reduction rules (<parent, child>)
    ArrayList<LinkSpec> reductionRules = new ArrayList<LinkSpec>();
    String xml;
    try {
        xml = conf.getConfiguration(REDUCTION_DEFINITION_PATH);
    } catch (CDBRecordDoesNotExistEx cdbEx) {
        // No reduction rules defined in CDB
        logger.log(AcsLogLevel.WARNING, "No reduction rules defined in CDB");
        return;
    } catch (Exception e) {
        throw new RuntimeException("Couldn't read " + REDUCTION_DEFINITION_PATH, e);
    }
    ReductionDefinitions rds;
    try {
        rds = (ReductionDefinitions) ReductionDefinitions.unmarshalReductionDefinitions(new StringReader(xml));
    } catch (Exception e) {
        throw new RuntimeException("Couldn't parse " + REDUCTION_DEFINITION_PATH, e);
    }
    // Read the links to create from the CDB
    ReductionLinkDefinitionListType ltc = rds.getLinksToCreate();
    //	Read the thresholds from the CDB
    Thresholds thresholds = rds.getThresholds();
    if (ltc != null) {
        ReductionLinkType[] rls = ltc.getReductionLink();
        for (ReductionLinkType link : rls) {
            Parent p = link.getParent();
            Child c = link.getChild();
            if (p == null || c == null) {
                throw new RuntimeException("Missing child or parent in a reduction link");
            }
            boolean isMulti;
            if ("MULTIPLICITY".equals(link.getType())) {
                isMulti = true;
            } else if ("NODE".equals(link.getType())) {
                isMulti = false;
            } else {
                throw new RuntimeException("Unknown reduction-link type: " + link.getType());
            }
            if (p.getAlarmDefinition() == null || c.getAlarmDefinition() == null)
                throw new RuntimeException("Missing alarm-definition in child or parent");
            LinkSpec newRule = new LinkSpec(toMatcher(p.getAlarmDefinition()), toMatcher(c.getAlarmDefinition()), isMulti);
            reductionRules.add(newRule);
            StringBuffer buf = new StringBuffer();
            buf.replace(0, buf.length(), "");
            if (newRule.isMultiplicity) {
                buf.append("Found MULTIPLICITY RR: parent <");
            } else {
                buf.append("Found NODE RR: parent=<");
            }
            buf.append(newRule.parent.family + ", " + newRule.parent.member + ", " + newRule.parent.minCode + "-" + newRule.parent.minCode + ">");
            buf.append(" child=<" + newRule.child.family + ", " + newRule.child.member + ", " + newRule.child.minCode + "-" + newRule.child.minCode + ">");
            logger.log(AcsLogLevel.DEBUG, buf.toString());
        }
    }
    logger.log(AcsLogLevel.DEBUG, reductionRules.size() + " reduction rules read from CDB");
    Collection<Alarm> cc = alarmDefs.values();
    AlarmImpl[] allAlarms = new AlarmImpl[cc.size()];
    cc.toArray(allAlarms);
    LinkSpec[] ls = new LinkSpec[reductionRules.size()];
    reductionRules.toArray(ls);
    int num = allAlarms.length;
    int numls = ls.length;
    for (int a = 0; a < num; a++) {
        AlarmImpl parent = allAlarms[a];
        for (LinkSpec lsb : ls) {
            if (lsb.matchParent(parent)) {
                AlarmRefMatcher childMatcher = lsb.child;
                boolean isMulti = lsb.isMultiplicity();
                for (int c = 0; c < num; c++) {
                    if (a == c) {
                        continue;
                    }
                    AlarmImpl aic = allAlarms[c];
                    if (childMatcher.isMatch(aic)) {
                        if (isMulti) {
                            parent.addMultiplicityChild(aic);
                            logger.log(AcsLogLevel.DEBUG, "Added MULTI RR node child " + aic.getAlarmId() + " to " + parent.getAlarmId());
                        } else {
                            parent.addNodeChild(aic);
                            logger.log(AcsLogLevel.DEBUG, "Added NODE RR node child " + aic.getAlarmId() + " to " + parent.getAlarmId());
                        }
                    }
                }
            }
        }
    }
    if (thresholds != null && thresholds.getThresholdCount() > 0) {
        Threshold[] ta = thresholds.getThreshold();
        for (AlarmImpl alarm : allAlarms) {
            String alarmFF = alarm.getTriplet().getFaultFamily();
            String alarmFM = alarm.getTriplet().getFaultMember();
            Integer alarmFC = alarm.getTriplet().getFaultCode();
            for (Threshold threshold : ta) {
                String thresholdFF = threshold.getAlarmDefinition().getFaultFamily();
                String thresholdFM = threshold.getAlarmDefinition().getFaultMember();
                int thresholdFC = threshold.getAlarmDefinition().getFaultCode();
                int thresholdVal = threshold.getValue();
                if (alarmFF.equals(thresholdFF) && alarmFM.equals(thresholdFM) && alarmFC == thresholdFC) {
                    alarm.setMultiplicityThreshold(thresholdVal);
                    logger.log(AcsLogLevel.DEBUG, "Threshold = " + thresholdVal + " set in alarm " + alarm.getAlarmId());
                }
            }
        }
    }
}
Also used : Parent(alma.alarmsystem.alarmmessage.generated.Parent) ArrayList(java.util.ArrayList) ReductionDefinitions(alma.alarmsystem.alarmmessage.generated.ReductionDefinitions) CDBRecordDoesNotExistEx(alma.cdbErrType.CDBRecordDoesNotExistEx) ReductionLinkType(alma.alarmsystem.alarmmessage.generated.ReductionLinkType) StringReader(java.io.StringReader) Child(alma.alarmsystem.alarmmessage.generated.Child) Threshold(alma.alarmsystem.alarmmessage.generated.Threshold) Thresholds(alma.alarmsystem.alarmmessage.generated.Thresholds) LaserObjectNotFoundException(cern.laser.business.LaserObjectNotFoundException) PatternSyntaxException(java.util.regex.PatternSyntaxException) ValidationException(org.exolab.castor.xml.ValidationException) MarshalException(org.exolab.castor.xml.MarshalException) MalformedURLException(java.net.MalformedURLException) IOException(java.io.IOException) Alarm(cern.laser.business.data.Alarm) AlarmImpl(cern.laser.business.data.AlarmImpl) ReductionLinkDefinitionListType(alma.alarmsystem.alarmmessage.generated.ReductionLinkDefinitionListType)

Aggregations

ReductionDefinitions (alma.alarmsystem.alarmmessage.generated.ReductionDefinitions)3 ReductionLinkDefinitionListType (alma.alarmsystem.alarmmessage.generated.ReductionLinkDefinitionListType)3 ReductionLinkType (alma.alarmsystem.alarmmessage.generated.ReductionLinkType)3 Threshold (alma.alarmsystem.alarmmessage.generated.Threshold)3 Thresholds (alma.alarmsystem.alarmmessage.generated.Thresholds)3 Child (alma.alarmsystem.alarmmessage.generated.Child)2 Parent (alma.alarmsystem.alarmmessage.generated.Parent)2 CDBRecordDoesNotExistEx (alma.cdbErrType.CDBRecordDoesNotExistEx)2 LaserObjectNotFoundException (cern.laser.business.LaserObjectNotFoundException)2 IOException (java.io.IOException)2 StringReader (java.io.StringReader)2 MalformedURLException (java.net.MalformedURLException)2 PatternSyntaxException (java.util.regex.PatternSyntaxException)2 MarshalException (org.exolab.castor.xml.MarshalException)2 ValidationException (org.exolab.castor.xml.ValidationException)2 Alarm (cern.laser.business.data.Alarm)1 AlarmImpl (cern.laser.business.data.AlarmImpl)1 LinkSpec (com.cosylab.acs.laser.dao.utils.LinkSpec)1 ArrayList (java.util.ArrayList)1 Unmarshaller (org.exolab.castor.xml.Unmarshaller)1