/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2006-2011 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * OpenNMS(R) 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 OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ package org.opennms.web.graph; import java.io.IOException; import java.io.OutputStream; import java.sql.SQLException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.exolab.castor.xml.MarshalException; import org.exolab.castor.xml.ValidationException; import org.opennms.core.utils.ThreadCategory; import org.opennms.netmgt.charts.ChartUtils; /** * <p>PurdyChartServlet class.</p> * * @author david * @version $Id: $ * @since 1.8.1 */ public class PurdyChartServlet extends HttpServlet { /** * */ private static final long serialVersionUID = 2449309268355063862L; /** * <p>Constructor for PurdyChartServlet.</p> */ public PurdyChartServlet() { super(); } /* public void init() { try { ChartConfigFactory.init(); DataSourceFactory.init(); } catch (MarshalException e) { log().error("init: Error marshalling chart-configuration.xml: ",e); } catch (ValidationException e) { log().error("init: Error validating chart-configuration.xml: ",e); } catch (IOException e) { log().error("init: Error reading chart-configuration.xml: ",e); } catch (ClassNotFoundException e) { log().error("init: Error initializing database connection factory: ",e); } } */ /** {@inheritDoc} */ public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException { String chartName = request.getParameter("chart-name"); String buffered = request.getParameter("buffered"); if (chartName == null) { log().warn("doGet: request doesn't contain a chart-name parameter."); return; } if (buffered == null) { buffered = "0"; } /* response.setContentType("text/html"); PrintWriter pw = response.getWriter(); pw.println("<html>"); pw.println("<body>"); pw.println("<h1>"+chartName+"</h1>"); pw.close(); */ response.setContentType("image/png"); OutputStream out = response.getOutputStream(); log().debug("doGet: displaying chart: "+chartName); try { ChartUtils.getBarChartPNG(chartName, out); } catch (MarshalException e) { log().error("Error marshalling chart-configuration.xml: ",e); } catch (ValidationException e) { log().error("Error validating chart-configuration.xml: ",e); } catch (IOException e) { log().error("Error reading chart-configuration.xml: ",e); } catch (SQLException e) { log().error("Error in SQL for chart: "+chartName,e); } out.flush(); out.close(); /* pw = response.getWriter(); response.setContentType("text/html"); pw.println("</body>"); pw.println("</html>"); */ } private ThreadCategory log() { return ThreadCategory.getInstance(); } }