blob: 8cb2fece239d60f942bec4681df1c7cbc8ee015d [file] [log] [blame]
// Copyright (C) 2018 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.googlesource.gerrit.plugins.multisite.index;
import com.google.gerrit.reviewdb.client.Change;
import com.google.gerrit.reviewdb.client.Comment;
import com.google.gerrit.reviewdb.server.ReviewDb;
import com.google.gerrit.server.CommentsUtil;
import com.google.gerrit.server.change.ChangeFinder;
import com.google.gerrit.server.git.GitRepositoryManager;
import com.google.gerrit.server.notedb.ChangeNotes;
import com.google.gerrit.server.util.ManualRequestContext;
import com.google.gerrit.server.util.OneOffRequestContext;
import com.google.gwtorm.server.OrmException;
import com.google.inject.Inject;
import com.google.inject.assistedinject.Assisted;
import com.googlesource.gerrit.plugins.multisite.forwarder.events.ChangeIndexEvent;
import java.io.IOException;
import java.sql.Timestamp;
import java.util.Objects;
import java.util.Optional;
import org.eclipse.jgit.lib.Ref;
import org.eclipse.jgit.lib.Repository;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class ChangeCheckerImpl implements ChangeChecker {
private static final Logger log = LoggerFactory.getLogger(ChangeCheckerImpl.class);
private final GitRepositoryManager gitRepoMgr;
private final CommentsUtil commentsUtil;
private final OneOffRequestContext oneOffReqCtx;
private final String changeId;
private final ChangeFinder changeFinder;
private Optional<Long> computedChangeTs = Optional.empty();
private Optional<ChangeNotes> changeNotes = Optional.empty();
public interface Factory {
public ChangeChecker create(String changeId);
}
@Inject
public ChangeCheckerImpl(
GitRepositoryManager gitRepoMgr,
CommentsUtil commentsUtil,
ChangeFinder changeFinder,
OneOffRequestContext oneOffReqCtx,
@Assisted String changeId) {
this.changeFinder = changeFinder;
this.gitRepoMgr = gitRepoMgr;
this.commentsUtil = commentsUtil;
this.oneOffReqCtx = oneOffReqCtx;
this.changeId = changeId;
}
@Override
public Optional<ChangeIndexEvent> newIndexEvent(String projectName, int changeId, boolean deleted)
throws IOException, OrmException {
return getComputedChangeTs()
.map(
ts -> {
ChangeIndexEvent event = new ChangeIndexEvent(projectName, changeId, deleted);
event.eventCreatedOn = ts;
event.targetSha = getBranchTargetSha();
return event;
});
}
@Override
public Optional<ChangeNotes> getChangeNotes() throws OrmException {
try (ManualRequestContext ctx = oneOffReqCtx.open()) {
this.changeNotes = Optional.ofNullable(changeFinder.findOne(changeId));
return changeNotes;
}
}
@Override
public boolean isChangeUpToDate(Optional<ChangeIndexEvent> indexEvent)
throws IOException, OrmException {
getComputedChangeTs();
if (!computedChangeTs.isPresent()) {
log.warn("Unable to compute last updated ts for change {}", changeId);
return true;
}
if (indexEvent.isPresent() && indexEvent.get().targetSha == null) {
return indexEvent.map(e -> (computedChangeTs.get() >= e.eventCreatedOn)).orElse(true);
}
return indexEvent
.map(
e ->
(computedChangeTs.get() > e.eventCreatedOn)
|| ((computedChangeTs.get() == e.eventCreatedOn)
&& (Objects.equals(getBranchTargetSha(), e.targetSha))))
.orElse(true);
}
@Override
public Optional<Long> getComputedChangeTs() throws IOException, OrmException {
if (!computedChangeTs.isPresent()) {
computedChangeTs = computeLastChangeTs();
}
return computedChangeTs;
}
@Override
public String toString() {
try {
return "change-id="
+ changeId
+ "@"
+ getComputedChangeTs().map(ChangeIndexEvent::format)
+ "/"
+ getBranchTargetSha();
} catch (IOException | OrmException e) {
log.error("Unable to render change {}", changeId, e);
return "change-id=" + changeId;
}
}
private String getBranchTargetSha() {
try {
try (Repository repo = gitRepoMgr.openRepository(changeNotes.get().getProjectName())) {
String refName = changeNotes.get().getChange().getDest().get();
Ref ref = repo.exactRef(refName);
if (ref == null) {
log.warn("Unable to find target ref {} for change {}", refName, changeId);
return null;
}
return ref.getTarget().getObjectId().getName();
}
} catch (IOException e) {
log.warn("Unable to resolve target branch SHA for change {}", changeId, e);
return null;
}
}
private Optional<Long> computeLastChangeTs() throws OrmException {
try (ReviewDb db = oneOffReqCtx.open().getReviewDbProvider().get()) {
return getChangeNotes().map(notes -> getTsFromChangeAndDraftComments(db, notes));
}
}
private long getTsFromChangeAndDraftComments(ReviewDb db, ChangeNotes notes) {
Change change = notes.getChange();
Timestamp changeTs = change.getLastUpdatedOn();
try {
for (Comment comment : commentsUtil.draftByChange(db, changeNotes.get())) {
Timestamp commentTs = comment.writtenOn;
changeTs = commentTs.after(changeTs) ? commentTs : changeTs;
}
} catch (OrmException e) {
log.warn("Unable to access draft comments for change {}", change, e);
}
return changeTs.getTime() / 1000;
}
}