usage.dart 16.8 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5
part of reporting;
6

7
const String _kFlutterUA = 'UA-67589403-6';
8

9 10
/// The collection of custom dimensions understood by the analytics backend.
/// When adding to this list, first ensure that the custom dimension is
11
/// defined in the backend, or will be defined shortly after the relevant PR
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
/// lands.
enum CustomDimensions {
  sessionHostOsDetails,  // cd1
  sessionChannelName,  // cd2
  commandRunIsEmulator, // cd3
  commandRunTargetName, // cd4
  hotEventReason,  // cd5
  hotEventFinalLibraryCount,  // cd6
  hotEventSyncedLibraryCount,  // cd7
  hotEventSyncedClassesCount,  // cd8
  hotEventSyncedProceduresCount,  // cd9
  hotEventSyncedBytes,  // cd10
  hotEventInvalidatedSourcesCount,  // cd11
  hotEventTransferTimeInMs,  // cd12
  hotEventOverallTimeInMs,  // cd13
  commandRunProjectType,  // cd14
  commandRunProjectHostLanguage,  // cd15
  commandCreateAndroidLanguage,  // cd16
  commandCreateIosLanguage,  // cd17
  commandRunProjectModule,  // cd18
  commandCreateProjectType,  // cd19
  commandPackagesNumberPlugins,  // cd20
  commandPackagesProjectModule,  // cd21
  commandRunTargetOsVersion,  // cd22
  commandRunModeName,  // cd23
  commandBuildBundleTargetPlatform,  // cd24
  commandBuildBundleIsModule,  // cd25
  commandResult,  // cd26
  hotEventTargetPlatform,  // cd27
  hotEventSdkName,  // cd28
  hotEventEmulator,  // cd29
  hotEventFullRestart,  // cd30
  commandHasTerminal,  // cd31
  enabledFlutterFeatures,  // cd32
  localTime,  // cd33
  commandBuildAarTargetPlatform,  // cd34
  commandBuildAarProjectType,  // cd35
  buildEventCommand,  // cd36
  buildEventSettings,  // cd37
51 52 53 54 55
  commandBuildApkTargetPlatform, // cd38
  commandBuildApkBuildMode, // cd39
  commandBuildApkSplitPerAbi, // cd40
  commandBuildAppBundleTargetPlatform, // cd41
  commandBuildAppBundleBuildMode, // cd42
56
  buildEventError,  // cd43
57
  commandResultEventMaxRss,  // cd44
58 59
  commandRunAndroidEmbeddingVersion, // cd45
  commandPackagesAndroidEmbeddingVersion, // cd46
60
  nullSafety, // cd47
61
  fastReassemble, // cd48
62
}
63

64
String cdKey(CustomDimensions cd) => 'cd${cd.index + 1}';
65

66 67 68
Map<String, String> _useCdKeys(Map<CustomDimensions, Object> parameters) {
  return parameters.map((CustomDimensions k, Object v) =>
      MapEntry<String, String>(cdKey(k), v.toString()));
69
}
70

71
abstract class Usage {
72 73
  /// Create a new Usage instance; [versionOverride], [configDirOverride], and
  /// [logFile] are used for testing.
74 75 76
  factory Usage({
    String settingsName = 'flutter',
    String versionOverride,
77 78
    String configDirOverride,
    String logFile,
79
    AnalyticsFactory analyticsIOFactory,
80
    @required bool runningOnBot,
81 82 83
  }) => _DefaultUsage(settingsName: settingsName,
                      versionOverride: versionOverride,
                      configDirOverride: configDirOverride,
84
                      logFile: logFile,
85
                      analyticsIOFactory: analyticsIOFactory,
86
                      runningOnBot: runningOnBot);
87

88 89
  factory Usage.test() => _DefaultUsage.test();

90 91
  /// Uses the global [Usage] instance to send a 'command' to analytics.
  static void command(String command, {
92
    Map<CustomDimensions, Object> parameters,
93
  }) => globals.flutterUsage.sendCommand(command, parameters: _useCdKeys(parameters));
94

95 96
  /// Whether this is the first run of the tool.
  bool get isFirstRun;
97

98
  /// Whether analytics reporting should be suppressed.
99
  bool get suppressAnalytics;
100

101 102
  /// Suppress analytics for this session.
  set suppressAnalytics(bool value);
103

104 105
  /// Whether analytics reporting is enabled.
  bool get enabled;
106

107 108 109 110 111 112 113 114 115 116 117
  /// Enable or disable reporting analytics.
  set enabled(bool value);

  /// A stable randomly generated UUID used to deduplicate multiple identical
  /// reports coming from the same computer.
  String get clientId;

