Spaces:
Building
Building
File size: 14,853 Bytes
f5f3483 |
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 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 |
# Copyright 2024 The etils Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""HTML builder for Python objects."""
from __future__ import annotations
import collections.abc
import dataclasses
import functools
import html
import inspect
import types
from typing import Any, Callable, ClassVar, Generic, Type, TypeVar, Union
import uuid
from etils import enp
from etils.ecolab.inspects import attrs
from etils.ecolab.inspects import html_helper as H
# Import both C++ and Python API
from google.protobuf.internal import containers
_T = TypeVar('_T')
# All nodes are loaded globally and never cleared. Indeed, it's not possible
# to know when the Javascript is deleted (cell is cleared).
# It could create RAM issues by keeping object alive for too long. Could
# use weakref if this become an issue in practice.
_ALL_NODES: dict[str, Node] = {}
@dataclasses.dataclass
class Node:
"""Node base class.
Each node correspond to a `<li>` element in the nested tree. When the node
is expanded, `inner_html` is add the child nodes.
Attributes:
id: HTML id used to identify the node.
"""
id: str = dataclasses.field(init=False)
def __post_init__(self):
# TODO(epot): Could likely have shorter/smarter uuids
self.id = str(uuid.uuid1())
_ALL_NODES[self.id] = self
@classmethod
def from_id(cls, id_: str) -> Node:
"""Returns the cached node from the HTML id."""
return _ALL_NODES[id_]
@classmethod
def from_obj(cls, obj: object, *, name: str = '') -> ObjectNode:
"""Factory of a node from any object."""
for sub_cls in [
BuiltinNode,
FnNode,
MappingNode,
SequenceNode,
SetNode,
ClsNode,
ArrayNode,
ExceptionNode,
ObjectNode,
]:
if isinstance(obj, sub_cls.MATCH_TYPES):
break
else:
raise TypeError(f'Unexpected object {obj!r}.')
return sub_cls(obj=obj, name=name) # pytype: disable=wrong-arg-types
@property
def header_html(self) -> str:
"""`<li>` one-line content."""
raise NotImplementedError
@property
def inner_html(self) -> str:
"""Inner content when the item is expanded."""
raise NotImplementedError
def _li(self, *, clickable: bool = True) -> Callable[..., str]:
"""`<li>` section, called inside `header_html`."""
if clickable:
class_ = 'register-onclick-expand'
else:
class_ = 'caret-invisible'
def apply(*content):
# TODO(epot): Non-clickable nodes likely do not need ids
return H.li(id=self.id)(H.span(class_=['caret', class_])(*content))
return apply
@dataclasses.dataclass
class SubsectionNode(Node):
"""Expandable subsection of an object (to group object attributes).
Example: `[[Methods]]`,...
```
> obj:
> ...
> [[Methods]]
> ...
> [[Special attributes]]
> ...
```
"""
name: str
children: list[Node]
@property
def header_html(self) -> str:
return self._li()(H.span(class_=['preview'])(f'[[{self.name}]]'))
@property
def inner_html(self) -> str:
children = [c.header_html for c in self.children]
return H.ul(class_=['collapsible'])(*children)
@dataclasses.dataclass
class HtmlNode(Node):
"""Simple non clickable node that only displaying HTML."""
html: str
@property
def header_html(self) -> str:
return self._li(clickable=False)(self.html)
@dataclasses.dataclass
class KeyValNode(Node):
"""The (k, v) items for `list`, `dict`."""
key: object
value: object
# TODO(epot):
# * Cleaner implementation.
# * Make both key and value expandable (when not built-in) ?
@property
def header_html(self) -> str:
# * Built-ins are not be expandable.
is_builtin = isinstance(self.value, BuiltinNode.MATCH_TYPES)
return self._li(clickable=not is_builtin)(
_obj_html_repr(self.key), ': ', _obj_html_repr(self.value)
)
@property
def inner_html(self) -> str:
return Node.from_obj(self.value).inner_html
@dataclasses.dataclass
class ObjectNode(Node, Generic[_T]):
"""Any Python objects."""
obj: _T
name: str
MATCH_TYPES: ClassVar[type[Any] | tuple[type[Any], ...]] = object
@property
def header_html(self) -> str:
if self.is_root:
prefix = ''
else:
prefix = f'{self.name}: '
return self._li(clickable=not self.is_leaf)(
H.span(class_=['key-main'])(f'{prefix}{self.header_repr}')
)
@property
def inner_html(self) -> str:
children = [c.header_html for c in self.children]
return H.ul(class_=['collapsible'])(*children)
@property
def children(self) -> list[Node]:
"""Extract all attributes."""
children = [
Node.from_obj(v, name=k) for k, v in attrs.get_attrs(self.obj).items()
]
magic_attrs = []
fn_attrs = []
private_attrs = []
val_attrs = []
for c in children:
if c.name.startswith('__') and c.name.endswith('__'):
magic_attrs.append(c)
elif c.name.startswith('_'):
private_attrs.append(c)
elif isinstance(c, FnNode):
fn_attrs.append(c)
else:
val_attrs.append(c)
children = val_attrs
if fn_attrs:
children.append(SubsectionNode(children=fn_attrs, name='Methods'))
if private_attrs:
children.append(SubsectionNode(children=private_attrs, name='Private'))
if magic_attrs:
children.append(
SubsectionNode(children=magic_attrs, name='Special attributes')
)
return children
@property
def header_repr(self) -> str:
return _obj_html_repr(self.obj)
@property
def is_root(self) -> bool:
"""Returns `True` if the node is top-level."""
return not bool(self.name)
@property
def is_leaf(self) -> bool:
"""Returns `True` if the node cannot be recursed into."""
return False
@dataclasses.dataclass
class BuiltinNode(ObjectNode[Union[int, float, bool, str, bytes, None]]): # pytype: disable=bad-concrete-type
"""`int`, `float`, `bytes`, `str`,..."""
MATCH_TYPES = (type(None), int, float, bool, str, bytes, type(...))
# TODO(epot): For subclasses, print the actual type somewhere ? Same for list,
# dict,... ?
@property
def is_leaf(self) -> bool:
# Can recurse into built-ins only if they are roots
return not self.is_root
@dataclasses.dataclass
class MappingNode(ObjectNode[collections.abc.Mapping]): # pytype: disable=bad-concrete-type
"""`dict` like."""
MATCH_TYPES = (
dict,
collections.abc.Mapping,
# Proto map fields (both C++ and Python API)
containers.MessageMap,
containers.ScalarMap,
)
@property
def children(self) -> list[Node]:
return [
KeyValNode(key=k, value=v) for k, v in self.obj.items()
] + super().children
@dataclasses.dataclass
class SetNode(ObjectNode[collections.abc.Set]): # pytype: disable=bad-concrete-type
"""`set` like."""
MATCH_TYPES = (set, frozenset, collections.abc.Set)
@property
def children(self) -> list[Node]:
return [KeyValNode(key=id(v), value=v) for v in self.obj] + super().children
@dataclasses.dataclass
class SequenceNode(ObjectNode[Union[list, tuple]]):
"""`list` like."""
MATCH_TYPES = (
list,
tuple,
# Proto repeated fields (both C++ and Python API)
containers.RepeatedScalarFieldContainer,
containers.RepeatedCompositeFieldContainer,
)
@property
def children(self) -> list[Node]:
return [
KeyValNode(key=i, value=v) for i, v in enumerate(self.obj)
] + super().children
@dataclasses.dataclass
class FnNode(ObjectNode[Callable[..., Any]]):
"""Function."""
MATCH_TYPES = (
types.FunctionType,
types.BuiltinFunctionType,
types.BuiltinMethodType,
types.MethodType,
types.MethodDescriptorType,
types.ClassMethodDescriptorType,
types.MemberDescriptorType,
types.WrapperDescriptorType,
types.MethodWrapperType,
functools.partial,
)
@property
def header_repr(self) -> str:
return _fn_html_repr(self.obj)
@property
def children(self) -> list[Node]:
return _fn_children(self.obj) + super().children
# TODO(epot): Expand the function should display docstring, signature,
# annotations, default values
@dataclasses.dataclass
class ArrayNode(ObjectNode[enp.typing.Array]):
"""Array."""
MATCH_TYPES = enp.lazy.LazyArray
# TODO(epot): Also print array values in the one-line description ?
@property
def children(self) -> list[Node]:
# When expanded, print the array values
return [
HtmlNode(_obj_html_repr(self.obj, array_values=True))
] + super().children
@dataclasses.dataclass
class ClsNode(ObjectNode[Type[Any]]):
"""Type."""
MATCH_TYPES = type
# TODO(epot): Add link to source code
@property
def children(self) -> list[Node]:
if isinstance(self.obj, type) and self.obj.mro is type.mro:
mro = self.obj.mro(self.obj) # `type.mro()` do not work
else:
mro = self.obj.mro()
# Add `[[mro]]` subsection
return super().children + [
SubsectionNode(
children=[Node.from_obj(cls) for cls in mro],
name='mro',
)
]
@dataclasses.dataclass
class ExceptionNode(ObjectNode[attrs.ExceptionWrapper]):
"""Exception."""
MATCH_TYPES = attrs.ExceptionWrapper
# TODO(epot): Could expand with the traceback
@property
def is_leaf(self) -> bool:
return True
def _obj_html_repr(obj: object, *, array_values: bool = False) -> str:
"""Returns the object representation."""
if isinstance(obj, type(None)):
type_ = 'null'
elif isinstance(obj, type(...)):
type_ = 'null'
elif isinstance(obj, (int, float)):
type_ = 'number'
elif isinstance(obj, bool):
type_ = 'boolean'
elif isinstance(obj, str):
type_ = 'string'
obj = _truncate_long_str(obj, expand_new_lines=True)
elif isinstance(obj, bytes):
type_ = 'string'
obj = _truncate_long_str(repr(obj))
elif not array_values and isinstance(obj, enp.lazy.LazyArray):
type_ = 'number'
obj = enp.ArraySpec.from_array(obj)
elif isinstance(obj, attrs.ExceptionWrapper):
type_ = 'error'
obj = obj.e
else:
type_ = 'preview'
try:
obj = repr(obj)
except Exception as e: # pylint: disable=broad-except
return _obj_html_repr(attrs.ExceptionWrapper(e))
obj = _truncate_long_str(obj)
if not isinstance(obj, str):
obj = repr(obj)
obj = html.escape(obj)
return H.span(class_=[type_])(obj)
def _truncate_long_str(value: str, *, expand_new_lines: bool = False) -> str:
"""Truncate long strings."""
value = html.escape(value)
if expand_new_lines:
# `repr` replace `\n` by `\\n` on str, so only apply it on the short version
short_value = repr(value)
else:
short_value = value
# TODO(epot): Could have a better expand section which truncate long string
# (e.g. > 100 lines)
# TODO(epot): Better CSS (with button)
if len(short_value) > 80:
if expand_new_lines:
# On the long value, add the same braces `'` or `"`
long_value = short_value[0] + value + short_value[-1]
else:
long_value = value
return H.span(class_=['content-switch'])(
# Short version
H.span(class_=['content-version-short'])(
short_value[:80]
+ H.span(
class_=['content-switch-expand', 'register-onclick-switch']
)('...')
),
# Long version
H.span(class_=['content-version-long', 'register-onclick-switch'])(
long_value
),
)
else:
return short_value
def _fn_children(fn: Callable[..., Any]) -> list[Node]:
"""Build the fn children."""
children = []
# Add docstring
try:
doc = fn.__doc__
except Exception: # pylint: disable=broad-except
pass
else:
if doc:
children.append(HtmlNode(_obj_html_repr(doc)))
# Add signature
try:
sig = inspect.Signature.from_callable(fn)
except Exception: # pylint: disable=broad-except
# Many builtins do not expose any signature information
pass
else:
for param in sig.parameters.values():
name = param.name
if param.kind == inspect.Parameter.VAR_POSITIONAL:
name = f'*{name}'
elif param.kind == inspect.Parameter.VAR_KEYWORD:
name = f'**{name}'
name = H.span(class_=['preview'])(name)
if param.annotation is inspect.Parameter.empty:
annotations = ''
else:
annotations = f': {_obj_html_repr(param.annotation)}'
if param.default is inspect.Parameter.empty:
default = ''
else:
default = f' = {_obj_html_repr(param.default)}'
node = HtmlNode(name + annotations + default)
children.append(node)
return children
def _fn_signature_repr(fn: Callable[..., Any]) -> str:
"""Constructs the signature representation of a function."""
try:
sig = inspect.Signature.from_callable(fn)
except Exception: # pylint: disable=broad-except
# Many builtins do not expose any signature information
return '...'
parts = []
is_first = True
is_kwarg_only = False
for param in sig.parameters.values():
if not is_first:
parts.append(', ')
is_first = False
if param.kind == inspect.Parameter.VAR_POSITIONAL:
parts.append('*')
is_kwarg_only = True
elif param.kind == inspect.Parameter.VAR_KEYWORD:
parts.append('**')
is_kwarg_only = True
elif param.kind == inspect.Parameter.KEYWORD_ONLY and not is_kwarg_only:
is_kwarg_only = True
parts.append('*, ')
parts.append(param.name)
return ''.join(parts)
def _fn_html_repr(fn: Callable[..., Any]) -> str:
"""Constructs the signature representation of a function."""
# TODO(epot): Special partial case (should likely be another custom node)
if isinstance(fn, functools.partial):
return _obj_html_repr(fn)
try:
# TODO(epot): When using built-in, should display `object.__repr__` rather
# than `A.__repr__`
fn_name = fn.__qualname__
except Exception: # pylint: disable=broad-except
# Not sure when this could happen
return _obj_html_repr(fn)
# Do not add annotations/default in the one-line repr (would be too
# boilerplate)
sig_str = f'{fn_name}({_fn_signature_repr(fn)})'
sig_str = _truncate_long_str(sig_str)
return H.span(class_='fn')('ƒ') + ' ' + H.span(class_=['preview'])(sig_str)
|