commit ad982eff1b27c31b54df4abae00ac2d4065543d6 Author: Erik C. Thauvin Date: Wed Dec 2 18:23:54 2015 -0800 Initial commit. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d7290a0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +**/.idea/dictionaries +**/.idea/gradle.xml +**/.idea/libraries +**/.idea/tasks.xml +**/.idea/workspace.xml +*.iws +.DS_Store +.classpath +.gradle +.nb-gradle +.project +.settings +/bin +/build +/deploy +/dist +/gen +/local.properties +/out +/proguard-project.txt +/project.properties +/test-output +Thumbs.db +ehthumbs.db \ No newline at end of file diff --git a/HttpStatus.iml b/HttpStatus.iml new file mode 100644 index 0000000..f05d6c7 --- /dev/null +++ b/HttpStatus.iml @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/HttpStatus.ipr b/HttpStatus.ipr new file mode 100644 index 0000000..19d0f7d --- /dev/null +++ b/HttpStatus.ipr @@ -0,0 +1,284 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Android Lint + + + Java + + + Portability issuesJava + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.8.x + + + + + + + + \ No newline at end of file diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..e2d39e8 --- /dev/null +++ b/build.gradle @@ -0,0 +1,85 @@ +apply plugin: 'java' +apply plugin: 'idea' +apply plugin: 'application' + +defaultTasks 'deploy' + +version = '1.0' + +def deployDir = 'deploy' +def buildProp = 'build' +def buildProps = 'buildnumber.properties' +def isRelease = 'release' in gradle.startParameter.taskNames + +mainClassName = 'net.thauvin.erik.httpstatus.Reasons' +[compileJava, compileTestJava]*.options*.encoding = 'UTF-8' + +repositories { + mavenCentral() +} + +dependencies { + compile 'servletapi:servlet-api:+' + compile 'javax.servlet.jsp:jsp-api:+' + testCompile 'org.testng:testng:+' +} + +test { + useTestNG() +} + +compileJava { + doFirst { + if (isRelease) + { + ant.propertyfile(file: buildProps) { + entry(key: buildProp, + type: 'int', + default: '-1', + operation: '+') + } + } + } + //options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" +} + + +jar { + doFirst { + def props = new Properties() + file(buildProps).withInputStream { stream -> props.load(stream) } + version = version + '.' + props.get(buildProp) + } + archiveName = archiveName.toLowerCase() + manifest.attributes('Main-Class': mainClassName) +} + +clean { + delete deployDir +} + +task wrapper(type: Wrapper) { + gradleVersion = gradle.gradleVersion +} + +task copyToDeploy(type: Copy) { + from(configurations.runtime) { + exclude 'servlet-api-*.jar' + exclude 'jsp-api-*.jar' + } + from jar + into deployDir +} + +task deploy(dependsOn: ['build', 'copyToDeploy']) { + description = "Copies all needed files to the ${deployDir} directory." + group = "Publishing" + outputs.dir deployDir + inputs.files copyToDeploy + mustRunAfter clean +} + +task release(dependsOn: ['deploy', 'wrapper']) { + group = "Publishing" + description = "Releases new version." +} \ No newline at end of file diff --git a/buildnumber.properties b/buildnumber.properties new file mode 100644 index 0000000..d2aa0ba --- /dev/null +++ b/buildnumber.properties @@ -0,0 +1,2 @@ +#Wed, 02 Dec 2015 15:38:42 -0800 +build=0 diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..9411448 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..62ef353 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Wed Dec 02 13:19:10 PST 2015 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-2.9-bin.zip diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..9d82f78 --- /dev/null +++ b/gradlew @@ -0,0 +1,160 @@ +#!/usr/bin/env bash + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS="" + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn ( ) { + echo "$*" +} + +die ( ) { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; +esac + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules +function splitJvmOpts() { + JVM_OPTS=("$@") +} +eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS +JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" + +exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..8a0b282 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,90 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windowz variants + +if not "%OS%" == "Windows_NT" goto win9xME_args +if "%@eval[2+2]" == "4" goto 4NT_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* +goto execute + +:4NT_args +@rem Get arguments from the 4NT Shell from JP Software +set CMD_LINE_ARGS=%$ + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..1fbf6b6 --- /dev/null +++ b/settings.gradle @@ -0,0 +1,19 @@ +/* + * This settings file was auto generated by the Gradle buildInit task + * by 'erik' at '12/2/15 1:19 PM' with Gradle 2.9 + * + * The settings file is used to specify which projects to include in your build. + * In a single project build this file can be empty or even removed. + * + * Detailed information about configuring a multi-project build in Gradle can be found + * in the user guide at https://docs.gradle.org/2.9/userguide/multi_project_builds.html + */ + +/* +// To declare projects as part of a multi-project build use the 'include' method +include 'shared' +include 'api' +include 'services:webservice' +*/ + +rootProject.name = 'HttpStatus' diff --git a/src/main/java/net/thauvin/erik/httpstatus/Reasons.java b/src/main/java/net/thauvin/erik/httpstatus/Reasons.java new file mode 100644 index 0000000..6478a80 --- /dev/null +++ b/src/main/java/net/thauvin/erik/httpstatus/Reasons.java @@ -0,0 +1,75 @@ +/* + * HttpStatus.java + * + * Copyright (c) 2015 Erik C. Thauvin (http://erik.thauvin.net/) + * All rights reserved. + */ +package net.thauvin.erik.httpstatus; + +import java.util.Map; +import java.util.ResourceBundle; +import java.util.TreeMap; + +/** + * The Reasons class. + * + * @author Erik C. Thauvin + * @created 2015-12-02 + * @since 1.0 + */ +public class Reasons +{ + /** + * The reason phrases map. + */ + private static final Map REASON_PHRASES = new TreeMap(); + + /** + * Gets the reason phrase for the specified status code. + * + * @param statusCode The status code. + * + * @return The reason phrase, or null. + */ + public static String getReasonPhrase(int statusCode) + { + return getReasonPhrase(Integer.toString(statusCode)); + } + + /** + * Gets the reason phrase for the specified status code. + * + * @param statusCode The status code. + * + * @return The reason phrase, or null. + */ + public static String getReasonPhrase(String statusCode) + { + return REASON_PHRASES.get(statusCode); + } + + /** + * Outputs the status codes and reason phrases. + * + * @param args The command line arguments. + */ + public static void main(String[] args) + { + for (final Map.Entry entry : REASON_PHRASES.entrySet()) + { + System.out.println(entry.getKey() + '=' + entry.getValue()); + } + } + + /** + * Initializes the reason phrases map. + */ + static + { + final ResourceBundle bundle = ResourceBundle.getBundle("reasons", java.util.Locale.getDefault()); + for (final String key : bundle.keySet()) + { + REASON_PHRASES.put(key, bundle.getString(key)); + } + } +} \ No newline at end of file diff --git a/src/main/java/net/thauvin/erik/httpstatus/taglibs/ReasonTag.java b/src/main/java/net/thauvin/erik/httpstatus/taglibs/ReasonTag.java new file mode 100644 index 0000000..a9d2508 --- /dev/null +++ b/src/main/java/net/thauvin/erik/httpstatus/taglibs/ReasonTag.java @@ -0,0 +1,87 @@ +/* + * ReasonTag.java + * + * Copyright (c) 2015 Erik C. Thauvin (http://erik.thauvin.net/) + * All rights reserved. + */ +package net.thauvin.erik.httpstatus.taglibs; + +import net.thauvin.erik.httpstatus.Reasons; + +import javax.servlet.jsp.JspException; +import javax.servlet.jsp.JspWriter; +import javax.servlet.jsp.PageContext; +import javax.servlet.jsp.tagext.SimpleTagSupport; +import java.io.IOException; + +/** + * The ReasonTag class. + * + * @author Erik C. Thauvin + * @created 2015-12-02 + * @since 1.0 + */ +public class ReasonTag extends SimpleTagSupport +{ + private int statusCode; + private String defaultValue; + + @Override + public void doTag() + throws JspException + { + final PageContext pageContext = (PageContext) getJspContext(); + final JspWriter out = pageContext.getOut(); + + try + { + try + { + if (statusCode > 0) + { + out.write(Reasons.getReasonPhrase(statusCode)); + } + else + { + out.write(Reasons.getReasonPhrase(pageContext.getErrorData().getStatusCode())); + } + } + catch(NullPointerException npe) + { + if (defaultValue != null) + { + out.write(defaultValue); + } + else + { + out.write(""); + } + } + } + catch (IOException e) + { + // Ignore. + } + } + + /** + * Sets the status code. + * + * @param statusCode The status code. + */ + public void setStatusCode(int statusCode) + { + this.statusCode = statusCode; + } + + /** + * Set the default value. + * + * @param defaultValue The default value. + */ + public void setDefault(String defaultValue) + { + this.defaultValue = defaultValue; + } + +} \ No newline at end of file diff --git a/src/main/resources/META-INF/httpstatus.tld b/src/main/resources/META-INF/httpstatus.tld new file mode 100644 index 0000000..5fa9d4a --- /dev/null +++ b/src/main/resources/META-INF/httpstatus.tld @@ -0,0 +1,38 @@ + + + + HttpStatus JSP Tag Library + HttpStatus JSP Tags + 1.0 + hs + http://erik.thauvin.net/taglibs/httpstatus + + + + Returns the Reason Phrase for the current (or specified) HTTP Status Error Code. + + reason + net.thauvin.erik.httpstatus.taglibs.ReasonTag + empty + + + Default value if the resulting reason is null. + + default + false + true + + + + HTTP Status Error Code to be looked up. + + statusCode + false + true + + + + diff --git a/src/main/resources/reasons.properties b/src/main/resources/reasons.properties new file mode 100644 index 0000000..851f992 --- /dev/null +++ b/src/main/resources/reasons.properties @@ -0,0 +1,48 @@ +100=Continue +101=Switching Protocols +102=Processing +200=OK +201=Created +202=Accepted +203=Non-Authoritative Information +204=No Content +205=Reset Content +206=Partial Content +207=Multi-Status +300=Multiple Choices +301=Moved Permanently +302=Moved Temporarily +303=See Other +304=Not Modified +305=Use Proxy +307=Temporary Redirect +400=Bad Request +401=Unauthorized +402=Payment Required +403=Forbidden +404=Not Found +405=Method Not Allowed +406=Not Acceptable +407=Proxy Authentication Required +408=Request Timeout +409=Conflict +410=Gone +411=Length Required +412=Precondition Failed +413=Request Entity Too Large +414=Request-URI Too Long +415=Unsupported Media Type +416=Requested Range Not Satisfiable +417=Expectation Failed +419=Insufficient Space on Resource +420=Method Failure +422=Unprocessable Entity +423=Locked +424=Failed Dependency +500=Internal Server Error +501=Not Implemented +502=Bad Gateway +503=Service Unavailable +504=Gateway Timeout +505=HTTP Version Not Supported +507=Insufficient Storage \ No newline at end of file