blob: b14d4ba5efd9bd0b686177319f247cc88cd2bd8e [file] [log] [blame]
// Copyright (C) 2015 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.change;
import com.google.gerrit.extensions.restapi.ResourceConflictException;
import com.google.gerrit.reviewdb.client.Change;
import com.google.gerrit.server.IdentifiedUser;
import com.google.gerrit.server.config.ChangeCleanupConfig;
import com.google.gerrit.server.project.ChangeControl;
import com.google.gerrit.server.project.NoSuchChangeException;
import com.google.gerrit.server.query.QueryParseException;
import com.google.gerrit.server.query.change.ChangeData;
import com.google.gerrit.server.query.change.ChangeQueryBuilder;
import com.google.gerrit.server.query.change.QueryProcessor;
import com.google.gwtorm.server.OrmException;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.List;
import java.util.concurrent.TimeUnit;
@Singleton
public class AbandonUtil {
private static final Logger log = LoggerFactory.getLogger(AbandonUtil.class);
private final ChangeCleanupConfig cfg;
private final IdentifiedUser.GenericFactory identifiedUserFactory;
private final QueryProcessor queryProcessor;
private final ChangeQueryBuilder queryBuilder;
private final ChangeControl.GenericFactory changeControlFactory;
private final Abandon abandon;
@Inject
AbandonUtil(
ChangeCleanupConfig cfg,
IdentifiedUser.GenericFactory identifiedUserFactory,
QueryProcessor queryProcessor,
ChangeQueryBuilder queryBuilder,
ChangeControl.GenericFactory changeControlFactory,
Abandon abandon) {
this.cfg = cfg;
this.identifiedUserFactory = identifiedUserFactory;
this.queryProcessor = queryProcessor;
this.queryBuilder = queryBuilder;
this.changeControlFactory = changeControlFactory;
this.abandon = abandon;
}
public void abandonInactiveOpenChanges() {
if (cfg.getAbandonAfter() <= 0) {
return;
}
try {
String query = "status:new age:"
+ TimeUnit.MILLISECONDS.toMinutes(cfg.getAbandonAfter())
+ "m";
if (!cfg.getAbandonIfMergeable()) {
query += " -is:mergeable";
}
List<ChangeData> changesToAbandon = queryProcessor.enforceVisibility(false)
.queryChanges(queryBuilder.parse(query)).changes();
int count = 0;
for (ChangeData cd : changesToAbandon) {
try {
if (noNeedToAbandon(cd, query)){
log.debug("Change data \"{}\" does not satisfy the query \"{}\" any"
+ " more, hence skipping it in clean up", cd, query);
continue;
}
abandon.abandon(changeControl(cd), cfg.getAbandonMessage(), null);
count++;
} catch (ResourceConflictException e) {
// Change was already merged or abandoned.
} catch (Throwable e) {
log.error(String.format(
"Failed to auto-abandon inactive open change %d.",
cd.getId().get()), e);
}
}
log.info(String.format("Auto-Abandoned %d of %d changes.",
count, changesToAbandon.size()));
} catch (QueryParseException | OrmException e) {
log.error("Failed to query inactive open changes for auto-abandoning.", e);
}
}
private boolean noNeedToAbandon(ChangeData cd, String query)
throws OrmException, QueryParseException {
String newQuery = query + " change:" + cd.getId();
List<ChangeData> changesToAbandon = queryProcessor.enforceVisibility(false)
.queryChanges(queryBuilder.parse(newQuery)).changes();
return changesToAbandon.isEmpty();
}
private ChangeControl changeControl(ChangeData cd)
throws NoSuchChangeException, OrmException {
Change c = cd.change();
return changeControlFactory.controlFor(c,
identifiedUserFactory.create(c.getOwner()));
}
}