All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gerrit.server.git.ProjectRunnable Maven / Gradle / Ivy

There is a newer version: 3.10.0-rc6
Show newest version
// Copyright (C) 2010 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.git;

import com.google.gerrit.common.Nullable;
import com.google.gerrit.entities.Project;
import java.util.concurrent.Callable;
import java.util.concurrent.FutureTask;

/** Used to retrieve the project name from an operation * */
public interface ProjectRunnable extends Runnable {
  Project.NameKey getProjectNameKey();

  @Nullable
  String getRemoteName();

  boolean hasCustomizedPrint();

  /**
   * Wraps the callable as a {@link FutureTask} and makes it comply with the {@link ProjectRunnable}
   * interface.
   */
  static  FutureTask fromCallable(
      Callable callable,
      Project.NameKey projectName,
      String operationName,
      @Nullable String remoteHostname,
      boolean hasCustomPrint) {
    return new FromCallable<>(callable, projectName, operationName, remoteHostname, hasCustomPrint);
  }

  class FromCallable extends FutureTask implements ProjectRunnable {
    private final Project.NameKey project;
    private final String operationName;
    private final String remoteHostname;
    private final boolean hasCustomPrint;

    FromCallable(
        Callable callable,
        Project.NameKey project,
        String operationName,
        @Nullable String remoteHostname,
        boolean hasCustomPrint) {
      super(callable);
      this.project = project;
      this.operationName = operationName;
      this.remoteHostname = remoteHostname;
      this.hasCustomPrint = hasCustomPrint;
    }

    @Override
    public Project.NameKey getProjectNameKey() {
      return project;
    }

    @Override
    public String getRemoteName() {
      return remoteHostname;
    }

    @Override
    public boolean hasCustomizedPrint() {
      return hasCustomPrint;
    }

    @Override
    public String toString() {
      return operationName;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy