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
167
|
# Copyright 2018 ke liang <lokyse@163.com>.
#
# 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.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
import traceback
from logging import config
from typing import Dict, Optional, Any
from deprecated import deprecated
from warnings import warn
from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler, FileSystemEvent
from onaplogging.utils.tools import yaml_to_dict
__all__ = ['patch_loggingYaml'] # rename after the deprecated name changed
class FileEventHandlers(FileSystemEventHandler):
"""Handler of the events in the file system.
Use it to keep and eye on files in the file system.
Extends:
watchdog.events.FileSystemEventHandler
Properties:
filepath : The path to the file to be monitored.
current_config : Defaults to None.
Args:
filepath : The path to the file to be monitored.
"""
@property
def filepath(self):
# type: () -> str
return self._filepath
@property
def current_config(self):
# type: () -> str
return self.currentConfig # deprecated, replace with _current_config
@filepath.setter
def filepath(self, value):
# type: (str) -> str
self._filepath = value
@current_config.setter
def current_config(self, value):
# type: (Dict) -> Dict
self.currentConfig = value
def __init__(self, filepath): # type: (str)
warn("Attribute currentConfig will be replaced with property"
"current_config. Use current_config instead.")
FileSystemEventHandler.__init__(self)
self.filepath = filepath
self.current_config = None
def on_modified(self, event):
# type: (FileSystemEvent) -> None
"""Configuration file actualizer.
When an event occurs in the file system the hadnler's filepath
is taken to update the configuration file. If the actualization
of the config file fails it will keep the old config file.
Args:
event : Represents an event on the file system.
Raises:
Exception : If the actualization of the config file fails.
"""
try:
if event.src_path == self.filepath:
new_config = yaml_to_dict(self.filepath)
print("Reloading logging configuration file %s "
% event.src_path)
config.dictConfig(new_config)
self.current_config = new_config
except Exception:
traceback.print_exc()
print("Reuse the old configuration to avoid this"
"exception terminate program")
if self.current_config:
config.dictConfig(self.current_config)
def _yamlConfig(filepath=None, watchDog=None):
# type: (Optional[str], Optional[Any]) -> None
"""YAML configuration file loader.
Use it to monitor a file status in a directory. The watchdog can monitor
a YAML file status looking for modifications. If the watchdog is provided
start observing the directory. The new configuration file is saved as
current for the later reuse.
Args:
filepath : The path to the file to be monitored. Defaults to None.
watchDog : Monitors a YAML file identifier status. Defaults to None.
Raises:
OSError : If the requested file in the filepath is not a file.
Exception : If watchdog observer setup or YAML coversion fails.
"""
is_file = os.path.isfile(filepath)
if is_file is False:
raise OSError("%s is not a file" % (filepath))
dirpath = os.path.dirname(filepath)
event_handler = None
try:
dictConfig = yaml_to_dict(filepath)
# Dev note: Will send a notify then we could reload logging config
if watchDog:
observer = Observer()
event_handler = FileEventHandlers(filepath)
observer.schedule(event_handler=event_handler,
path=dirpath,
recursive=False)
observer.setDaemon(True)
observer.start()
config.dictConfig(dictConfig)
if event_handler:
event_handler.currentConfig = dictConfig
except Exception:
traceback.print_exc()
def patch_logging_yaml():
# type: () -> None
"""YAML configuration patch.
Adds the YAML configuration file loader
to logging.config module during runtime.
"""
config.yamlConfig = _yamlConfig
@deprecated(reason="Will be removed. Call patch_logging_yaml() instead.")
def patch_loggingYaml():
"""See patch_logging_yaml()"""
patch_logging_yaml()
|