working jsp!

This commit is contained in:
foo 2016-02-15 13:03:02 +00:00
parent adb87c0f07
commit 7f4d5d9f49
5 changed files with 145 additions and 0 deletions

13
war/WEB-INF/web.xml Normal file
View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<display-name>Wordbubbles Solver</display-name>
<description>
Solver for things
</description>
</web-app>

6
war/error.jsp Normal file
View File

@ -0,0 +1,6 @@
<HTML>
<BODY>
<%@ page isErrorPage="true" %>
Error: <%= exception %>
</BODY>
</HTML>

23
war/index.jsp Normal file
View File

@ -0,0 +1,23 @@
<html>
<head><title>Wordbubbles solver</title></head>
<%@ page import="uk.org.mafoo.wordbubbles.*" %>
<body>
<h1>Wordbubbles or Boggle solver</h1>
<h2>Input grid</h2>
<form action="solver.jsp">
<input type="radio" name="dictionary" checked>twl06</input><br />
<textarea name="grid" rows="10" cols="10" style="font-family: monospace;">
som e
te xt
g oes
here
</textarea>
<br />
<input type="number" name="desired" min="3" value="5" />
<input type="submit" value="Submit" />
</form>
</body>
</html>

80
war/solver.jsp Normal file
View File

@ -0,0 +1,80 @@
<html>
<head><title>Wordbubbles solver</title></head>
<%@ page import="java.util.*" %>
<%@ page import="java.io.*" %>
<%@ page import="uk.org.mafoo.wordbubbles.*" %>
<%@ page errorPage="error.jsp" %>
<%
// String dict = request.getParameter("dictionary");
// if(dict != "twl06") throw new Exception("failed to get dictionary");
String dict = "/usr/share/dict/twl06";
uk.org.mafoo.wordbubbles.Lexicon words = uk.org.mafoo.wordbubbles.Lexicon.loadLexiconFromFile(dict);
ArrayList<ArrayList<Character>> grid = new ArrayList<ArrayList<Character>>();
HashSet<Integer> desired = new HashSet<Integer>();
boolean desired_active = false;
if(request.getParameterValues("desired") != null) {
desired_active = true;
for( String p : request.getParameterValues("desired") ) {
desired.add(new Integer(p));
}
}
if (request.getParameter("grid").length() > 2048) { throw new Exception("Input too large"); }
for ( String line : request.getParameter("grid").split("\r\n")) {
ArrayList<Character> row = new ArrayList<Character>();
for ( char c : line.toLowerCase().toCharArray() ) {
if( (c >= 'a' && c <= 'z') || c == ' ' || c == '.' || c == '_') {
if(c == '.' || c == '_') c = ' ';
row.add(new Character(c));
} else {
throw new Exception("invalid char");
}
}
grid.add(row);
}
uk.org.mafoo.wordbubbles.Prison prison = new uk.org.mafoo.wordbubbles.Prison(grid);
ArrayList<LinkedHashSet<Cell>> found = prison.search(words);
HashSet<String> foundwords = new HashSet<String>();
for ( LinkedHashSet<Cell> w : found ) {
String str = "";
for ( Cell letter : w ) {
str += letter;
}
if(desired_active) {
if(desired.contains(new Integer(str.length()))) { foundwords.add(str); }
} else {
foundwords.add(str);
}
}
%>
<body>
<h1>Wordbubble Solver</h1>
<h2>Input</h2>
<table style="font-family: monospace;">
<% for (ArrayList<Character> row : grid) { %>
<tr>
<% for(Character c : row) { %>
<td><%= c %></td>
<% }
}
%>
</table>
<% if(desired_active) { %> Looking for words of length(s): <%= desired %> <% } %>
<h2>Results</h2>
<ul style="font-family: monospace;">
<%
List<String> output = new ArrayList<String>(foundwords);
Collections.sort(output);
for (String word : output) { %>
<li><%= word %></li>
<% } %>
</ul>
</body>
</html>

23
war/test.jsp Normal file
View File

@ -0,0 +1,23 @@
<html>
<head><title>Wordbubbles solver</title></head>
<%@ page import="uk.org.mafoo.wordbubbles.*" %>
<body>
<h1>Wordbubbles or Boggle solver</h1>
<h2>Input grid</h2>
<form action="solver.jsp" method="post">
<input type="radio" name="dictionary" checked>twl06</input><br />
<textarea name="grid" rows="10" cols="10" style="font-family: monospace;">
som e
te xt
g oes
here
</textarea>
<br />
<input type="number" name="desired" min="3" value="5" />
<input type="submit" value="Submit" />
</form>
</body>
</html>