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

io.codemodder.plugins.maven.DefaultArtifactInjectionPositionFinder Maven / Gradle / Ivy

The newest version!
package io.codemodder.plugins.maven;

import com.github.difflib.patch.AbstractDelta;
import java.util.List;

final class DefaultArtifactInjectionPositionFinder implements ArtifactInjectionPositionFinder {

  @Override
  public int find(final List> deltas, final String artifactId) {
    String expectedArtifactToken = "" + artifactId + "";
    Integer backupPosition = null;
    for (AbstractDelta delta : deltas) {
      List newLines = delta.getTarget().getLines();
      boolean hasArtifactId =
          newLines.stream().anyMatch(line -> line.contains(expectedArtifactToken));
      boolean hasVersion = newLines.stream().anyMatch(line -> line.contains(""));

      if (hasArtifactId && hasVersion) {
        // if it has the artifact and version, it could be the  section, which
        // is 2nd preference
        backupPosition = 1 + delta.getTarget().getPosition();
      } else if (hasArtifactId) {
        // if it has the artifact but not the version, it could be the  section, which
        // is preferred
        return 1 + delta.getTarget().getPosition();
      }
    }
    if (backupPosition != null) {
      return backupPosition;
    }
    // the fallback is to just use the first change to the file
    return 1 + deltas.get(0).getTarget().getPosition();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy