| 1 |
|
# |
| 2 |
|
# i-scream pystatgrab |
| 3 |
< |
# http://www.i-scream.org |
| 3 |
> |
# http://www.i-scream.org/pystatgrab/ |
| 4 |
|
# Copyright (C) 2000-2004 i-scream |
| 5 |
|
# |
| 6 |
|
# This program is free software; you can redistribute it and/or |
| 27 |
|
|
| 28 |
|
cdef extern from "statgrab.h": |
| 29 |
|
cdef extern int sg_init() |
| 30 |
+ |
cdef extern int sg_shutdown() |
| 31 |
+ |
cdef extern int sg_snapshot() |
| 32 |
|
cdef extern int sg_drop_privileges() |
| 33 |
|
|
| 34 |
|
ctypedef enum sg_error: |
| 64 |
|
SG_ERROR_XSW_VER_MISMATCH |
| 65 |
|
|
| 66 |
|
cdef extern void sg_set_error(sg_error code, char *arg) |
| 67 |
+ |
cdef extern void sg_set_error_with_errno(sg_error code, char *arg) |
| 68 |
|
cdef extern sg_error sg_get_error() |
| 69 |
|
cdef extern char *sg_get_error_arg() |
| 70 |
+ |
cdef extern int sg_get_error_errno() |
| 71 |
|
cdef extern char *sg_str_error(sg_error code) |
| 72 |
|
|
| 73 |
|
ctypedef struct sg_host_info: |
| 142 |
|
long long total_inodes |
| 143 |
|
long long used_inodes |
| 144 |
|
long long free_inodes |
| 145 |
+ |
long long avail_inodes |
| 146 |
+ |
long long io_size |
| 147 |
+ |
long long block_size |
| 148 |
+ |
long long total_blocks |
| 149 |
+ |
long long free_blocks |
| 150 |
+ |
long long used_blocks |
| 151 |
+ |
long long avail_blocks |
| 152 |
|
|
| 153 |
|
cdef extern sg_fs_stats *sg_get_fs_stats(int *entries) |
| 154 |
|
|
| 183 |
|
ctypedef struct sg_network_iface_stats: |
| 184 |
|
char *interface_name |
| 185 |
|
int speed |
| 186 |
< |
sg_iface_duplex dup |
| 186 |
> |
sg_iface_duplex duplex |
| 187 |
|
int up |
| 188 |
|
|
| 189 |
|
cdef extern sg_network_iface_stats *sg_get_network_iface_stats(int *entries) |
| 274 |
|
py_SG_PROCESS_STATE_UNKNOWN = SG_PROCESS_STATE_UNKNOWN |
| 275 |
|
|
| 276 |
|
|
| 277 |
< |
class Result: |
| 277 |
> |
class Result(dict): |
| 278 |
|
def __init__(self, attrs): |
| 279 |
< |
self.attrs = attrs |
| 280 |
< |
for attr in attrs: |
| 270 |
< |
setattr(self, attr, attrs[attr]) |
| 271 |
< |
def __getitem__(self, item): |
| 272 |
< |
return getattr(self, item) |
| 273 |
< |
def __repr__(self): |
| 274 |
< |
return str(self.attrs) |
| 279 |
> |
self.attrs = attrs # to maintain compatibility |
| 280 |
> |
super(Result, self).__init__(attrs) |
| 281 |
|
|
| 282 |
+ |
def __getattr__(self, item): |
| 283 |
+ |
try: |
| 284 |
+ |
return self.__getitem__(item) |
| 285 |
+ |
except KeyError: |
| 286 |
+ |
raise AttributeError(item) |
| 287 |
+ |
|
| 288 |
|
class StatgrabException(Exception): |
| 289 |
|
def __init__(self, value): |
| 290 |
|
self.value = value |
| 298 |
|
else: |
| 299 |
|
return False |
| 300 |
|
|
| 301 |
+ |
def py_sg_shutdown(): |
| 302 |
+ |
if sg_shutdown() == 0: |
| 303 |
+ |
return True |
| 304 |
+ |
else: |
| 305 |
+ |
return False |
| 306 |
+ |
|
| 307 |
+ |
def py_sg_snapshot(): |
| 308 |
+ |
if sg_snapshot() == 0: |
| 309 |
+ |
return True |
| 310 |
+ |
else: |
| 311 |
+ |
return False |
| 312 |
+ |
|
| 313 |
|
def py_sg_drop_privileges(): |
| 314 |
|
if sg_drop_privileges() == 0: |
| 315 |
|
return True |
| 319 |
|
def py_sg_set_error(code, arg): |
| 320 |
|
sg_set_error(code, arg) |
| 321 |
|
|
| 322 |
+ |
def py_sg_set_error_with_errno(code, arg): |
| 323 |
+ |
sg_set_error_with_errno(code, arg) |
| 324 |
+ |
|
| 325 |
|
def py_sg_get_error(): |
| 326 |
|
cdef sg_error s |
| 327 |
|
s = sg_get_error() |
| 331 |
|
s = sg_get_error_arg() |
| 332 |
|
return s |
| 333 |
|
|
| 334 |
+ |
def py_sg_get_error_errno(): |
| 335 |
+ |
s = sg_get_error_errno() |
| 336 |
+ |
return s |
| 337 |
+ |
|
| 338 |
|
def py_sg_str_error(code): |
| 339 |
|
s = sg_str_error(code) |
| 340 |
|
return s |
| 470 |
|
'total_inodes': s.total_inodes, |
| 471 |
|
'used_inodes': s.used_inodes, |
| 472 |
|
'free_inodes': s.free_inodes, |
| 473 |
+ |
'avail_inodes': s.avail_inodes, |
| 474 |
+ |
'io_size': s.io_size, |
| 475 |
+ |
'block_size': s.block_size, |
| 476 |
+ |
'total_blocks': s.total_blocks, |
| 477 |
+ |
'free_blocks': s.free_blocks, |
| 478 |
+ |
'used_blocks': s.used_blocks, |
| 479 |
+ |
'avail_blocks': s.avail_blocks, |
| 480 |
|
} |
| 481 |
|
)) |
| 482 |
|
s = s + 1 |
| 575 |
|
list.append(Result( |
| 576 |
|
{'interface_name': s.interface_name, |
| 577 |
|
'speed': s.speed, |
| 578 |
< |
'dup': s.dup, |
| 578 |
> |
'duplex': s.duplex, |
| 579 |
|
'up' : s.up, |
| 580 |
|
} |
| 581 |
|
)) |
| 612 |
|
raise StatgrabException, 'sg_get_process_stats() returned NULL' |
| 613 |
|
list = [] |
| 614 |
|
for i from 0 <= i < entries: |
| 615 |
< |
if s.process_name == NULL: |
| 616 |
< |
s.process_name = '' |
| 617 |
< |
if s.proctitle == NULL: |
| 618 |
< |
s.proctitle = '' |
| 615 |
> |
if s.process_name is NULL: |
| 616 |
> |
process_name = '' |
| 617 |
> |
else: |
| 618 |
> |
process_name = s.process_name |
| 619 |
> |
if s.proctitle is NULL: |
| 620 |
> |
proctitle = '' |
| 621 |
> |
else: |
| 622 |
> |
proctitle = s.proctitle |
| 623 |
|
list.append(Result( |
| 624 |
< |
{'process_name': s.process_name, |
| 625 |
< |
'proctitle' : s.proctitle, |
| 624 |
> |
{'process_name': process_name, |
| 625 |
> |
'proctitle' : proctitle, |
| 626 |
|
'pid' : s.pid, |
| 627 |
|
'parent' : s.parent, |
| 628 |
|
'pgid' : s.pgid, |