Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: appengine/findit/model/base_analysis.py

Issue 2124973003: These are the database objects used while finding the regression range. 1/3 (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: removed unused code Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/findit/model/base_analysis.py
diff --git a/appengine/findit/model/base_analysis.py b/appengine/findit/model/base_analysis.py
new file mode 100644
index 0000000000000000000000000000000000000000..d9d03262efa46033b4c7f4a756ef407e2dd98d4d
--- /dev/null
+++ b/appengine/findit/model/base_analysis.py
@@ -0,0 +1,49 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+from google.appengine.ext import ndb
+
+from model import analysis_status
+
+
+class BaseAnalysis(ndb.Model):
+ """Represents an analysis of a build of a builder in a Chromium waterfall.
lijeffrey 2016/07/19 22:32:21 nit: "... a build analysis of a ..." see if that g
caiw 2016/07/20 18:11:00 Done.
+ """
+
+ @property
+ def completed(self):
+ return self.status in (
+ analysis_status.COMPLETED, analysis_status.ERROR)
+
+ @property
+ def duration(self):
+ if not self.completed or not self.end_time or not self.start_time:
+ return None
+
+ return int((self.end_time - self.start_time).total_seconds())
+
+ @property
+ def failed(self):
+ return self.status == analysis_status.ERROR
+
+ @property
+ def status_description(self):
+ return analysis_status.STATUS_TO_DESCRIPTION.get(self.status, 'Unknown')
+
+ # The url path to the pipeline status page.
+ pipeline_status_path = ndb.StringProperty(indexed=False)
+
+ # The status of the analysis.
+ status = ndb.IntegerProperty(
+ default=analysis_status.PENDING, indexed=False)
+ # When the analysis was requested.
+ request_time = ndb.DateTimeProperty(indexed=False)
+ # When the analysis actually started.
+ start_time = ndb.DateTimeProperty(indexed=False)
+ # When the analysis actually ended.
+ end_time = ndb.DateTimeProperty(indexed=False)
+ # When the analysis was updated.
+ updated_time = ndb.DateTimeProperty(indexed=False, auto_now=True)
+ # Record which version of analysis.
+ version = ndb.StringProperty(indexed=False)
« no previous file with comments | « no previous file | appengine/findit/model/base_swarming_task.py » ('j') | appengine/findit/model/base_swarming_task.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698