From b951626aa38d5d25ea69404c400858ce2ed17218 Mon Sep 17 00:00:00 2001 From: Ryan McKinley Date: Wed, 9 Mar 2011 17:12:51 +0000 Subject: [PATCH] SOLR-2413 -- XMLWriter implemented its own (almost) identical writeVal(String name, Object val) git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1079893 13f79535-47bb-0310-9956-ffa450edef68 --- .../solr/response/TextResponseWriter.java | 2 +- .../org/apache/solr/response/XMLWriter.java | 55 ------------------- 2 files changed, 1 insertion(+), 56 deletions(-) diff --git a/solr/src/java/org/apache/solr/response/TextResponseWriter.java b/solr/src/java/org/apache/solr/response/TextResponseWriter.java index 4c232d1772e..d65f1ebd54a 100644 --- a/solr/src/java/org/apache/solr/response/TextResponseWriter.java +++ b/solr/src/java/org/apache/solr/response/TextResponseWriter.java @@ -103,7 +103,7 @@ public abstract class TextResponseWriter { public abstract void writeNamedList(String name, NamedList val) throws IOException; - public void writeVal(String name, Object val) throws IOException { + public final void writeVal(String name, Object val) throws IOException { // if there get to be enough types, perhaps hashing on the type // to get a handler might be faster (but types must be exact to do that...) diff --git a/solr/src/java/org/apache/solr/response/XMLWriter.java b/solr/src/java/org/apache/solr/response/XMLWriter.java index 9a3e17118fd..aa14255f698 100644 --- a/solr/src/java/org/apache/solr/response/XMLWriter.java +++ b/solr/src/java/org/apache/solr/response/XMLWriter.java @@ -436,61 +436,6 @@ public final class XMLWriter extends TextResponseWriter { } - @Override - public void writeVal(String name, Object val) throws IOException { - - // if there get to be enough types, perhaps hashing on the type - // to get a handler might be faster (but types must be exact to do that...) - - // go in order of most common to least common - if (val==null) { - writeNull(name); - } else if (val instanceof String) { - writeStr(name, (String)val, true); - } else if (val instanceof Integer) { - // it would be slower to pass the int ((Integer)val).intValue() - writeInt(name, val.toString()); - } else if (val instanceof Boolean) { - // could be optimized... only two vals - writeBool(name, val.toString()); - } else if (val instanceof Long) { - writeLong(name, val.toString()); - } else if (val instanceof Date) { - writeDate(name,(Date)val); - } else if (val instanceof Float) { - // we pass the float instead of using toString() because - // it may need special formatting. same for double. - writeFloat(name, ((Float)val).floatValue()); - } else if (val instanceof Double) { - writeDouble(name, ((Double)val).doubleValue()); - } else if (val instanceof Document) { - writeDoc(name, (Document)val, returnFields, 0.0f, false); - } else if (val instanceof DocList) { - // requires access to IndexReader - writeDocList(name, (DocList)val, returnFields, null); - }else if (val instanceof SolrDocumentList) { - // requires access to IndexReader - writeSolrDocumentList(name, (SolrDocumentList)val, returnFields, null); - }else if (val instanceof DocSet) { - // how do we know what fields to read? - // todo: have a DocList/DocSet wrapper that - // restricts the fields to write...? - } else if (val instanceof Map) { - writeMap(name, (Map)val, false, true); - } else if (val instanceof NamedList) { - writeNamedList(name, (NamedList)val); - } else if (val instanceof Iterable) { - writeArray(name,((Iterable)val).iterator()); - } else if (val instanceof Object[]) { - writeArray(name,(Object[])val); - } else if (val instanceof Iterator) { - writeArray(name,(Iterator)val); - } else { - // default... - writeStr(name, val.getClass().getName() + ':' + val.toString(), true); - } - } - // // Generic compound types //