  /// Sends a 'command' to the underlying analytics implementation.
  ///
  /// Note that using [command] above is preferred to ensure that the parameter
  /// keys are well-defined in [CustomDimensions] above.
118 119 120
  void sendCommand(
    String command, {
    Map<String, String> parameters,
121 122 123 124 125 126 127 128
  });

  /// Sends an 'event' to the underlying analytics implementation.
  ///
  /// Note that this method should not be used directly, instead see the
  /// event types defined in this directory in events.dart.
  @visibleForOverriding
  @visibleForTesting
129 130 131
  void sendEvent(
    String category,
    String parameter, {
132
    String label,
133
    int value,
134
    Map<String, String> parameters,
135 136 137
  });

  /// Sends timing information to the underlying analytics implementation.
138 139 140 141 142
  void sendTiming(
    String category,
    String variableName,
    Duration duration, {
    String label,
143 144 145 146
  });

  /// Sends an exception to the underlying analytics implementation.
  void sendException(dynamic exception);
147

148 149 150 151 152 153 154 155 156 157 158 159 160
  /// Fires whenever analytics data is sent over the network.
  @visibleForTesting
  Stream<Map<String, dynamic>> get onSend;

  /// Returns when the last analytics event has been sent, or after a fixed
  /// (short) delay, whichever is less.
  Future<void> ensureAnalyticsSent();

  /// Prints a welcome message that informs the tool user about the collection
  /// of anonymous usage information.
  void printWelcome();
}

161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
typedef AnalyticsFactory = Analytics Function(
  String trackingId,
  String applicationName,
  String applicationVersion, {
  String analyticsUrl,
  Directory documentDirectory,
});

Analytics _defaultAnalyticsIOFactory(
  String trackingId,
  String applicationName,
  String applicationVersion, {
  String analyticsUrl,
  Directory documentDirectory,
}) {
  return AnalyticsIO(
    trackingId,
    applicationName,
    applicationVersion,
    analyticsUrl: analyticsUrl,
    documentDirectory: documentDirectory,
  );
}

185 186
class _DefaultUsage implements Usage {
  _DefaultUsage({
187 188
    String settingsName = 'flutter',
    String versionOverride,
189 190
    String configDirOverride,
    String logFile,
191
    AnalyticsFactory analyticsIOFactory,
192
    @required bool runningOnBot,
193
  }) {
194
    final FlutterVersion flutterVersion = globals.flutterVersion;
195
    final String version = versionOverride ?? flutterVersion.getVersionString(redactUnknownBranches: true);
196 197
    final bool suppressEnvFlag = globals.platform.environment['FLUTTER_SUPPRESS_ANALYTICS'] == 'true';
    final String logFilePath = logFile ?? globals.platform.environment['FLUTTER_ANALYTICS_LOG_FILE'];
198 199
    final bool usingLogFile = logFilePath != null && logFilePath.isNotEmpty;

200
    analyticsIOFactory ??= _defaultAnalyticsIOFactory;
201
    _clock = globals.systemClock;
202

203 204 205 206 207 208 209 210
    if (// To support testing, only allow other signals to supress analytics
        // when analytics are not being shunted to a file.
        !usingLogFile && (
        // Ignore local user branches.
        version.startsWith('[user-branch]') ||
        // Many CI systems don't do a full git checkout.
        version.endsWith('/unknown') ||
        // Ignore bots.
211
        runningOnBot ||
212 213 214 215 216 217 218 219
        // Ignore when suppressed by FLUTTER_SUPPRESS_ANALYTICS.
        suppressEnvFlag
      )) {
      // If we think we're running on a CI system, suppress sending analytics.
      suppressAnalytics = true;
      _analytics = AnalyticsMock();
      return;
    }
220

221 222 223
    if (usingLogFile) {
      _analytics = LogToFileAnalytics(logFilePath);
    } else {
224
      try {
225 226 227 228 229 230 231 232 233 234
        ErrorHandlingFileSystem.noExitOnFailure(() {
          _analytics = analyticsIOFactory(
            _kFlutterUA,
            settingsName,
            version,
            documentDirectory: configDirOverride != null
              ? globals.fs.directory(configDirOverride)
              : null,
          );
        });
235 236 237 238 239 240
      } on Exception catch (e) {
        globals.printTrace('Failed to initialize analytics reporting: $e');
        suppressAnalytics = true;
        _analytics = AnalyticsMock();
        return;
      }
241 242
    }
    assert(_analytics != null);
243

244
    // Report a more detailed OS version string than package:usage does by default.
245 246 247 248
    _analytics.setSessionValue(
      cdKey(CustomDimensions.sessionHostOsDetails),
      globals.os.name,
    );
249
    // Send the branch name as the "channel".
250 251 252 253
    _analytics.setSessionValue(
      cdKey(CustomDimensions.sessionChannelName),
      flutterVersion.getBranchName(redactUnknownBranches: true),
    );
254 255 256
    // For each flutter experimental feature, record a session value in a comma
    // separated list.
    final String enabledFeatures = allFeatures
257 258 259 260 261 262 263 264 265 266
      .where((Feature feature) {
        return feature.configSetting != null &&
               globals.config.getValue(feature.configSetting) == true;
      })
      .map((Feature feature) => feature.configSetting)
      .join(',');
    _analytics.setSessionValue(
      cdKey(CustomDimensions.enabledFlutterFeatures),
      enabledFeatures,
    );
267

268
    // Record the host as the application installer ID - the context that flutter_tools is running in.
269 270
    if (globals.platform.environment.containsKey('FLUTTER_HOST')) {
      _analytics.setSessionValue('aiid', globals.platform.environment['FLUTTER_HOST']);
271
    }
272
    _analytics.analyticsOpt = AnalyticsOpt.optOut;
273 274
  }

275
  _DefaultUsage.test() :
276 277 278
      _suppressAnalytics = false,
      _analytics = AnalyticsMock(true),
      _clock = SystemClock.fixed(DateTime(2020, 10, 8));
279

280 281
  Analytics _analytics;

282
  bool _printedWelcome = false;
283
  bool _suppressAnalytics = false;
284
  SystemClock _clock;
285

286
  @override
287 288
  bool get isFirstRun => _analytics.firstRun;

289
  @override
290 291
  bool get suppressAnalytics => _suppressAnalytics || _analytics.firstRun;

292
  @override
293 294 295 296
  set suppressAnalytics(bool value) {
    _suppressAnalytics = value;
  }

297 298 299 300
  @override
  bool get enabled => _analytics.enabled;

