1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
|
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.internal.util;
import android.annotation.NonNull;
import android.os.RemoteException;
import android.util.ExceptionUtils;
import java.util.function.BiConsumer;
import java.util.function.BiFunction;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.function.Supplier;
/**
* Utilities specific to functional programming
*/
public class FunctionalUtils {
private FunctionalUtils() {}
/**
* Converts a lambda expression that throws a checked exception(s) into a regular
* {@link Consumer} by propagating any checked exceptions as {@link RuntimeException}
*/
public static <T> Consumer<T> uncheckExceptions(ThrowingConsumer<T> action) {
return action;
}
/**
* @see #uncheckExceptions(ThrowingConsumer)
*/
public static <I, O> Function<I, O> uncheckExceptions(ThrowingFunction<I, O> action) {
return action;
}
/**
* @see #uncheckExceptions(ThrowingConsumer)
*/
public static Runnable uncheckExceptions(ThrowingRunnable action) {
return action;
}
/**
* @see #uncheckExceptions(ThrowingConsumer)
*/
public static <A, B> BiConsumer<A, B> uncheckExceptions(ThrowingBiConsumer<A, B> action) {
return action;
}
/**
* @see #uncheckExceptions(ThrowingConsumer)
*/
public static <T> Supplier<T> uncheckExceptions(ThrowingSupplier<T> action) {
return action;
}
/**
* Wraps a given {@code action} into one that ignores any {@link RemoteException}s
*/
public static <T> Consumer<T> ignoreRemoteException(RemoteExceptionIgnoringConsumer<T> action) {
return action;
}
/**
* Wraps the given {@link ThrowingRunnable} into one that handles any exceptions using the
* provided {@code handler}
*/
public static Runnable handleExceptions(ThrowingRunnable r, Consumer<Throwable> handler) {
return () -> {
try {
r.run();
} catch (Throwable t) {
handler.accept(t);
}
};
}
/**
* An equivalent of {@link Runnable} that allows throwing checked exceptions
*
* This can be used to specify a lambda argument without forcing all the checked exceptions
* to be handled within it
*/
@FunctionalInterface
@SuppressWarnings("FunctionalInterfaceMethodChanged")
public interface ThrowingRunnable extends Runnable {
void runOrThrow() throws Exception;
@Override
default void run() {
try {
runOrThrow();
} catch (Exception ex) {
throw ExceptionUtils.propagate(ex);
}
}
}
/**
* An equivalent of {@link Supplier} that allows throwing checked exceptions
*
* This can be used to specify a lambda argument without forcing all the checked exceptions
* to be handled within it
*/
@FunctionalInterface
@SuppressWarnings("FunctionalInterfaceMethodChanged")
public interface ThrowingSupplier<T> extends Supplier<T> {
T getOrThrow() throws Exception;
@Override
default T get() {
try {
return getOrThrow();
} catch (Exception ex) {
throw ExceptionUtils.propagate(ex);
}
}
}
/**
* A {@link Consumer} that allows throwing checked exceptions from its single abstract method.
*
* Can be used together with {@link #uncheckExceptions} to effectively turn a lambda expression
* that throws a checked exception into a regular {@link Consumer}
*/
@FunctionalInterface
@SuppressWarnings("FunctionalInterfaceMethodChanged")
public interface ThrowingConsumer<T> extends Consumer<T> {
void acceptOrThrow(T t) throws Exception;
@Override
default void accept(T t) {
try {
acceptOrThrow(t);
} catch (Exception ex) {
throw ExceptionUtils.propagate(ex);
}
}
}
/**
* A {@link Consumer} that automatically ignores any {@link RemoteException}s.
*
* Used by {@link #ignoreRemoteException}
*/
@FunctionalInterface
@SuppressWarnings("FunctionalInterfaceMethodChanged")
public interface RemoteExceptionIgnoringConsumer<T> extends Consumer<T> {
void acceptOrThrow(T t) throws RemoteException;
@Override
default void accept(T t) {
try {
acceptOrThrow(t);
} catch (RemoteException ex) {
// ignore
}
}
}
/**
* A {@link Function} that allows throwing checked exceptions from its single abstract method.
*
* Can be used together with {@link #uncheckExceptions} to effectively turn a lambda expression
* that throws a checked exception into a regular {@link Function}
*
* @param <T> see {@link Function}
* @param <R> see {@link Function}
*/
@FunctionalInterface
@SuppressWarnings("FunctionalInterfaceMethodChanged")
public interface ThrowingFunction<T, R> extends Function<T, R> {
/** @see ThrowingFunction */
R applyOrThrow(T t) throws Exception;
@Override
default R apply(T t) {
try {
return applyOrThrow(t);
} catch (Exception ex) {
throw ExceptionUtils.propagate(ex);
}
}
}
/**
* A {@link BiFunction} that allows throwing checked exceptions from its single abstract method.
*
* Can be used together with {@link #uncheckExceptions} to effectively turn a lambda expression
* that throws a checked exception into a regular {@link BiFunction}
*
* @param <T> see {@link BiFunction}
* @param <U> see {@link BiFunction}
* @param <R> see {@link BiFunction}
*/
@FunctionalInterface
@SuppressWarnings("FunctionalInterfaceMethodChanged")
public interface ThrowingBiFunction<T, U, R> extends BiFunction<T, U, R> {
/** @see ThrowingFunction */
R applyOrThrow(T t, U u) throws Exception;
@Override
default R apply(T t, U u) {
try {
return applyOrThrow(t, u);
} catch (Exception ex) {
throw ExceptionUtils.propagate(ex);
}
}
}
/**
* A {@link BiConsumer} that allows throwing checked exceptions from its single abstract method.
*
* Can be used together with {@link #uncheckExceptions} to effectively turn a lambda expression
* that throws a checked exception into a regular {@link Function}
*
* @param <A> see {@link BiConsumer}
* @param <B> see {@link BiConsumer}
*/
@FunctionalInterface
@SuppressWarnings("FunctionalInterfaceMethodChanged")
public interface ThrowingBiConsumer<A, B> extends BiConsumer<A, B> {
/** @see ThrowingFunction */
void acceptOrThrow(A a, B b) throws Exception;
@Override
default void accept(A a, B b) {
try {
acceptOrThrow(a, b);
} catch (Exception ex) {
throw ExceptionUtils.propagate(ex);
}
}
}
/**
* A {@link Consumer} that allows the caller to specify a custom checked {@link Exception} that
* can be thrown by the implementer. This is usually used when proxying/wrapping calls between
* different classes.
*
* @param <Input> Method parameter type
* @param <ExceptionType> Checked exception type
*/
@FunctionalInterface
public interface ThrowingCheckedConsumer<Input, ExceptionType extends Exception> {
void accept(Input input) throws ExceptionType;
}
/**
* A {@link Consumer} that allows the caller to specify 2 different custom checked
* {@link Exception}s that can be thrown by the implementer. This is usually used when
* proxying/wrapping calls between different classes.
*
* @param <Input> Method parameter type
* @param <ExceptionOne> First checked exception type
* @param <ExceptionTwo> Second checked exception type
*/
@FunctionalInterface
public interface ThrowingChecked2Consumer<Input, ExceptionOne extends Exception,
ExceptionTwo extends Exception> {
void accept(Input input) throws ExceptionOne, ExceptionTwo;
}
/**
* A {@link Function} that allows the caller to specify a custom checked {@link Exception} that
* can be thrown by the implementer. This is usually used when proxying/wrapping calls between
* different classes.
*
* @param <Input> Method parameter type
* @param <Output> Method return type
* @param <ExceptionType> Checked exception type
*/
@FunctionalInterface
public interface ThrowingCheckedFunction<Input, Output, ExceptionType extends Exception> {
Output apply(Input input) throws ExceptionType;
}
// TODO: add unit test
/**
* Gets a user-friendly name for a lambda function.
*/
@NonNull
public static String getLambdaName(@NonNull Object function) {
// Full function has one of the following formats:
// package-$$Lambda$class$randomId
// package-$$Lambda$randomId
//
// We just want just package.class$Lambda (or package$Lambda) respectively
final String fullFunction = function.toString();
final int endPkgIdx = fullFunction.indexOf("-$$");
if (endPkgIdx == -1) return fullFunction;
// firstDollarIdx could be either beginning of class or beginning of the random id
final int firstDollarIdx = fullFunction.indexOf('$', endPkgIdx + 3);
if (firstDollarIdx == -1) return fullFunction;
final int endClassIdx = fullFunction.indexOf('$', firstDollarIdx + 1);
if (endClassIdx == -1) {
// Just package
return fullFunction.substring(0, endPkgIdx - 1) + "$Lambda";
}
// Package + class
return fullFunction.substring(0, endPkgIdx)
+ fullFunction.substring(firstDollarIdx + 1, endClassIdx)
+ "$Lambda";
}
}
|