|
|
|
@ -15,13 +15,12 @@
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package org.apache.solr.servlet;
|
|
|
|
|
package org.apache.solr.handler.admin;
|
|
|
|
|
|
|
|
|
|
import javax.servlet.ServletException;
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
import java.io.OutputStreamWriter;
|
|
|
|
|
import java.io.Reader;
|
|
|
|
|
import java.io.Writer;
|
|
|
|
|
import java.net.URLEncoder;
|
|
|
|
|
import java.nio.charset.StandardCharsets;
|
|
|
|
@ -29,6 +28,7 @@ import java.util.ArrayList;
|
|
|
|
|
import java.util.Collections;
|
|
|
|
|
import java.util.Comparator;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Locale;
|
|
|
|
|
import java.util.Map;
|
|
|
|
@ -46,21 +46,33 @@ import org.apache.solr.common.cloud.OnReconnect;
|
|
|
|
|
import org.apache.solr.common.cloud.Replica;
|
|
|
|
|
import org.apache.solr.common.cloud.SolrZkClient;
|
|
|
|
|
import org.apache.solr.common.cloud.ZkStateReader;
|
|
|
|
|
import org.apache.solr.common.params.CommonParams;
|
|
|
|
|
import org.apache.solr.common.params.MapSolrParams;
|
|
|
|
|
import org.apache.solr.common.params.SolrParams;
|
|
|
|
|
import org.apache.solr.common.util.ContentStream;
|
|
|
|
|
import org.apache.solr.common.util.Utils;
|
|
|
|
|
import org.apache.solr.core.CoreContainer;
|
|
|
|
|
import org.apache.solr.util.FastWriter;
|
|
|
|
|
import org.apache.solr.handler.ReplicationHandler;
|
|
|
|
|
import org.apache.solr.handler.RequestHandlerBase;
|
|
|
|
|
import org.apache.solr.request.SolrQueryRequest;
|
|
|
|
|
import org.apache.solr.response.JSONResponseWriter;
|
|
|
|
|
import org.apache.solr.response.RawResponseWriter;
|
|
|
|
|
import org.apache.solr.response.SolrQueryResponse;
|
|
|
|
|
import org.apache.solr.util.SimplePostTool.BAOS;
|
|
|
|
|
import org.apache.zookeeper.KeeperException;
|
|
|
|
|
import org.apache.zookeeper.WatchedEvent;
|
|
|
|
|
import org.apache.zookeeper.Watcher;
|
|
|
|
|
import org.apache.zookeeper.data.Stat;
|
|
|
|
|
import org.apache.zookeeper.server.ByteBufferInputStream;
|
|
|
|
|
import org.noggit.CharArr;
|
|
|
|
|
import org.noggit.JSONWriter;
|
|
|
|
|
import org.noggit.ObjectBuilder;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
|
|
|
|
import static org.apache.solr.common.params.CommonParams.OMIT_HEADER;
|
|
|
|
|
import static org.apache.solr.common.params.CommonParams.PATH;
|
|
|
|
|
import static org.apache.solr.common.params.CommonParams.WT;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -68,13 +80,25 @@ import static org.apache.solr.common.params.CommonParams.PATH;
|
|
|
|
|
*
|
|
|
|
|
* @since solr 4.0
|
|
|
|
|
*/
|
|
|
|
|
public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
static final Logger log = LoggerFactory.getLogger(ZookeeperInfoServlet.class);
|
|
|
|
|
public final class ZookeeperInfoHandler extends RequestHandlerBase {
|
|
|
|
|
private final CoreContainer cores;
|
|
|
|
|
|
|
|
|
|
static final Logger log = LoggerFactory.getLogger(ZookeeperInfoHandler.class);
|
|
|
|
|
|
|
|
|
|
// used for custom sorting collection names looking like prefix##
|
|
|
|
|
// only go out to 7 digits (which safely fits in an int)
|
|
|
|
|
private static final Pattern endsWithDigits = Pattern.compile("^(\\D*)(\\d{1,7}?)$");
|
|
|
|
|
|
|
|
|
|
public ZookeeperInfoHandler(CoreContainer cc) {
|
|
|
|
|
this.cores = cc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getDescription() {
|
|
|
|
|
return "Fetch Zookeeper contents";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Enumeration of ways to filter collections on the graph panel.
|
|
|
|
|
*/
|
|
|
|
@ -109,7 +133,7 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
if (start > numFound)
|
|
|
|
|
start = 0; // this might happen if they applied a new filter
|
|
|
|
|
|
|
|
|
|
int lastIndex = Math.min(start+rows, numFound);
|
|
|
|
|
int lastIndex = Math.min(start + rows, numFound);
|
|
|
|
|
if (start > 0 || lastIndex < numFound)
|
|
|
|
|
selected = collections.subList(start, lastIndex);
|
|
|
|
|
}
|
|
|
|
@ -126,11 +150,11 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
// typically, a user will type a prefix and then *, e.g. tj*
|
|
|
|
|
// when they really mean tj.*
|
|
|
|
|
String regexFilter = (!filter.endsWith(".*") && filter.endsWith("*"))
|
|
|
|
|
? filter.substring(0,filter.length()-1)+".*" : filter;
|
|
|
|
|
? filter.substring(0, filter.length() - 1) + ".*" : filter;
|
|
|
|
|
|
|
|
|
|
// case-insensitive
|
|
|
|
|
if (!regexFilter.startsWith("(?i)"))
|
|
|
|
|
regexFilter = "(?i)"+regexFilter;
|
|
|
|
|
regexFilter = "(?i)" + regexFilter;
|
|
|
|
|
|
|
|
|
|
Pattern filterRegex = Pattern.compile(regexFilter);
|
|
|
|
|
List<String> filtered = new ArrayList<String>();
|
|
|
|
@ -147,7 +171,7 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
* the state the user is filtering by.
|
|
|
|
|
*/
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
|
final boolean matchesStatusFilter(Map<String,Object> collectionState, Set<String> liveNodes) {
|
|
|
|
|
final boolean matchesStatusFilter(Map<String, Object> collectionState, Set<String> liveNodes) {
|
|
|
|
|
|
|
|
|
|
if (filterType != FilterType.status || filter == null || filter.length() == 0)
|
|
|
|
|
return true; // no status filter, so all match
|
|
|
|
@ -156,15 +180,15 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
boolean hasDownedShard = false; // means one or more shards is down
|
|
|
|
|
boolean replicaInRecovery = false;
|
|
|
|
|
|
|
|
|
|
Map<String,Object> shards = (Map<String,Object>)collectionState.get("shards");
|
|
|
|
|
Map<String, Object> shards = (Map<String, Object>) collectionState.get("shards");
|
|
|
|
|
for (String shardId : shards.keySet()) {
|
|
|
|
|
boolean hasActive = false;
|
|
|
|
|
Map<String,Object> shard = (Map<String,Object>)shards.get(shardId);
|
|
|
|
|
Map<String,Object> replicas = (Map<String,Object>)shard.get("replicas");
|
|
|
|
|
Map<String, Object> shard = (Map<String, Object>) shards.get(shardId);
|
|
|
|
|
Map<String, Object> replicas = (Map<String, Object>) shard.get("replicas");
|
|
|
|
|
for (String replicaId : replicas.keySet()) {
|
|
|
|
|
Map<String,Object> replicaState = (Map<String,Object>)replicas.get(replicaId);
|
|
|
|
|
Replica.State coreState = Replica.State.getState((String)replicaState.get(ZkStateReader.STATE_PROP));
|
|
|
|
|
String nodeName = (String)replicaState.get("node_name");
|
|
|
|
|
Map<String, Object> replicaState = (Map<String, Object>) replicas.get(replicaId);
|
|
|
|
|
Replica.State coreState = Replica.State.getState((String) replicaState.get(ZkStateReader.STATE_PROP));
|
|
|
|
|
String nodeName = (String) replicaState.get("node_name");
|
|
|
|
|
|
|
|
|
|
// state can lie to you if the node is offline, so need to reconcile with live_nodes too
|
|
|
|
|
if (!liveNodes.contains(nodeName))
|
|
|
|
@ -202,7 +226,7 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
String getPagingHeader() {
|
|
|
|
|
return start+"|"+rows+"|"+numFound+"|"+(filterType != null ? filterType.toString() : "")+"|"+(filter != null ? filter : "");
|
|
|
|
|
return start + "|" + rows + "|" + numFound + "|" + (filterType != null ? filterType.toString() : "") + "|" + (filter != null ? filter : "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String toString() {
|
|
|
|
@ -323,15 +347,12 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
private PagedCollectionSupport pagingSupport;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void doGet(HttpServletRequest request,
|
|
|
|
|
HttpServletResponse response)
|
|
|
|
|
throws ServletException,IOException {
|
|
|
|
|
// This attribute is set by the SolrDispatchFilter
|
|
|
|
|
CoreContainer cores = (CoreContainer) request.getAttribute("org.apache.solr.CoreContainer");
|
|
|
|
|
if (cores == null) {
|
|
|
|
|
throw new ServletException("Missing request attribute org.apache.solr.CoreContainer.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void handleRequestBody(SolrQueryRequest req, SolrQueryResponse rsp) throws Exception {
|
|
|
|
|
final SolrParams params = req.getParams();
|
|
|
|
|
Map<String, String> map = new HashMap<>(1);
|
|
|
|
|
map.put(WT, "raw");
|
|
|
|
|
map.put(OMIT_HEADER, "true");
|
|
|
|
|
req.setParams(SolrParams.wrapDefaults(new MapSolrParams(map), params));
|
|
|
|
|
synchronized (this) {
|
|
|
|
|
if (pagingSupport == null) {
|
|
|
|
|
pagingSupport = new PagedCollectionSupport();
|
|
|
|
@ -343,18 +364,6 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
final SolrParams params;
|
|
|
|
|
try {
|
|
|
|
|
params = SolrRequestParsers.DEFAULT.parse(null, request.getServletPath(), request).getParams();
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
int code=500;
|
|
|
|
|
if (e instanceof SolrException) {
|
|
|
|
|
code = Math.min(599, Math.max(100, ((SolrException)e).code()));
|
|
|
|
|
}
|
|
|
|
|
response.sendError(code, e.toString());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
String path = params.get(PATH);
|
|
|
|
|
String addr = params.get("addr");
|
|
|
|
|
|
|
|
|
@ -368,8 +377,8 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
String dumpS = params.get("dump");
|
|
|
|
|
boolean dump = dumpS != null && dumpS.equals("true");
|
|
|
|
|
|
|
|
|
|
int start = paramAsInt("start", params, 0);
|
|
|
|
|
int rows = paramAsInt("rows", params, -1);
|
|
|
|
|
int start = params.getInt("start", 0);
|
|
|
|
|
int rows = params.getInt("rows", -1);
|
|
|
|
|
|
|
|
|
|
String filterType = params.get("filterType");
|
|
|
|
|
if (filterType != null) {
|
|
|
|
@ -386,12 +395,7 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
filter = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
response.setCharacterEncoding("UTF-8");
|
|
|
|
|
response.setContentType("application/json");
|
|
|
|
|
|
|
|
|
|
Writer out = new FastWriter(new OutputStreamWriter(response.getOutputStream(), StandardCharsets.UTF_8));
|
|
|
|
|
|
|
|
|
|
ZKPrinter printer = new ZKPrinter(response, out, cores.getZkController(), addr);
|
|
|
|
|
ZKPrinter printer = new ZKPrinter(cores.getZkController(), addr);
|
|
|
|
|
printer.detail = detail;
|
|
|
|
|
printer.dump = dump;
|
|
|
|
|
boolean isGraphView = "graph".equals(params.get("view"));
|
|
|
|
@ -404,38 +408,14 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
} finally {
|
|
|
|
|
printer.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
out.flush();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void doPost(HttpServletRequest request,
|
|
|
|
|
HttpServletResponse response)
|
|
|
|
|
throws ServletException,IOException {
|
|
|
|
|
doGet(request, response);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected int paramAsInt(final String paramName, final SolrParams params, final int defaultVal) {
|
|
|
|
|
int val = defaultVal;
|
|
|
|
|
String paramS = params.get(paramName);
|
|
|
|
|
if (paramS != null) {
|
|
|
|
|
String trimmed = paramS.trim();
|
|
|
|
|
if (trimmed.length() > 0) {
|
|
|
|
|
try {
|
|
|
|
|
val = Integer.parseInt(trimmed);
|
|
|
|
|
} catch (NumberFormatException nfe) {
|
|
|
|
|
log.warn("Invalid value "+paramS+" passed for parameter "+paramName+"; expected integer!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return val;
|
|
|
|
|
rsp.getValues().add(RawResponseWriter.CONTENT,printer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
static class ZKPrinter {
|
|
|
|
|
static class ZKPrinter implements ContentStream {
|
|
|
|
|
static boolean FULLPATH_DEFAULT = false;
|
|
|
|
|
|
|
|
|
|
boolean indent = true;
|
|
|
|
@ -448,8 +428,8 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
|
|
|
|
|
boolean doClose; // close the client after done if we opened it
|
|
|
|
|
|
|
|
|
|
final HttpServletResponse response;
|
|
|
|
|
final Writer out;
|
|
|
|
|
final BAOS baos = new BAOS();
|
|
|
|
|
final Writer out = new OutputStreamWriter(baos, StandardCharsets.UTF_8);
|
|
|
|
|
SolrZkClient zkClient;
|
|
|
|
|
|
|
|
|
|
int level;
|
|
|
|
@ -459,10 +439,8 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
PagedCollectionSupport pagingSupport;
|
|
|
|
|
ZkController zkController;
|
|
|
|
|
|
|
|
|
|
public ZKPrinter(HttpServletResponse response, Writer out, ZkController controller, String addr) throws IOException {
|
|
|
|
|
public ZKPrinter(ZkController controller, String addr) throws IOException {
|
|
|
|
|
this.zkController = controller;
|
|
|
|
|
this.response = response;
|
|
|
|
|
this.out = out;
|
|
|
|
|
this.addr = addr;
|
|
|
|
|
|
|
|
|
|
if (addr == null) {
|
|
|
|
@ -500,6 +478,11 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
if (doClose) {
|
|
|
|
|
zkClient.close();
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
out.flush();
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
throw new RuntimeException(e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// main entry point
|
|
|
|
@ -551,7 +534,8 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void writeError(int code, String msg) throws IOException {
|
|
|
|
|
response.setStatus(code);
|
|
|
|
|
throw new SolrException(ErrorCode.getErrorCode(code), msg);
|
|
|
|
|
/*response.setStatus(code);
|
|
|
|
|
|
|
|
|
|
CharArr chars = new CharArr();
|
|
|
|
|
JSONWriter w = new JSONWriter(chars, 2);
|
|
|
|
@ -567,7 +551,7 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
w.writeString(msg);
|
|
|
|
|
w.endObject();
|
|
|
|
|
|
|
|
|
|
out.write(chars.toString());
|
|
|
|
|
out.write(chars.toString());*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -588,7 +572,7 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
json.writeString("attr");
|
|
|
|
|
json.writeNameSeparator();
|
|
|
|
|
json.startObject();
|
|
|
|
|
writeKeyValue(json, "href", "zookeeper?detail=true&path=" + URLEncoder.encode(path, "UTF-8"), true);
|
|
|
|
|
writeKeyValue(json, "href", "admin/zookeeper?detail=true&path=" + URLEncoder.encode(path, "UTF-8"), true);
|
|
|
|
|
json.endObject();
|
|
|
|
|
json.endObject();
|
|
|
|
|
|
|
|
|
@ -697,7 +681,7 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
// we've already pulled the data for /clusterstate.json from ZooKeeper above,
|
|
|
|
|
// but it needs to be parsed into a map so we can lookup collection states before
|
|
|
|
|
// trying to find them in the /collections/?/state.json znode
|
|
|
|
|
Map<String,Object> clusterstateJsonMap = null;
|
|
|
|
|
Map<String, Object> clusterstateJsonMap = null;
|
|
|
|
|
if (dataStr != null) {
|
|
|
|
|
try {
|
|
|
|
|
clusterstateJsonMap = (Map<String, Object>) ObjectBuilder.fromJSON(dataStr);
|
|
|
|
@ -718,14 +702,14 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
Set<String> liveNodes = applyStatusFilter ?
|
|
|
|
|
zkController.getZkStateReader().getClusterState().getLiveNodes() : null;
|
|
|
|
|
|
|
|
|
|
SortedMap<String,Object> collectionStates = new TreeMap<String,Object>(pagingSupport);
|
|
|
|
|
SortedMap<String, Object> collectionStates = new TreeMap<String, Object>(pagingSupport);
|
|
|
|
|
for (String collection : page.selected) {
|
|
|
|
|
Object collectionState = clusterstateJsonMap.get(collection);
|
|
|
|
|
if (collectionState != null) {
|
|
|
|
|
// collection state was in /clusterstate.json
|
|
|
|
|
if (applyStatusFilter) {
|
|
|
|
|
// verify this collection matches the status filter
|
|
|
|
|
if (page.matchesStatusFilter((Map<String,Object>)collectionState,liveNodes)) {
|
|
|
|
|
if (page.matchesStatusFilter((Map<String, Object>) collectionState, liveNodes)) {
|
|
|
|
|
matchesStatusFilter.add(collection);
|
|
|
|
|
collectionStates.put(collection, collectionState);
|
|
|
|
|
}
|
|
|
|
@ -741,19 +725,19 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
if (childData != null)
|
|
|
|
|
childDataStr = (new BytesRef(childData)).utf8ToString();
|
|
|
|
|
} catch (KeeperException.NoNodeException nne) {
|
|
|
|
|
log.warn("State for collection "+collection+
|
|
|
|
|
" not found in /clusterstate.json or /collections/"+collection+"/state.json!");
|
|
|
|
|
log.warn("State for collection " + collection +
|
|
|
|
|
" not found in /clusterstate.json or /collections/" + collection + "/state.json!");
|
|
|
|
|
} catch (Exception childErr) {
|
|
|
|
|
log.error("Failed to get "+collStatePath+" due to: "+childErr);
|
|
|
|
|
log.error("Failed to get " + collStatePath + " due to: " + childErr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (childDataStr != null) {
|
|
|
|
|
Map<String,Object> extColl = (Map<String,Object>)ObjectBuilder.fromJSON(childDataStr);
|
|
|
|
|
Map<String, Object> extColl = (Map<String, Object>) ObjectBuilder.fromJSON(childDataStr);
|
|
|
|
|
collectionState = extColl.get(collection);
|
|
|
|
|
|
|
|
|
|
if (applyStatusFilter) {
|
|
|
|
|
// verify this collection matches the filtered state
|
|
|
|
|
if (page.matchesStatusFilter((Map<String,Object>)collectionState,liveNodes)) {
|
|
|
|
|
if (page.matchesStatusFilter((Map<String, Object>) collectionState, liveNodes)) {
|
|
|
|
|
matchesStatusFilter.add(collection);
|
|
|
|
|
collectionStates.put(collection, collectionState);
|
|
|
|
|
}
|
|
|
|
@ -769,7 +753,7 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
page.selectPage(matchesStatusFilter);
|
|
|
|
|
|
|
|
|
|
// rebuild the Map of state data
|
|
|
|
|
SortedMap<String,Object> map = new TreeMap<String,Object>(pagingSupport);
|
|
|
|
|
SortedMap<String, Object> map = new TreeMap<String, Object>(pagingSupport);
|
|
|
|
|
for (String next : page.selected)
|
|
|
|
|
map.put(next, collectionStates.get(next));
|
|
|
|
|
collectionStates = map;
|
|
|
|
@ -826,5 +810,41 @@ public final class ZookeeperInfoServlet extends BaseSolrServlet {
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* @Override
|
|
|
|
|
public void write(OutputStream os) throws IOException {
|
|
|
|
|
ByteBuffer bytes = baos.getByteBuffer();
|
|
|
|
|
os.write(bytes.array(),0,bytes.limit());
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public String getName() {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getSourceInfo() {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getContentType() {
|
|
|
|
|
return JSONResponseWriter.CONTENT_TYPE_JSON_UTF8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Long getSize() {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public InputStream getStream() throws IOException {
|
|
|
|
|
return new ByteBufferInputStream(baos.getByteBuffer());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Reader getReader() throws IOException {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|