📄 onentservicebean.java
字号:
// NAME// $RCSfile: OneNTServiceBean.java,v $// DESCRIPTION// [given below in javadoc format]// DELTA// $Revision: 1.13 $// CREATED// $Date: 2006/01/25 18:08:56 $// COPYRIGHT// Westhawk Ltd// TO DO///* * Copyright (C) 1998 - 2006 by Westhawk Ltd * * Permission to use, copy, modify, and distribute this software * for any purpose and without fee is hereby granted, provided * that the above copyright notices appear in all copies and that * both the copyright notice and this permission notice appear in * supporting documentation. * This software is provided "as is" without express or implied * warranty. * author <a href="mailto:snmp@westhawk.co.uk">Tim Panton</a> */package uk.co.westhawk.snmp.beans;import uk.co.westhawk.snmp.stack.*;import uk.co.westhawk.snmp.pdu.*;import java.awt.*;import java.util.*;import java.text.*;import java.lang.*;import java.io.*;import java.beans.*;/** * <p> * This bean collects information about one NT network service installed * on a NT server. The NT mib is described in the * * <a href="http://premium.microsoft.com/msdn/library/winresource/dnwinnt/f1d/d25/s86a2.htm">LAN Manager MIB II for Windows NT Objects</a> . * * You will have to register to the MSDN before accessing this page. * </p> * * <p> * The properties in the parent classes should be set, before calling * the action() method. Via a PropertyChangeEvent the application/applet * will be notified. * </p> * * @see SNMPBean#setHost * @see SNMPBean#setPort * @see SNMPBean#setCommunityName * @see SNMPRunBean#setUpdateInterval * @see #setIndex(String) * @see SNMPBean#addPropertyChangeListener * @see SNMPBean#action * @see GetPdu_vec * @see NTServiceNamesBean * * @author <a href="mailto:snmp@westhawk.co.uk">Birgit Arkesteijn</a> * @version $Revision: 1.13 $ $Date: 2006/01/25 18:08:56 $ */public class OneNTServiceBean extends SNMPRunBean implements Observer { private static final String version_id = "@(#)$Id: OneNTServiceBean.java,v 1.13 2006/01/25 18:08:56 birgit Exp $ Copyright Westhawk Ltd"; private GetPdu_vec pdu; private boolean isPduInFlight; private Date lastUpdateDate = null; private String index = ""; private String name = ""; private String instState = ""; private String operState = ""; private boolean canUninst = false; private boolean canPause = false; private final static int NR_OID = 5; private final static String svSvcName = "1.3.6.1.4.1.77.1.2.3.1.1"; private final static String svSvcInstalledState = "1.3.6.1.4.1.77.1.2.3.1.2"; private final static String svSvcOperatingState = "1.3.6.1.4.1.77.1.2.3.1.3"; private final static String svSvcCanBeUninstalled = "1.3.6.1.4.1.77.1.2.3.1.4"; private final static String svSvcCanBePaused = "1.3.6.1.4.1.77.1.2.3.1.5"; public final static String msg_inst_state[] = { "unknown", "uninstalled", // 1 "install pending", // 2 "uninstall pending", // 3 "installed" // 4 }; public final static String msg_oper_state[] = { "unknown", "active", // 1 "continue pending", // 2 "pause pending", // 3 "paused" // 4 }; public final static int cannot_be_uninstalled = 1; public final static int can_be_uninstalled = 2; public final static int cannot_be_paused = 1; public final static int can_be_paused = 2;/** * The default constructor. */public OneNTServiceBean() {}/** * The constructor that will set the host and the port no. * * @param h the hostname * @param p the port no * @see SNMPBean#setHost * @see SNMPBean#setPort */public OneNTServiceBean(String h, int p) { this(h, p, null);}/** * The constructor that will set the host, the port no and the local * bind address. * * @param h the hostname * @param p the port no * @param b the local bind address * @see SNMPBean#setHost * @see SNMPBean#setPort * @see SNMPBean#setBindAddress * * @since 4_14 */public OneNTServiceBean(String h, int p, String b) { this(); setHost(h); setPort(p); setBindAddress(b);}/** * Sets the index of the NT network service that will be requested. * @param ind the index * @see #getIndex() * @see NTServiceNamesBean#getIndex(String) */public void setIndex(String ind){ if (ind != null && ind.length() > 0) { index = ind; }}/** * Returns the index of the NT network service. * @return the index * @see #setIndex(String) */public String getIndex(){ return index;}/** * Returns the name of the NT network service. * @return the name */public String getName(){ return name;}/** * Returns the installation status of the NT network service. * @return the installation status * @see #msg_inst_state */public String getInstalledState(){ return instState;}/** * Returns the operating status of the NT network service. * @return the operating status * @see #msg_oper_state */public String getOperatingState(){ return operState;}/** * Returns if the NT network service can be uninstalled. * @return the uninstalled option * @see #can_be_uninstalled * @see #cannot_be_uninstalled */public boolean getCanBeUninstalled(){ return canUninst;}/** * Returns if the NT network service can be paused. * @return the paused option * @see #can_be_paused * @see #cannot_be_paused */public boolean getCanBePaused(){ return canPause;}/** * Returns the date of the moment when this bean was last updated. * This might be null when the first time the update was not finished. * * @return the last update date */public Date getLastUpdateDate(){ return lastUpdateDate;}/** * This method starts sending the SNMP request. All properties should be * set before this method is called. * * The actual sending will take place in the run method. * It makes a new snmp context and initialises all variables before * starting. */public void action() { if (isHostPortReachable()) { lastUpdateDate = new Date(); isPduInFlight = false; setRunning(true); }}/** * The run method according to the Runnable interface. * This method will send the Pdu request, if the previous one is not * still in flight. * @see SNMPRunBean#isRunning() */public void run(){ while (context != null && isRunning()) { String ind = getIndex(); if (isPduInFlight == false && ind != null && ind.length() > 0) { isPduInFlight = true; pdu = new GetPdu_vec(context, NR_OID); pdu.addObserver(this); pdu.addOid(svSvcName + "." + ind); pdu.addOid(svSvcInstalledState + "." + ind); pdu.addOid(svSvcOperatingState + "." + ind); pdu.addOid(svSvcCanBeUninstalled + "." + ind); pdu.addOid(svSvcCanBePaused + "." + ind); try { pdu.send(); } catch (PduException exc) { System.out.println("PduException " + exc.getMessage()); } catch (IOException exc) { System.out.println("IOException " + exc.getMessage()); } } try { Thread.sleep(interval); } catch (InterruptedException ix) { ; } }}/** * The update method according to the Observer interface, it will be * called when the Pdu response is received. * The property change event is fired. * * @see SNMPBean#addPropertyChangeListener */public void update(Observable obs, Object ov){ int nr; pdu = (GetPdu_vec) obs; varbind [] varbinds = (varbind []) ov; if (pdu.getErrorStatus() == AsnObject.SNMP_ERR_NOERROR) { name = ((AsnOctets) varbinds[0].getValue()).getValue(); nr = ((AsnInteger) varbinds[1].getValue()).getValue(); instState = msg_inst_state[nr]; nr = ((AsnInteger) varbinds[2].getValue()).getValue(); operState = msg_oper_state[nr]; nr = ((AsnInteger) varbinds[3].getValue()).getValue(); canUninst = (nr == can_be_uninstalled); nr = ((AsnInteger) varbinds[4].getValue()).getValue(); canPause = (nr == can_be_paused); lastUpdateDate = new Date(); isPduInFlight = false; firePropertyChange("NTService", null, null); }}}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -