207 lines
5.9 KiB
Python
Raw Permalink Normal View History

2012-02-12 11:50:57 +00:00
"""
2012-03-30 16:12:24 +00:00
.. module:: lesscpy.lessc.scope
:synopsis: Scope class.
2013-07-19 11:21:51 +02:00
2012-03-30 16:12:24 +00:00
Copyright (c)
See LICENSE for details.
2012-07-18 17:28:04 -04:00
.. moduleauthor:: Johann T. Mariusson <jtm@robot.is>
2012-02-12 11:50:57 +00:00
"""
2012-02-26 15:50:07 +00:00
from . import utility
2013-07-19 11:21:51 +02:00
2012-02-12 11:50:57 +00:00
class Scope(list):
2013-07-19 11:21:51 +02:00
2012-03-30 16:12:24 +00:00
""" Scope class. A stack implementation.
"""
2013-07-19 11:21:51 +02:00
2012-02-12 13:00:08 +00:00
def __init__(self, init=False):
2012-03-30 16:12:24 +00:00
"""Scope
Args:
init (bool): Initiate scope
"""
2012-07-18 17:34:48 -04:00
super(Scope, self).__init__()
2012-02-12 12:11:15 +00:00
self._mixins = {}
2013-07-19 11:21:51 +02:00
if init:
self.push()
2012-04-09 09:52:46 +00:00
self.deferred = False
2012-06-04 07:27:53 +00:00
self.real = []
2013-07-19 11:21:51 +02:00
2012-02-12 11:50:57 +00:00
def push(self):
2012-03-30 16:12:24 +00:00
"""Push level on scope
2012-02-12 13:00:08 +00:00
"""
2012-02-12 11:50:57 +00:00
self.append({
2013-07-19 11:21:51 +02:00
'__variables__': {},
'__blocks__': [],
2012-02-26 13:29:22 +00:00
'__names__': [],
2012-02-12 11:50:57 +00:00
'__current__': None
})
2013-07-19 11:21:51 +02:00
2012-02-12 12:00:56 +00:00
@property
2012-02-12 11:50:57 +00:00
def current(self):
return self[-1]['__current__']
2013-07-19 11:21:51 +02:00
2012-02-12 12:00:56 +00:00
@current.setter
def current(self, value):
self[-1]['__current__'] = value
2013-07-19 11:21:51 +02:00
2012-02-25 18:28:05 +00:00
@property
def scopename(self):
2012-03-30 16:12:24 +00:00
"""Current scope name as list
Returns:
list
2012-02-26 17:04:50 +00:00
"""
2013-07-19 11:21:51 +02:00
return [r['__current__']
for r in self
2012-02-26 17:04:50 +00:00
if r['__current__']]
2012-02-12 12:11:15 +00:00
def add_block(self, block):
2012-03-30 16:12:24 +00:00
"""Add block element to scope
Args:
block (Block): Block object
2012-02-12 12:11:15 +00:00
"""
2012-02-26 13:29:22 +00:00
self[-1]['__blocks__'].append(block)
2012-03-01 16:23:22 +00:00
self[-1]['__names__'].append(block.raw())
2013-07-19 11:21:51 +02:00
def remove_block(self, block, index="-1"):
"""Remove block element from scope
Args:
block (Block): Block object
"""
self[index]["__blocks__"].remove(block)
self[index]["__names__"].remove(block.raw())
2012-02-12 12:11:15 +00:00
def add_mixin(self, mixin):
2012-03-30 16:12:24 +00:00
"""Add mixin to scope
Args:
mixin (Mixin): Mixin object
2012-02-12 12:11:15 +00:00
"""
2012-04-08 13:17:22 +00:00
raw = mixin.tokens[0][0].raw()
2012-03-24 18:33:19 +00:00
if raw in self._mixins:
self._mixins[raw].append(mixin)
else:
self._mixins[raw] = [mixin]
2013-07-19 11:21:51 +02:00
2012-02-12 13:00:08 +00:00
def add_variable(self, variable):
2012-03-30 16:12:24 +00:00
"""Add variable to scope
Args:
variable (Variable): Variable object
2012-02-12 13:00:08 +00:00
"""
2012-02-25 17:08:08 +00:00
self[-1]['__variables__'][variable.name] = variable
2013-07-19 11:21:51 +02:00
2012-02-12 13:00:08 +00:00
def variables(self, name):
2012-03-30 16:12:24 +00:00
"""Search for variable by name. Searches scope top down
Args:
name (string): Search term
Returns:
Variable object OR False
2012-02-12 13:00:08 +00:00
"""
2013-07-19 11:21:51 +02:00
if isinstance(name, tuple):
2012-03-23 17:16:40 +00:00
name = name[0]
if name.startswith('@{'):
name = '@' + name[2:-1]
2012-02-12 13:00:08 +00:00
i = len(self)
while i >= 0:
i -= 1
if name in self[i]['__variables__']:
return self[i]['__variables__'][name]
return False
2013-07-19 11:21:51 +02:00
2012-02-12 12:11:15 +00:00
def mixins(self, name):
2012-03-30 16:12:24 +00:00
""" Search mixins for name.
Allow '>' to be ignored. '.a .b()' == '.a > .b()'
Args:
name (string): Search term
Returns:
Mixin object list OR False
2012-03-18 13:39:57 +00:00
"""
m = self._smixins(name)
2013-07-19 11:21:51 +02:00
if m:
return m
2012-03-18 13:39:57 +00:00
return self._smixins(name.replace('?>?', ' '))
2013-07-19 11:21:51 +02:00
2012-03-18 13:39:57 +00:00
def _smixins(self, name):
2012-03-30 16:12:24 +00:00
"""Inner wrapper to search for mixins by name.
2012-02-12 11:50:57 +00:00
"""
2013-07-19 11:21:51 +02:00
return (self._mixins[name]
2012-02-12 12:11:15 +00:00
if name in self._mixins
else False)
2013-07-19 11:21:51 +02:00
2012-02-25 18:28:05 +00:00
def blocks(self, name):
2012-03-18 13:30:33 +00:00
"""
2012-03-18 14:21:58 +00:00
Search for defined blocks recursively.
2012-03-30 16:12:24 +00:00
Allow '>' to be ignored. '.a .b' == '.a > .b'
Args:
name (string): Search term
Returns:
Block object OR False
2012-03-18 13:30:33 +00:00
"""
b = self._blocks(name)
2013-07-19 11:21:51 +02:00
if b:
return b
2012-03-18 13:30:33 +00:00
return self._blocks(name.replace('?>?', ' '))
2013-07-19 11:21:51 +02:00
2012-03-18 13:30:33 +00:00
def _blocks(self, name):
2012-03-30 16:12:24 +00:00
"""Inner wrapper to search for blocks by name.
2012-02-25 18:28:05 +00:00
"""
i = len(self)
while i >= 0:
i -= 1
2012-02-26 13:29:22 +00:00
if name in self[i]['__names__']:
for b in self[i]['__blocks__']:
2012-03-18 14:21:58 +00:00
r = b.raw()
if r and r == name:
2012-02-26 13:29:22 +00:00
return b
2012-02-28 20:49:26 +00:00
else:
for b in self[i]['__blocks__']:
2012-03-18 14:21:58 +00:00
r = b.raw()
if r and name.startswith(r):
2012-02-28 20:49:26 +00:00
b = utility.blocksearch(b, name)
2013-07-19 11:21:51 +02:00
if b:
return b
2012-02-25 18:28:05 +00:00
return False
2013-07-19 11:21:51 +02:00
2012-03-03 19:58:56 +00:00
def update(self, scope, at=0):
2012-03-30 16:12:24 +00:00
"""Update scope. Add another scope to this one.
Args:
scope (Scope): Scope object
Kwargs:
at (int): Level to update
2012-02-12 12:11:15 +00:00
"""
2012-03-03 19:58:56 +00:00
if hasattr(scope, '_mixins') and not at:
self._mixins.update(scope._mixins)
self[at]['__variables__'].update(scope[at]['__variables__'])
self[at]['__blocks__'].extend(scope[at]['__blocks__'])
self[at]['__names__'].extend(scope[at]['__names__'])
2013-07-19 11:21:51 +02:00
2012-02-26 15:50:07 +00:00
def swap(self, name):
2012-03-30 16:12:24 +00:00
""" Swap variable name for variable value
Args:
name (str): Variable name
Returns:
Variable value (Mixed)
2012-02-26 15:50:07 +00:00
"""
if name.startswith('@@'):
var = self.variables(name[1:])
2013-07-19 11:21:51 +02:00
if var is False:
2012-03-30 16:12:24 +00:00
raise SyntaxError('Unknown variable %s' % name)
2012-02-26 15:50:07 +00:00
name = '@' + utility.destring(var.value[0])
var = self.variables(name)
if var is False:
raise SyntaxError('Unknown variable %s' % name)
elif name.startswith('@{'):
var = self.variables('@' + name[2:-1])
if var is False:
raise SyntaxError('Unknown escaped variable %s' % name)
try:
if isinstance(var.value[0], basestring): # py3
var.value[0] = utility.destring(var.value[0])
except NameError:
if isinstance(var.value[0], str): # py2
var.value[0] = utility.destring(var.value[0])
else:
var = self.variables(name)
if var is False:
raise SyntaxError('Unknown variable %s' % name)
2012-02-26 15:50:07 +00:00
return var.value