blob: 7158d7fcd51649cbe785e890b2b1f91868681ec9 [file] [log] [blame]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'firestore.dart';
import 'gerrit_change.dart';
bool isChangedResult(Map<String, dynamic> result) =>
result['changed'] && !result['flaky'] && !result['previous_flaky'];
class Tryjob {
static final changeRefRegExp = RegExp(r'refs/changes/(\d*)/(\d*)');
FirestoreService firestore;
int review;
int patchset;
Tryjob(String changeRef, this.firestore) {
final match = changeRefRegExp.matchAsPrefix(changeRef);
review = int.parse(match[1]);
patchset = int.parse(match[2]);
}
Future<void> update() {
return GerritInfo(review, patchset, firestore).update();
}
Future<void> process(List<Map<String, dynamic>> results) async {
await update();
await Future.forEach(results.where(isChangedResult),
(change) => firestore.storeTryChange(change, review, patchset));
}
}