/* * WarmRoast * Copyright (C) 2013 Albert Pham * * This program 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. * * 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, see . */ package com.sk89q.warmroast; import java.io.IOException; import java.io.PrintWriter; import java.util.Collection; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class DataViewServlet extends HttpServlet { private static final long serialVersionUID = -2331397310804298286L; private final WarmRoast roast; public DataViewServlet(WarmRoast roast) { this.roast = roast; } @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html; charset=utf-8"); response.setStatus(HttpServletResponse.SC_OK); PrintWriter w = response.getWriter(); w.println("WarmRoast"); w.println(""); w.println(""); w.println("

WarmRoast

"); w.println("
Downloading snapshot; please wait...
"); w.println("
"); synchronized (roast) { Collection nodes = roast.getData().values(); for (StackNode node : nodes) { w.println(node.toHtml(roast.getMapping())); } if (nodes.size() == 0) { w.println("

There are no results. " + "(Thread filter does not match thread?)

"); } } w.println("
"); w.println("

Legend: "); w.println("Mapped "); w.println("Multiple Mappings "); w.println("

"); w.println("
"); w.println("

"); w.println("Icons from FatCow — "); w.println("github.com/sk89q/warmroast

"); w.println(""); w.println(""); w.println(""); } }