Package br.com.objectos.rio.sao.os

Source Code of br.com.objectos.rio.sao.os.SaoOsMirrorOptions

/*
* Copyright 2014 Objectos, Fábrica de Software LTDA.
*
* 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 br.com.objectos.rio.sao.os;

import static br.com.objectos.rio.RioVersion.VERSION;

import java.io.File;

import br.com.objectos.rio.OsDirs;
import br.com.objectos.rio.sao.SaoDirs;
import br.com.objectos.way.base.io.Directory;

import com.beust.jcommander.Parameter;
import com.beust.jcommander.Parameters;

/**
* @author marcio.endo@objectos.com.br (Marcio Endo)
*/
@Parameters
class SaoOsMirrorOptions {

  String version = VERSION.get();

  @Parameter(names = { "--quickpkg", "-q" })
  boolean quickpkg = false;

  @Parameter(names = { "--distfiles", "-d" })
  boolean distfiles = false;

  @Parameter(names = { "--packages", "-p" })
  boolean packages = false;

  @Parameter(names = { "--stage3", "-3" })
  boolean stage3 = false;

  @Parameter(names = { "--stage3-upload", "-3u" })
  boolean stage3Upload = false;

  @Parameter(names = "--server")
  String server = "rio.objectos.com.br";

  public String remotePath() {
    return String.format("/var/www/localhost/htdocs/%s/os/%s", getCode(), version);
  }

  public File stage3File(OsDirs dirs) {
    Directory osVar = dirs.osVar();
    String name = String.format("%s-%s.tar.gz", getCode(), version);
    return osVar.fileAt(name);
  }

  public OsDirs dirs(SaoDirs saoDirs) {
    Directory var = saoDirs.var();
    return new OsDirs(var);
  }

  private String getCode() {
    return "sao";
  }

}
TOP

Related Classes of br.com.objectos.rio.sao.os.SaoOsMirrorOptions

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.