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

io.opentelemetry.contrib.staticinstrumenter.plugin.maven.WorkingFolders Maven / Gradle / Ivy

There is a newer version: 1.26.0-alpha
Show newest version
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.contrib.staticinstrumenter.plugin.maven;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import org.codehaus.plexus.util.FileUtils;

class WorkingFolders {

  // folder where OTel agent is stored
  private final Path agentFolder;
  // folder where jars for instrumentation are prepared
  private final Path preparationFolder;
  // folder where instrumentation and processing is conducted
  private final Path instrumentationFolder;
  // folder where final (instrumented, with OTel classes) JARs are stored
  private final Path finalFolder;

  WorkingFolders(String finalFolder) throws IOException {
    try {
      agentFolder = Files.createTempDirectory("OTEL_AGENT_FOLDER");
      preparationFolder = Files.createTempDirectory("PREPARATION_FOLDER");
      instrumentationFolder = Files.createTempDirectory("INSTRUMENTATION_WORKING_FOLDER");
      this.finalFolder = Files.createDirectories(Paths.get(finalFolder));
    } catch (IOException ioe) {
      delete();
      // unable to initialize so rethrow
      throw ioe;
    }
  }

  void delete() throws IOException {
    FileUtils.deleteDirectory(agentFolder.toFile());
    FileUtils.deleteDirectory(preparationFolder.toFile());
    FileUtils.deleteDirectory(instrumentationFolder.toFile());
  }

  Path agentFolder() {
    return agentFolder;
  }

  Path getPreparationFolder() {
    return preparationFolder;
  }

  Path instrumentationFolder() {
    return instrumentationFolder;
  }

  Path finalFolder() {
    return finalFolder;
  }

  void cleanWorkingFolders() throws IOException {
    FileUtils.cleanDirectory(instrumentationFolder.toFile());
    FileUtils.cleanDirectory(preparationFolder.toFile());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy