/* * NOTE: This copyright does *not* cover user programs that use HQ * program services by normal system calls through the application * program interfaces provided as part of the Hyperic Plug-in Development * Kit or the Hyperic Client Development Kit - this is merely considered * normal use of the program, and does *not* fall under the heading of * "derived work". * * Copyright (C) [2004, 2005, 2006], Hyperic, Inc. * This file is part of HQ. * * HQ is free software; you can redistribute it and/or modify * it under the terms version 2 of the GNU General Public License as * published by the Free Software Foundation. This program 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 General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA. */ package org.hyperic.hq.livedata.formatters; import java.text.DateFormat; import java.util.Date; import org.hyperic.hq.livedata.FormatType; import org.hyperic.hq.livedata.LiveDataFormatter; import org.hyperic.hq.livedata.shared.LiveDataCommand; import org.hyperic.sigar.Who; import org.hyperic.util.ArrayUtil; import org.hyperic.util.config.ConfigResponse; import org.hyperic.util.config.ConfigSchema; import org.hyperic.util.i18n.MessageBundle; public class WhoFormatter implements LiveDataFormatter { private static final MessageBundle BUNDLE = MessageBundle.getBundle("org.hyperic.hq.livedata.Resources"); private static final ConfigSchema EMPTY_SCHEMA = new ConfigSchema(); public boolean canFormat(LiveDataCommand cmd, FormatType type) { return cmd.getCommand().equals("who"); } public String format(LiveDataCommand cmd, FormatType type, ConfigResponse formatCfg, Object val) { Who[] w = (Who[])val; if (type.equals(FormatType.TEXT)) return formatText(formatCfg, w); else if (type.equals(FormatType.HTML)) return formatHtml(formatCfg, w); throw new IllegalStateException("Unhandled format type [" + type + "]"); } private String formatText(ConfigResponse cfg, Who[] w) { return "Text stuff "+ ArrayUtil.toString(w); } private String formatHtml(ConfigResponse cfg, Who[] w) { StringBuffer r = new StringBuffer(); DateFormat fmt = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.SHORT); r.append("<div class='who_livedata'><table cellpadding='0' cellspacing='0' width='100%'><thead><tr>"); r.append("<td>") .append(BUNDLE.format("formatter.who.head.user")) .append("</td>") .append("<td>") .append(BUNDLE.format("formatter.who.head.device")) .append("</td>") .append("<td>") .append(BUNDLE.format("formatter.who.head.time")) .append("</td>") .append("<td>") .append(BUNDLE.format("formatter.who.head.host")) .append("</td>") .append("</tr></thead><tbody>"); for (int i=0; i<w.length; i++) { String dateStr; String hostStr; if (w[i].getTime() == 0) dateStr = "unknown"; else dateStr = fmt.format(new Date(w[i].getTime() * 1000)); if (w[i].getHost() == null || w[i].getHost().trim().length() == 0) hostStr = " "; else hostStr = w[i].getHost(); r.append("<tr><td>") .append(w[i].getUser()) .append("</td><td>") .append(w[i].getDevice()) .append("</td><td>") .append(dateStr) .append("</td><td>") .append(hostStr) .append("</td></tr>"); } r.append("</tbody></table></div>"); return r.toString(); } public ConfigSchema getConfig(LiveDataCommand cmd) { return EMPTY_SCHEMA; } public String getDescription() { return BUNDLE.format("formatter.who.desc"); } public String getName() { return BUNDLE.format("formatter.who.name"); } public String getId() { return "who"; } }