Package org.springframework.boot.maven

Source Code of org.springframework.boot.maven.ArtifactsLibraries

/*
* Copyright 2012-2014 the original author or authors.
*
* 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 org.springframework.boot.maven;

import java.io.IOException;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

import org.apache.maven.artifact.Artifact;
import org.apache.maven.model.Dependency;
import org.apache.maven.plugin.logging.Log;
import org.springframework.boot.loader.tools.Libraries;
import org.springframework.boot.loader.tools.Library;
import org.springframework.boot.loader.tools.LibraryCallback;
import org.springframework.boot.loader.tools.LibraryScope;

/**
* {@link Libraries} backed by Maven {@link Artifact}s
*
* @author Phillip Webb
* @author Andy Wilkinson
*/
public class ArtifactsLibraries implements Libraries {

  private static final Map<String, LibraryScope> SCOPES;
  static {
    Map<String, LibraryScope> scopes = new HashMap<String, LibraryScope>();
    scopes.put(Artifact.SCOPE_COMPILE, LibraryScope.COMPILE);
    scopes.put(Artifact.SCOPE_RUNTIME, LibraryScope.RUNTIME);
    scopes.put(Artifact.SCOPE_PROVIDED, LibraryScope.PROVIDED);
    SCOPES = Collections.unmodifiableMap(scopes);
  }

  private final Set<Artifact> artifacts;

  private final Collection<Dependency> unpacks;

  private final Log log;

  public ArtifactsLibraries(Set<Artifact> artifacts, Collection<Dependency> unpacks,
      Log log) {
    this.artifacts = artifacts;
    this.unpacks = unpacks;
    this.log = log;
  }

  @Override
  public void doWithLibraries(LibraryCallback callback) throws IOException {
    Set<String> duplicates = getDuplicates(this.artifacts);
    for (Artifact artifact : this.artifacts) {
      LibraryScope scope = SCOPES.get(artifact.getScope());
      if (scope != null && artifact.getFile() != null) {
        String name = artifact.getFile().getName();
        if (duplicates.contains(name)) {
          this.log.debug("Duplicate found: " + name);
          name = artifact.getGroupId() + "-" + name;
          this.log.debug("Renamed to: " + name);
        }
        callback.library(new Library(name, artifact.getFile(), scope,
            isUnpackRequired(artifact)));
      }
    }
  }

  private Set<String> getDuplicates(Set<Artifact> artifacts) {
    Set<String> duplicates = new HashSet<String>();
    Set<String> seen = new HashSet<String>();
    for (Artifact artifact : artifacts) {
      if (artifact.getFile() != null && !seen.add(artifact.getFile().getName())) {
        duplicates.add(artifact.getFile().getName());
      }
    }
    return duplicates;
  }

  private boolean isUnpackRequired(Artifact artifact) {
    if (this.unpacks != null) {
      for (Dependency unpack : this.unpacks) {
        if (artifact.getGroupId().equals(unpack.getGroupId())
            && artifact.getArtifactId().equals(unpack.getArtifactId())) {
          return true;
        }
      }
    }
    return false;
  }

}
TOP

Related Classes of org.springframework.boot.maven.ArtifactsLibraries

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.