  @override
301 302 303 304
  set enabled(bool value) {
    _analytics.enabled = value;
  }

305
  @override
306 307
  String get clientId => _analytics.clientId;

308
  @override
309
  void sendCommand(String command, { Map<String, String> parameters }) {
310
    if (suppressAnalytics) {
311
      return;
312
    }
313

314 315
    final Map<String, String> paramsWithLocalTime = <String, String>{
      ...?parameters,
316
      cdKey(CustomDimensions.localTime): formatDateTime(_clock.now()),
317 318
    };
    _analytics.sendScreenView(command, parameters: paramsWithLocalTime);
319 320
  }

321
  @override
322 323 324
  void sendEvent(
    String category,
    String parameter, {
325
    String label,
326
    int value,
327 328
    Map<String, String> parameters,
  }) {
329
    if (suppressAnalytics) {
330
      return;
331
    }
332

333 334
    final Map<String, String> paramsWithLocalTime = <String, String>{
      ...?parameters,
335
      cdKey(CustomDimensions.localTime): formatDateTime(_clock.now()),
336
    };
337

338 339 340 341
    _analytics.sendEvent(
      category,
      parameter,
      label: label,
342
      value: value,
343 344
      parameters: paramsWithLocalTime,
    );
345 346
  }

347
  @override
348
  void sendTiming(
349 350
    String category,
    String variableName,
351 352
    Duration duration, {
    String label,
353
  }) {
354 355
    if (suppressAnalytics) {
      return;
356
    }
357 358 359 360 361 362
    _analytics.sendTiming(
      variableName,
      duration.inMilliseconds,
      category: category,
      label: label,
    );
363 364
  }

365
  @override
366
  void sendException(dynamic exception) {
367 368 369 370
    if (suppressAnalytics) {
      return;
    }
    _analytics.sendException(exception.runtimeType.toString());
371 372
  }

373
  @override
374 375
  Stream<Map<String, dynamic>> get onSend => _analytics.onSend;

376
  @override
377
  Future<void> ensureAnalyticsSent() async {
378 379 380
    // TODO(devoncarew): This may delay tool exit and could cause some analytics
    // events to not be reported. Perhaps we could send the analytics pings
    // out-of-process from flutter_tools?
381
    await _analytics.waitForLastPing(timeout: const Duration(milliseconds: 250));
382
  }
383

384
  void _printWelcome() {
385 386
    globals.printStatus('');
    globals.printStatus('''
Seth Ladd's avatar
Seth Ladd committed
387
  ╔════════════════════════════════════════════════════════════════════════════╗
388
  ║                 Welcome to Flutter! - https://flutter.dev                  ║
Seth Ladd's avatar
Seth Ladd committed
389
  ║                                                                            ║
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
  ║ The Flutter tool uses Google Analytics to anonymously report feature usage ║
  ║ statistics and basic crash reports. This data is used to help improve      ║
  ║ Flutter tools over time.                                                   ║
  ║                                                                            ║
  ║ Flutter tool analytics are not sent on the very first run. To disable      ║
  ║ reporting, type 'flutter config --no-analytics'. To display the current    ║
  ║ setting, type 'flutter config'. If you opt out of analytics, an opt-out    ║
  ║ event will be sent, and then no further information will be sent by the    ║
  ║ Flutter tool.                                                              ║
  ║                                                                            ║
  ║ By downloading the Flutter SDK, you agree to the Google Terms of Service.  ║
  ║ Note: The Google Privacy Policy describes how data is handled in this      ║
  ║ service.                                                                   ║
  ║                                                                            ║
  ║ Moreover, Flutter includes the Dart SDK, which may send usage metrics and  ║
  ║ crash reports to Google.                                                   ║
406 407
  ║                                                                            ║
  ║ Read about data we send with crash reports:                                ║
408
  ║ https://flutter.dev/docs/reference/crash-reporting                         ║
409 410
  ║                                                                            ║
  ║ See Google's privacy policy:                                               
411
   https://policies.google.com/privacy                                        ║
Seth Ladd's avatar
Seth Ladd committed
412
  ╚════════════════════════════════════════════════════════════════════════════╝
413 414
  ''', emphasis: true);
  }
415 416 417 418 419 420 421 422 423 424 425

