DoubleFileSink.java

/*
 * Created on 2007/02/05
 * Copyright (C) 2007 Koga Laboratory. All rights reserved.
 *
 */
package org.mklab.tool.control.system.sink;

import java.io.File;
import java.io.IOException;

import org.mklab.nfc.matrix.DoubleMatrix;
import org.mklab.nfc.matrix.MatrixFileType;


/**
 * ファイルへの出力器を表わすクラスです。
 * 
 * @author koga
 * @version $Revision: 1.8 $, 2007/02/05
 */
public class DoubleFileSink extends DoubleMatrixExportSink {

  /** 変数の名前 */
  private String variableName = "ans"; //$NON-NLS-1$

  /** ファイルの形式 */
  private MatrixFileType fileType = MatrixFileType.MX_DATA;

  /** ファイルの名前 */
  private String fileName = "ans" + this.fileType.getExtension(); //$NON-NLS-1$

  /**
   * 新しく生成された<code>FileSink</code>オブジェクトを初期化します。
   */
  public DoubleFileSink() {
    super();
  }

  /**
   * @see org.mklab.tool.control.system.sink.Exporter#close()
   */
  public void close() {
    // nothing
  }

  /**
   * @see org.mklab.tool.control.system.sink.Exporter#isActive()
   */
  public boolean isActive() {
    if (0 < getDataLength()) {
      return true;
    }
    return false;
  }

  /**
   * @see org.mklab.tool.control.system.sink.Exporter#exportData()
   */
  public void exportData() throws IOException {
    final DoubleMatrix data = getData();

    if (this.fileType == MatrixFileType.MX_DATA) {
      data.writeMxFormat(new File(this.fileName), this.variableName);
    } else if (this.fileType == MatrixFileType.MAT_DATA) {
      data.writeMatFormat(new File(this.fileName));
    } else if (this.fileType == MatrixFileType.MM_DATA) {
      data.writeMmFormat(new File(this.fileName), this.variableName);
    } else if (this.fileType == MatrixFileType.CSV_DATA) {
      data.writeCsvFormat(new File(this.fileName));
    } else {
      throw new IOException(Messages.getString("FileSink.2")); //$NON-NLS-1$
    }
  }

  /**
   * ファイルの形式を設定します。
   * 
   * @param fileType ファイルの形式
   */
  public void setFileType(final MatrixFileType fileType) {
    this.fileType = fileType;
  }

  /**
   * ファイルの形式を返します。
   * 
   * @return ファイルの形式
   */
  public MatrixFileType getFileType() {
    return this.fileType;
  }

  /**
   * ファイルの名前を返します。
   * 
   * @return ファイルの名前
   */
  public String getFileName() {
    return this.fileName;
  }

  /**
   * ファイルの名前を設定します。 拡張子がない場合、ファイルの形式に対応する拡張子が追加されます。
   * 
   * @param fileName ファイルの名前
   */
  public void setFileName(final String fileName) {
    if (fileName.indexOf('.') == -1) {
      this.fileName = fileName + "." + this.fileType.getExtension(); //$NON-NLS-1$
    } else {
      this.fileName = fileName;
    }
  }

  /**
   * 変数の名前を返します。
   * 
   * @return 変数の名前
   */
  public String getVariableName() {
    return this.variableName;
  }

  /**
   * 変数の名前を設定します。
   * 
   * @param variableName 変数の名前
   */
  public void setVariableName(final String variableName) {
    this.variableName = variableName;
  }

  /**
   * @see org.mklab.tool.control.system.SystemOperator#equals(java.lang.Object)
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (!super.equals(o)) {
      return false;
    }
    if (o == null) {
      return false;
    }
    if (o.getClass() != getClass()) {
      return false;
    }
    DoubleFileSink castedObj = (DoubleFileSink)o;
    return ((this.variableName == null ? castedObj.variableName == null : this.variableName.equals(castedObj.variableName))
        && (this.fileType == null ? castedObj.fileType == null : this.fileType.equals(castedObj.fileType)) && (this.fileName == null ? castedObj.fileName == null : this.fileName
        .equals(castedObj.fileName)));
  }

  /**
   * @see org.mklab.tool.control.system.SystemOperator#hashCode()
   */
  @Override
  public int hashCode() {
    int hashCode = super.hashCode();
    hashCode = 31 * hashCode + (this.variableName == null ? 0 : this.variableName.hashCode());
    hashCode = 31 * hashCode + (this.fileType == null ? 0 : this.fileType.hashCode());
    hashCode = 31 * hashCode + (this.fileName == null ? 0 : this.fileName.hashCode());
    return hashCode;
  }
}