Skip to content

Commit b18ecb3

Browse files
committed
first part (canSerialize) of #1917
1 parent be45354 commit b18ecb3

File tree

8 files changed

+0
-160
lines changed

8 files changed

+0
-160
lines changed

src/main/java/com/fasterxml/jackson/databind/ObjectMapper.java

-28
Original file line numberDiff line numberDiff line change
@@ -2579,34 +2579,6 @@ public <T extends JsonNode> T valueToTree(Object fromValue)
25792579
/**********************************************************
25802580
*/
25812581

2582-
/**
2583-
* Method that can be called to check whether mapper thinks
2584-
* it could serialize an instance of given Class.
2585-
* Check is done
2586-
* by checking whether a serializer can be found for the type.
2587-
*<p>
2588-
* NOTE: since this method does NOT throw exceptions, but internal
2589-
* processing may, caller usually has little information as to why
2590-
* serialization would fail. If you want access to internal {@link Exception},
2591-
* call {@link #canSerialize(Class, AtomicReference)} instead.
2592-
*
2593-
* @return True if mapper can find a serializer for instances of
2594-
* given class (potentially serializable), false otherwise (not
2595-
* serializable)
2596-
*/
2597-
public boolean canSerialize(Class<?> type) {
2598-
return _serializerProvider().hasSerializerFor(type, null);
2599-
}
2600-
2601-
/**
2602-
* Method similar to {@link #canSerialize(Class)} but that can return
2603-
* actual {@link Throwable} that was thrown when trying to construct
2604-
* serializer: this may be useful in figuring out what the actual problem is.
2605-
*/
2606-
public boolean canSerialize(Class<?> type, AtomicReference<Throwable> cause) {
2607-
return _serializerProvider().hasSerializerFor(type, cause);
2608-
}
2609-
26102582
/**
26112583
* Method that can be called to check whether mapper thinks
26122584
* it could deserialize an Object of given type.

src/main/java/com/fasterxml/jackson/databind/ObjectWriter.java

-13
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import java.util.Locale;
66
import java.util.Map;
77
import java.util.TimeZone;
8-
import java.util.concurrent.atomic.AtomicReference;
98

109
import com.fasterxml.jackson.core.*;
1110
import com.fasterxml.jackson.core.io.CharacterEscapes;
@@ -1052,18 +1051,6 @@ public void acceptJsonFormatVisitor(Class<?> rawType, JsonFormatVisitorWrapper v
10521051
acceptJsonFormatVisitor(_config.constructType(rawType), visitor);
10531052
}
10541053

1055-
public boolean canSerialize(Class<?> type) {
1056-
return _serializerProvider().hasSerializerFor(type, null);
1057-
}
1058-
1059-
/**
1060-
* Method for checking whether instances of given type can be serialized,
1061-
* and optionally why (as per {@link Throwable} returned).
1062-
*/
1063-
public boolean canSerialize(Class<?> type, AtomicReference<Throwable> cause) {
1064-
return _serializerProvider().hasSerializerFor(type, cause);
1065-
}
1066-
10671054
/*
10681055
/**********************************************************
10691056
/* Overridable helper methods

src/main/java/com/fasterxml/jackson/databind/SerializerProvider.java

-30
Original file line numberDiff line numberDiff line change
@@ -1338,36 +1338,6 @@ protected void _reportIncompatibleRootType(Object value, JavaType rootType) thro
13381338
rootType, ClassUtil.classNameOf(value)));
13391339
}
13401340

1341-
/**
1342-
* Method that will try to find a serializer, either from cache
1343-
* or by constructing one; but will not return an "unknown" serializer
1344-
* if this cannot be done but rather returns null.
1345-
*
1346-
* @return Serializer if one can be found, null if not.
1347-
*/
1348-
protected JsonSerializer<Object> _findExplicitUntypedSerializer(Class<?> runtimeType)
1349-
throws JsonMappingException
1350-
{
1351-
// Fast lookup from local lookup thingy works?
1352-
JsonSerializer<Object> ser = _knownSerializers.untypedValueSerializer(runtimeType);
1353-
if (ser == null) {
1354-
// If not, maybe shared map already has it?
1355-
ser = _serializerCache.untypedValueSerializer(runtimeType);
1356-
if (ser == null) {
1357-
ser = _createAndCacheUntypedSerializer(runtimeType);
1358-
}
1359-
}
1360-
/* 18-Sep-2014, tatu: This is unfortunate patch over related change
1361-
* that pushes creation of "unknown type" serializer deeper down
1362-
* in BeanSerializerFactory; as a result, we need to "undo" creation
1363-
* here.
1364-
*/
1365-
if (isUnknownTypeSerializer(ser)) {
1366-
return null;
1367-
}
1368-
return ser;
1369-
}
1370-
13711341
/*
13721342
/**********************************************************
13731343
/* Low-level methods for actually constructing and initializing

src/main/java/com/fasterxml/jackson/databind/ser/DefaultSerializerProvider.java

-37
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import java.io.IOException;
44
import java.util.*;
5-
import java.util.concurrent.atomic.AtomicReference;
65

76
import com.fasterxml.jackson.annotation.ObjectIdGenerator;
87
import com.fasterxml.jackson.core.JsonGenerator;
@@ -229,46 +228,10 @@ protected Map<Object,WritableObjectId> _createObjectIdMap()
229228
/**********************************************************
230229
*/
231230

