HADOOP-8922. Provide alternate JSONP output for JMXJsonServlet to allow javascript in browser dashboard (Damien Hardy via bobby)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1398904 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Joseph Evans 2012-10-16 18:00:01 +00:00
parent ec43a33e2c
commit 6a059dc40e
3 changed files with 51 additions and 2 deletions

View File

@ -320,6 +320,9 @@ Release 2.0.3-alpha - Unreleased
HADOOP-8929. Add toString, other improvements for SampleQuantiles (todd) HADOOP-8929. Add toString, other improvements for SampleQuantiles (todd)
HADOOP-8922. Provide alternate JSONP output for JMXJsonServlet to allow
javascript in browser dashboard (Damien Hardy via bobby)
OPTIMIZATIONS OPTIMIZATIONS
HADOOP-8866. SampleQuantiles#query is O(N^2) instead of O(N). (Andrew Wang HADOOP-8866. SampleQuantiles#query is O(N^2) instead of O(N). (Andrew Wang

View File

@ -113,12 +113,17 @@ import org.codehaus.jackson.JsonGenerator;
* All other objects will be converted to a string and output as such. * All other objects will be converted to a string and output as such.
* *
* The bean's name and modelerType will be returned for all beans. * The bean's name and modelerType will be returned for all beans.
*
* Optional paramater "callback" should be used to deliver JSONP response.
*
*/ */
public class JMXJsonServlet extends HttpServlet { public class JMXJsonServlet extends HttpServlet {
private static final Log LOG = LogFactory.getLog(JMXJsonServlet.class); private static final Log LOG = LogFactory.getLog(JMXJsonServlet.class);
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
private static final String CALLBACK_PARAM = "callback";
/** /**
* MBean server. * MBean server.
*/ */
@ -154,11 +159,22 @@ public class JMXJsonServlet extends HttpServlet {
return; return;
} }
JsonGenerator jg = null; JsonGenerator jg = null;
String jsonpcb = null;
PrintWriter writer = null;
try { try {
response.setContentType("application/json; charset=utf8"); writer = response.getWriter();
// "callback" parameter implies JSONP outpout
jsonpcb = request.getParameter(CALLBACK_PARAM);
if (jsonpcb != null) {
response.setContentType("application/javascript; charset=utf8");
writer.write(jsonpcb + "(");
} else {
response.setContentType("application/json; charset=utf8");
}
PrintWriter writer = response.getWriter();
jg = jsonFactory.createJsonGenerator(writer); jg = jsonFactory.createJsonGenerator(writer);
jg.disable(JsonGenerator.Feature.AUTO_CLOSE_TARGET);
jg.useDefaultPrettyPrinter(); jg.useDefaultPrettyPrinter();
jg.writeStartObject(); jg.writeStartObject();
@ -188,6 +204,12 @@ public class JMXJsonServlet extends HttpServlet {
if (jg != null) { if (jg != null) {
jg.close(); jg.close();
} }
if (jsonpcb != null) {
writer.write(");");
}
if (writer != null) {
writer.close();
}
} }
} catch (IOException e) { } catch (IOException e) {
LOG.error("Caught an exception while processing JMX request", e); LOG.error("Caught an exception while processing JMX request", e);

View File

@ -78,5 +78,29 @@ public class TestJMXJsonServlet extends HttpServerFunctionalTest {
"/jmx?get=java.lang:type=Memory::")); "/jmx?get=java.lang:type=Memory::"));
LOG.info("/jmx RESULT: "+result); LOG.info("/jmx RESULT: "+result);
assertReFind("\"ERROR\"", result); assertReFind("\"ERROR\"", result);
// test to get JSONP result
result = readOutput(new URL(baseUrl, "/jmx?qry=java.lang:type=Memory&callback=mycallback1"));
LOG.info("/jmx?qry=java.lang:type=Memory&callback=mycallback RESULT: "+result);
assertReFind("^mycallback1\\(\\{", result);
assertReFind("\\}\\);$", result);
// negative test to get an attribute of a mbean as JSONP
result = readOutput(new URL(baseUrl,
"/jmx?get=java.lang:type=Memory::&callback=mycallback2"));
LOG.info("/jmx RESULT: "+result);
assertReFind("^mycallback2\\(\\{", result);
assertReFind("\"ERROR\"", result);
assertReFind("\\}\\);$", result);
// test to get an attribute of a mbean as JSONP
result = readOutput(new URL(baseUrl,
"/jmx?get=java.lang:type=Memory::HeapMemoryUsage&callback=mycallback3"));
LOG.info("/jmx RESULT: "+result);
assertReFind("^mycallback3\\(\\{", result);
assertReFind("\"name\"\\s*:\\s*\"java.lang:type=Memory\"", result);
assertReFind("\"committed\"\\s*:", result);
assertReFind("\\}\\);$", result);
} }
} }