2012-03-30 19:32:11 +00:00
|
|
|
# -*- coding: utf8 -*-
|
2012-01-28 14:52:09 +00:00
|
|
|
"""
|
2012-03-30 19:32:11 +00:00
|
|
|
.. module:: lesscpy.plib.node
|
|
|
|
:synopsis: Base Node
|
2013-07-19 11:21:51 +02:00
|
|
|
|
2012-03-30 19:32:11 +00:00
|
|
|
Copyright (c)
|
|
|
|
See LICENSE for details.
|
2012-07-18 17:28:04 -04:00
|
|
|
.. moduleauthor:: Johann T. Mariusson <jtm@robot.is>
|
2012-01-28 14:52:09 +00:00
|
|
|
"""
|
2012-02-26 15:50:07 +00:00
|
|
|
from lesscpy.lessc import utility
|
2012-03-30 19:32:11 +00:00
|
|
|
|
2013-07-19 11:21:51 +02:00
|
|
|
|
2012-01-28 14:52:09 +00:00
|
|
|
class Node(object):
|
2013-07-19 11:21:51 +02:00
|
|
|
|
2012-03-30 19:32:11 +00:00
|
|
|
def __init__(self, tokens, lineno=0):
|
|
|
|
""" Base Node
|
|
|
|
args:
|
|
|
|
tokens (list): tokenlist
|
|
|
|
lineno (int): Line number of node
|
|
|
|
"""
|
|
|
|
self.tokens = tokens
|
|
|
|
self.lineno = lineno
|
2012-02-26 16:36:13 +00:00
|
|
|
self.parsed = False
|
2013-07-19 11:21:51 +02:00
|
|
|
|
2012-01-28 14:52:09 +00:00
|
|
|
def parse(self, scope):
|
2012-03-30 19:32:11 +00:00
|
|
|
""" Base parse function
|
|
|
|
args:
|
2012-04-03 13:36:08 +00:00
|
|
|
scope (Scope): Current scope
|
2012-03-30 19:32:11 +00:00
|
|
|
returns:
|
|
|
|
self
|
|
|
|
"""
|
2012-02-25 17:08:08 +00:00
|
|
|
return self
|
2013-07-19 11:21:51 +02:00
|
|
|
|
2012-02-26 15:50:07 +00:00
|
|
|
def process(self, tokens, scope):
|
2012-03-30 19:32:11 +00:00
|
|
|
""" Process tokenslist, flattening and parsing it
|
|
|
|
args:
|
|
|
|
tokens (list): tokenlist
|
2012-04-03 13:36:08 +00:00
|
|
|
scope (Scope): Current scope
|
2012-03-30 19:32:11 +00:00
|
|
|
returns:
|
|
|
|
list
|
2012-02-26 15:50:07 +00:00
|
|
|
"""
|
|
|
|
while True:
|
|
|
|
tokens = list(utility.flatten(tokens))
|
|
|
|
done = True
|
|
|
|
if any(t for t in tokens if hasattr(t, 'parse')):
|
2013-07-19 11:21:51 +02:00
|
|
|
tokens = [t.parse(scope)
|
|
|
|
if hasattr(t, 'parse')
|
2012-02-26 15:50:07 +00:00
|
|
|
else t
|
|
|
|
for t in tokens]
|
|
|
|
done = False
|
2013-12-18 13:19:59 +01:00
|
|
|
if any(t for t in tokens if (utility.is_variable(t)) or str(type(t)) == "<class 'lesscpy.plib.variable.Variable'>"):
|
2012-02-26 15:50:07 +00:00
|
|
|
tokens = self.replace_variables(tokens, scope)
|
|
|
|
done = False
|
2013-07-19 11:21:51 +02:00
|
|
|
if done:
|
|
|
|
break
|
2012-02-26 15:50:07 +00:00
|
|
|
return tokens
|
2013-07-19 11:21:51 +02:00
|
|
|
|
2012-02-26 15:50:07 +00:00
|
|
|
def replace_variables(self, tokens, scope):
|
2012-03-30 19:32:11 +00:00
|
|
|
""" Replace variables in tokenlist
|
|
|
|
args:
|
|
|
|
tokens (list): tokenlist
|
2012-04-03 13:36:08 +00:00
|
|
|
scope (Scope): Current scope
|
2012-03-30 19:32:11 +00:00
|
|
|
returns:
|
|
|
|
list
|
2012-02-26 15:50:07 +00:00
|
|
|
"""
|
2013-12-18 13:19:59 +01:00
|
|
|
list = []
|
|
|
|
for t in tokens:
|
|
|
|
if utility.is_variable(t):
|
|
|
|
list.append(scope.swap(t))
|
|
|
|
elif str(type(t)) == "<class 'lesscpy.plib.variable.Variable'>":
|
|
|
|
list.append(scope.swap(t.name))
|
|
|
|
else:
|
|
|
|
list.append(t)
|
|
|
|
return list
|
2012-02-25 17:08:08 +00:00
|
|
|
|
2012-03-03 09:58:47 +00:00
|
|
|
def fmt(self, fills):
|
2012-03-30 19:32:11 +00:00
|
|
|
""" Format node
|
|
|
|
args:
|
|
|
|
fills (dict): replacements
|
|
|
|
returns:
|
|
|
|
str
|
|
|
|
"""
|
2012-02-26 15:50:07 +00:00
|
|
|
raise ValueError('No defined format')
|