1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
"""
Copyright (c) 2008-2012 Red Hat, Inc. <http://www.redhat.com>
This file is part of GlusterFS.
This file is licensed to you under your choice of the GNU Lesser
General Public License, version 3 or any later version (LGPLv3 or
later), or the GNU General Public License, version 2 (GPLv2), in all
cases as published by the Free Software Foundation.
"""
from ctypes import *
from glustertypes import *
from glusterstack import *
import sys
import inspect
libglusterfs = CDLL("libglusterfs.so")
_gf_log = libglusterfs._gf_log
_gf_log.restype = c_int32
_gf_log.argtypes = [c_char_p, c_char_p, c_char_p, c_int32, c_int, c_char_p]
gf_log_loglevel = c_int.in_dll(libglusterfs, "gf_log_loglevel")
GF_LOG_NONE = 0
GF_LOG_CRITICAL = 1
GF_LOG_ERROR = 2
GF_LOG_WARNING = 3
GF_LOG_DEBUG = 4
def gf_log(module, level, fmt, *params):
if level <= gf_log_loglevel:
frame = sys._getframe(1)
_gf_log(module, frame.f_code.co_filename, frame.f_code.co_name,
frame.f_lineno, level, fmt, *params)
class ComplexTranslator(object):
def __init__(self, xlator):
self.xlator = xlator_t.from_address(xlator)
def __getattr__(self, item):
return getattr(self.xlator, item)
|