Skip to content

Commit 15d49d9

Browse files
bcorsoGoogle Java Core Libraries
authored and
Google Java Core Libraries
committed
Replace server Guava API usage with Android compatible alternatives.
The issue occurs when the Android flavor of Guava somehow finds its way onto the processor class path and gets classloaded instead of the server Guava. The ideal solution would be to just keep the Android flavor of Guava off of the processor class path. However, it's been something that we've allowed for a while now, e.g. in Dagger, and would be difficult to start enforcing. This CL adds a new API for auto-common. A follow-up CL will update auto-value and auto-service to depend on the new auto-common APIs once auto-common has a release with those changes. RELNOTES=Added new public APIs for guava collector usage (toImmutable*) that are Android-compatible. PiperOrigin-RevId: 376892205
1 parent 64b9ecc commit 15d49d9

File tree

3 files changed

+77
-2
lines changed

3 files changed

+77
-2
lines changed

common/src/main/java/com/google/auto/common/AnnotationValues.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
*/
1616
package com.google.auto.common;
1717

18+
import static com.google.auto.common.MoreStreams.toImmutableList;
1819
import static com.google.common.base.Preconditions.checkNotNull;
19-
import static com.google.common.collect.ImmutableList.toImmutableList;
2020

2121
import com.google.common.base.Equivalence;
2222
import com.google.common.collect.ImmutableList;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
/*
2+
* Copyright 2021 Google LLC
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package com.google.auto.common;
18+
19+
import static java.util.stream.Collectors.collectingAndThen;
20+
import static java.util.stream.Collectors.toList;
21+
22+
import com.google.common.collect.ImmutableBiMap;
23+
import com.google.common.collect.ImmutableList;
24+
import com.google.common.collect.ImmutableMap;
25+
import com.google.common.collect.ImmutableSet;
26+
import com.google.common.collect.Maps;
27+
import java.util.Map;
28+
import java.util.function.Function;
29+
import java.util.stream.Collector;
30+
import java.util.stream.Collectors;
31+
32+
/**
33+
* A utility class that provides Android compatible alternatives to Guava's streaming APIs.
34+
*
35+
* <p>This is useful when the Android flavor of Guava somehow finds its way onto the processor
36+
* classpath.
37+
*/
38+
public final class MoreStreams {
39+
40+
/** Returns a collector for an {@link ImmutableList}. */
41+
public static <T> Collector<T, ?, ImmutableList<T>> toImmutableList() {
42+
return collectingAndThen(toList(), ImmutableList::copyOf);
43+
}
44+
45+
/** Returns a collector for an {@link ImmutableSet}. */
46+
public static <T> Collector<T, ?, ImmutableSet<T>> toImmutableSet() {
47+
return collectingAndThen(toList(), ImmutableSet::copyOf);
48+
}
49+
50+
/** Returns a collector for an {@link ImmutableMap}. */
51+
public static <T, K, V> Collector<T, ?, ImmutableMap<K, V>> toImmutableMap(
52+
Function<? super T, K> keyMapper, Function<? super T, V> valueMapper) {
53+
return Collectors.mapping(
54+
value -> Maps.immutableEntry(keyMapper.apply(value), valueMapper.apply(value)),
55+
Collector.of(
56+
ImmutableMap::builder,
57+
(ImmutableMap.Builder<K, V> builder, Map.Entry<K, V> entry) -> builder.put(entry),
58+
(left, right) -> left.putAll(right.build()),
59+
ImmutableMap.Builder::build));
60+
}
61+
62+
/** Returns a collector for an {@link ImmutableBiMap}. */
63+
public static <T, K, V> Collector<T, ?, ImmutableBiMap<K, V>> toImmutableBiMap(
64+
Function<? super T, K> keyMapper, Function<? super T, V> valueMapper) {
65+
return Collectors.mapping(
66+
value -> Maps.immutableEntry(keyMapper.apply(value), valueMapper.apply(value)),
67+
Collector.of(
68+
ImmutableBiMap::builder,
69+
(ImmutableBiMap.Builder<K, V> builder, Map.Entry<K, V> entry) -> builder.put(entry),
70+
(left, right) -> left.putAll(right.build()),
71+
ImmutableBiMap.Builder::build));
72+
}
73+
74+
private MoreStreams() {}
75+
}

common/src/main/java/com/google/auto/common/SimpleAnnotationMirror.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
package com.google.auto.common;
1818

19+
import static com.google.auto.common.MoreStreams.toImmutableMap;
1920
import static com.google.common.base.Preconditions.checkArgument;
20-
import static com.google.common.collect.ImmutableMap.toImmutableMap;
2121
import static javax.lang.model.util.ElementFilter.methodsIn;
2222

2323
import com.google.common.base.Joiner;

0 commit comments

Comments
 (0)