From 280ad8b8bf2942f055daf5fb6f8ae55a7f88243a Mon Sep 17 00:00:00 2001 From: Albert Pham Date: Thu, 13 Jun 2013 15:55:12 -0700 Subject: Initial commit. --- .../java/com/sk89q/warmroast/DataViewServlet.java | 76 ++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 src/main/java/com/sk89q/warmroast/DataViewServlet.java (limited to 'src/main/java/com/sk89q/warmroast/DataViewServlet.java') diff --git a/src/main/java/com/sk89q/warmroast/DataViewServlet.java b/src/main/java/com/sk89q/warmroast/DataViewServlet.java new file mode 100644 index 0000000..205dd3e --- /dev/null +++ b/src/main/java/com/sk89q/warmroast/DataViewServlet.java @@ -0,0 +1,76 @@ +/* + * 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(""); + } +} \ No newline at end of file -- cgit