d(・ω・d) 微分!(∫・ω・)∫ 積分!∂(・ω・∂) 偏微分!(∮・ω・)∮ 沿閉曲線的積分!(∬・ω・)∬ 重積分!∇(・ω・∇)梯度!∇・(・ω・∇・)散度!∇×(・ω・∇×)旋度!Δ(・ω・Δ)拉普拉斯!#゚Å゚)⊂彡☆))゚Д゚)・∵ლ(◉◞౪◟◉ )ლ千言萬語,不如一個「表情符號(emoji)」簡單生動又有趣!ಠ▃ಠ生氣、-`д´-憤怒、(¬_¬)無言、(•͈⌔•͈⑅)傷心、哭、開心、大笑、可愛、困惑、發呆、大眼睛、驚呀、跳舞、興奮、奔跑..≧Д≦ (;≧皿≦) (⁎˃ᆺ˂) ╬ Ò ‸ Ó) <(`^´)> ( >д<) (ꐦ ಠ皿ಠ ) (`Д´) (;`O´)o o(-`д´- 。) ( ˃⌂˂ ) (°ㅂ° ╬) (ʘ言ʘ╬) (Ò 皿 Ó ╬) (-`д´-) 눈_눈 (⋋▂⋌) (¬▂¬) ಠ▃ಠ (>x<) ╰(‵□′)╯
| Current Path : /lib64/python3.9/site-packages/setools/ |
| Current File : //lib64/python3.9/site-packages/setools/boundsquery.py |
# Copyright 2016, Tresys Technology, LLC
#
# SPDX-License-Identifier: LGPL-2.1-only
#
import logging
import re
from typing import Iterable
from .descriptors import CriteriaDescriptor, CriteriaSetDescriptor
from .policyrep import Bounds, BoundsRuletype
from .query import PolicyQuery
from .util import match_regex
class BoundsQuery(PolicyQuery):
"""
Query *bounds statements.
Parameter:
policy The policy to query.
Keyword Parameters/Class attributes:
ruletype The rule type(s) to match.
"""
ruletype = CriteriaSetDescriptor(enum_class=BoundsRuletype)
parent = CriteriaDescriptor("parent_regex")
parent_regex: bool = False
child = CriteriaDescriptor("child_regex")
child_regex: bool = False
def __init__(self, policy, **kwargs) -> None:
super(BoundsQuery, self).__init__(policy, **kwargs)
self.log = logging.getLogger(__name__)
def results(self) -> Iterable[Bounds]:
"""Generator which yields all matching *bounds statements."""
self.log.info("Generating bounds results from {0.policy}".format(self))
self.log.debug("Ruletypes: {0.ruletype}".format(self))
self.log.debug("Parent: {0.parent!r}, regex: {0.parent_regex}".format(self))
self.log.debug("Child: {0.child!r}, regex: {0.child_regex}".format(self))
for b in self.policy.bounds():
if self.ruletype and b.ruletype not in self.ruletype:
continue
if self.parent and not match_regex(
b.parent,
self.parent,
self.parent_regex):
continue
if self.child and not match_regex(
b.child,
self.child,
self.child_regex):
continue
yield b