Class XContentHelper
- java.lang.Object
-
- org.elasticsearch.common.xcontent.XContentHelper
-
public class XContentHelper extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description XContentHelper()
-
Method Summary
Modifier and Type Method Description static java.lang.String
convertToJson(BytesReference bytes, boolean reformatJson)
Deprecated.static java.lang.String
convertToJson(BytesReference bytes, boolean reformatJson, boolean prettyPrint)
Deprecated.static java.lang.String
convertToJson(BytesReference bytes, boolean reformatJson, boolean prettyPrint, XContentType xContentType)
static java.lang.String
convertToJson(BytesReference bytes, boolean reformatJson, XContentType xContentType)
static Tuple<XContentType,java.util.Map<java.lang.String,java.lang.Object>>
convertToMap(BytesReference bytes, boolean ordered)
Deprecated.this method relies on auto-detection of content type.static Tuple<XContentType,java.util.Map<java.lang.String,java.lang.Object>>
convertToMap(BytesReference bytes, boolean ordered, XContentType xContentType)
Converts the given bytes into a map that is optionally ordered.static java.util.Map<java.lang.String,java.lang.Object>
convertToMap(XContent xContent, java.io.InputStream input, boolean ordered)
Convert a string in someXContent
format to aMap
.static java.util.Map<java.lang.String,java.lang.Object>
convertToMap(XContent xContent, java.lang.String string, boolean ordered)
Convert a string in someXContent
format to aMap
.static XContentParser
createParser(NamedXContentRegistry xContentRegistry, DeprecationHandler deprecationHandler, BytesReference bytes)
Deprecated.usecreateParser(NamedXContentRegistry, DeprecationHandler, BytesReference, XContentType)
to avoid content type auto-detectionstatic XContentParser
createParser(NamedXContentRegistry xContentRegistry, DeprecationHandler deprecationHandler, BytesReference bytes, XContentType xContentType)
Creates a parser for the bytes using the supplied content-typestatic void
mergeDefaults(java.util.Map<java.lang.String,java.lang.Object> content, java.util.Map<java.lang.String,java.lang.Object> defaults)
Merges the defaults provided as the second parameter into the content of the first.static BytesReference
toXContent(ToXContent toXContent, XContentType xContentType, boolean humanReadable)
Returns the bytes that represent the XContent output of the providedToXContent
object, using the providedXContentType
.static BytesReference
toXContent(ToXContent toXContent, XContentType xContentType, ToXContent.Params params, boolean humanReadable)
Returns the bytes that represent the XContent output of the providedToXContent
object, using the providedXContentType
.static boolean
update(java.util.Map<java.lang.String,java.lang.Object> source, java.util.Map<java.lang.String,java.lang.Object> changes, boolean checkUpdatesAreUnequal)
Updates the provided changes into the source.static void
writeRawField(java.lang.String field, BytesReference source, XContentBuilder builder, ToXContent.Params params)
Deprecated.usewriteRawField(String, BytesReference, XContentType, XContentBuilder, Params)
to avoid content type auto-detectionstatic void
writeRawField(java.lang.String field, BytesReference source, XContentType xContentType, XContentBuilder builder, ToXContent.Params params)
Writes a "raw" (bytes) field, handling cases where the bytes are compressed, and tries to optimize writing usingXContentBuilder.rawField(String, InputStream, XContentType)
.static XContentType
xContentType(BytesReference bytes)
Deprecated.the content type should not be guessed except for few cases where we effectively don't know the content type.
-
-
-
Method Detail
-
createParser
@Deprecated public static XContentParser createParser(NamedXContentRegistry xContentRegistry, DeprecationHandler deprecationHandler, BytesReference bytes) throws java.io.IOException
Deprecated.usecreateParser(NamedXContentRegistry, DeprecationHandler, BytesReference, XContentType)
to avoid content type auto-detectionCreates a parser based on the bytes provided- Throws:
java.io.IOException
-
createParser
public static XContentParser createParser(NamedXContentRegistry xContentRegistry, DeprecationHandler deprecationHandler, BytesReference bytes, XContentType xContentType) throws java.io.IOException
Creates a parser for the bytes using the supplied content-type- Throws:
java.io.IOException
-
convertToMap
@Deprecated public static Tuple<XContentType,java.util.Map<java.lang.String,java.lang.Object>> convertToMap(BytesReference bytes, boolean ordered) throws ElasticsearchParseException
Deprecated.this method relies on auto-detection of content type. UseconvertToMap(BytesReference, boolean, XContentType)
instead with the properXContentType
Converts the given bytes into a map that is optionally ordered.- Throws:
ElasticsearchParseException
-
convertToMap
public static Tuple<XContentType,java.util.Map<java.lang.String,java.lang.Object>> convertToMap(BytesReference bytes, boolean ordered, XContentType xContentType) throws ElasticsearchParseException
Converts the given bytes into a map that is optionally ordered. The providedXContentType
must be non-null.- Throws:
ElasticsearchParseException
-
convertToMap
public static java.util.Map<java.lang.String,java.lang.Object> convertToMap(XContent xContent, java.lang.String string, boolean ordered) throws ElasticsearchParseException
Convert a string in someXContent
format to aMap
. Throws anElasticsearchParseException
if there is any error.- Throws:
ElasticsearchParseException
-
convertToMap
public static java.util.Map<java.lang.String,java.lang.Object> convertToMap(XContent xContent, java.io.InputStream input, boolean ordered) throws ElasticsearchParseException
Convert a string in someXContent
format to aMap
. Throws anElasticsearchParseException
if there is any error. Note that unlikeconvertToMap(BytesReference, boolean)
, this doesn't automatically uncompress the input.- Throws:
ElasticsearchParseException
-
convertToJson
@Deprecated public static java.lang.String convertToJson(BytesReference bytes, boolean reformatJson) throws java.io.IOException
Deprecated.- Throws:
java.io.IOException
-
convertToJson
@Deprecated public static java.lang.String convertToJson(BytesReference bytes, boolean reformatJson, boolean prettyPrint) throws java.io.IOException
Deprecated.- Throws:
java.io.IOException
-
convertToJson
public static java.lang.String convertToJson(BytesReference bytes, boolean reformatJson, XContentType xContentType) throws java.io.IOException
- Throws:
java.io.IOException
-
convertToJson
public static java.lang.String convertToJson(BytesReference bytes, boolean reformatJson, boolean prettyPrint, XContentType xContentType) throws java.io.IOException
- Throws:
java.io.IOException
-
update
public static boolean update(java.util.Map<java.lang.String,java.lang.Object> source, java.util.Map<java.lang.String,java.lang.Object> changes, boolean checkUpdatesAreUnequal)
Updates the provided changes into the source. If the key exists in the changes, it overrides the one in source unless both are Maps, in which case it recursively updated it.- Parameters:
source
- the original map to be updatedchanges
- the changes to update into updatedcheckUpdatesAreUnequal
- should this method check if updates to the same key (that are not both maps) are unequal? This is just a .equals check on the objects, but that can take some time on long strings.- Returns:
- true if the source map was modified
-
mergeDefaults
public static void mergeDefaults(java.util.Map<java.lang.String,java.lang.Object> content, java.util.Map<java.lang.String,java.lang.Object> defaults)
Merges the defaults provided as the second parameter into the content of the first. Only does recursive merge for inner maps.
-
writeRawField
@Deprecated public static void writeRawField(java.lang.String field, BytesReference source, XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
Deprecated.usewriteRawField(String, BytesReference, XContentType, XContentBuilder, Params)
to avoid content type auto-detectionWrites a "raw" (bytes) field, handling cases where the bytes are compressed, and tries to optimize writing usingXContentBuilder.rawField(String, InputStream)
.- Throws:
java.io.IOException
-
writeRawField
public static void writeRawField(java.lang.String field, BytesReference source, XContentType xContentType, XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
Writes a "raw" (bytes) field, handling cases where the bytes are compressed, and tries to optimize writing usingXContentBuilder.rawField(String, InputStream, XContentType)
.- Throws:
java.io.IOException
-
toXContent
public static BytesReference toXContent(ToXContent toXContent, XContentType xContentType, boolean humanReadable) throws java.io.IOException
Returns the bytes that represent the XContent output of the providedToXContent
object, using the providedXContentType
. Wraps the output into a new anonymous object according to the value returned by theToXContent.isFragment()
method returns.- Throws:
java.io.IOException
-
toXContent
public static BytesReference toXContent(ToXContent toXContent, XContentType xContentType, ToXContent.Params params, boolean humanReadable) throws java.io.IOException
Returns the bytes that represent the XContent output of the providedToXContent
object, using the providedXContentType
. Wraps the output into a new anonymous object according to the value returned by theToXContent.isFragment()
method returns.- Throws:
java.io.IOException
-
xContentType
@Deprecated public static XContentType xContentType(BytesReference bytes)
Deprecated.the content type should not be guessed except for few cases where we effectively don't know the content type. The REST layer should move to reading the Content-Type header instead. There are other places where auto-detection may be needed. This method is deprecated to prevent usages of it from spreading further without specific reasons.Guesses the content type based on the provided bytes.
-
-