  @override
  void printWelcome() {
    // Only print once per run.
    if (_printedWelcome) {
      return;
    }
    if (// Display the welcome message if this is the first run of the tool.
        isFirstRun ||
        // Display the welcome message if we are not on master, and if the
        // persistent tool state instructs that we should.
426
        (!globals.flutterVersion.isMaster &&
427
        (globals.persistentToolState.redisplayWelcomeMessage ?? true))) {
428 429
      _printWelcome();
      _printedWelcome = true;
430
      globals.persistentToolState.redisplayWelcomeMessage = false;
431 432
    }
  }
433
}
434 435 436 437 438 439

// An Analytics mock that logs to file. Unimplemented methods goes to stdout.
// But stdout can't be used for testing since wrapper scripts like
// xcode_backend.sh etc manipulates them.
class LogToFileAnalytics extends AnalyticsMock {
  LogToFileAnalytics(String logFilePath) :
440
    logFile = globals.fs.file(logFilePath)..createSync(recursive: true),
441 442 443
    super(true);

  final File logFile;
444
  final Map<String, String> _sessionValues = <String, String>{};
445

446 447 448 449 450 451
  final StreamController<Map<String, dynamic>> _sendController =
        StreamController<Map<String, dynamic>>.broadcast(sync: true);

  @override
  Stream<Map<String, dynamic>> get onSend => _sendController.stream;

452
  @override
453 454 455
  Future<void> sendScreenView(String viewName, {
    Map<String, String> parameters,
  }) {
456 457 458
    if (!enabled) {
      return Future<void>.value(null);
    }
459 460
    parameters ??= <String, String>{};
    parameters['viewName'] = viewName;
461
    parameters.addAll(_sessionValues);
462
    _sendController.add(parameters);
463 464 465 466 467 468 469
    logFile.writeAsStringSync('screenView $parameters\n', mode: FileMode.append);
    return Future<void>.value(null);
  }

  @override
  Future<void> sendEvent(String category, String action,
      {String label, int value, Map<String, String> parameters}) {
470 471 472
    if (!enabled) {
      return Future<void>.value(null);
    }
473 474 475
    parameters ??= <String, String>{};
    parameters['category'] = category;
    parameters['action'] = action;
476
    _sendController.add(parameters);
477
    logFile.writeAsStringSync('event $parameters\n', mode: FileMode.append);
478 479
    return Future<void>.value(null);
  }
480

481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
  @override
  Future<void> sendTiming(String variableName, int time,
      {String category, String label}) {
    if (!enabled) {
      return Future<void>.value(null);
    }
    final Map<String, String> parameters = <String, String>{
      'variableName': variableName,
      'time': '$time',
      if (category != null) 'category': category,
      if (label != null) 'label': label,
    };
    _sendController.add(parameters);
    logFile.writeAsStringSync('timing $parameters\n', mode: FileMode.append);
    return Future<void>.value(null);
  }

498 499 500 501
  @override
  void setSessionValue(String param, dynamic value) {
    _sessionValues[param] = value.toString();
  }
502
}