Files
Cheng Zhou 6cefa620e4 权限监控与管理界面全面美化
重新设计权限系统所有 UI 组件的视觉风格,统一配色、圆角、阴影和交互动效:
- 实时概览:统计卡片加图标和渐变色条,健康评分改为环形进度,告警改为卡片式
- 趋势分析:图表卡片加彩色图标标识,ECharts 配色升级为渐变面积填充
- 访问日志:指标卡片带图标,日志审计改为卡片式入口,IP排行前三高亮
- IP属地:工具栏重设计,排行列表前三渐变高亮,指标卡片统一新风格
- 系统级权限:从 el-table 改为自定义卡片列表,模块块独立圆角卡片
- 项目权限配置:空状态引导优化,成员表格加头像,工具栏加背景容器
- 角色概览卡片:加进度条可视化,hover 微动效
- 接口权限矩阵:工具栏分离布局,表格圆角包裹
- 角色管理抽屉:侧边栏选中态渐变,操作行 hover 高亮

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-20 14:36:35 +08:00

138 lines
4.9 KiB
Python

# Copyright 2022 The Ip2Region Authors. All rights reserved.
# Use of this source code is governed by a Apache2.0-style
# license that can be found in the LICENSE file.
# xdb searcher on 2025/10/30
# Author Leon<chenxin619315@gmail.com>
import io
import ip2region.util as util
from typing import Union
class Searcher(object):
'''
xdb searcher class with Both IPv4 and IPv6 supported.
three kinds of cache policy: file / vectorIndex / content
'''
def __init__(self, version: util.Version,
db_path: str, vector_index: bytes, c_buffer: bytes):
self.version = version
self.__db_path = db_path
self.__io_count = 0
if c_buffer != None:
self.__handle = None
self.vector_index = None
self.c_buffer = c_buffer
else:
self.__handle = io.open(db_path, "rb")
self.vector_index = vector_index
self.c_buffer = None
def get_ip_version(self):
return self.version
def get_io_count(self):
return self.__io_count
def search(self, ip: Union[bytes, str]):
# check and parse the string ip
ip_bytes = None
if isinstance(ip, str):
ip_bytes = util.parse_ip(ip)
elif isinstance(ip, bytes):
ip_bytes = ip
else:
raise ValueError("invalid ip address `{}`".format(ip))
# ip version check
if len(ip_bytes) != self.version.byte_num:
raise ValueError("invalid ip address `{}` ({} expected)".format(
util.ip_to_string(ip_bytes), self.version.name))
# reset the global io_count
self.__io_count = 0
# located the segment index block based on the vector index
s_ptr, e_ptr, i0, i1 = 0, 0, ip_bytes[0], ip_bytes[1]
idx = i0 * util.VectorIndexCols * util.VectorIndexSize + i1 * util.VectorIndexSize
if self.vector_index != None:
s_ptr = util.le_get_uint32(self.vector_index, idx)
e_ptr = util.le_get_uint32(self.vector_index, idx + 4)
elif self.c_buffer != None:
offset = util.HeaderInfoLength + idx
s_ptr = util.le_get_uint32(self.c_buffer, offset)
e_ptr = util.le_get_uint32(self.c_buffer, offset + 4)
else:
buff = self.read(util.HeaderInfoLength + idx, util.VectorIndexSize)
s_ptr = util.le_get_uint32(buff, 0)
e_ptr = util.le_get_uint32(buff, 4)
# print("s_ptr: {}, e_ptr: {}".format(s_ptr, e_ptr))
# @Note: ptr validate, zero ptr means source data missing
# so we could just stop here and return an empty string.
if s_ptr == 0 or e_ptr == 0:
return ""
# binary search the segment index block to get the region info
_bytes, _d_bytes = len(ip_bytes), len(ip_bytes) << 1
index_size = self.version.index_size
d_len, d_ptr, l, h = 0, 0, int(0), int((e_ptr - s_ptr) / index_size)
while l <= h:
m = (l + h) >> 1
p = int(s_ptr + m * index_size)
# read the segment index
buff = self.read(p, index_size)
if self.version.ip_sub_compare(ip_bytes, buff, 0) < 0:
h = m - 1
elif self.version.ip_sub_compare(ip_bytes, buff, _bytes) > 0:
l = m + 1
else:
d_len = util.le_get_uint16(buff, _d_bytes)
d_ptr = util.le_get_uint32(buff, _d_bytes + 2)
break
# print("d_len: {}, d_ptr: {}".format(d_len, d_ptr))
# empty match interception.
# and this could be a case.
if d_len == 0:
return ""
# read and return the region info
return self.read(d_ptr, d_len).decode("utf-8")
def read(self, offset: int, length: int):
# check the content buffer first
if self.c_buffer != None:
return self.c_buffer[offset:offset+length]
# load the buffer from file
self.__handle.seek(offset)
self.__io_count += 1
return self.__handle.read(length)
def close(self):
if self.__handle != None:
self.__handle.close()
def __str__(self):
return '{{"version": {}, "db_path": "{}", "v_index": {}, "c_buffer": {}}}'.format(
self.version.name,
self.__db_path,
None if self.vector_index is None else len(self.vector_index),
None if self.c_buffer is None else len(self.c_buffer)
)
# ---
# functions to create Searcher with different cache policy
def new_with_file_only(version: util.Version, db_path: str):
return Searcher(version, db_path, None, None)
def new_with_vector_index(version: util.Version, db_path: str, vector_index: bytes):
return Searcher(version, db_path, vector_index, None)
def new_with_buffer(version: util.Version, c_buffer: bytes):
return Searcher(version, None, None, c_buffer)