DF.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:4k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.fs;
  19. import java.io.File;
  20. import java.io.IOException;
  21. import java.io.BufferedReader;
  22. import java.util.StringTokenizer;
  23. import org.apache.hadoop.conf.Configuration;
  24. import org.apache.hadoop.util.Shell;
  25. /** Filesystem disk space usage statistics.  Uses the unix 'df' program.
  26.  * Tested on Linux, FreeBSD, Cygwin. */
  27. public class DF extends Shell {
  28.   public static final long DF_INTERVAL_DEFAULT = 3 * 1000; // default DF refresh interval 
  29.   
  30.   private String  dirPath;
  31.   private String filesystem;
  32.   private long capacity;
  33.   private long used;
  34.   private long available;
  35.   private int percentUsed;
  36.   private String mount;
  37.   
  38.   public DF(File path, Configuration conf) throws IOException {
  39.     this(path, conf.getLong("dfs.df.interval", DF.DF_INTERVAL_DEFAULT));
  40.   }
  41.   public DF(File path, long dfInterval) throws IOException {
  42.     super(dfInterval);
  43.     this.dirPath = path.getCanonicalPath();
  44.   }
  45.   
  46.   /// ACCESSORS
  47.   public String getDirPath() {
  48.     return dirPath;
  49.   }
  50.   
  51.   public String getFilesystem() throws IOException { 
  52.     run(); 
  53.     return filesystem; 
  54.   }
  55.   
  56.   public long getCapacity() throws IOException { 
  57.     run(); 
  58.     return capacity; 
  59.   }
  60.   
  61.   public long getUsed() throws IOException { 
  62.     run(); 
  63.     return used;
  64.   }
  65.   
  66.   public long getAvailable() throws IOException { 
  67.     run(); 
  68.     return available;
  69.   }
  70.   
  71.   public int getPercentUsed() throws IOException {
  72.     run();
  73.     return percentUsed;
  74.   }
  75.   public String getMount() throws IOException {
  76.     run();
  77.     return mount;
  78.   }
  79.   
  80.   public String toString() {
  81.     return
  82.       "df -k " + mount +"n" +
  83.       filesystem + "t" +
  84.       capacity / 1024 + "t" +
  85.       used / 1024 + "t" +
  86.       available / 1024 + "t" +
  87.       percentUsed + "%t" +
  88.       mount;
  89.   }
  90.   protected String[] getExecString() {
  91.     // ignoring the error since the exit code it enough
  92.     return new String[] {"bash","-c","exec 'df' '-k' '" + dirPath 
  93.                          + "' 2>/dev/null"};
  94.   }
  95.   
  96.   protected void parseExecResult(BufferedReader lines) throws IOException {
  97.     lines.readLine();                         // skip headings
  98.   
  99.     String line = lines.readLine();
  100.     if (line == null) {
  101.       throw new IOException( "Expecting a line not the end of stream" );
  102.     }
  103.     StringTokenizer tokens =
  104.       new StringTokenizer(line, " tnrf%");
  105.     
  106.     this.filesystem = tokens.nextToken();
  107.     if (!tokens.hasMoreTokens()) {            // for long filesystem name
  108.       line = lines.readLine();
  109.       if (line == null) {
  110.         throw new IOException( "Expecting a line not the end of stream" );
  111.       }
  112.       tokens = new StringTokenizer(line, " tnrf%");
  113.     }
  114.     this.capacity = Long.parseLong(tokens.nextToken()) * 1024;
  115.     this.used = Long.parseLong(tokens.nextToken()) * 1024;
  116.     this.available = Long.parseLong(tokens.nextToken()) * 1024;
  117.     this.percentUsed = Integer.parseInt(tokens.nextToken());
  118.     this.mount = tokens.nextToken();
  119.   }
  120.   public static void main(String[] args) throws Exception {
  121.     String path = ".";
  122.     if (args.length > 0)
  123.       path = args[0];
  124.     System.out.println(new DF(new File(path), DF_INTERVAL_DEFAULT).toString());
  125.   }
  126. }