mirror of
https://github.com/flutter/flutter.git
synced 2026-02-05 19:28:51 +08:00
Bumps the Dart version to 3.8 across the repo (excluding engine/src/flutter/third_party) and applies formatting updates from Dart 3.8. ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [x] I signed the [CLA]. - [ ] I listed at least one issue that this PR fixes in the description above. - [ ] I updated/added relevant documentation (doc comments with `///`). - [x] I added new tests to check the change I am making, or this PR is [test-exempt]. - [x] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview [Tree Hygiene]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md [test-exempt]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests [Flutter Style Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md [Features we expect every widget to implement]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md [Data Driven Fixes]: https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
86 lines
2.2 KiB
Dart
86 lines
2.2 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'dart:convert';
|
|
import 'dart:io';
|
|
|
|
import 'package:args/args.dart';
|
|
|
|
import 'package:flutter_devicelab/framework/ab.dart';
|
|
import 'package:flutter_devicelab/framework/utils.dart';
|
|
|
|
String kRawSummaryOpt = 'raw-summary';
|
|
String kTabTableOpt = 'tsv-table';
|
|
String kAsciiTableOpt = 'ascii-table';
|
|
|
|
void _usage(String error) {
|
|
stderr.writeln(error);
|
|
stderr.writeln('Usage:\n');
|
|
stderr.writeln(_argParser.usage);
|
|
exitCode = 1;
|
|
}
|
|
|
|
Future<void> main(List<String> rawArgs) async {
|
|
ArgResults args;
|
|
try {
|
|
args = _argParser.parse(rawArgs);
|
|
} on FormatException catch (error) {
|
|
_usage('${error.message}\n');
|
|
return;
|
|
}
|
|
|
|
final List<String> jsonFiles = args.rest.isNotEmpty ? args.rest : <String>['ABresults.json'];
|
|
|
|
for (final String filename in jsonFiles) {
|
|
final File file = File(filename);
|
|
if (!file.existsSync()) {
|
|
_usage('File "$filename" does not exist');
|
|
return;
|
|
}
|
|
|
|
ABTest test;
|
|
try {
|
|
test = ABTest.fromJsonMap(
|
|
const JsonDecoder().convert(await file.readAsString()) as Map<String, dynamic>,
|
|
);
|
|
} catch (error) {
|
|
_usage('Could not parse json file "$filename"');
|
|
return;
|
|
}
|
|
|
|
if (args[kRawSummaryOpt] as bool) {
|
|
section('Raw results for "$filename"');
|
|
print(test.rawResults());
|
|
}
|
|
if (args[kTabTableOpt] as bool) {
|
|
section('A/B comparison for "$filename"');
|
|
print(test.printSummary());
|
|
}
|
|
if (args[kAsciiTableOpt] as bool) {
|
|
section('Formatted summary for "$filename"');
|
|
print(test.asciiSummary());
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Command-line options for the `summarize.dart` command.
|
|
final ArgParser _argParser = ArgParser()
|
|
..addFlag(
|
|
kAsciiTableOpt,
|
|
defaultsTo: true,
|
|
help: 'Prints the summary in a table formatted nicely for terminal output.',
|
|
)
|
|
..addFlag(
|
|
kTabTableOpt,
|
|
defaultsTo: true,
|
|
help: 'Prints the summary in a table with tabs for easy spreadsheet entry.',
|
|
)
|
|
..addFlag(
|
|
kRawSummaryOpt,
|
|
defaultsTo: true,
|
|
help:
|
|
'Prints all per-run data collected by the A/B test formatted with\n'
|
|
'tabs for easy spreadsheet entry.',
|
|
);
|