blob: ca7fdbade808b967b3101ade58dba142f299d53f [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.os;
18
Kenny Rootbdd23ae2012-08-16 10:43:47 -070019import libcore.io.ErrnoException;
20import libcore.io.Libcore;
21import libcore.io.StructStatFs;
22
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023/**
Kenny Rootbdd23ae2012-08-16 10:43:47 -070024 * Retrieve overall information about the space on a filesystem. This is a
25 * wrapper for Unix statfs().
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026 */
27public class StatFs {
Kenny Rootbdd23ae2012-08-16 10:43:47 -070028 private StructStatFs mStat;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029
30 /**
Kenny Rootbdd23ae2012-08-16 10:43:47 -070031 * Construct a new StatFs for looking at the stats of the filesystem at
32 * {@code path}. Upon construction, the stat of the file system will be
33 * performed, and the values retrieved available from the methods on this
34 * class.
35 *
36 * @param path path in the desired file system to stat.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037 */
Kenny Rootbdd23ae2012-08-16 10:43:47 -070038 public StatFs(String path) {
39 mStat = doStat(path);
40 }
41
42 private static StructStatFs doStat(String path) {
43 try {
44 return Libcore.os.statfs(path);
45 } catch (ErrnoException e) {
46 throw new IllegalArgumentException("Invalid path: " + path, e);
47 }
48 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049
50 /**
Kenny Rootbdd23ae2012-08-16 10:43:47 -070051 * Perform a restat of the file system referenced by this object. This is
52 * the same as re-constructing the object with the same file system path,
53 * and the new stat values are available upon return.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054 */
Kenny Rootbdd23ae2012-08-16 10:43:47 -070055 public void restat(String path) {
56 mStat = doStat(path);
57 }
58
59 /**
60 * The size, in bytes, of a block on the file system. This corresponds to
61 * the Unix {@code statfs.f_bsize} field.
62 */
63 public int getBlockSize() {
64 return (int) mStat.f_bsize;
65 }
66
67 /**
68 * The total number of blocks on the file system. This corresponds to the
69 * Unix {@code statfs.f_blocks} field.
70 */
71 public int getBlockCount() {
72 return (int) mStat.f_blocks;
73 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074
75 /**
76 * The total number of blocks that are free on the file system, including
Kenny Rootbdd23ae2012-08-16 10:43:47 -070077 * reserved blocks (that are not available to normal applications). This
78 * corresponds to the Unix {@code statfs.f_bfree} field. Most applications
79 * will want to use {@link #getAvailableBlocks()} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 */
Kenny Rootbdd23ae2012-08-16 10:43:47 -070081 public int getFreeBlocks() {
82 return (int) mStat.f_bfree;
83 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084
85 /**
86 * The number of blocks that are free on the file system and available to
Kenny Rootbdd23ae2012-08-16 10:43:47 -070087 * applications. This corresponds to the Unix {@code statfs.f_bavail} field.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 */
Kenny Rootbdd23ae2012-08-16 10:43:47 -070089 public int getAvailableBlocks() {
90 return (int) mStat.f_bavail;
91 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092}