aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-ce-task-projectanalysis/src/main/protobuf/issue_cache.proto
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2019-09-06 16:26:54 +0200
committersonartech <sonartech@sonarsource.com>2020-03-11 20:04:31 +0000
commitd961c0a405a2d16785e5769dcb5b879c14a997e8 (patch)
tree39d115f51e7a6589f75bb06e50d878bd781ee837 /server/sonar-ce-task-projectanalysis/src/main/protobuf/issue_cache.proto
parent5485d4ac2c3c0aee67d6783bfc6203f77edb9b10 (diff)
downloadsonarqube-d961c0a405a2d16785e5769dcb5b879c14a997e8.tar.gz
sonarqube-d961c0a405a2d16785e5769dcb5b879c14a997e8.zip
SONAR-13093 Optimize cache of issues in Compute Engine
Diffstat (limited to 'server/sonar-ce-task-projectanalysis/src/main/protobuf/issue_cache.proto')
-rw-r--r--server/sonar-ce-task-projectanalysis/src/main/protobuf/issue_cache.proto98
1 files changed, 98 insertions, 0 deletions
diff --git a/server/sonar-ce-task-projectanalysis/src/main/protobuf/issue_cache.proto b/server/sonar-ce-task-projectanalysis/src/main/protobuf/issue_cache.proto
new file mode 100644
index 00000000000..bb3352920a5
--- /dev/null
+++ b/server/sonar-ce-task-projectanalysis/src/main/protobuf/issue_cache.proto
@@ -0,0 +1,98 @@
+// SonarQube, open source software quality management tool.
+// Copyright (C) 2008-2016 SonarSource
+// mailto:contact AT sonarsource DOT com
+//
+// SonarQube is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 3 of the License, or (at your option) any later version.
+//
+// SonarQube is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program; if not, write to the Free Software Foundation,
+// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+
+// IMPORTANT
+// This is beta version of specification. It will evolve during next
+// releases and is not forward-compatible yet.
+
+syntax = "proto2";
+
+import "db-issues.proto";
+
+option java_package = "org.sonar.ce.task.projectanalysis.util.cache";
+option optimize_for = SPEED;
+
+message Issue {
+ optional string key = 1;
+ optional int32 ruleType = 2;
+ optional string componentUuid = 3;
+ optional string componentKey = 4;
+ optional string moduleUuid = 5;
+ optional string moduleUuidPath = 6;
+ optional string projectUuid = 7;
+ optional string projectKey = 8;
+ optional string ruleKey = 9;
+ optional string language = 10;
+ optional string severity = 11;
+ optional bool manualSeverity = 12;
+ optional string message = 13;
+ optional int32 line = 14;
+ optional double gap = 15;
+ optional int64 effort = 16;
+ optional string status = 17;
+ optional string resolution = 18;
+ optional string assigneeUuid = 19;
+ optional string checksum = 20;
+ map<string, string> attributes = 21;
+ optional string authorLogin = 22;
+ optional string tags = 23;
+ optional sonarqube.db.issues.Locations locations = 24;
+
+ optional bool isFromExternalRuleEngine = 25;
+
+ // FUNCTIONAL DATES
+ optional int64 creationDate = 26;
+ optional int64 updateDate = 27;
+ optional int64 closeDate = 28;
+
+ repeated FieldDiffs changes = 29;
+ optional FieldDiffs currentChanges = 30;
+
+ optional bool isNew = 31;
+ optional bool isCopied = 32;
+ optional bool beingClosed = 33;
+ optional bool onDisabledRule = 34;
+ optional bool isChanged = 35;
+ optional bool sendNotifications = 36;
+ optional int64 selectedAt = 37;
+
+ repeated Comment comments = 38;
+}
+
+message Comment {
+ optional string issueKey = 1;
+ optional string userUuid = 2;
+ optional int64 createdAt = 3;
+ optional int64 updatedAt = 4;
+ optional string key = 5;
+ optional string markdownText = 6;
+ optional bool isNew = 7;
+}
+
+message FieldDiffs {
+ optional string userUuid = 1;
+ optional int64 creationDate = 2;
+ optional string issueKey = 3;
+ map<string, Diff> diffs = 4;
+}
+
+message Diff {
+ optional string oldValue = 1;
+ optional string newValue = 2;
+}