Statistics
| Branch: | Tag: | Revision:

root / lib / storage / filestorage.py @ 32389d91

History | View | Annotate | Download (1.6 kB)

1
#
2
#
3

    
4
# Copyright (C) 2013 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
"""File storage functions.
23

24
"""
25

    
26
import os
27

    
28
from ganeti import constants
29
from ganeti import errors
30

    
31

    
32
def GetFileStorageSpaceInfo(path):
33
  """Retrieves the free and total space of the device where the file is
34
     located.
35

36
     @type path: string
37
     @param path: Path of the file whose embracing device's capacity is
38
       reported.
39
     @return: a dictionary containing 'vg_size' and 'vg_free' given in MebiBytes
40

41
  """
42
  try:
43
    result = os.statvfs(path)
44
    free = (result.f_frsize * result.f_bavail) / (1024 * 1024)
45
    size = (result.f_frsize * result.f_blocks) / (1024 * 1024)
46
    return {"type": constants.ST_FILE,
47
            "name": path,
48
            "storage_size": size,
49
            "storage_free": free}
50
  except OSError, e:
51
    raise errors.CommandError("Failed to retrieve file system information about"
52
                              " path: %s - %s" % (path, e.strerror))