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

com.google.archivepatcher.generator.QualifiedRecommendation Maven / Gradle / Ivy

The newest version!
// Copyright 2016 Google Inc. All rights reserved.
//
// 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.archivepatcher.generator;

/**
 * A fully qualified recommendation, consisting of an {@link MinimalZipEntry} from the old file,
 * a {@link MinimalZipEntry} from the new file, a {@link Recommendation} for how to proceed and a
 * {@link RecommendationReason} for that recommendation.
 */
public class QualifiedRecommendation {
  /**
   * The entry in the old file.
   */
  private final MinimalZipEntry oldEntry;

  /**
   * The entry in the new file.
   */
  private final MinimalZipEntry newEntry;

  /**
   * The recommendation for how to proceed on the pair of entries.
   */
  private final Recommendation recommendation;

  /**
   * The reason for the recommendation.
   */
  private final RecommendationReason reason;

  /**
   * Construct a new qualified recommendation with the specified data.
   * @param oldEntry the entry in the old file
   * @param newEntry the entry in the new file
   * @param recommendation the recommendation for this tuple of entries
   * @param reason the reason for the recommendation
   */
  public QualifiedRecommendation(
      MinimalZipEntry oldEntry,
      MinimalZipEntry newEntry,
      Recommendation recommendation,
      RecommendationReason reason) {
    super();
    this.oldEntry = oldEntry;
    this.newEntry = newEntry;
    this.recommendation = recommendation;
    this.reason = reason;
  }

  /**
   * Returns the entry in the old file.
   * @return as described
   */
  public MinimalZipEntry getOldEntry() {
    return oldEntry;
  }

  /**
   * Returns the entry in the new file.
   * @return as described
   */
  public MinimalZipEntry getNewEntry() {
    return newEntry;
  }

  /**
   * Returns the recommendation for how to proceed for this tuple of entries.
   * @return as described
   */
  public Recommendation getRecommendation() {
    return recommendation;
  }

  /**
   * Returns the reason for the recommendation.
   * @return as described
   */
  public RecommendationReason getReason() {
    return reason;
  }

  @Override
  public int hashCode() {
    final int prime = 31;
    int result = 1;
    result = prime * result + ((newEntry == null) ? 0 : newEntry.hashCode());
    result = prime * result + ((oldEntry == null) ? 0 : oldEntry.hashCode());
    result = prime * result + ((reason == null) ? 0 : reason.hashCode());
    result = prime * result + ((recommendation == null) ? 0 : recommendation.hashCode());
    return result;
  }

  @Override
  public boolean equals(Object obj) {
    if (this == obj) {
      return true;
    }
    if (obj == null) {
      return false;
    }
    if (getClass() != obj.getClass()) {
      return false;
    }
    QualifiedRecommendation other = (QualifiedRecommendation) obj;
    if (newEntry == null) {
      if (other.newEntry != null) {
        return false;
      }
    } else if (!newEntry.equals(other.newEntry)) {
      return false;
    }
    if (oldEntry == null) {
      if (other.oldEntry != null) {
        return false;
      }
    } else if (!oldEntry.equals(other.oldEntry)) {
      return false;
    }
    if (reason != other.reason) {
      return false;
    }
    if (recommendation != other.recommendation) {
      return false;
    }
    return true;
  }

  @Override
  public String toString() {
    return "QualifiedRecommendation [oldEntry="
        + oldEntry.getFileName()
        + ", newEntry="
        + newEntry.getFileName()
        + ", recommendation="
        + recommendation
        + ", reason="
        + reason
        + "]";
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy