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

container.CharlieCloud.scala Maven / Gradle / Ivy

There is a newer version: 1.31
Show newest version
package container

/*
 * Copyright (C) 2019 Romain Reuillon
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 */

import java.io.File

import better.files._

import scala.sys.process._
import container.ImageBuilder.checkImageFile
import container.OCI.ConfigurationData

object CharlieCloud {

  case class BuiltCharlieCloudImage(
    file: File,
    configurationData: ConfigurationData,
    command: Seq[String] = Seq())

  //  def execute(chRun: File, image: FlatImage, command: Option[Seq[String]] = None) = {
  //    checkImageFile(image.file)
  //    val file = (image.file.toScala / FlatImage.rootfsName).toJava.getAbsolutePath
  //    Seq(chRun.getPath, file) ++ command.getOrElse(image.command) !!
  //  }

  def clean(image: BuiltCharlieCloudImage): Unit = {
    image.file.toScala.delete()
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy