summaryrefslogtreecommitdiff
path: root/java/com/google/android/libraries/mobiledatadownload/internal/logging/MddEventLogger.java
blob: 9be820d9948cd37853d2a39be939444bf8321873 (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
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/*
 * Copyright 2022 Google LLC
 *
 * 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.google.android.libraries.mobiledatadownload.internal.logging;

import static com.google.common.util.concurrent.Futures.immediateVoidFuture;
import static com.google.common.util.concurrent.MoreExecutors.directExecutor;

import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;

import com.google.android.libraries.mobiledatadownload.Flags;
import com.google.android.libraries.mobiledatadownload.Logger;
import com.google.android.libraries.mobiledatadownload.tracing.PropagatedFluentFuture;
import com.google.android.libraries.mobiledatadownload.tracing.PropagatedFutures;
import com.google.common.base.Optional;
import com.google.common.util.concurrent.AsyncCallable;
import com.google.common.util.concurrent.FutureCallback;
import com.google.common.util.concurrent.ListenableFuture;
import com.google.mobiledatadownload.LogEnumsProto.MddClientEvent;
import com.google.mobiledatadownload.LogEnumsProto.MddDownloadResult;
import com.google.mobiledatadownload.LogProto.AndroidClientInfo;
import com.google.mobiledatadownload.LogProto.DataDownloadFileGroupStats;
import com.google.mobiledatadownload.LogProto.MddDeviceInfo;
import com.google.mobiledatadownload.LogProto.MddDownloadLatency;
import com.google.mobiledatadownload.LogProto.MddDownloadResultLog;
import com.google.mobiledatadownload.LogProto.MddLibApiResultLog;
import com.google.mobiledatadownload.LogProto.MddLogData;
import com.google.mobiledatadownload.LogProto.MddNetworkStats;
import com.google.mobiledatadownload.LogProto.MddStorageStats;
import com.google.mobiledatadownload.LogProto.StableSamplingInfo;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

/** Assembles data and logs them with underlying {@link Logger}. */
public final class MddEventLogger implements EventLogger {

    private static final String TAG = "MddEventLogger";

    private final Context context;
    private final Logger logger;
    // A process that has mdi download module loaded will get restarted if a new module version is
    // installed.
    private final int moduleVersion;
    private final String hostPackageName;
    private final Flags flags;
    private final LogSampler logSampler;

    private Optional<LoggingStateStore> loggingStateStore = Optional.absent();

    public MddEventLogger(
            Context context, Logger logger, int moduleVersion, LogSampler logSampler, Flags flags) {
        this.context = context;
        this.logger = logger;
        this.moduleVersion = moduleVersion;
        this.hostPackageName = context.getPackageName();
        this.logSampler = logSampler;
        this.flags = flags;
    }

    /**
     * This should be called before MddEventLogger is used. If it is not called before
     * MddEventLogger
     * is used, stable sampling will not be used.
     *
     * <p>Note(rohitsat): this is required because LoggingStateStore is constructed with a PDS in
     * the
     * MainMddLibModule. MddEventLogger is required to construct the MainMddLibModule.
     *
     * @param loggingStateStore the LoggingStateStore that contains the persisted random number for
     *                          stable sampling.
     */
    public void setLoggingStateStore(LoggingStateStore loggingStateStore) {
        this.loggingStateStore = Optional.of(loggingStateStore);
    }

    @Override
    public void logEventSampled(MddClientEvent.Code eventCode) {
        sampleAndSendLogEvent(eventCode, MddLogData.newBuilder(), flags.mddDefaultSampleInterval());
    }

    @Override
    public void logEventSampled(
            MddClientEvent.Code eventCode,
            String fileGroupName,
            int fileGroupVersionNumber,
            long buildId,
            String variantId) {

        DataDownloadFileGroupStats dataDownloadFileGroupStats =
                DataDownloadFileGroupStats.newBuilder()
                        .setFileGroupName(fileGroupName)
                        .setFileGroupVersionNumber(fileGroupVersionNumber)
                        .setBuildId(buildId)
                        .setVariantId(variantId)
                        .build();

        sampleAndSendLogEvent(
                eventCode,
                MddLogData.newBuilder().setDataDownloadFileGroupStats(dataDownloadFileGroupStats),
                flags.mddDefaultSampleInterval());
    }

    @Override
    public void logEventAfterSample(MddClientEvent.Code eventCode, int sampleInterval) {
        // TODO(b/138392640): delete this method once the pds migration is complete. If it's
        //  necessary
        // for other use cases, we can establish a pattern where this class is still responsible for
        // sampling.
        MddLogData.Builder logData = MddLogData.newBuilder();
        processAndSendEventWithoutStableSampling(eventCode, logData, sampleInterval);
    }

    @Override
    public void logMddApiCallStats(DataDownloadFileGroupStats fileGroupDetails, Void apiCallStats) {
        // TODO(b/144684763): update this to use stable sampling. Leaving it as is for now since
        //  it is
        // fairly high volume.
        long sampleInterval = flags.apiLoggingSampleInterval();
        if (!LogUtil.shouldSampleInterval(sampleInterval)) {
            return;
        }
        MddLogData.Builder logData =
                MddLogData.newBuilder().setDataDownloadFileGroupStats(fileGroupDetails);
        processAndSendEventWithoutStableSampling(
                MddClientEvent.Code.EVENT_CODE_UNSPECIFIED, logData, sampleInterval);
    }

    @Override
    public void logMddLibApiResultLog(MddLibApiResultLog mddLibApiResultLog) {
        MddLogData.Builder logData = MddLogData.newBuilder().setMddLibApiResultLog(
                mddLibApiResultLog);

        sampleAndSendLogEvent(
                MddClientEvent.Code.DATA_DOWNLOAD_LIB_API_RESULT,
                logData,
                flags.apiLoggingSampleInterval());
    }

    @Override
    public ListenableFuture<Void> logMddFileGroupStats(
            AsyncCallable<List<EventLogger.FileGroupStatusWithDetails>> buildFileGroupStats) {
        return lazySampleAndSendLogEvent(
                MddClientEvent.Code.DATA_DOWNLOAD_FILE_GROUP_STATUS,
                () ->
                        PropagatedFutures.transform(
                                buildFileGroupStats.call(),
                                fileGroupStatusAndDetailsList -> {
                                    List<MddLogData> allMddLogData = new ArrayList<>();

                                    for (FileGroupStatusWithDetails fileGroupStatusAndDetails :
                                            fileGroupStatusAndDetailsList) {
                                        allMddLogData.add(
                                                MddLogData.newBuilder()
                                                        .setMddFileGroupStatus(
                                                                fileGroupStatusAndDetails.fileGroupStatus())
                                                        .setDataDownloadFileGroupStats(
                                                                fileGroupStatusAndDetails.fileGroupDetails())
                                                        .build());
                                    }
                                    return allMddLogData;
                                },
                                directExecutor()),
                flags.groupStatsLoggingSampleInterval());
    }

    @Override
    public ListenableFuture<Void> logMddStorageStats(
            AsyncCallable<MddStorageStats> buildStorageStats) {
        return lazySampleAndSendLogEvent(
                MddClientEvent.Code.DATA_DOWNLOAD_STORAGE_STATS,
                () ->
                        PropagatedFutures.transform(
                                buildStorageStats.call(),
                                storageStats ->
                                        Arrays.asList(MddLogData.newBuilder().setMddStorageStats(
                                                storageStats).build()),
                                directExecutor()),
                flags.storageStatsLoggingSampleInterval());
    }

    @Override
    public ListenableFuture<Void> logMddNetworkStats(
            AsyncCallable<MddNetworkStats> buildNetworkStats) {
        return lazySampleAndSendLogEvent(
                MddClientEvent.Code.DATA_DOWNLOAD_NETWORK_STATS,
                () ->
                        PropagatedFutures.transform(
                                buildNetworkStats.call(),
                                networkStats ->
                                        Arrays.asList(MddLogData.newBuilder().setMddNetworkStats(
                                                networkStats).build()),
                                directExecutor()),
                flags.networkStatsLoggingSampleInterval());
    }

    @Override
    public void logMddDataDownloadFileExpirationEvent(int eventCode, int count) {
        MddLogData.Builder logData = MddLogData.newBuilder();
        sampleAndSendLogEvent(
                MddClientEvent.Code.EVENT_CODE_UNSPECIFIED, logData,
                flags.mddDefaultSampleInterval());
    }

    @Override
    public void logMddNetworkSavings(
            DataDownloadFileGroupStats fileGroupDetails,
            int code,
            long fullFileSize,
            long downloadedFileSize,
            String fileId,
            int deltaIndex) {
        MddLogData.Builder logData = MddLogData.newBuilder();

        sampleAndSendLogEvent(
                MddClientEvent.Code.EVENT_CODE_UNSPECIFIED, logData,
                flags.mddDefaultSampleInterval());
    }

    @Override
    public void logMddQueryStats(DataDownloadFileGroupStats fileGroupDetails) {
        MddLogData.Builder logData = MddLogData.newBuilder();

        sampleAndSendLogEvent(
                MddClientEvent.Code.EVENT_CODE_UNSPECIFIED, logData,
                flags.mddDefaultSampleInterval());
    }

    @Override
    public void logMddDownloadLatency(
            DataDownloadFileGroupStats fileGroupDetails, MddDownloadLatency downloadLatency) {
        MddLogData.Builder logData =
                MddLogData.newBuilder()
                        .setMddDownloadLatency(downloadLatency)
                        .setDataDownloadFileGroupStats(fileGroupDetails);

        sampleAndSendLogEvent(
                MddClientEvent.Code.DATA_DOWNLOAD_LATENCY_LOG, logData,
                flags.mddDefaultSampleInterval());
    }

    @Override
    public void logMddDownloadResult(
            MddDownloadResult.Code code, DataDownloadFileGroupStats fileGroupDetails) {
        MddLogData.Builder logData =
                MddLogData.newBuilder()
                        .setMddDownloadResultLog(
                                MddDownloadResultLog.newBuilder()
                                        .setResult(code)
                                        .setDataDownloadFileGroupStats(fileGroupDetails));

        sampleAndSendLogEvent(
                MddClientEvent.Code.DATA_DOWNLOAD_RESULT_LOG, logData,
                flags.mddDefaultSampleInterval());
    }

    @Override
    public void logMddAndroidSharingLog(Void event) {
        // TODO(b/144684763): consider moving this to stable sampling depending on frequency of
        //  events.
        long sampleInterval = flags.mddAndroidSharingSampleInterval();
        if (!LogUtil.shouldSampleInterval(sampleInterval)) {
            return;
        }
        MddLogData.Builder logData = MddLogData.newBuilder();
        processAndSendEventWithoutStableSampling(
                MddClientEvent.Code.EVENT_CODE_UNSPECIFIED, logData, sampleInterval);
    }

    @Override
    public void logMddUsageEvent(DataDownloadFileGroupStats fileGroupDetails, Void usageEventLog) {
        MddLogData.Builder logData =
                MddLogData.newBuilder().setDataDownloadFileGroupStats(fileGroupDetails);

        sampleAndSendLogEvent(
                MddClientEvent.Code.EVENT_CODE_UNSPECIFIED, logData,
                flags.mddDefaultSampleInterval());
    }

    @Override
    public void logNewConfigReceived(
            DataDownloadFileGroupStats fileGroupDetails, Void newConfigReceivedInfo) {
        MddLogData.Builder logData =
                MddLogData.newBuilder().setDataDownloadFileGroupStats(fileGroupDetails);
        sampleAndSendLogEvent(
                MddClientEvent.Code.EVENT_CODE_UNSPECIFIED, logData,
                flags.mddDefaultSampleInterval());
    }

    /**
     * Determines whether the log event will be a part of the sample, and if so calls {@code
     * buildStats} to construct the log event. This is like {@link sampleAndSendLogEvent} but
     * constructs the log event lazy. This is useful if constructing the log event is expensive.
     */
    private ListenableFuture<Void> lazySampleAndSendLogEvent(
            MddClientEvent.Code eventCode,
            AsyncCallable<List<MddLogData>> buildStats,
            int sampleInterval) {
        return PropagatedFutures.transformAsync(
                logSampler.shouldLog(sampleInterval, loggingStateStore),
                samplingInfoOptional -> {
                    if (!samplingInfoOptional.isPresent()) {
                        return immediateVoidFuture();
                    }

                    return PropagatedFluentFuture.from(buildStats.call())
                            .transform(
                                    icingLogDataList -> {
                                        if (icingLogDataList != null) {
                                            for (MddLogData icingLogData : icingLogDataList) {
                                                processAndSendEvent(
                                                        eventCode,
                                                        icingLogData.toBuilder(),
                                                        sampleInterval,
                                                        samplingInfoOptional.get());
                                            }
                                        }
                                        return null;
                                    },
                                    directExecutor());
                },
                directExecutor());
    }

    private void sampleAndSendLogEvent(
            MddClientEvent.Code eventCode, MddLogData.Builder logData, long sampleInterval) {
        // NOTE: When using a single-threaded executor, logging may be delayed since other
        // work will come before the log sampler check.
        PropagatedFutures.addCallback(
                logSampler.shouldLog(sampleInterval, loggingStateStore),
                new FutureCallback<Optional<StableSamplingInfo>>() {
                    @Override
                    public void onSuccess(Optional<StableSamplingInfo> stableSamplingInfo) {
                        if (stableSamplingInfo.isPresent()) {
                            processAndSendEvent(eventCode, logData, sampleInterval,
                                    stableSamplingInfo.get());
                        }
                    }

                    @Override
                    public void onFailure(Throwable t) {
                        LogUtil.e(t, "%s: failure when sampling log!", TAG);
                    }
                },
                directExecutor());
    }

    /** Adds all transforms common to all logs and sends the event to Logger. */
    private void processAndSendEventWithoutStableSampling(
            MddClientEvent.Code eventCode, MddLogData.Builder logData, long sampleInterval) {
        processAndSendEvent(
                eventCode,
                logData,
                sampleInterval,
                StableSamplingInfo.newBuilder().setStableSamplingUsed(false).build());
    }

    /** Adds all transforms common to all logs and sends the event to Logger. */
    private void processAndSendEvent(
            MddClientEvent.Code eventCode,
            MddLogData.Builder logData,
            long sampleInterval,
            StableSamplingInfo stableSamplingInfo) {
        if (eventCode.equals(MddClientEvent.Code.EVENT_CODE_UNSPECIFIED)) {
            LogUtil.e("%s: unspecified code used, skipping event log", TAG);
            // return early for unspecified codes.
            return;
        }

        logData
                .setSamplingInterval(sampleInterval)
                .setDeviceInfo(
                        MddDeviceInfo.newBuilder().setDeviceStorageLow(isDeviceStorageLow(context)))
                .setAndroidClientInfo(
                        AndroidClientInfo.newBuilder()
                                .setHostPackageName(hostPackageName)
                                .setModuleVersion(moduleVersion))
                .setStableSamplingInfo(stableSamplingInfo);
        logger.log(logData.build(), eventCode.getNumber());
    }

    /** Returns whether the device is in low storage state. */
    private static boolean isDeviceStorageLow(Context context) {
        // Check if the system says storage is low, by reading the sticky intent.
        return context.registerReceiver(null, new IntentFilter(Intent.ACTION_DEVICE_STORAGE_LOW))
                != null;
    }
}