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

com.gemstone.gemfire.management.internal.cli.result.FileResult Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
 *
 * 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. See accompanying
 * LICENSE file.
 */
package com.gemstone.gemfire.management.internal.cli.result;

import java.io.FileNotFoundException;
import java.io.IOException;

import com.gemstone.gemfire.management.cli.Result;
import com.gemstone.gemfire.management.internal.cli.CliUtil;

/**
 * 
 * @author Abhishek Chaudhari
 * 
 * @since 7.0
 */
public class FileResult implements Result {
  private String[] filePaths;
  private int fileIndex;
  private Status status = Status.ERROR;
  private byte[][] localFileData = null;

  public FileResult(String[] filePathsToRead) throws FileNotFoundException, IOException {
    this.filePaths = filePathsToRead;
    this.localFileData = CliUtil.filesToBytes(filePathsToRead);
    this.status = Status.OK;
  }

  @Override
  public Status getStatus() {
    return status;
  }

  @Override
  public void resetToFirstLine() {
  }

  @Override
  public boolean hasNextLine() {
    return fileIndex < filePaths.length;
  }

  @Override
  public String nextLine() {
    return filePaths[fileIndex++];
  }

  public byte[][] toBytes() {
    return localFileData;
  }

  /**
   * Calculates the total file size of all files associated with this result.
   * 
   * @return Total file size.
   */
  public long computeFileSizeTotal() {
    long byteCount = 0;
    for (int i = 1; i < this.localFileData.length; i += 2) {
      byteCount += localFileData[i].length;
    }
    return byteCount;
  }

  /**
   * Get a comma separated list of all files associated with this result.
   * 
   * @return Comma separated list of files.
   */
  public String getFormattedFileList() {
    StringBuffer formattedFileList = new StringBuffer();
    for (int i = 0; i < this.localFileData.length; i += 2) {
      formattedFileList.append(new String(this.localFileData[i]));
      if (i < this.localFileData.length - 2) {
        formattedFileList.append(", ");
      }
    }
    return formattedFileList.toString();
  }

  @Override
  public boolean hasIncomingFiles() {
    return true;
  }

  @Override
  public void saveIncomingFiles(String directory) 
      throws UnsupportedOperationException, IOException {
    // dump file data if any
    CliUtil.bytesToFiles(localFileData, directory, true);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy