epcgnotiftrigtablerowstatuslistener.java

来自「关于 RFID 读写器的相关内容」· Java 代码 · 共 118 行

JAVA
118
字号
/*
 * Copyright (C) 2007 ETH Zurich
 *
 * This file is part of Fosstrak (www.fosstrak.org).
 *
 * Fosstrak is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 2.1, as published by the Free Software Foundation.
 *
 * Fosstrak 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Fosstrak; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301  USA
 */

package org.fosstrak.reader.rprm.core.mgmt.agent.snmp.table;

import org.fosstrak.reader.rprm.core.NotificationChannel;
import org.fosstrak.reader.rprm.core.ReaderProtocolException;
import org.fosstrak.reader.rprm.core.Trigger;
import org.fosstrak.reader.rprm.core.mgmt.agent.snmp.table.SnmpTable.TableTypeEnum;
import org.fosstrak.reader.rprm.core.mgmt.util.SnmpUtil;
import org.apache.log4j.Logger;
import org.snmp4j.agent.mo.snmp.RowStatus;
import org.snmp4j.agent.mo.snmp.RowStatusEvent;
import org.snmp4j.agent.mo.snmp.RowStatusListener;
import org.snmp4j.smi.OID;

/**
 * Row status listener to be used with the <code>epcgNotifTrigRowStatus</code>
 * column.
 */
public class EpcgNotifTrigTableRowStatusListener implements RowStatusListener {
	
	/**
	 * The logger.
	 */
	private static Logger log = Logger.getLogger(EpcgNotifTrigTableRowStatusListener.class);
	
	/**
	 * The last <code>RowStatusEvent</code> object received.
	 */
	private RowStatusEvent lastEvent;

	/**
	 * Called whenever the row status changed.
	 * 
	 * @param event
	 *            Row status event
	 */
	public void rowStatusChanged(RowStatusEvent event) {
		if (!areRowStatusEventsEqual(event, lastEvent)) {
			lastEvent = event;
			SnmpTableRow row = (SnmpTableRow) event.getRow();
			OID rowIndex = row.getIndex();
			OID notifChanIndex = new OID(new int[] { rowIndex.get(0) });
			OID triggerIndex = new OID(new int[] { rowIndex.get(1) });
			SnmpTable epcgNotificationChannelTable = (SnmpTable)SnmpUtil.getSnmpTable(TableTypeEnum.EPCG_NOTIFICATION_CHANNEL_TABLE);
			SnmpTable epcgTriggerTable = (SnmpTable)SnmpUtil.getSnmpTable(TableTypeEnum.EPCG_TRIGGER_TABLE);
			NotificationChannel notifChan;
			Trigger trigger;
			try {
				notifChan = (NotificationChannel) epcgNotificationChannelTable.getRowObjContOfRow(notifChanIndex).getRowObjects()[0];
			} catch (NullPointerException npe) {
				log.warn("There is no notification channel with index " + notifChanIndex);
				return;
			}
			try {
				trigger = (Trigger) epcgTriggerTable.getRowObjContOfRow(triggerIndex).getRowObjects()[0];
			} catch (NullPointerException npe) {
				log.warn("There is no trigger with index " + triggerIndex);
				return;
			}
			row.cont = new RowObjectContainer(TableTypeEnum.EPCG_NOTIF_TRIG_TABLE, new Object[] { notifChan, trigger });
			
			if ((event.getNewStatus() == RowStatus.active) || (event.getNewStatus() == RowStatus.createAndGo)) {
				try {
					notifChan.addNotificationTriggers(new Trigger[] { trigger });
				} catch (ReaderProtocolException rpe) {
					log.warn("The trigger " + trigger.getName() + " is already associated with the notification channel " + notifChan.getName());
				}
			}
			else if (event.getNewStatus() == RowStatus.destroy) {
				notifChan.removeNotificationTriggers(new Trigger[] { trigger });
			}
			else if ((event.getNewStatus() == RowStatus.notInService) && (event.getOldStatus() == RowStatus.active)) {
				notifChan.removeNotificationTriggers(new Trigger[] { trigger });
			}
		} else {
			lastEvent = event;
		}
	}
	
	/**
	 * Compares to <code>RowStatusEvent</code> objects for equality.
	 * 
	 * @param event1
	 *            First <code>RowStatusEvent</code> object
	 * @param event2
	 *            Second <code>RowStatusEvent</code> object
	 * @return <code>true</code> if the events are equal, <code>false</code>
	 *         otherwise
	 */
	private boolean areRowStatusEventsEqual(RowStatusEvent event1, RowStatusEvent event2) {
		if ((event1 == null) || (event2 == null)) return false;
		return (event1.getSource().equals(event2.getSource()))
				&& (event1.getRow().getIndex().toString().equals(event2
						.getRow().getIndex().toString()))
				&& (event1.getNewStatus() == event2.getNewStatus());
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?