/jsendnsca/src/main/java/com/googlecode/jsendnsca/MessagePayload.java

http://jsendnsca.googlecode.com/ · Java · 256 lines · 114 code · 29 blank · 113 comment · 6 complexity · 20d631777b00c9a47f03789c9e201e61 MD5 · raw file

  1. /*
  2. * Licensed under the Apache License, Version 2.0 (the "License");
  3. * you may not use this file except in compliance with the License.
  4. * You may obtain a copy of the License at
  5. *
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Unless required by applicable law or agreed to in writing, software
  9. * distributed under the License is distributed on an "AS IS" BASIS,
  10. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. * See the License for the specific language governing permissions and
  12. * limitations under the License.
  13. */
  14. package com.googlecode.jsendnsca;
  15. import org.apache.commons.lang.StringUtils;
  16. import org.apache.commons.lang.Validate;
  17. import org.apache.commons.lang.builder.EqualsBuilder;
  18. import org.apache.commons.lang.builder.HashCodeBuilder;
  19. import org.apache.commons.lang.builder.ToStringBuilder;
  20. import java.io.Serializable;
  21. import java.net.InetAddress;
  22. import java.net.UnknownHostException;
  23. import static org.apache.commons.lang.builder.ToStringStyle.SHORT_PREFIX_STYLE;
  24. /**
  25. * The Passive Check Message Payload
  26. *
  27. * @author Raj.Patel
  28. * @version 1.0
  29. * @see com.googlecode.jsendnsca.builders.MessagePayloadBuilder
  30. */
  31. public class MessagePayload implements Serializable {
  32. private static final long serialVersionUID = 6014395299584333124L;
  33. private static final String DEFAULT_SERVICENAME = "UNDEFINED";
  34. private String hostname;
  35. private Level level = Level.UNKNOWN;
  36. private String serviceName = DEFAULT_SERVICENAME;
  37. private String message = StringUtils.EMPTY;
  38. /**
  39. * Construct a new {@link MessagePayload} with hostname being the short
  40. * hostname of this machine, level unknown, service name "undefined" and
  41. * empty message
  42. */
  43. public MessagePayload() {
  44. useLocalHostname();
  45. }
  46. /**
  47. * Construct a new {@link MessagePayload}
  48. *
  49. * @param hostname
  50. * the hostname to be sent in this passive check
  51. * @param level
  52. * the level
  53. * @param serviceName
  54. * the service name
  55. * @param message
  56. * the message
  57. */
  58. public MessagePayload(String hostname, Level level, String serviceName, String message) {
  59. Validate.notEmpty(hostname, "hostname cannot be null or an empty String");
  60. Validate.notEmpty(serviceName, "serviceName cannot be null or an empty String");
  61. this.hostname = hostname;
  62. this.level = level;
  63. this.serviceName = serviceName;
  64. this.message = message;
  65. }
  66. /**
  67. * The hostname to be sent in this passive check
  68. *
  69. * @return the hostname, defaults to "localhost"
  70. */
  71. public String getHostname() {
  72. return hostname;
  73. }
  74. /**
  75. * Use the short hostname of this machine in the passive check
  76. */
  77. public void useLocalHostname() {
  78. setHostname(false);
  79. }
  80. /**
  81. * Set the hostname in the passive check
  82. *
  83. * @param useCanonical
  84. * true to use this machines fully qualified domain name, false
  85. * to use the short hostname
  86. */
  87. public void setHostname(boolean useCanonical) {
  88. InetAddress ipAddress;
  89. try {
  90. ipAddress = InetAddress.getLocalHost();
  91. } catch (UnknownHostException e) {
  92. throw new UnknownHostRuntimeException(e);
  93. }
  94. if (useCanonical) {
  95. this.hostname = ipAddress.getCanonicalHostName();
  96. } else {
  97. this.hostname = ipAddress.getHostName();
  98. }
  99. }
  100. /**
  101. * Set the hostname in the passive check
  102. *
  103. * @param hostname
  104. * the hostname to use
  105. */
  106. public void setHostname(String hostname) {
  107. Validate.notEmpty(hostname, "hostname cannot be null or an empty String");
  108. this.hostname = hostname;
  109. }
  110. /**
  111. * Get the level of the Passive check
  112. *
  113. * @return the level
  114. */
  115. public Level getLevel() {
  116. return level;
  117. }
  118. /**
  119. * Set the level of the Passive check using a {@link String} The case of the
  120. * {@link String} is ignored
  121. *
  122. * @param level
  123. * either "ok", "warning", "critical" or "unknown"
  124. */
  125. public void setLevel(String level) {
  126. this.level = Level.tolevel(level);
  127. }
  128. /**
  129. * Set the level of the Passive check
  130. *
  131. * @param level
  132. * the level
  133. */
  134. public void setLevel(Level level) {
  135. this.level = level;
  136. }
  137. /**
  138. * The service name of this passive check
  139. *
  140. * @return the service name, default is "UNDEFINED"
  141. */
  142. public String getServiceName() {
  143. return serviceName;
  144. }
  145. /**
  146. * Set the service name of this passive check
  147. *
  148. * @param serviceName
  149. * the service name
  150. */
  151. public void setServiceName(String serviceName) {
  152. Validate.notEmpty(serviceName, "serviceName cannot be null or an empty String");
  153. this.serviceName = serviceName;
  154. }
  155. /**
  156. * The message to send in this passive check
  157. *
  158. * @return the message, default is an empty string
  159. */
  160. public String getMessage() {
  161. return message;
  162. }
  163. /**
  164. * Set the message to send in this passive check
  165. *
  166. * @param message
  167. * the message
  168. */
  169. public void setMessage(String message) {
  170. this.message = message;
  171. }
  172. /*
  173. * (non-Javadoc)
  174. *
  175. * @see java.lang.Object#hashCode()
  176. */
  177. @Override
  178. public int hashCode() {
  179. return new HashCodeBuilder(21, 57)
  180. .append(hostname)
  181. .append(level)
  182. .append(serviceName)
  183. .append(message)
  184. .toHashCode();
  185. }
  186. /*
  187. * (non-Javadoc)
  188. *
  189. * @see java.lang.Object#equals(java.lang.Object)
  190. */
  191. @Override
  192. public boolean equals(Object obj) {
  193. if (obj instanceof MessagePayload == false) {
  194. return false;
  195. }
  196. if (this == obj) {
  197. return true;
  198. }
  199. MessagePayload other = (MessagePayload) obj;
  200. return new EqualsBuilder()
  201. .append(hostname, other.hostname)
  202. .append(level, other.level)
  203. .append(serviceName, other.serviceName)
  204. .append(message, other.message)
  205. .isEquals();
  206. }
  207. /*
  208. * (non-Javadoc)
  209. *
  210. * @see java.lang.Object#toString()
  211. */
  212. @Override
  213. public String toString() {
  214. return new ToStringBuilder(this, SHORT_PREFIX_STYLE)
  215. .append("level", level)
  216. .append("hostname", hostname)
  217. .append("serviceName", serviceName)
  218. .append("message", message)
  219. .toString();
  220. }
  221. public static class UnknownHostRuntimeException extends RuntimeException {
  222. private static final long serialVersionUID = 6164363358198216472L;
  223. public UnknownHostRuntimeException(UnknownHostException e) {
  224. super(e);
  225. }
  226. }
  227. }