/tools/snmp-adaptor/adaptor-core/src/main/java/org/jboss/jmx/adaptor/snmp/trapd/TrapReceiver.java

http://mobicents.googlecode.com/ · Java · 160 lines · 11 code · 6 blank · 143 comment · 0 complexity · f6e2274571ef7d3f2283c930958532ca MD5 · raw file

  1. /*
  2. * Copyright (c) 2003, Intracom S.A. - www.intracom.com
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with this library; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. *
  18. * This package and its source code is available at www.jboss.org
  19. **/
  20. package org.jboss.jmx.adaptor.snmp.trapd;
  21. import java.net.InetAddress;
  22. import org.jboss.logging.Logger;
  23. /**
  24. * Implements an SNMP trap reception engine
  25. *
  26. * @version $Revision: 30193 $
  27. *
  28. * @author <a href="mailto:spol@intracom.gr">Spyros Pollatos</a>
  29. * @author <a href="mailto:dimitris@jboss.org">Dimitris Andreadis</a>
  30. **/
  31. public class TrapReceiver
  32. // implements SnmpTrapHandler
  33. {
  34. /** target logger */
  35. protected final Logger log;
  36. /**
  37. * Public CTOR
  38. *
  39. * @param log the logger used to output info messages
  40. **/
  41. public TrapReceiver(Logger log)
  42. {
  43. this.log = log;
  44. }
  45. // /**
  46. // * Receives and logs information about SNMPv2 traps.
  47. // *
  48. // * @param session the trap session that received the PDU
  49. // * @param agent the address of the remote sender
  50. // * @param port the remote port where the pdu was transmitted from
  51. // * @param community the decoded community string
  52. // * @param pdu the decoded v2 trap pdu
  53. // **/
  54. // public void snmpReceivedTrap(SnmpTrapSession session, InetAddress agent,
  55. // int port, SnmpOctetString community,
  56. // SnmpPduPacket pdu)
  57. // {
  58. // StringBuffer sbuf = new StringBuffer();
  59. //
  60. // sbuf.append("V2 Trap from ").append(agent.toString());
  61. // sbuf.append(" on port ").append(port);
  62. // sbuf.append("\nPDU command......... ").append(pdu.getCommand());
  63. // sbuf.append("\nPDU Length.......... ").append(pdu.getLength());
  64. // sbuf.append("\nCommunity string.... ").append(community.toString());
  65. //
  66. // if(pdu instanceof SnmpPduRequest)
  67. // {
  68. // SnmpPduRequest spdu = (SnmpPduRequest) pdu;
  69. //
  70. // sbuf.append("\nPDU Error Status.... ").append(spdu.getErrorStatus());
  71. // sbuf.append("\nPDU Error Index..... ").append(spdu.getErrorIndex());
  72. // sbuf.append("\n");
  73. // }
  74. //
  75. // for (int i = 0; i < pdu.getLength(); i++ )
  76. // {
  77. // SnmpVarBind vb = pdu.getVarBindAt(i);
  78. //
  79. // sbuf.append("Varbind[").append(i).append("] := ");
  80. // sbuf.append(vb.getName().toString()).append(" --> ");
  81. // sbuf.append(vb.getValue().toString()).append("\n");
  82. // }
  83. // log.debug(sbuf.toString());
  84. // } // snmpReceivedTrap
  85. //
  86. // /**
  87. // * Receives and logs information about SNMPv1 traps.
  88. // *
  89. // * @param session the trap session that received the PDU
  90. // * @param agent the address of the remote sender
  91. // * @param port the remote port where the pdu was transmitted from
  92. // * @param community the decoded community string
  93. // * @param pdu the decoded v1 trap pdu
  94. // **/
  95. // public void snmpReceivedTrap(SnmpTrapSession session, InetAddress agent,
  96. // int port, SnmpOctetString community,
  97. // SnmpPduTrap pdu)
  98. // {
  99. // StringBuffer sbuf = new StringBuffer();
  100. //
  101. // sbuf.append("V1 Trap from agent ").append(agent.toString());
  102. // sbuf.append(" on port ").append(port);
  103. // sbuf.append("\nIP Address......... ").append(pdu.getAgentAddress());
  104. // sbuf.append("\nEnterprise Id...... ").append(pdu.getEnterprise());
  105. // sbuf.append("\nGeneric ........... ").append(pdu.getGeneric());
  106. // sbuf.append("\nSpecific .......... ").append(pdu.getSpecific());
  107. // sbuf.append("\nTimeStamp ......... ").append(pdu.getTimeStamp());
  108. // sbuf.append("\nLength............. ").append(pdu.getLength());
  109. // sbuf.append("\nCommunity string... ").append(community.toString());
  110. // sbuf.append("\n");
  111. //
  112. // for (int i = 0; i < pdu.getLength(); i++ )
  113. // {
  114. // SnmpVarBind vb = pdu.getVarBindAt(i);
  115. //
  116. // sbuf.append("Varbind[").append(i).append("] := ");
  117. // sbuf.append(vb.getName().toString()).append(" --> ");
  118. // sbuf.append(vb.getValue().toString()).append("\n");
  119. // }
  120. // log.debug(sbuf.toString());
  121. // } // snmpReceivedTrap
  122. //
  123. // /**
  124. // * Processes session errors.
  125. // *
  126. // * @param session the trap session in error
  127. // * @param error the error condition
  128. // * @param ref the reference object, if any
  129. // **/
  130. // public void snmpTrapSessionError(SnmpTrapSession session,
  131. // int error, Object ref)
  132. // {
  133. // StringBuffer sbuf = new StringBuffer();
  134. //
  135. // if(ref != null) {
  136. // sbuf.append("Session error (").append(error).append(") reference: ");
  137. // sbuf.append(ref.toString());
  138. // }
  139. // else {
  140. // sbuf.append("Session error (").append(error).append(")");
  141. // }
  142. //
  143. // try {
  144. // if(error == SnmpTrapSession.ERROR_EXCEPTION)
  145. // session.raise();
  146. // }
  147. // catch (Throwable e) {
  148. // sbuf.append(" <").append(e).append(">");
  149. // }
  150. //
  151. // log.error(sbuf.toString());
  152. //
  153. // } // snmpTrapSessionError
  154. } // class TrapReceiver