Boolean: Refactor to load attributes on construction.

This commit is contained in:
Chris PeBenito 2018-08-06 15:34:41 -04:00
parent 281e9dd6ce
commit 790140acdb

View File

@ -32,31 +32,31 @@ cdef class Boolean(PolicySymbol):
"""A Boolean.""" """A Boolean."""
cdef sepol.cond_bool_datum_t *handle cdef:
uintptr_t key
str name
readonly object state
@staticmethod @staticmethod
cdef factory(SELinuxPolicy policy, sepol.cond_bool_datum_t *symbol): cdef inline Boolean factory(SELinuxPolicy policy, sepol.cond_bool_datum_t *symbol):
"""Factory function for creating Boolean objects.""" """Factory function for creating Boolean objects."""
r = Boolean() cdef Boolean b = Boolean.__new__(Boolean)
r.policy = policy b.policy = policy
r.handle = symbol b.key = <uintptr_t>symbol
return r b.name = policy.boolean_value_to_name(symbol.s.value - 1)
b.state = <bint>symbol.state
return b
def __str__(self): def __str__(self):
return self.policy.boolean_value_to_name(self.handle.s.value - 1) return self.name
def _eq(self, Boolean other): def _eq(self, Boolean other):
"""Low-level equality check (C pointers).""" """Low-level equality check (C pointers)."""
return self.handle == other.handle return self.key == other.key
@property
def state(self):
"""The default state of the Boolean."""
return <bint> self.handle.state
def statement(self): def statement(self):
"""The policy statement.""" """The policy statement."""
return "bool {0} {1};".format(self, str(self.state).lower()) return "bool {0} {1};".format(self.name, str(self.state).lower())
cdef class Conditional(PolicySymbol): cdef class Conditional(PolicySymbol):