mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 17:20:30 +08:00
68 lines
2.8 KiB
Python
68 lines
2.8 KiB
Python
# ========================================================================== #
|
|
# #
|
|
# KVMD - The main Pi-KVM daemon. #
|
|
# #
|
|
# Copyright (C) 2018 Maxim Devaev <mdevaev@gmail.com> #
|
|
# #
|
|
# This program is free software: you can redistribute it and/or modify #
|
|
# it under the terms of the GNU General Public License as published by #
|
|
# the Free Software Foundation, either version 3 of the License, or #
|
|
# (at your option) any later version. #
|
|
# #
|
|
# This program is distributed in the hope that it will be useful, #
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
# GNU General Public License for more details. #
|
|
# #
|
|
# You should have received a copy of the GNU General Public License #
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
|
# #
|
|
# ========================================================================== #
|
|
|
|
|
|
import re
|
|
import asyncio
|
|
import time
|
|
|
|
from typing import Dict
|
|
from typing import AsyncGenerator
|
|
|
|
import systemd.journal
|
|
|
|
|
|
# =====
|
|
class LogReader:
|
|
async def poll_log(self, seek: int, follow: bool) -> AsyncGenerator[Dict, None]:
|
|
reader = systemd.journal.Reader()
|
|
reader.this_boot()
|
|
reader.this_machine()
|
|
reader.log_level(systemd.journal.LOG_DEBUG)
|
|
|
|
services = set(
|
|
service
|
|
for service in systemd.journal.Reader().query_unique("_SYSTEMD_UNIT")
|
|
if re.match(r"kvmd(-\w+)?\.service", service)
|
|
).union(["kvmd.service"])
|
|
|
|
for service in services:
|
|
reader.add_match(_SYSTEMD_UNIT=service)
|
|
if seek > 0:
|
|
reader.seek_realtime(float(time.time() - seek))
|
|
|
|
for entry in reader:
|
|
yield self.__entry_to_record(entry)
|
|
|
|
while follow:
|
|
entry = reader.get_next()
|
|
if entry:
|
|
yield self.__entry_to_record(entry)
|
|
else:
|
|
await asyncio.sleep(1)
|
|
|
|
def __entry_to_record(self, entry: Dict) -> Dict[str, Dict]:
|
|
return {
|
|
"dt": entry["__REALTIME_TIMESTAMP"],
|
|
"service": entry["_SYSTEMD_UNIT"],
|
|
"msg": entry["MESSAGE"].rstrip(),
|
|
}
|