Cache the comment context
This change introduces a cache interface for the comment context
(CommentContextCache). The request execution flow is as follows:
ListChangeComments loads all comments from the change notes and passes
them to the CommentJson for formatting. If the "context" flag is set,
CommentJson uses the CommentContextCache to evaluate and retrieve the
context for all comments.
The comment context cache interface uses a persisted cache and provides
two methods: get() and getAll(). The getAll() method is the one used by
CommentJson. The cache loader also overrides the load() and loadAll()
methods. The cache loader uses CommentContextLoader.java to load the
context by opening the files at the exact commits specified for each
comment.
The loadAll() method groups all comments by project and change ID (both
specify a certain commit). All comments in the same group are loaded
simultaneouly.
Change-Id: I4bc24c0556974dac99d14fef3128f6db8da18e54
diff --git a/proto/cache.proto b/proto/cache.proto
index 7924cbd..6e1c1a8 100644
--- a/proto/cache.proto
+++ b/proto/cache.proto
@@ -500,3 +500,25 @@
bytes global_config_revision = 3; // Hash of All-Projects-projects.config. This
// will only be populated for All-Projects.
}
+
+// Serialized form of com.google.gerrit.server.comment.CommentContextCacheImpl.Key
+// Next ID: 6
+message CommentContextKeyProto {
+ string project = 1;
+ string change_id = 2;
+ int32 patchset = 3;
+ string commentId = 4;
+
+ // hashed with the murmur3_128 hash function
+ string path_hash = 5;
+}
+
+// Serialized form of a list of com.google.gerrit.extensions.common.ContextLineInfo
+// Next ID: 2
+message AllCommentContextProto {
+ message CommentContextProto {
+ int32 line_number = 1;
+ string context_line = 2;
+ }
+ repeated CommentContextProto context = 1;
+}