232-
/**
233-
* Method that can be called to see if this serializer provider
234-
* can find a serializer for an instance of given class.
235-
*<p>
236-
* Note that no Exceptions are thrown, including unchecked ones:
237-
* implementations are to swallow exceptions if necessary.
238-
*/
239-
public boolean hasSerializerFor(Class<?> cls, AtomicReference<Throwable> cause)
240-
{
241-
// 07-Nov-2015, tatu: One special case, Object.class; will work only if
242-
// empty beans are allowed or custom serializer registered. Easiest to
243-
// check here.
244-
if (cls == Object.class) {
245-
if (!_config.isEnabled(SerializationFeature.FAIL_ON_EMPTY_BEANS)) {
246-
return true;
247-
}
248-
}
249-
250-
try {
251-
JsonSerializer<?> ser = _findExplicitUntypedSerializer(cls);
252-
return (ser != null);
253-
} catch (JsonMappingException e) {
254-
if (cause != null) {
255-
cause.set(e);
256-
}
257-
} catch (RuntimeException e) {
258-
if (cause == null) { // earlier behavior
259-
throw e;
260-
}
261-
cause.set(e);
262-
}
263-
return false;
264-
}
265-
266231
/**
267232
* Accessor for the {@link JsonGenerator} currently in use for serializing
268233
* content. Null for blueprint instances; non-null for actual active
269234
* provider instances.
270-
*
271-
* @since 2.8
272235
*/
273236
@Override
274237
public JsonGenerator getGenerator() {

src/test/java/com/fasterxml/jackson/databind/ObjectMapperTest.java

-29
Original file line numberDiff line numberDiff line change
@@ -271,35 +271,6 @@ public void testCustomDefaultPrettyPrinter() throws Exception
271271
assertEquals("[1,2]", m.writer().without(SerializationFeature.INDENT_OUTPUT)
272272
.writeValueAsString(input));
273273
}
274-
275-
// For [databind#703], [databind#978]
276-
public void testNonSerializabilityOfObject()
277-
{
278-
ObjectMapper m = new ObjectMapper();
279-
assertFalse(m.canSerialize(Object.class));
280-
// but this used to pass, incorrectly, second time around
281-
assertFalse(m.canSerialize(Object.class));
282-
283-
// [databind#978]: Different answer if empty Beans ARE allowed
284-
m = new ObjectMapper();
285-
m.disable(SerializationFeature.FAIL_ON_EMPTY_BEANS);
286-
assertTrue(m.canSerialize(Object.class));
287-
assertTrue(MAPPER.writer().without(SerializationFeature.FAIL_ON_EMPTY_BEANS)
288-
.canSerialize(Object.class));
289-
assertFalse(MAPPER.writer().with(SerializationFeature.FAIL_ON_EMPTY_BEANS)
290-
.canSerialize(Object.class));
291-
}
292-
293-
// for [databind#756]
294-
public void testEmptyBeanSerializability()
295-
{
296-
// with default settings, error
297-
assertFalse(MAPPER.writer().with(SerializationFeature.FAIL_ON_EMPTY_BEANS)
298-
.canSerialize(EmptyBean.class));
299-
// but with changes
300-
assertTrue(MAPPER.writer().without(SerializationFeature.FAIL_ON_EMPTY_BEANS)
301-
.canSerialize(EmptyBean.class));
302-
}
303274

304275
// for [databind#898]
305276
public void testSerializerProviderAccess() throws Exception

src/test/java/com/fasterxml/jackson/databind/ObjectWriterTest.java

-6
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,6 @@ public void testPolymorphicWithTyping() throws Exception
120120
assertEquals(aposToQuotes("{'type':'B','b':-5}"), json);
121121
}
122122

123-
public void testCanSerialize() throws Exception
124-
{
125-
assertTrue(MAPPER.writer().canSerialize(String.class));
126-
assertTrue(MAPPER.writer().canSerialize(String.class, null));
127-
}
128-
129123
public void testNoPrefetch() throws Exception
130124
{
131125
ObjectWriter w = MAPPER.writer()

src/test/java/com/fasterxml/jackson/databind/deser/creators/jdk8/PersonTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import java.io.IOException;
44

5-
import com.fasterxml.jackson.annotation.JsonCreator;
65
import com.fasterxml.jackson.databind.BaseMapTest;
76
import com.fasterxml.jackson.databind.ObjectMapper;
87

src/test/java/com/fasterxml/jackson/databind/ser/TestSerializerProvider.java

-16
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package com.fasterxml.jackson.databind.ser;
22

3-
import java.util.concurrent.atomic.AtomicReference;
4-
53
import com.fasterxml.jackson.core.json.JsonFactory;
64
import com.fasterxml.jackson.databind.*;
75
import com.fasterxml.jackson.databind.cfg.GeneratorSettings;
@@ -32,19 +30,5 @@ public void testFindExplicit() throws JsonMappingException
3230
assertNotNull(prov.getDefaultNullValueSerializer());
3331
// as well as 'unknown type' one (throws exception)
3432
assertNotNull(prov.getUnknownTypeSerializer(getClass()));
35-
36-
assertTrue(prov.createInstance(config, genSettings, f).hasSerializerFor(String.class, null));
37-
// call twice to verify it'll be cached (second code path)
38-
assertTrue(prov.createInstance(config, genSettings, f).hasSerializerFor(String.class, null));
39-
40-
assertTrue(prov.createInstance(config, genSettings, f).hasSerializerFor(MyBean.class, null));
41-
assertTrue(prov.createInstance(config, genSettings, f).hasSerializerFor(MyBean.class, null));
42-
43-
// And then some negative testing
44-
AtomicReference<Throwable> cause = new AtomicReference<Throwable>();
45-
assertFalse(prov.createInstance(config, genSettings, f).hasSerializerFor(NoPropsBean.class, cause));
46-
Throwable t = cause.get();
47-
// no actual exception: just fails since there are no properties
48-
assertNull(t);
4933
}
5034
}

0 commit comments

Comments
 (0)