jbyoshi.gitupdate.processor.RemoteProcessor.java Source code

Java tutorial

Introduction

Here is the source code for jbyoshi.gitupdate.processor.RemoteProcessor.java

Source

/*
 * Copyright (c) 2015 JBYoshi
 *
 * 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 jbyoshi.gitupdate.processor;

import org.eclipse.jgit.api.*;
import org.eclipse.jgit.lib.*;

import jbyoshi.gitupdate.*;

abstract class RemoteProcessor extends Processor {

    @Override
    public void registerTasks(Repository repo, Git git, Task root) throws Exception {
        Task me = root.newChild(getClass().getSimpleName());
        for (String remote : repo.getRemoteNames()) {
            me.newChild(remote, report -> {
                try {
                    process(repo, git, remote, Constants.R_REMOTES + remote + "/", report);
                } catch (Exception e) {
                    report.newErrorChild(e);
                }
            });
        }
    }

    public abstract void process(Repository repo, Git git, String remote, String fullRemote, Report report)
            throws Exception;

}