blob: 0dba2b9bb9a61f4114237b105c1d4f2741c27428 [file] [log] [blame]
Felipe Leme979013d2017-06-22 10:59:23 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
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 */
16package android.service.autofill;
17
Felipe Leme63c601a2017-09-27 17:40:30 -070018import static android.view.autofill.Helper.sDebug;
19
Felipe Leme979013d2017-06-22 10:59:23 -070020import android.annotation.NonNull;
Felipe Leme63c601a2017-09-27 17:40:30 -070021import android.annotation.TestApi;
Felipe Leme979013d2017-06-22 10:59:23 -070022import android.os.Parcelable;
Felipe Leme63c601a2017-09-27 17:40:30 -070023import android.util.Log;
24import android.util.Pair;
Felipe Leme979013d2017-06-22 10:59:23 -070025import android.widget.RemoteViews;
26
Felipe Leme63c601a2017-09-27 17:40:30 -070027import java.util.ArrayList;
28
Philip P. Moltmann3858aa62017-07-11 15:22:14 -070029/**
30 * Superclass of all transformation the system understands. As this is not public all
31 * subclasses have to implement {@link Transformation} again.
32 *
33 * @hide
34 */
Felipe Leme63c601a2017-09-27 17:40:30 -070035@TestApi
36public abstract class InternalTransformation implements Transformation, Parcelable {
37
38 private static final String TAG = "InternalTransformation";
Felipe Leme979013d2017-06-22 10:59:23 -070039
40 /**
Philip P. Moltmann3858aa62017-07-11 15:22:14 -070041 * Applies this transformation to a child view of a {@link android.widget.RemoteViews
42 * presentation template}.
Felipe Leme979013d2017-06-22 10:59:23 -070043 *
44 * @param finder object used to find the value of a field in the screen.
45 * @param template the {@link RemoteViews presentation template}.
46 * @param childViewId resource id of the child view inside the template.
Felipe Leme979013d2017-06-22 10:59:23 -070047 */
48 abstract void apply(@NonNull ValueFinder finder, @NonNull RemoteViews template,
Felipe Leme22101ca2017-07-18 08:58:50 -070049 int childViewId) throws Exception;
Felipe Leme63c601a2017-09-27 17:40:30 -070050
51 /**
52 * Applies multiple transformations to the children views of a
53 * {@link android.widget.RemoteViews presentation template}.
54 *
55 * @param finder object used to find the value of a field in the screen.
56 * @param template the {@link RemoteViews presentation template}.
57 * @param transformations map of resource id of the child view inside the template to
58 * transformation.
Felipe Leme63c601a2017-09-27 17:40:30 -070059 */
60 public static boolean batchApply(@NonNull ValueFinder finder, @NonNull RemoteViews template,
61 @NonNull ArrayList<Pair<Integer, InternalTransformation>> transformations) {
62 final int size = transformations.size();
63 if (sDebug) Log.d(TAG, "getPresentation(): applying " + size + " transformations");
64 for (int i = 0; i < size; i++) {
65 final Pair<Integer, InternalTransformation> pair = transformations.get(i);
66 final int id = pair.first;
67 final InternalTransformation transformation = pair.second;
68 if (sDebug) Log.d(TAG, "#" + i + ": " + transformation);
69
70 try {
71 transformation.apply(finder, template, id);
72 } catch (Exception e) {
73 // Do not log full exception to avoid PII leaking
74 Log.e(TAG, "Could not apply transformation " + transformation + ": "
75 + e.getClass());
76 return false;
77 }
78 }
79 return true;
80 }
Felipe Leme979013d2017-06-22 10:59:23 -070081}