|
30 | 30 | import java.util.Collection;
|
31 | 31 | import java.util.HashMap;
|
32 | 32 | import java.util.Map;
|
| 33 | +import java.util.function.Supplier; |
33 | 34 |
|
34 | 35 | /**
|
35 | 36 | * @author Mark Vollmary
|
36 | 37 | * @author Christian Lechner
|
37 |
| - * |
38 | 38 | */
|
39 |
| -public class DocumentFromResolver extends AbstractResolver<From> implements RelationResolver<From> { |
| 39 | +public class DocumentFromResolver extends AbstractResolver implements RelationResolver<From> { |
40 | 40 |
|
41 |
| - private final ArangoOperations template; |
| 41 | + private final ArangoOperations template; |
42 | 42 |
|
43 |
| - public DocumentFromResolver(final ArangoOperations template) { |
44 |
| - super(template.getConverter().getConversionService()); |
45 |
| - this.template = template; |
46 |
| - } |
| 43 | + public DocumentFromResolver(final ArangoOperations template) { |
| 44 | + super(template.getConverter().getConversionService()); |
| 45 | + this.template = template; |
| 46 | + } |
47 | 47 |
|
48 |
| - @Override |
49 |
| - public Object resolveOne(final String id, final TypeInformation<?> type, Collection<TypeInformation<?>> traversedTypes, final From annotation) { |
50 |
| - return annotation.lazy() ? proxy(id, type, annotation, (i, t, a) -> _resolveOne(i, t)) |
51 |
| - : _resolveOne(id, type); |
52 |
| - } |
| 48 | + @Override |
| 49 | + public Object resolveOne(final String id, final TypeInformation<?> type, Collection<TypeInformation<?>> traversedTypes, |
| 50 | + final From annotation) { |
| 51 | + Supplier<Object> supplier = () -> _resolveOne(id, type); |
| 52 | + return annotation.lazy() ? proxy(id, type, supplier) : supplier.get(); |
| 53 | + } |
53 | 54 |
|
54 |
| - private Object _resolveOne(final String id, final TypeInformation<?> type) { |
55 |
| - ArangoCursor<?> it = _resolve(id, type.getType(), true); |
56 |
| - return it.hasNext() ? it.next() : null; |
57 |
| - } |
| 55 | + private Object _resolveOne(final String id, final TypeInformation<?> type) { |
| 56 | + ArangoCursor<?> it = _resolve(id, type.getType(), true); |
| 57 | + return it.hasNext() ? it.next() : null; |
| 58 | + } |
58 | 59 |
|
59 |
| - @Override |
60 |
| - public Object resolveMultiple(final String id, final TypeInformation<?> type, Collection<TypeInformation<?>> traversedTypes, final From annotation) { |
61 |
| - return annotation.lazy() ? proxy(id, type, annotation, (i, t, a) -> _resolveMultiple(i, t)) |
62 |
| - : _resolveMultiple(id, type); |
63 |
| - } |
| 60 | + @Override |
| 61 | + public Object resolveMultiple(final String id, final TypeInformation<?> type, Collection<TypeInformation<?>> traversedTypes, |
| 62 | + final From annotation) { |
| 63 | + Supplier<Object> supplier = () -> _resolveMultiple(id, type); |
| 64 | + return annotation.lazy() ? proxy(id, type, supplier) : supplier.get(); |
| 65 | + } |
64 | 66 |
|
65 |
| - private Object _resolveMultiple(final String id, final TypeInformation<?> type) { |
66 |
| - return _resolve(id, getNonNullComponentType(type).getType(), false).asListRemaining(); |
67 |
| - } |
| 67 | + private Object _resolveMultiple(final String id, final TypeInformation<?> type) { |
| 68 | + return _resolve(id, getNonNullComponentType(type).getType(), false).asListRemaining(); |
| 69 | + } |
68 | 70 |
|
69 |
| - private ArangoCursor<?> _resolve(final String id, final Class<?> type, final boolean limit) { |
70 |
| - final String query = String.format("FOR e IN @@edge FILTER e._from == @id %s RETURN e", limit ? "LIMIT 1" : ""); |
71 |
| - Map<String, Object> bindVars = new HashMap<>(); |
72 |
| - bindVars.put("@edge", type); |
73 |
| - bindVars.put("id", id); |
74 |
| - return template.query(query, bindVars, new AqlQueryOptions(), |
75 |
| - type); |
76 |
| - } |
| 71 | + private ArangoCursor<?> _resolve(final String id, final Class<?> type, final boolean limit) { |
| 72 | + final String query = String.format("FOR e IN @@edge FILTER e._from == @id %s RETURN e", limit ? "LIMIT 1" : ""); |
| 73 | + Map<String, Object> bindVars = new HashMap<>(); |
| 74 | + bindVars.put("@edge", type); |
| 75 | + bindVars.put("id", id); |
| 76 | + return template.query(query, bindVars, new AqlQueryOptions(), type); |
| 77 | + } |
77 | 78 |
|
78 | 79 | }
|
0 commit comments