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

Side by Side Diff: appengine/findit/crash/findit_for_clusterfuzz.py

Issue 2414523002: [Findit] Reorganizing findit_for_*.py (Closed)
Patch Set: more debugging Created 4 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import logging
6
7 from google.appengine.ext import ndb
8
9 from crash.findit import Findit
10 from crash.type_enums import CrashClient
11
12 # TODO(katesonia): Implement this class.
13 class FinditForClusterfuzz(Findit):
14 @classmethod
15 def ClientID(cls):
16 return CrashClient.CLUSTERFUZZ
17
18 def __init__(self):
19 logging.info('Client %s is not supported by findit right now',
20 self.client_id)
21 raise NotImplementedError()
22
23 def CreateAnalysis(self, crash_identifiers):
24 raise NotImplementedError()
25
26 def GetAnalysis(self, crash_identifiers):
27 raise NotImplementedError()
28
29 def _InitializeAnalysis(self, model, crash_data):
30 super(FinditForClusterfuzz, self)._InitializeAnalysis(model, crash_data)
31 raise NotImplementedError()
32
33 @ndb.transactional
34 def _NeedsNewAnalysis(self, crash_data):
35 raise NotImplementedError()
36
37 def CheckPolicy(self, crash_data):
38 return report
39
40 def FindCulprit(self, model):
41 raise NotImplementedError()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698