LicenseFormatMojo.java

/*
 * Copyright (C) 2008-2022 Mycila (mathieu.carbou@gmail.com)
 *
 * 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
 *
 *         https://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.mycila.maven.plugin.license;

import com.mycila.maven.plugin.license.document.Document;
import com.mycila.maven.plugin.license.header.Header;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;

import java.io.File;

/**
 * Reformat files with a missing header to add it
 *
 * @author Mathieu Carbou (mathieu.carbou@gmail.com)
 */
@Mojo(name = "format", threadSafe = true)
public final class LicenseFormatMojo extends AbstractLicenseMojo {

  @Override
  public void execute() throws MojoExecutionException, MojoFailureException {
    report = new Report(reportFormat, Report.Action.FORMAT, project, clock, reportSkipped);

    if (!skip) {
      getLog().info("Updating license headers...");
    }

    AbstractCallback callback = new AbstractCallback() {
      @Override
      public void onHeaderNotFound(Document document, Header header) {
        document.parseHeader();
        if (document.headerDetected()) {
          if (skipExistingHeaders) {
            debug("Keeping license header in: %s", document.getFilePath());
            report.add(document.getFile(), Report.Result.NOOP);
            return;
          }
          document.removeHeader();
          report.add(document.getFile(), Report.Result.REPLACED);
        } else {
          report.add(document.getFile(), Report.Result.ADDED);
        }
        info("Updating license header in: %s", document.getFilePath());
        document.updateHeader(header);
        if (!dryRun) {
          document.save();
        } else {
          String name = document.getFile().getName() + ".licensed";
          File copy = new File(document.getFile().getParentFile(), name);
          info("Result saved to: %s", copy);
          document.saveTo(copy);
        }
      }

      @Override
      public void onExistingHeader(Document document, Header header) {
        debug("Header OK in: %s", document.getFilePath());
        report.add(document.getFile(), Report.Result.NOOP);
      }
    };

    execute(callback);

    callback.checkUnknown();
  }

}