/usr/share/pyshared/nevow/_flat.py is in python-nevow 0.10.0-4build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 | # -*- test-case-name: nevow.test.test_newflat -*-
# Copyright (c) 2008 Divmod.
# See LICENSE for details.
"""
Context-free flattener/serializer for rendering Python objects, possibly
complex or arbitrarily nested, as strings.
Immediate future plans:
- Deprecate IRenderer and getFlattener cases in _flatten
- Write a precompiler which is more friendly towards _flatten
- Write a pretty "render stack" formatter for the information in
FlattenerError._roots
"""
from sys import exc_info
from types import GeneratorType
from traceback import extract_tb, format_list
from twisted.internet.defer import Deferred
from nevow.inevow import IRenderable, IRenderer, IRendererFactory, IData
from nevow.inevow import IRequest
from nevow.url import URL
from nevow.stan import _PrecompiledSlot, Unset, Proto, Tag, Entity, slot, xml
from nevow.stan import directive
from nevow.context import WovenContext
from nevow.flat.flatstan import allowSingleton
from nevow.flat import flattenFactory
from nevow.flat.ten import getFlattener
from nevow.tags import raw
class FlattenerError(Exception):
"""
An error occurred while flattening an object.
@ivar _roots: A list of the objects on the flattener's stack at the time
the unflattenable object was encountered. The first element is least
deeply nested object and the last element is the most deeply nested.
"""
def __init__(self, exception, roots, traceback):
self._exception = exception
self._roots = roots
self._traceback = traceback
Exception.__init__(self, exception, roots, traceback)
def _formatRoot(self, obj):
"""
Convert an object from C{self._roots} to a string suitable for
inclusion in a render-traceback (like a normal Python traceback, but
can include "frame" source locations which are not in Python source
files).
@param obj: Any object which can be a render step I{root}.
Typically, L{Tag}s, strings, and other simple Python types.
@return: A string representation of C{obj}.
@rtype: L{str}
"""
if isinstance(obj, (str, unicode)):
# It's somewhat unlikely that there will ever be a str in the roots
# list. However, something like a MemoryError during a str.replace
# call (eg, replacing " with ") could possibly cause this.
# Likewise, UTF-8 encoding a unicode string to a byte string might
# fail like this.
if len(obj) > 40:
if isinstance(obj, str):
prefix = 1
else:
prefix = 2
return repr(obj[:20])[:-1] + '<...>' + repr(obj[-20:])[prefix:]
else:
return repr(obj)
elif isinstance(obj, Tag):
if obj.filename is None:
return 'Tag <' + obj.tagName + '>'
else:
return "File \"%s\", line %d, column %d, in \"%s\"" % (
obj.filename, obj.lineNumber,
obj.columnNumber, obj.tagName)
else:
return repr(obj)
def __repr__(self):
if self._roots:
roots = ' ' + '\n '.join([
self._formatRoot(r) for r in self._roots]) + '\n'
else:
roots = ''
if self._traceback:
traceback = '\n'.join([
line
for entry in format_list(self._traceback)
for line in entry.splitlines()]) + '\n'
else:
traceback = ''
return (
'Exception while flattening:\n' +
roots + traceback +
self._exception.__class__.__name__ + ': ' +
str(self._exception) + '\n')
def __str__(self):
return repr(self)
class UnfilledSlot(Exception):
"""
During flattening, a slot with no associated data was encountered.
"""
def __str__(self):
return 'UnfilledSlot(%r)' % self.args
class UnsupportedType(Exception):
"""
During flattening, an object of a type which cannot be flattened was
encountered.
"""
def __str__(self):
return "UnsupportedType(%r)" % self.args
def escapedData(data, inAttribute, inXML):
"""
Escape a string for inclusion in a document.
@type data: C{str}
@param data: The string to escape.
@type inAttribute: C{bool}
@param inAttribute: A flag which, if set, indicates that the string should
be quoted for use as the value of an XML tag value.
@type inXML: C{bool}
@param inXML: A flag which, if set, indicates that the string should be
quoted for use as an XML text node or as the value of an XML tag value.
@rtype: C{str}
@return: The quoted form of C{data}.
"""
if inXML or inAttribute:
data = data.replace('&', '&'
).replace('<', '<'
).replace('>', '>')
if inAttribute:
data = data.replace('"', '"')
return data
def _ctxForRequest(request, slotData, renderFactory, inAttribute):
"""
Create a L{WovenContext} which can be used to by the
backwards-compatibility support of L{IRenderer} and L{getFlattener} to
continue rendering a response for the given request.
"""
ctx = WovenContext()
ctx.isAttrib = inAttribute
ctx.remember(None, IData) # Even though IData(ctx) can never return None,
# remembering None here is somehow very important
# for preventing a TypeError from happening when
# ctx.locate(IData) is invoked, since it is
# sometimes invoked from a codepath other than
# __conform__. -exarkun
ctx.remember(request, IRequest)
for slotGroup in slotData:
if slotGroup is not None:
for k, v in slotGroup.items():
ctx.fillSlots(k, v)
if renderFactory is not None:
ctx.remember(_OldRendererFactory(renderFactory), IRendererFactory)
return ctx
def _getSlotValue(name, slotData):
"""
Find the value of the named slot in the given stack of slot data.
"""
for slotFrame in slotData[::-1]:
if slotFrame is not None and name in slotFrame:
return slotFrame[name]
else:
raise UnfilledSlot(name)
def _flatten(request, root, slotData, renderFactory, inAttribute, inXML):
"""
Make C{root} slightly more flat by yielding all or part of it as strings or
generators.
@param request: A request object which will be passed to
L{IRenderable.render}.
@param root: An object to be made flatter. This may be of type C{unicode},
C{str}, L{raw}, L{Proto}, L{xml}, L{slot}, L{_PrecompiledSlot}, L{Tag},
L{URL}, L{tuple}, L{list}, L{GeneratorType}, L{Entity}, L{Deferred}, or
it may be an object which is adaptable to L{IRenderable}. Deprecated
backwards-compatibility support is also present for objects adaptable
to L{IRenderer} or for which a flattener has been registered via
L{registerFlattener}.
@param slotData: A C{list} of C{dict} mapping C{str} slot names to data
with which those slots will be replaced.
@param inAttribute: A flag which, if set, indicates that C{str} and
C{unicode} instances encountered must be quoted as for XML tag
attribute values.
@param inXML: A flag which, if set, indicates that C{str} and C{unicode}
instances encountered must be quoted as for XML text node data.
@return: An iterator which yields C{str}, L{Deferred}, and more iterators
of the same type.
"""
if isinstance(root, unicode):
root = root.encode('utf-8')
elif isinstance(root, WovenContext):
# WovenContext is supported via the getFlattener case, but that is a
# very slow case. Checking here is an optimization. It also lets us
# avoid the deprecation warning which would be emitted whenever a
# precompiled document was flattened, since those contain WovenContexts
# for tags with render directives. -exarkun
inAttribute = root.isAttrib
inXML = True
root = root.tag
if isinstance(root, raw):
root = str(root)
if inAttribute:
root = root.replace('"', '"')
yield root
elif isinstance(root, Proto):
root = str(root)
if root:
if root in allowSingleton:
yield '<' + root + ' />'
else:
yield '<' + root + '></' + root + '>'
elif isinstance(root, str):
yield escapedData(root, inAttribute, inXML)
elif isinstance(root, slot):
slotValue = _getSlotValue(root.name, slotData)
yield _flatten(request, slotValue, slotData, renderFactory,
inAttribute, inXML)
elif isinstance(root, _PrecompiledSlot):
slotValue = _getSlotValue(root.name, slotData)
yield _flatten(request, slotValue, slotData, renderFactory,
root.isAttrib, inXML)
elif isinstance(root, Tag):
if root.pattern is Unset or root.pattern is None:
slotData.append(root.slotData)
if root.render is Unset:
if not root.tagName:
for element in _flatten(request, root.children,
slotData, renderFactory,
False, True):
yield element
else:
yield '<'
if isinstance(root.tagName, unicode):
tagName = root.tagName.encode('ascii')
else:
tagName = str(root.tagName)
yield tagName
for k, v in root.attributes.iteritems():
if isinstance(k, unicode):
k = k.encode('ascii')
yield " " + k + "=\""
for element in _flatten(request, v, slotData,
renderFactory, True, True):
yield element
yield "\""
if root.children or tagName not in allowSingleton:
yield '>'
for element in _flatten(request, root.children,
slotData, renderFactory,
False, True):
yield element
yield '</' + tagName + '>'
else:
yield ' />'
else:
if isinstance(root.render, directive):
rendererName = root.render.name
else:
rendererName = root.render
root = root.clone(False)
del root._specials['render']
result = renderFactory.renderer(rendererName)(request, root)
yield _flatten(request, result, slotData, renderFactory, None,
inXML)
slotData.pop()
elif isinstance(root, URL):
yield escapedData(str(root), inAttribute, inXML)
elif isinstance(root, (tuple, list, GeneratorType)):
for element in root:
yield _flatten(request, element, slotData, renderFactory,
inAttribute, inXML)
elif isinstance(root, Entity):
yield '&#'
yield root.num
yield ';'
elif isinstance(root, xml):
if isinstance(root.content, unicode):
yield root.content.encode('utf-8')
else:
yield root.content
elif isinstance(root, Deferred):
yield root.addCallback(
lambda result: (result, _flatten(request, result, slotData,
renderFactory, inAttribute,
inXML)))
else:
renderable = IRenderable(root, None)
if renderable is not None:
# [] for the slotData parameter of this call to _flatten means
# slots returned by this renderable's render method won't be filled
# with data which has so far accumulated in the slotData stack.
# This seems like a reasonable thing to me, since a renderable is a
# piece of Python code. It should be isolated from this other
# stuff, which is primarily data. -exarkun
yield _flatten(request, renderable.render(request), [], renderable,
inAttribute, inXML)
else:
renderer = IRenderer(root, None)
if renderer is not None:
ctx = _ctxForRequest(request, slotData, None, inAttribute)
results = []
synchronous = []
flattened = flattenFactory(renderer, ctx, results.append,
lambda ign: None)
def cbFlattened(result):
synchronous.append(None)
return (result, (str(s) for s in results))
flattened.addCallback(cbFlattened)
if synchronous:
yield ''.join(map(str, results))
else:
yield flattened
else:
flattener = getFlattener(root)
if flattener is not None:
ctx = _ctxForRequest(request, slotData, renderFactory,
inAttribute)
yield _flatten(request, flattener(root, ctx), slotData,
renderFactory, False, False)
else:
raise UnsupportedType(root)
class _OldRendererFactory(object):
"""
Adapter from L{IRenderable} to L{IRenderFactory}, used to provide support
for using the old flattener on new kinds of view objects.
"""
def __init__(self, newRendererFactory):
self.newRendererFactory = newRendererFactory
def renderer(self, context, name):
f = self.newRendererFactory.renderer(name)
def render(ctx, data):
return f(
IRequest(ctx, None),
ctx.tag,
)
return render
def flatten(request, root, inAttribute, inXML):
"""
Make C{root} into an iterable of C{str} and L{Deferred}.
@param request: A request object which will be passed to
L{IRenderable.render}.
@param root: An object to be made flatter. This may be of type C{unicode},
C{str}, L{Proto}, L{slot}, L{Tag}, L{URL}, L{tuple}, L{list},
L{Entity}, L{Deferred}, or it may be an object which is adaptable to
L{IRenderable}.
@type inAttribute: C{bool}
@param inAttribute: A flag which, if set, indicates that the string should
be quoted for use as the value of an XML tag value.
@type inXML: C{bool}
@param inXML: A flag which, if set, indicates that the string should be
quoted for use as an XML text node or as the value of an XML tag value.
@return: An iterator which yields objects of type C{str} and L{Deferred}.
A L{Deferred} is only yielded when one is encountered in the process of
flattening C{root}. The returned iterator must not be iterated again
until the L{Deferred} is called back.
"""
stack = [_flatten(request, root, [], None, inAttribute, inXML)]
while stack:
try:
# In Python 2.5, after an exception, a generator's gi_frame is
# None.
frame = stack[-1].gi_frame
element = stack[-1].next()
except StopIteration:
stack.pop()
except Exception, e:
stack.pop()
roots = []
for generator in stack:
roots.append(generator.gi_frame.f_locals['root'])
roots.append(frame.f_locals['root'])
raise FlattenerError(e, roots, extract_tb(exc_info()[2]))
else:
if type(element) is str:
yield element
elif isinstance(element, Deferred):
def cbx((original, toFlatten)):
stack.append(toFlatten)
return original
yield element.addCallback(cbx)
else:
stack.append(element)
def _flattensome(state, write, schedule, result):
"""
Take strings from an iterator and pass them to a writer function.
@param state: An iterator of C{str} and L{Deferred}. C{str} instances will
be passed to C{write}. L{Deferred} instances will be waited on before
resuming iteration of C{state}.
@param write: A callable which will be invoked with each C{str}
produced by iterating C{state}.
@param schedule: A callable which will arrange for a function to be called
with some positional arguments I{later}. This is used to avoid
unbounded call stack depth due to already-fired L{Deferred}s produced
by C{state}.
@param result: A L{Deferred} which will be called back when C{state} has
been completely flattened into C{write} or which will be errbacked if
an unexpected exception occurs.
@return: C{None}
"""
while True:
try:
element = state.next()
except StopIteration:
result.callback(None)
except:
result.errback()
else:
if type(element) is str:
write(element)
continue
else:
def cby(original):
schedule(_flattensome, state, write, schedule, result)
return original
element.addCallbacks(cby, result.errback)
break
def _schedule(f, *a):
"""
Scheduler for use with L{_flattensome} which uses L{IReactorTime.callLater}
to schedule calls. This works around the fact that L{Deferred} can exceed
the stack limit in certain cases.
"""
# XXX SUCKY
from twisted.internet import reactor
reactor.callLater(0, f, *a)
def deferflatten(request, root, inAttribute, inXML, write):
"""
Incrementally write out a string representation of C{root} using C{write}.
In order to create a string representation, C{root} will be decomposed into
simpler objects which will themselves be decomposed and so on until strings
or objects which can easily be converted to strings are encountered.
@param request: A request object which will be passed to the C{render}
method of any L{IRenderable} provider which is encountered.
@param root: An object to be made flatter. This may be of type C{unicode},
C{str}, L{raw}, L{Proto}, L{xml}, L{slot}, L{_PrecompiledSlot}, L{Tag},
L{URL}, L{tuple}, L{list}, L{GeneratorType}, L{Entity}, L{Deferred}, or
it may be an object which is adaptable to L{IRenderable}. Deprecated
backwards-compatibility support is also present for objects adaptable
to L{IRenderer} or for which a flattener has been registered via
L{registerFlattener}.
@type inAttribute: C{bool}
@param inAttribute: A flag which, if set, indicates that the string should
be quoted for use as the value of an XML tag value.
@type inXML: C{bool}
@param inXML: A flag which, if set, indicates that the string should be
quoted for use as an XML text node or as the value of an XML tag value.
@param write: A callable which will be invoked with each C{str}
produced by flattening C{root}.
@return: A L{Deferred} which will be called back when C{root} has
been completely flattened into C{write} or which will be errbacked if
an unexpected exception occurs.
"""
result = Deferred()
state = flatten(request, root, inAttribute, inXML)
_flattensome(state, write, _schedule, result)
return result
|