blob: aa0455527218c3526fe277aaa43c180bc6f8a924 [file] [log] [blame]
Dave Borowitz11f0c642018-04-21 12:04:24 -04001// Copyright (C) 2018 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto3";
16
17package gerrit.cache;
18
19option java_package = "com.google.gerrit.server.cache.proto";
20
Han-Wen Nienhuysbcd3edf2021-02-04 15:04:45 +010021import "proto/entities.proto";
22
23// Serialized form of com.google.gerrit.server.change.ChangeKindCacheImpl.Key.
Dave Borowitz11f0c642018-04-21 12:04:24 -040024// Next ID: 4
25message ChangeKindKeyProto {
26 bytes prior = 1;
27 bytes next = 2;
28 string strategy_name = 3;
29}
Dave Borowitze62a1112018-05-01 09:27:46 -040030
31// Serialized form of
32// com.google.gerrit.server.change.MergeabilityCacheImpl.EntryKey.
33// Next ID: 5
34message MergeabilityKeyProto {
35 bytes commit = 1;
36 bytes into = 2;
37 string submit_type = 3;
38 string merge_strategy = 4;
39}
Dave Borowitze6930d72018-05-01 10:22:02 -040040
41// Serialized form of com.google.gerrit.extensions.auth.oauth.OAuthToken.
42// Next ID: 6
43message OAuthTokenProto {
44 string token = 1;
45 string secret = 2;
46 string raw = 3;
Joerg Zierend5fb7432020-03-02 13:51:04 +010047 // Epoch millis.
48 int64 expires_at_millis = 4;
Dave Borowitz12df29f2018-05-15 16:37:02 -070049 string provider_id = 5;
Dave Borowitze6930d72018-05-01 10:22:02 -040050}
Dave Borowitzbab45862018-05-01 12:31:48 -040051
52
53// Serialized form of com.google.gerrit.server.notedb.ChangeNotesCache.Key.
54// Next ID: 4
55message ChangeNotesKeyProto {
56 string project = 1;
57 int32 change_id = 2;
58 bytes id = 3;
59}
60
61// Serialized from of com.google.gerrit.server.notedb.ChangeNotesState.
62//
63// Note on embedded protos: this is just for storing in a cache, so some formats
64// were chosen ease of coding the initial implementation. In particular, where
65// there already exists another serialization mechanism in Gerrit for
66// serializing a particular field, we use that rather than defining a new proto
Alice Kober-Sotzek14db5312018-12-14 16:06:41 +010067// type. This includes types that can be serialized to proto using
68// ProtoConverters as well as NoteDb and indexed types that are serialized using
69// JSON. We can always revisit this decision later; it just requires bumping the
70// cache version.
Dave Borowitzbab45862018-05-01 12:31:48 -040071//
72// Note on nullability: there are a lot of nullable fields in ChangeNotesState
73// and its dependencies. It's likely we could make some of them non-nullable,
74// but each one of those would be a potentially significant amount of cleanup,
75// and there's no guarantee we'd be able to eliminate all of them. (For a less
76// complex class, it's likely the cleanup would be more feasible.)
77//
78// Instead, we just take the tedious yet simple approach of having a "has_foo"
79// field for each nullable field "foo", indicating whether or not foo is null.
80//
Youssef Elghareeba7ad3e02021-07-01 13:20:16 +020081// Next ID: 28
Dave Borowitzbab45862018-05-01 12:31:48 -040082message ChangeNotesStateProto {
83 // Effectively required, even though the corresponding ChangeNotesState field
84 // is optional, since the field is only absent when NoteDb is disabled, in
85 // which case attempting to use the ChangeNotesCache is programmer error.
86 bytes meta_id = 1;
87
88 int32 change_id = 2;
89
Kaushik Lingarkar4a711ed2019-11-12 13:53:29 -080090 // Next ID: 26
Dave Borowitzbab45862018-05-01 12:31:48 -040091 message ChangeColumnsProto {
92 string change_key = 1;
93
Joerg Zierend5fb7432020-03-02 13:51:04 +010094 // Epoch millis.
95 int64 created_on_millis = 2;
Dave Borowitzbab45862018-05-01 12:31:48 -040096
Joerg Zierend5fb7432020-03-02 13:51:04 +010097 // Epoch millis.
98 int64 last_updated_on_millis = 3;
Dave Borowitzbab45862018-05-01 12:31:48 -040099
100 int32 owner = 4;
101
102 string branch = 5;
103
104 int32 current_patch_set_id = 6;
105 bool has_current_patch_set_id = 7;
106
107 string subject = 8;
108
109 string topic = 9;
110 bool has_topic = 10;
111
112 string original_subject = 11;
113 bool has_original_subject = 12;
114
115 string submission_id = 13;
116 bool has_submission_id = 14;
117
Gal Paikin23457032019-10-16 15:09:56 +0200118 reserved 15; // assignee
119 reserved 16; // has_assignee
Dave Borowitzbab45862018-05-01 12:31:48 -0400120
121 string status = 17;
122 bool has_status = 18;
123
124 bool is_private = 19;
125
126 bool work_in_progress = 20;
127
128 bool review_started = 21;
129
130 int32 revert_of = 22;
131 bool has_revert_of = 23;
Kaushik Lingarkar4a711ed2019-11-12 13:53:29 -0800132
133 string cherry_pick_of = 24;
134 bool has_cherry_pick_of = 25;
Dave Borowitzbab45862018-05-01 12:31:48 -0400135 }
136 // Effectively required, even though the corresponding ChangeNotesState field
137 // is optional, since the field is only absent when NoteDb is disabled, in
138 // which case attempting to use the ChangeNotesCache is programmer error.
139 ChangeColumnsProto columns = 3;
140
Joerg Zieren361ea4b2020-02-17 16:25:43 +0100141 reserved 4; // past_assignee
Dave Borowitzbab45862018-05-01 12:31:48 -0400142
143 repeated string hashtag = 5;
144
Han-Wen Nienhuysbcd3edf2021-02-04 15:04:45 +0100145 repeated devtools.gerritcodereview.PatchSet patch_set = 6;
Dave Borowitzbab45862018-05-01 12:31:48 -0400146
Han-Wen Nienhuysbcd3edf2021-02-04 15:04:45 +0100147 repeated devtools.gerritcodereview.PatchSetApproval approval = 7;
Dave Borowitzbab45862018-05-01 12:31:48 -0400148
149 // Next ID: 4
150 message ReviewerSetEntryProto {
151 string state = 1;
152 int32 account_id = 2;
Joerg Zierend5fb7432020-03-02 13:51:04 +0100153 // Epoch millis.
154 int64 timestamp_millis = 3;
Dave Borowitzbab45862018-05-01 12:31:48 -0400155 }
156 repeated ReviewerSetEntryProto reviewer = 8;
157
158 // Next ID: 4
159 message ReviewerByEmailSetEntryProto {
160 string state = 1;
161 string address = 2;
Joerg Zierend5fb7432020-03-02 13:51:04 +0100162 // Epoch millis.
163 int64 timestamp_millis = 3;
Dave Borowitzbab45862018-05-01 12:31:48 -0400164 }
165 repeated ReviewerByEmailSetEntryProto reviewer_by_email = 9;
166
167 repeated ReviewerSetEntryProto pending_reviewer = 10;
168
169 repeated ReviewerByEmailSetEntryProto pending_reviewer_by_email = 11;
170
171 repeated int32 past_reviewer = 12;
172
173 // Next ID: 5
174 message ReviewerStatusUpdateProto {
Joerg Zieren361ea4b2020-02-17 16:25:43 +0100175 // Epoch millis.
Joerg Zierend5fb7432020-03-02 13:51:04 +0100176 int64 timestamp_millis = 1;
Dave Borowitzbab45862018-05-01 12:31:48 -0400177 int32 updated_by = 2;
178 int32 reviewer = 3;
179 string state = 4;
180 }
181 repeated ReviewerStatusUpdateProto reviewer_update = 13;
182
183 // JSON produced from
184 // com.google.gerrit.server.index.change.ChangeField.StoredSubmitRecord.
185 repeated string submit_record = 14;
186
Han-Wen Nienhuysbcd3edf2021-02-04 15:04:45 +0100187 repeated devtools.gerritcodereview.ChangeMessage change_message = 15;
Dave Borowitzbab45862018-05-01 12:31:48 -0400188
David Ostrovskyb03a6e92019-05-26 14:11:47 +0200189 // JSON produced from com.google.gerrit.entities.Comment.
Dave Borowitzbab45862018-05-01 12:31:48 -0400190 repeated string published_comment = 16;
191
Dave Borowitzfb2b3232018-12-13 14:30:48 -0800192 reserved 17; // read_only_until
193 reserved 18; // has_read_only_until
Dave Borowitz10edb7c2019-04-15 14:33:22 -0700194
195 // Number of updates to the change's meta ref.
196 int32 update_count = 19;
David Ostrovskyf8367a82019-08-03 17:05:19 +0200197
198 string server_id = 20;
199 bool has_server_id = 21;
Gal Paikin23457032019-10-16 15:09:56 +0200200
201 message AssigneeStatusUpdateProto {
Joerg Zieren361ea4b2020-02-17 16:25:43 +0100202 // Epoch millis.
Joerg Zierend5fb7432020-03-02 13:51:04 +0100203 int64 timestamp_millis = 1;
Gal Paikin23457032019-10-16 15:09:56 +0200204 int32 updated_by = 2;
205 int32 current_assignee = 3;
206 bool has_current_assignee = 4;
207 }
208 repeated AssigneeStatusUpdateProto assignee_update = 22;
Dave Borowitzc15b8ef2018-05-18 08:11:22 -0400209
Joerg Zierenfdbea382020-03-06 13:44:25 +0100210 // An update to the attention set of the change. See class AttentionSetUpdate
211 // for context.
212 message AttentionSetUpdateProto {
Joerg Zieren361ea4b2020-02-17 16:25:43 +0100213 // Epoch millis.
Joerg Zierend5fb7432020-03-02 13:51:04 +0100214 int64 timestamp_millis = 1;
Joerg Zieren361ea4b2020-02-17 16:25:43 +0100215 int32 account = 2;
Joerg Zierenfdbea382020-03-06 13:44:25 +0100216 // Maps to enum AttentionSetUpdate.Operation
Joerg Zieren361ea4b2020-02-17 16:25:43 +0100217 string operation = 3;
218 string reason = 4;
219 }
Gal Paikin120baca2020-09-30 21:46:45 +0300220 // Only includes the most recent attention set update for each user.
Joerg Zierenfdbea382020-03-06 13:44:25 +0100221 repeated AttentionSetUpdateProto attention_set_update = 23;
Gal Paikin120baca2020-09-30 21:46:45 +0300222
223 // Includes all attention set updates.
224 repeated AttentionSetUpdateProto all_attention_set_update = 24;
Marija Savtchoukd2b82152020-11-23 08:20:54 +0000225
226 // Epoch millis.
227 int64 merged_on_millis = 25;
228 bool has_merged_on = 26;
Youssef Elghareeba7ad3e02021-07-01 13:20:16 +0200229
230 repeated SubmitRequirementResultProto submit_requirement_result = 27;
Joerg Zieren361ea4b2020-02-17 16:25:43 +0100231}
Dave Borowitzc15b8ef2018-05-18 08:11:22 -0400232
233// Serialized form of com.google.gerrit.server.query.change.ConflictKey
234message ConflictKeyProto {
235 bytes commit = 1;
236 bytes other_commit = 2;
237 string submit_type = 3;
238 bool content_merge = 4;
239}
Dave Borowitzb30a4142018-07-23 15:28:22 -0700240
241// Serialized form of com.google.gerrit.server.query.git.TagSetHolder.
242// Next ID: 3
243message TagSetHolderProto {
244 string project_name = 1;
245
246 // Next ID: 4
247 message TagSetProto {
248 string project_name = 1;
249
250 // Next ID: 3
251 message CachedRefProto {
252 bytes id = 1;
253 int32 flag = 2;
254 }
255 map<string, CachedRefProto> ref = 2;
256
257 // Next ID: 3
258 message TagProto {
259 bytes id = 1;
260 bytes flags = 2;
261 }
262 repeated TagProto tag = 3;
263 }
264 TagSetProto tags = 2;
265}
Dave Borowitzb20d23a82018-08-21 13:43:10 -0700266
267// Serialized form of
268// com.google.gerrit.server.account.externalids.AllExternalIds.
269// Next ID: 2
270message AllExternalIdsProto {
271 // Next ID: 6
272 message ExternalIdProto {
273 string key = 1;
274 int32 accountId = 2;
275 string email = 3;
276 string password = 4;
277 bytes blobId = 5;
278 }
279 repeated ExternalIdProto external_id = 1;
280}
Patrick Hiesela57c0d62019-02-19 09:09:22 +0100281
Youssef Elghareeb25297242020-03-19 00:13:26 +0100282// Serialized form of a list of com.google.gerrit.entities.AccountGroup.UUID
283// Next ID: 2
284message AllExternalGroupsProto {
285 message ExternalGroupProto {
286 string groupUuid = 1;
287 }
288 repeated ExternalGroupProto external_group = 1;
289}
290
Gal Paikinf74ee382021-03-22 16:00:25 +0100291// Serialized key for com.google.gerrit.server.account.GroupCacheImpl.
292// Next ID: 3
293message GroupKeyProto {
294 string uuid = 1;
295 bytes revision = 2;
296}
297
298
299// Serialized form of com.google.gerrit.entities.InternalGroup.
300// Next ID: 11
301message InternalGroupProto {
302 int32 id = 1;
303 string name = 2;
304 string description = 3;
305 string owner_group_uuid = 4;
306 bool is_visible_to_all = 5;
307 string group_uuid = 6;
308 int64 created_on = 7;
309 repeated int32 members_ids = 8;
310 repeated string subgroup_uuids = 9;
311 bytes ref_state = 10;
312}
313
Patrick Hiesela57c0d62019-02-19 09:09:22 +0100314// Key for com.google.gerrit.server.git.PureRevertCache.
315// Next ID: 4
316message PureRevertKeyProto {
317 string project = 1;
318 bytes claimed_original = 2;
319 bytes claimed_revert = 3;
320}
Patrick Hiesel4836e572020-03-05 15:23:29 +0100321
Patrick Hiesele945da32020-03-26 17:22:23 +0100322// Key for com.google.gerrit.server.account.ProjectWatches.
323// Next ID: 4
324message ProjectWatchProto {
Patrick Hiesel4836e572020-03-05 15:23:29 +0100325 string project = 1;
326 string filter = 2;
Patrick Hiesele945da32020-03-26 17:22:23 +0100327 repeated string notify_type = 3;
Patrick Hiesel4836e572020-03-05 15:23:29 +0100328}
Patrick Hiesel58d51292020-03-05 16:24:07 +0100329
330// Serialized form of
331// com.google.gerrit.entities.Account.
332// Next ID: 9
333message AccountProto {
334 int32 id = 1;
335 int64 registered_on = 2;
336 string full_name = 3;
337 string display_name = 4;
338 string preferred_email = 5;
339 bool inactive = 6;
340 string status = 7;
341 string meta_id = 8;
342}
Patrick Hiesele945da32020-03-26 17:22:23 +0100343
344// Serialized form of com.google.gerrit.server.account.CachedAccountDetails.Key.
345// Next ID: 3
346message AccountKeyProto {
347 int32 account_id = 1;
348 bytes id = 2;
349}
350
351// Serialized form of com.google.gerrit.server.account.CachedAccountDetails.
352// Next ID: 4
353message AccountDetailsProto {
354 AccountProto account = 1;
355 repeated ProjectWatchProto project_watch_proto = 2;
356 string user_preferences = 3;
357}
Patrick Hieselffd88ef2020-07-07 10:30:45 +0200358
359// Serialized form of com.google.gerrit.entities.Project.
360// Next ID: 11
361message ProjectProto {
362 string name = 1;
363 string description = 2;
364 map<string, string> boolean_configs = 3;
365 string submit_type = 4; // ENUM as String
366 string state = 5; // ENUM as String
367 string parent = 6;
368 string max_object_size_limit = 7;
369 string default_dashboard = 8;
370 string local_default_dashboard = 9;
371 string config_ref_state = 10;
372}
Patrick Hieseld80bf5a2020-07-10 13:55:39 +0200373
374// Serialized form of com.google.gerrit.common.data.GroupReference.
375// Next ID: 3
376message GroupReferenceProto {
377 string uuid = 1;
378 string name = 2;
379}
Patrick Hieself5575442020-07-10 14:25:51 +0200380
381// Serialized form of com.google.gerrit.common.data.PermissionRule.
382// Next ID: 6
383message PermissionRuleProto {
384 string action = 1; // ENUM as String
385 bool force = 2;
386 int32 min = 3;
387 int32 max = 4;
388 GroupReferenceProto group = 5;
389}
Patrick Hieseld2761e12020-07-13 09:10:11 +0200390
391// Serialized form of com.google.gerrit.common.data.Permission.
392// Next ID: 4
393message PermissionProto {
394 string name = 1;
395 bool exclusive_group = 2;
396 repeated PermissionRuleProto rules = 3;
397}
Patrick Hiesel4c74f002020-07-13 09:22:34 +0200398
399// Serialized form of com.google.gerrit.common.data.AccessSection.
400// Next ID: 3
401message AccessSectionProto {
402 string name = 1;
403 repeated PermissionProto permissions = 2;
404}
Patrick Hiesel9f8e23d2020-07-13 09:35:17 +0200405
406// Serialized form of com.google.gerrit.server.git.BranchOrderSection.
407// Next ID: 2
408message BranchOrderSectionProto {
409 repeated string branches_in_order = 1;
410}
Patrick Hiesel48434b12020-07-13 10:07:49 +0200411
412// Serialized form of com.google.gerrit.common.data.ContributorAgreement.
413// Next ID: 8
414message ContributorAgreementProto {
415 string name = 1;
416 string description = 2;
417 repeated PermissionRuleProto accepted = 3;
418 GroupReferenceProto auto_verify = 4;
419 string url = 5;
420 repeated string exclude_regular_expressions = 6;
421 repeated string match_regular_expressions = 7;
422}
Patrick Hiesel27ab5bd2020-07-13 13:34:39 +0200423
424// Serialized form of com.google.gerrit.entities.Address.
425// Next ID: 3
426message AddressProto {
427 string name = 1;
428 string email = 2;
429}
Patrick Hiesel9b15b9c2020-07-13 14:23:39 +0200430
431// Serialized form of com.google.gerrit.entities.NotifyConfig.
432// Next ID: 7
433message NotifyConfigProto {
434 string name = 1;
435 repeated string type = 2; // ENUM as String
436 string filter = 3;
437 string header = 4; // ENUM as String
438 repeated GroupReferenceProto groups = 5;
439 repeated AddressProto addresses = 6;
440}
Patrick Hiesel58d03c92020-07-14 16:27:17 +0200441
442// Serialized form of com.google.gerrit.entities.LabelValue.
443// Next ID: 3
444message LabelValueProto {
445 string text = 1;
446 int32 value = 2;
447}
Patrick Hiesel4938bda2020-07-15 14:44:23 +0200448
449// Serialized form of com.google.gerrit.common.data.LabelType.
Patrick Hieselc429ff32021-06-01 15:56:30 +0200450// Next ID: 21
Patrick Hiesel4938bda2020-07-15 14:44:23 +0200451message LabelTypeProto {
452 string name = 1;
453 string function = 2; // ENUM as String
454 bool copy_any_score = 3;
455 bool copy_min_score = 4;
456 bool copy_max_score = 5;
457 bool copy_all_scores_on_merge_first_parent_update = 6;
458 bool copy_all_scores_on_trivial_rebase = 7;
459 bool copy_all_scores_if_no_code_change = 8;
460 bool copy_all_scores_if_no_change = 9;
461 repeated int32 copy_values = 10;
462 bool allow_post_submit = 11;
463 bool ignore_self_approval = 12;
464 int32 default_value = 13;
465 repeated LabelValueProto values = 14;
466 int32 max_negative = 15;
467 int32 max_positive = 16;
468 bool can_override = 17;
469 repeated string ref_patterns = 18;
Gal Paikinbef260ec2021-01-19 11:55:19 +0100470 bool copy_all_scores_if_list_of_files_did_not_change = 19;
Patrick Hieselc429ff32021-06-01 15:56:30 +0200471 string copy_condition = 20;
Patrick Hiesel4938bda2020-07-15 14:44:23 +0200472}
Patrick Hiesel7e579e32020-07-16 10:17:59 +0200473
Youssef Elghareebd6879e22021-04-01 16:03:58 +0200474// Serialized form of com.google.gerrit.entities.SubmitRequirement.
475// Next ID: 7
476message SubmitRequirementProto {
477 string name = 1;
478 string description = 2;
479 string applicability_expression = 3;
Youssef Elghareeb61d8e162021-05-18 15:41:16 +0200480 string submittability_expression = 4;
Youssef Elghareebd6879e22021-04-01 16:03:58 +0200481 string override_expression = 5;
482 bool allow_override_in_child_projects = 6;
483}
484
Youssef Elghareeba7ad3e02021-07-01 13:20:16 +0200485// Serialized form of com.google.gerrit.entities.SubmitRequirementResult.
486// Next ID: 6
487message SubmitRequirementResultProto {
488 SubmitRequirementProto submit_requirement = 1;
489 SubmitRequirementExpressionResultProto applicability_expression_result = 2;
490 SubmitRequirementExpressionResultProto submittability_expression_result = 3;
491 SubmitRequirementExpressionResultProto override_expression_result = 4;
492
493 // Patchset commit ID at which the submit requirements are evaluated.
494 bytes commit = 5;
495}
496
497// Serialized form of com.google.gerrit.entities.SubmitRequirementExpressionResult.
498// Next ID: 6
499message SubmitRequirementExpressionResultProto {
500 string expression = 1;
501 string status = 2; // enum as string
502 string error_message = 3;
503 repeated string passing_atoms = 4;
504 repeated string failing_atoms = 5;
505}
506
Patrick Hiesel7e579e32020-07-16 10:17:59 +0200507// Serialized form of com.google.gerrit.server.project.ConfiguredMimeTypes.
508// Next ID: 4
509message ConfiguredMimeTypeProto {
510 string type = 1;
511 string pattern = 2;
512 bool is_regular_expression = 3;
513}
Patrick Hiesel1c684052020-07-16 10:52:51 +0200514
515// Serialized form of com.google.gerrit.common.data.SubscribeSection.
516// Next ID: 4
517message SubscribeSectionProto {
518 string project_name = 1;
519 repeated string multi_match_ref_specs = 2;
520 repeated string matching_ref_specs = 3;
521}
Patrick Hiesel0a9b9db2020-07-16 12:49:49 +0200522
523// Serialized form of com.google.gerrit.entities.StoredCommentLinkInfo.
524// Next ID: 7
525message StoredCommentLinkInfoProto {
526 string name = 1;
527 string match = 2;
528 string link = 3;
529 string html = 4;
530 bool enabled = 5;
531 bool override_only = 6;
532}
Patrick Hiesel4ba64ae2020-07-16 16:48:50 +0200533
534// Serialized form of com.google.gerrit.entities.CachedProjectConfigProto.
Youssef Elghareebd6879e22021-04-01 16:03:58 +0200535// Next ID: 20
Patrick Hiesel4ba64ae2020-07-16 16:48:50 +0200536message CachedProjectConfigProto {
537 ProjectProto project = 1;
538 repeated GroupReferenceProto group_list = 2;
539 repeated PermissionRuleProto accounts_section = 3;
540 repeated AccessSectionProto access_sections = 4;
541 BranchOrderSectionProto branch_order_section = 5;
542 repeated ContributorAgreementProto contributor_agreements = 6;
543 repeated NotifyConfigProto notify_configs = 7;
544 repeated LabelTypeProto label_sections = 8;
545 repeated ConfiguredMimeTypeProto mime_types = 9;
546 repeated SubscribeSectionProto subscribe_sections = 10;
547 repeated StoredCommentLinkInfoProto comment_links = 11;
548 bytes rules_id = 12;
549 bytes revision = 13;
550 int64 max_object_size_limit = 14;
551 bool check_received_objects = 15;
552 map<string, ExtensionPanelSectionProto> extension_panels = 16;
Patrick Hieself9035cc2020-07-23 16:16:21 +0200553 map<string, string> plugin_configs = 17;
554 map<string, string> project_level_configs = 18;
Youssef Elghareebd6879e22021-04-01 16:03:58 +0200555 repeated SubmitRequirementProto submit_requirement_sections = 19;
Patrick Hiesel4ba64ae2020-07-16 16:48:50 +0200556
557 // Next ID: 2
558 message ExtensionPanelSectionProto {
559 repeated string section = 1;
560 }
561}
Patrick Hieselc2c108c2020-07-23 09:54:22 +0200562
563// Serialized key for com.google.gerrit.server.project.ProjectCacheImpl.
564// Next ID: 4
565message ProjectCacheKeyProto {
566 string project = 1;
567 bytes revision = 2;
568 bytes global_config_revision = 3; // Hash of All-Projects-projects.config. This
569 // will only be populated for All-Projects.
570}
Youssef Elghareeb3d549302020-07-15 17:08:28 +0200571
572// Serialized form of com.google.gerrit.server.comment.CommentContextCacheImpl.Key
Youssef Elghareeb87b74502021-02-05 18:53:05 +0100573// Next ID: 7
Youssef Elghareeb3d549302020-07-15 17:08:28 +0200574message CommentContextKeyProto {
575 string project = 1;
576 string change_id = 2;
577 int32 patchset = 3;
578 string commentId = 4;
579
580 // hashed with the murmur3_128 hash function
581 string path_hash = 5;
Youssef Elghareeb87b74502021-02-05 18:53:05 +0100582
583 int32 context_padding = 6;
Youssef Elghareeb3d549302020-07-15 17:08:28 +0200584}
585
586// Serialized form of a list of com.google.gerrit.extensions.common.ContextLineInfo
Youssef Elghareeb27d62012021-02-23 18:21:46 +0100587// Next ID: 3
Youssef Elghareeb3d549302020-07-15 17:08:28 +0200588message AllCommentContextProto {
589 message CommentContextProto {
590 int32 line_number = 1;
591 string context_line = 2;
592 }
593 repeated CommentContextProto context = 1;
Youssef Elghareeb27d62012021-02-23 18:21:46 +0100594 string content_type = 2;
Youssef Elghareeb3d549302020-07-15 17:08:28 +0200595}
Youssef Elghareebc5cb2f72020-10-19 13:29:59 +0200596
597// Serialized key for
Youssef Elghareeb64778c32020-10-23 16:25:50 +0200598// com.google.gerrit.server.patch.gitdiff.GitModifiedFilesCacheKey
Youssef Elghareebc5cb2f72020-10-19 13:29:59 +0200599// Next ID: 5
600message GitModifiedFilesKeyProto {
601 string project = 1;
602 bytes a_tree = 2; // SHA-1 hash of the left git tree ID in the diff
603 bytes b_tree = 3; // SHA-1 hash of the right git tree ID in the diff
604 int32 rename_score = 4;
605}
606
Youssef Elghareeb64778c32020-10-23 16:25:50 +0200607// Serialized key for
608// com.google.gerrit.server.patch.diff.ModifiedFilesCacheKey
609// Next ID: 5
610message ModifiedFilesKeyProto {
611 string project = 1;
612 bytes a_commit = 2; // SHA-1 hash of the left commit ID in the diff
613 bytes b_commit = 3; // SHA-1 hash of the right commit ID in the diff
614 int32 rename_score = 4;
615}
616
Youssef Elghareebc5cb2f72020-10-19 13:29:59 +0200617// Serialized form of com.google.gerrit.server.patch.gitdiff.ModifiedFile
618// Next ID: 4
619message ModifiedFileProto {
620 string change_type = 1; // ENUM as string
621 string old_path = 2;
622 string new_path = 3;
623}
624
625// Serialized form of a collection of
626// com.google.gerrit.server.patch.gitdiff.ModifiedFile
627// Next ID: 2
628message ModifiedFilesProto {
629 repeated ModifiedFileProto modifiedFile = 1;
630}
Youssef Elghareeb332d1712020-10-22 19:13:54 +0200631
632// Serialized form of a collection of
633// com.google.gerrit.server.patch.gitfilediff.GitFileDiffCacheImpl.Key
Youssef Elghareeb541ac102021-06-24 17:49:30 +0200634// Next ID: 9
Youssef Elghareeb332d1712020-10-22 19:13:54 +0200635message GitFileDiffKeyProto {
636 string project = 1;
637 bytes a_tree = 2;
638 bytes b_tree = 3;
639 string file_path = 4;
640 int32 rename_score = 5;
641 string diff_algorithm = 6; // ENUM as string
642 string whitepsace = 7; // ENUM as string
Youssef Elghareeb541ac102021-06-24 17:49:30 +0200643 bool useTimeout = 8;
Youssef Elghareeb332d1712020-10-22 19:13:54 +0200644}
645
646// Serialized form of com.google.gerrit.server.patch.gitfilediff.GitFileDiff
Youssef Elghareeb541ac102021-06-24 17:49:30 +0200647// Next ID: 12
Youssef Elghareeb332d1712020-10-22 19:13:54 +0200648message GitFileDiffProto {
649 message Edit {
650 int32 begin_a = 1;
651 int32 end_a = 2;
652 int32 begin_b = 3;
653 int32 end_b = 4;
654 }
655 repeated Edit edits = 1;
656 string file_header = 2;
657 string old_path = 3;
658 string new_path = 4;
659 bytes old_id = 5;
660 bytes new_id = 6;
661 string old_mode = 7; // ENUM as string
662 string new_mode = 8; // ENUM as string
663 string change_type = 9; // ENUM as string
664 string patch_type = 10; // ENUM as string
Youssef Elghareeb541ac102021-06-24 17:49:30 +0200665 bool negative = 11;
Youssef Elghareeb332d1712020-10-22 19:13:54 +0200666}
Youssef Elghareeb7a988d32020-11-19 23:43:13 +0100667
668// Serialized form of
669// com.google.gerrit.server.patch.fileDiff.FileDiffCacheKey
Youssef Elghareeb541ac102021-06-24 17:49:30 +0200670// Next ID: 9
Youssef Elghareeb7a988d32020-11-19 23:43:13 +0100671message FileDiffKeyProto {
672 string project = 1;
673 bytes old_commit = 2;
674 bytes new_commit = 3;
675 string file_path = 4;
676 int32 rename_score = 5;
677 string diff_algorithm = 6;
678 string whitespace = 7;
Youssef Elghareeb541ac102021-06-24 17:49:30 +0200679 bool useTimeout = 8;
Youssef Elghareeb7a988d32020-11-19 23:43:13 +0100680}
681
682// Serialized form of
683// com.google.gerrit.server.patch.filediff.FileDiffOutput
Youssef Elghareeb541ac102021-06-24 17:49:30 +0200684// Next ID: 13
Youssef Elghareeb7a988d32020-11-19 23:43:13 +0100685message FileDiffOutputProto {
686 // Next ID: 5
687 message Edit {
688 int32 begin_a = 1;
689 int32 end_a = 2;
690 int32 begin_b = 3;
691 int32 end_b = 4;
692 }
693 // Serialized form of com.google.gerrit.server.patch.filediff.TaggedEdit
694 // Next ID: 3
695 message TaggedEdit {
696 Edit edit = 1;
697 bool due_to_rebase = 2;
698 }
Youssef Elghareeb3c2e9a62021-02-18 22:00:57 +0100699 // Next ID: 3
700 message ComparisonType {
701 int32 parent_num = 1;
702 bool auto_merge = 2;
703 }
Youssef Elghareeb7a988d32020-11-19 23:43:13 +0100704 string old_path = 1;
705 string new_path = 2;
706 string change_type = 3;
707 string patch_type = 4;
708 repeated string header_lines = 5;
709 int64 size = 6;
710 int64 size_delta = 7;
711 repeated TaggedEdit edits = 8;
Youssef Elghareeb3c2e9a62021-02-18 22:00:57 +0100712 bytes old_commit = 9;
713 bytes new_commit = 10;
714 ComparisonType comparison_type = 11;
Youssef Elghareeb541ac102021-06-24 17:49:30 +0200715 bool negative = 12;
Youssef Elghareeb7a988d32020-11-19 23:43:13 +0100716}
Patrick Hiesel1af89f52021-06-01 17:29:22 +0200717
718// Serialized form of com.google.gerrit.server.approval.ApprovalCacheImpl.Key.
719// Next ID: 5
720message PatchSetApprovalsKeyProto {
721 string project = 1;
722 int32 change_id = 2;
723 int32 patch_set_id = 3;
724 bytes id = 4;
725}
726
727// Repeated version of PatchSetApprovalProto
728// Next ID: 2
729message AllPatchSetApprovalsProto {
730 repeated devtools.gerritcodereview.PatchSetApproval approval = 1;
731}