File: //usr/local/bin/python37_/lib/python3.7/site-packages/cssutils/css/cssunknownrule.py
"""CSSUnknownRule implements DOM Level 2 CSS CSSUnknownRule."""
__all__ = ['CSSUnknownRule']
from . import cssrule
import cssutils
import xml.dom
class CSSUnknownRule(cssrule.CSSRule):
"""
Represents an at-rule not supported by this user agent, so in
effect all other at-rules not defined in cssutils.
Format::
@xxx until ';' or block {...}
"""
def __init__(
self, cssText='', parentRule=None, parentStyleSheet=None, readonly=False
):
"""
:param cssText:
of type string
"""
super().__init__(parentRule=parentRule, parentStyleSheet=parentStyleSheet)
self._atkeyword = None
if cssText:
self.cssText = cssText
self._readonly = readonly
def __repr__(self):
return "cssutils.css.{}(cssText={!r})".format(
self.__class__.__name__, self.cssText
)
def __str__(self):
return "<cssutils.css.{} object cssText={!r} at 0x{:x}>".format(
self.__class__.__name__,
self.cssText,
id(self),
)
def _getCssText(self):
"""Return serialized property cssText."""
return cssutils.ser.do_CSSUnknownRule(self)
def _setCssText(self, cssText): # noqa: C901
"""
:exceptions:
- :exc:`~xml.dom.SyntaxErr`:
Raised if the specified CSS string value has a syntax error and
is unparsable.
- :exc:`~xml.dom.InvalidModificationErr`:
Raised if the specified CSS string value represents a different
type of rule than the current one.
- :exc:`~xml.dom.HierarchyRequestErr`:
Raised if the rule cannot be inserted at this point in the
style sheet.
- :exc:`~xml.dom.NoModificationAllowedErr`:
Raised if the rule is readonly.
"""
super()._setCssText(cssText)
tokenizer = self._tokenize2(cssText)
attoken = self._nexttoken(tokenizer, None)
if not attoken or self._type(attoken) != self._prods.ATKEYWORD:
self._log.error(
'CSSUnknownRule: No CSSUnknownRule found: %s' % self._valuestr(cssText),
error=xml.dom.InvalidModificationErr,
)
else:
# for closures: must be a mutable
new = {'nesting': [], 'wellformed': True} # {} [] or ()
def CHAR(expected, seq, token, tokenizer=None):
type_, val, line, col = token
if expected != 'EOF':
if val in '{[(':
new['nesting'].append(val)
elif val in '}])':
opening = {'}': '{', ']': '[', ')': '('}[val]
try:
if new['nesting'][-1] == opening:
new['nesting'].pop()
else:
raise IndexError()
except IndexError:
new['wellformed'] = False
self._log.error(
'CSSUnknownRule: Wrong nesting of ' '{, [ or (.',
token=token,
)
if val in '};' and not new['nesting']:
expected = 'EOF'
seq.append(val, type_, line=line, col=col)
return expected
else:
new['wellformed'] = False
self._log.error(
'CSSUnknownRule: Expected end of rule.', token=token
)
return expected
def FUNCTION(expected, seq, token, tokenizer=None):
# handled as opening (
type_, val, line, col = token
val = self._tokenvalue(token)
if expected != 'EOF':
new['nesting'].append('(')
seq.append(val, type_, line=line, col=col)
return expected
else:
new['wellformed'] = False
self._log.error(
'CSSUnknownRule: Expected end of rule.', token=token
)
return expected
def EOF(expected, seq, token, tokenizer=None):
"close all blocks and return 'EOF'"
for x in reversed(new['nesting']):
closing = {'{': '}', '[': ']', '(': ')'}[x]
seq.append(closing, closing)
new['nesting'] = []
return 'EOF'
def INVALID(expected, seq, token, tokenizer=None):
# makes rule invalid
self._log.error(
'CSSUnknownRule: Bad syntax.', token=token, error=xml.dom.SyntaxErr
)
new['wellformed'] = False
return expected
def STRING(expected, seq, token, tokenizer=None):
type_, val, line, col = token
val = self._stringtokenvalue(token)
if expected != 'EOF':
seq.append(val, type_, line=line, col=col)
return expected
else:
new['wellformed'] = False
self._log.error(
'CSSUnknownRule: Expected end of rule.', token=token
)
return expected
def URI(expected, seq, token, tokenizer=None):
type_, val, line, col = token
val = self._uritokenvalue(token)
if expected != 'EOF':
seq.append(val, type_, line=line, col=col)
return expected
else:
new['wellformed'] = False
self._log.error(
'CSSUnknownRule: Expected end of rule.', token=token
)
return expected
def default(expected, seq, token, tokenizer=None):
type_, val, line, col = token
if expected != 'EOF':
seq.append(val, type_, line=line, col=col)
return expected
else:
new['wellformed'] = False
self._log.error(
'CSSUnknownRule: Expected end of rule.', token=token
)
return expected
# unknown : ATKEYWORD S* ... ; | }
newseq = self._tempSeq()
wellformed, expected = self._parse(
expected=None,
seq=newseq,
tokenizer=tokenizer,
productions={
'CHAR': CHAR,
'EOF': EOF,
'FUNCTION': FUNCTION,
'INVALID': INVALID,
'STRING': STRING,
'URI': URI,
'S': default, # overwrite default default!
},
default=default,
new=new,
)
# wellformed set by parse
wellformed = wellformed and new['wellformed']
# post conditions
if expected != 'EOF':
wellformed = False
self._log.error(
'CSSUnknownRule: No ending ";" or "}" found: '
'%r' % self._valuestr(cssText)
)
elif new['nesting']:
wellformed = False
self._log.error(
'CSSUnknownRule: Unclosed "{", "[" or "(": %r'
% self._valuestr(cssText)
)
# set all
if wellformed:
self.atkeyword = self._tokenvalue(attoken)
self._setSeq(newseq)
cssText = property(
fget=_getCssText,
fset=_setCssText,
doc="(DOM) The parsable textual representation.",
)
type = property(
lambda self: self.UNKNOWN_RULE,
doc="The type of this rule, as defined by a CSSRule " "type constant.",
)
wellformed = property(lambda self: bool(self.atkeyword))