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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
# Copyright (c) 2018 VMware, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
import logging
import threading
import os
import sys
import functools
__all__ = ['patch_loggingMDC', 'MDC']
_replace_func_name = ['info', 'critical', 'fatal', 'debug',
'error', 'warn', 'warning', 'findCaller']
class MDCContext(threading.local):
"""
A Thread local instance to storage mdc values
"""
def __init__(self):
super(MDCContext, self).__init__()
self._localDict = {}
def get(self, key):
return self._localDict.get(key, None)
def put(self, key, value):
self._localDict[key] = value
def remove(self, key):
if key in self.localDict:
del self._localDict[key]
def clear(self):
self._localDict.clear()
def result(self):
return self._localDict
def isEmpty(self):
return self._localDict == {} or self._localDict is None
MDC = MDCContext()
def fetchkeys(func):
@functools.wraps(func)
def replace(*args, **kwargs):
kwargs['extra'] = _getmdcs(extra=kwargs.get('extra', None))
func(*args, **kwargs)
return replace
def _getmdcs(extra=None):
"""
Put mdc dict in logging record extra filed with key 'mdc'
:param extra: dict
:return: mdc dict
"""
if MDC.isEmpty():
return
mdc = MDC.result()
if extra is not None:
for key in extra:
# make sure extra key dosen't override mdckey
if key in mdc or key == 'mdc':
raise KeyError("Attempt to overwrite %r in MDC" % key)
else:
extra = {}
extra['mdc'] = mdc
del mdc
return extra
@fetchkeys
def info(self, msg, *args, **kwargs):
if self.isEnabledFor(logging.INFO):
self._log(logging.INFO, msg, args, **kwargs)
@fetchkeys
def debug(self, msg, *args, **kwargs):
if self.isEnabledFor(logging.DEBUG):
self._log(logging.DEBUG, msg, args, **kwargs)
@fetchkeys
def warning(self, msg, *args, **kwargs):
if self.isEnabledFor(logging.WARNING):
self._log(logging.WARNING, msg, args, **kwargs)
@fetchkeys
def exception(self, msg, *args, **kwargs):
kwargs['exc_info'] = 1
self.error(msg, *args, **kwargs)
@fetchkeys
def critical(self, msg, *args, **kwargs):
if self.isEnabledFor(logging.CRITICAL):
self._log(logging.CRITICAL, msg, args, **kwargs)
@fetchkeys
def error(self, msg, *args, **kwargs):
if self.isEnabledFor(logging.ERROR):
self._log(logging.ERROR, msg, args, **kwargs)
def findCaller(self):
f = logging.currentframe()
if f is not None:
f = f.f_back
rv = "(unkown file)", 0, "(unknow function)"
while hasattr(f, "f_code"):
co = f.f_code
filename = os.path.normcase(co.co_filename)
# jump through local 'replace' func frame
if filename == logging._srcfile or co.co_name == "replace":
f = f.f_back
continue
rv = (co.co_filename, f.f_lineno, co.co_name)
break
return rv
def patch_loggingMDC():
"""
The patch to add MDC ability in logging Record instance at runtime
"""
localModule = sys.modules[__name__]
for attr in dir(logging.Logger):
if attr in _replace_func_name:
newfunc = getattr(localModule, attr, None)
if newfunc:
setattr(logging.Logger, attr, newfunc)
|