summaryrefslogtreecommitdiffstats
path: root/mobile/android/base/java/org/mozilla/gecko/icons/IconTask.java
blob: 411a31980f6eb231d731bc2ce610140a729f8c23 (plain)
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
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko.icons;

import android.graphics.Bitmap;
import android.support.annotation.NonNull;
import android.util.Log;

import org.mozilla.gecko.AppConstants;
import org.mozilla.gecko.icons.loader.IconLoader;
import org.mozilla.gecko.icons.preparation.Preparer;
import org.mozilla.gecko.icons.processing.Processor;
import org.mozilla.gecko.util.ThreadUtils;

import java.util.List;
import java.util.concurrent.Callable;

/**
 * Task that will be run by the IconRequestExecutor for every icon request.
 */
/* package-private */ class IconTask implements Callable<IconResponse> {
    private static final String LOGTAG = "Gecko/IconTask";
    private static final boolean DEBUG = false;

    private final List<Preparer> preparers;
    private final List<IconLoader> loaders;
    private final List<Processor> processors;
    private final IconLoader generator;
    private final IconRequest request;

    /* package-private */ IconTask(
            @NonNull IconRequest request,
            @NonNull List<Preparer> preparers,
            @NonNull List<IconLoader> loaders,
            @NonNull List<Processor> processors,
            @NonNull IconLoader generator) {
        this.request = request;
        this.preparers = preparers;
        this.loaders = loaders;
        this.processors = processors;
        this.generator = generator;
    }

    @Override
    public IconResponse call() {
        try {
            logRequest(request);

            prepareRequest(request);

            if (request.shouldPrepareOnly()) {
                // This request should only be prepared but not load an actual icon.
                return null;
            }

            final IconResponse response = loadIcon(request);

            if (response != null) {
                processIcon(request, response);
                executeCallback(request, response);

                logResponse(response);

                return response;
            }
        } catch (InterruptedException e) {
            Log.d(LOGTAG, "IconTask was interrupted", e);

            // Clear interrupt thread.
            Thread.interrupted();
        } catch (Throwable e) {
            handleException(e);
        }

        return null;
    }

    /**
     * Check if this thread was interrupted (e.g. this task was cancelled). Throws an InterruptedException
     * to stop executing the task in this case.
     */
    private void ensureNotInterrupted() throws InterruptedException {
        if (Thread.currentThread().isInterrupted()) {
            throw new InterruptedException("Task has been cancelled");
        }
    }

    private void executeCallback(IconRequest request, final IconResponse response) {
        final IconCallback callback = request.getCallback();

        if (callback != null) {
            if (request.shouldRunOnBackgroundThread()) {
                ThreadUtils.postToBackgroundThread(new Runnable() {
                    @Override
                    public void run() {
                        callback.onIconResponse(response);
                    }
                });
            } else {
                ThreadUtils.postToUiThread(new Runnable() {
                    @Override
                    public void run() {
                        callback.onIconResponse(response);
                    }
                });
            }
        }
    }

    private void prepareRequest(IconRequest request) throws InterruptedException {
        for (Preparer preparer : preparers) {
            ensureNotInterrupted();

            preparer.prepare(request);

            logPreparer(request, preparer);
        }
    }

    private IconResponse loadIcon(IconRequest request) throws InterruptedException {
        while (request.hasIconDescriptors()) {
            for (IconLoader loader : loaders) {
                ensureNotInterrupted();

                IconResponse response = loader.load(request);

                logLoader(request, loader, response);

                if (response != null) {
                    return response;
                }
            }

            request.moveToNextIcon();
        }

        return generator.load(request);
    }

    private void processIcon(IconRequest request, IconResponse response) throws InterruptedException {
        for (Processor processor : processors) {
            ensureNotInterrupted();

            processor.process(request, response);

            logProcessor(processor);
        }
    }

    private void handleException(final Throwable t) {
        if (AppConstants.NIGHTLY_BUILD) {
            // We want to be aware of problems: Let's re-throw the exception on the main thread to
            // force an app crash. However we only do this in Nightly builds. Every other build
            // (especially release builds) should just carry on and log the error.
            ThreadUtils.postToUiThread(new Runnable() {
                @Override
                public void run() {
                    throw new RuntimeException("Icon task thread crashed", t);
                }
            });
        } else {
            Log.e(LOGTAG, "Icon task crashed", t);
        }
    }

    private boolean shouldLog() {
        // Do not log anything if debugging is disabled and never log anything in a non-nightly build.
        return DEBUG && AppConstants.NIGHTLY_BUILD;
    }

    private void logPreparer(IconRequest request, Preparer preparer) {
        if (!shouldLog()) {
            return;
        }

        Log.d(LOGTAG, String.format("  PREPARE %s" + " (%s)",
                preparer.getClass().getSimpleName(),
                request.getIconCount()));
    }

    private void logLoader(IconRequest request, IconLoader loader, IconResponse response) {
        if (!shouldLog()) {
            return;
        }

        Log.d(LOGTAG, String.format("  LOAD [%s] %s : %s",
                response != null ? "X" : " ",
                loader.getClass().getSimpleName(),
                request.getBestIcon().getUrl()));
    }

    private void logProcessor(Processor processor) {
        if (!shouldLog()) {
            return;
        }

        Log.d(LOGTAG, "  PROCESS " + processor.getClass().getSimpleName());
    }

    private void logResponse(IconResponse response) {
        if (!shouldLog()) {
            return;
        }

        final Bitmap bitmap = response.getBitmap();

        Log.d(LOGTAG, String.format("=> ICON: %sx%s", bitmap.getWidth(), bitmap.getHeight()));
    }

    private void logRequest(IconRequest request) {
        if (!shouldLog()) {
            return;
        }

        Log.d(LOGTAG, String.format("REQUEST (%s) %s",
                request.getIconCount(),
                request.getPageUrl()));
    }
}