Package org.eclipse.egit.core.op

Source Code of org.eclipse.egit.core.op.GarbageCollectOperation

/*******************************************************************************
* Copyright (C) 2012, 2013 Matthias Sohn <matthias.sohn@sap.com> and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.egit.core.op;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
import org.eclipse.egit.core.Activator;
import org.eclipse.egit.core.EclipseGitProgressTransformer;
import org.eclipse.egit.core.internal.job.RuleUtil;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.lib.Repository;

/**
* Operation to garbage collect a git repository
*/
public class GarbageCollectOperation implements IEGitOperation {

  private Repository repository;

  /**
   * @param repository the repository to garbage collect
   */
  public GarbageCollectOperation(Repository repository) {
    this.repository = repository;
  }

  /**
   * Execute garbage collection
   */
  public void execute(IProgressMonitor monitor) throws CoreException {
    Git git = new Git(repository);
    EclipseGitProgressTransformer pm = new EclipseGitProgressTransformer(
        monitor);
    try {
      git.gc().setProgressMonitor(pm).call();
    } catch (GitAPIException e) {
      throw new CoreException(new Status(IStatus.ERROR,
          Activator.getPluginId(), e.getMessage(), e));
    }
  }

  public ISchedulingRule getSchedulingRule() {
    return RuleUtil.getRule(repository);
  }

}
TOP

Related Classes of org.eclipse.egit.core.op.GarbageCollectOperation

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.