summaryrefslogtreecommitdiffstats
path: root/gerrit-server/src/main/java/com/google/gerrit/server/notedb/rebuild/ReviewerEvent.java
blob: 2ecf9699578ab1b1b364ef1dbaf8bc176840bd9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Copyright (C) 2016 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.gerrit.server.notedb.rebuild;

import com.google.common.base.MoreObjects.ToStringHelper;
import com.google.common.collect.Table;
import com.google.gerrit.reviewdb.client.Account;
import com.google.gerrit.server.notedb.ChangeUpdate;
import com.google.gerrit.server.notedb.ReviewerStateInternal;
import com.google.gwtorm.server.OrmException;
import java.io.IOException;
import java.sql.Timestamp;

class ReviewerEvent extends Event {
  private Table.Cell<ReviewerStateInternal, Account.Id, Timestamp> reviewer;

  ReviewerEvent(
      Table.Cell<ReviewerStateInternal, Account.Id, Timestamp> reviewer,
      Timestamp changeCreatedOn) {
    super(
        // Reviewers aren't generally associated with a particular patch set
        // (although as an implementation detail they were in ReviewDb). Just
        // use the latest patch set at the time of the event.
        null,
        reviewer.getColumnKey(),
        // TODO(dborowitz): Real account ID shouldn't really matter for
        // reviewers, but we might have to deal with this to avoid ChangeBundle
        // diffs when run against real data.
        reviewer.getColumnKey(),
        reviewer.getValue(),
        changeCreatedOn,
        null);
    this.reviewer = reviewer;
  }

  @Override
  boolean uniquePerUpdate() {
    return false;
  }

  @Override
  void apply(ChangeUpdate update) throws IOException, OrmException {
    checkUpdate(update);
    update.putReviewer(reviewer.getColumnKey(), reviewer.getRowKey());
  }

  @Override
  protected void addToString(ToStringHelper helper) {
    helper.add("account", reviewer.getColumnKey()).add("state", reviewer.getRowKey());
  }
}