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

tools.Packer.scala Maven / Gradle / Ivy

The newest version!
// Copyright 2015-2022 by Carnegie Mellon University
// See license information in LICENSE.txt

package org.cert.netsa.mothra.tools

/** Wrapper to provide a better command-line argument experience
  * over the top of the main packer class. Things should be folded
  * together in the future.
  */
object Packer extends Tool("mothra-packer", "mothra.packer") {
  val options = new PackerOptions()
  def run(): Unit = {
    setProp("compression", options.compression)
    setProp("hoursPerFile", options.hoursPerFile.map(_.toString))
    setProp("workDir.checkInterval", options.workDirCheckInterval.map(_.toString))
    setProp("workDir.maximumAge", options.workDirMaximumAge.map(_.toString))
    setProp("workDir.minimumAge", options.workDirMinimumAge.map(_.toString))
    setProp("workDir.maximumSize", options.workDirMaximumSize.map(_.toString))
    setProp("workDir.minimumSize", options.workDirMinimumSize.map(_.toString))
    setProp("archiveDirectory", options.archiveDir.map(_.toString))
    setProp("maxPackJobs", options.maxPackJobs.map(_.toString))
    setProp("packAttempts", options.packAttempts.map(_.toString))
    setProp("pollingInterval", options.pollingInterval.map(_.toString))
    setProp("fileCacheSize", options.fileCacheSize.map(_.toString))
    setProp("numMoveThreads", options.numMoveThreads.map(_.toString))
    val args = (
      Seq("--one-shot").filter(_ => options.oneShot) ++
      Seq(
        options.incomingDir.toString,
        options.outgoingDir.toString,
        options.workDir.toString,
        options.packingLogicFile.toString
    )).toArray
    PackerMain.main(args)
  }
}

// @LICENSE_FOOTER@
//
// Copyright 2015-2022 Carnegie Mellon University. All Rights Reserved.
//
// This material is based upon work funded and supported by the
// Department of Defense and Department of Homeland Security under
// Contract No. FA8702-15-D-0002 with Carnegie Mellon University for the
// operation of the Software Engineering Institute, a federally funded
// research and development center sponsored by the United States
// Department of Defense. The U.S. Government has license rights in this
// software pursuant to DFARS 252.227.7014.
//
// NO WARRANTY. THIS CARNEGIE MELLON UNIVERSITY AND SOFTWARE ENGINEERING
// INSTITUTE MATERIAL IS FURNISHED ON AN "AS-IS" BASIS. CARNEGIE MELLON
// UNIVERSITY MAKES NO WARRANTIES OF ANY KIND, EITHER EXPRESSED OR
// IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF
// FITNESS FOR PURPOSE OR MERCHANTABILITY, EXCLUSIVITY, OR RESULTS
// OBTAINED FROM USE OF THE MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT
// MAKE ANY WARRANTY OF ANY KIND WITH RESPECT TO FREEDOM FROM PATENT,
// TRADEMARK, OR COPYRIGHT INFRINGEMENT.
//
// Released under a GNU GPL 2.0-style license, please see LICENSE.txt or
// contact [email protected] for full terms.
//
// [DISTRIBUTION STATEMENT A] This material has been approved for public
// release and unlimited distribution. Please see Copyright notice for
// non-US Government use and distribution.
//
// Carnegie Mellon(R) and CERT(R) are registered in the U.S. Patent and
// Trademark Office by Carnegie Mellon University.
//
// This software includes and/or makes use of third party software each
// subject to its own license as detailed in LICENSE-thirdparty.tx
//
// DM20-1143




© 2015 - 2025 Weber Informatics LLC | Privacy Policy