You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					123 lines
				
				3.8 KiB
			
		
		
			
		
	
	
					123 lines
				
				3.8 KiB
			| 
											5 years ago
										 | import logging
 | ||
| 
											6 years ago
										 | import os
 | ||
| 
											5 years ago
										 | import time
 | ||
| 
											5 years ago
										 | from pathlib import Path
 | ||
|  | from logging.handlers import BaseRotatingHandler
 | ||
| 
											6 years ago
										 | 
 | ||
|  | import zmq
 | ||
|  | 
 | ||
| 
											5 years ago
										 | from common.logging_extra import SwagLogger, SwagFormatter, SwagLogFileFormatter
 | ||
| 
											3 years ago
										 | from system.hardware import PC
 | ||
| 
											6 years ago
										 | 
 | ||
| 
											5 years ago
										 | if PC:
 | ||
|  |   SWAGLOG_DIR = os.path.join(str(Path.home()), ".comma", "log")
 | ||
|  | else:
 | ||
|  |   SWAGLOG_DIR = "/data/log/"
 | ||
| 
											6 years ago
										 | 
 | ||
| 
											5 years ago
										 | def get_file_handler():
 | ||
|  |   Path(SWAGLOG_DIR).mkdir(parents=True, exist_ok=True)
 | ||
|  |   base_filename = os.path.join(SWAGLOG_DIR, "swaglog")
 | ||
|  |   handler = SwaglogRotatingFileHandler(base_filename)
 | ||
|  |   return handler
 | ||
| 
											6 years ago
										 | 
 | ||
| 
											5 years ago
										 | class SwaglogRotatingFileHandler(BaseRotatingHandler):
 | ||
|  |   def __init__(self, base_filename, interval=60, max_bytes=1024*256, backup_count=2500, encoding=None):
 | ||
|  |     super().__init__(base_filename, mode="a", encoding=encoding, delay=True)
 | ||
|  |     self.base_filename = base_filename
 | ||
|  |     self.interval = interval # seconds
 | ||
|  |     self.max_bytes = max_bytes
 | ||
|  |     self.backup_count = backup_count
 | ||
|  |     self.log_files = self.get_existing_logfiles()
 | ||
|  |     log_indexes = [f.split(".")[-1] for f in self.log_files]
 | ||
|  |     self.last_file_idx = max([int(i) for i in log_indexes if i.isdigit()] or [-1])
 | ||
|  |     self.last_rollover = None
 | ||
|  |     self.doRollover()
 | ||
| 
											6 years ago
										 | 
 | ||
| 
											5 years ago
										 |   def _open(self):
 | ||
| 
											5 years ago
										 |     self.last_rollover = time.monotonic()
 | ||
| 
											5 years ago
										 |     self.last_file_idx += 1
 | ||
|  |     next_filename = f"{self.base_filename}.{self.last_file_idx:010}"
 | ||
|  |     stream = open(next_filename, self.mode, encoding=self.encoding)
 | ||
|  |     self.log_files.insert(0, next_filename)
 | ||
|  |     return stream
 | ||
|  | 
 | ||
|  |   def get_existing_logfiles(self):
 | ||
|  |     log_files = list()
 | ||
|  |     base_dir = os.path.dirname(self.base_filename)
 | ||
|  |     for fn in os.listdir(base_dir):
 | ||
|  |       fp = os.path.join(base_dir, fn)
 | ||
|  |       if fp.startswith(self.base_filename) and os.path.isfile(fp):
 | ||
|  |         log_files.append(fp)
 | ||
|  |     return sorted(log_files)
 | ||
|  | 
 | ||
|  |   def shouldRollover(self, record):
 | ||
|  |     size_exceeded = self.max_bytes > 0 and self.stream.tell() >= self.max_bytes
 | ||
| 
											5 years ago
										 |     time_exceeded = self.interval > 0 and self.last_rollover + self.interval <= time.monotonic()
 | ||
| 
											5 years ago
										 |     return size_exceeded or time_exceeded
 | ||
|  | 
 | ||
|  |   def doRollover(self):
 | ||
|  |     if self.stream:
 | ||
|  |       self.stream.close()
 | ||
|  |     self.stream = self._open()
 | ||
|  | 
 | ||
|  |     if self.backup_count > 0:
 | ||
|  |       while len(self.log_files) > self.backup_count:
 | ||
|  |         to_delete = self.log_files.pop()
 | ||
|  |         if os.path.exists(to_delete): # just being safe, should always exist
 | ||
|  |           os.remove(to_delete)
 | ||
|  | 
 | ||
|  | class UnixDomainSocketHandler(logging.Handler):
 | ||
| 
											6 years ago
										 |   def __init__(self, formatter):
 | ||
|  |     logging.Handler.__init__(self)
 | ||
|  |     self.setFormatter(formatter)
 | ||
|  |     self.pid = None
 | ||
|  | 
 | ||
|  |   def connect(self):
 | ||
|  |     self.zctx = zmq.Context()
 | ||
|  |     self.sock = self.zctx.socket(zmq.PUSH)
 | ||
|  |     self.sock.setsockopt(zmq.LINGER, 10)
 | ||
|  |     self.sock.connect("ipc:///tmp/logmessage")
 | ||
|  |     self.pid = os.getpid()
 | ||
|  | 
 | ||
|  |   def emit(self, record):
 | ||
|  |     if os.getpid() != self.pid:
 | ||
|  |       self.connect()
 | ||
|  | 
 | ||
|  |     msg = self.format(record).rstrip('\n')
 | ||
|  |     # print("SEND".format(repr(msg)))
 | ||
|  |     try:
 | ||
|  |       s = chr(record.levelno)+msg
 | ||
|  |       self.sock.send(s.encode('utf8'), zmq.NOBLOCK)
 | ||
|  |     except zmq.error.Again:
 | ||
|  |       # drop :/
 | ||
|  |       pass
 | ||
|  | 
 | ||
| 
											6 years ago
										 | 
 | ||
| 
											5 years ago
										 | def add_file_handler(log):
 | ||
|  |   """
 | ||
|  |   Function to add the file log handler to swaglog.
 | ||
|  |   This can be used to store logs when logmessaged is not running.
 | ||
|  |   """
 | ||
|  |   handler = get_file_handler()
 | ||
|  |   handler.setFormatter(SwagLogFileFormatter(log))
 | ||
| 
											6 years ago
										 |   log.addHandler(handler)
 | ||
|  | 
 | ||
|  | 
 | ||
| 
											6 years ago
										 | cloudlog = log = SwagLogger()
 | ||
|  | log.setLevel(logging.DEBUG)
 | ||
|  | 
 | ||
| 
											4 years ago
										 | 
 | ||
| 
											6 years ago
										 | outhandler = logging.StreamHandler()
 | ||
| 
											4 years ago
										 | 
 | ||
|  | print_level = os.environ.get('LOGPRINT', 'warning')
 | ||
|  | if print_level == 'debug':
 | ||
|  |   outhandler.setLevel(logging.DEBUG)
 | ||
|  | elif print_level == 'info':
 | ||
|  |   outhandler.setLevel(logging.INFO)
 | ||
|  | elif print_level == 'warning':
 | ||
|  |   outhandler.setLevel(logging.WARNING)
 | ||
|  | 
 | ||
| 
											6 years ago
										 | log.addHandler(outhandler)
 | ||
| 
											5 years ago
										 | # logs are sent through IPC before writing to disk to prevent disk I/O blocking
 | ||
|  | log.addHandler(UnixDomainSocketHandler(SwagFormatter(log)))
 |