fn2.dart 25.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

library fn;

import 'dart:async';
import 'dart:collection';
import 'dart:mirrors';
import 'dart:sky' as sky;
import 'reflect.dart' as reflect;
import 'layout2.dart';
13
import 'app.dart';
14

15
// final sky.Tracing _tracing = sky.window.tracing;
16 17 18 19 20 21 22 23 24 25 26 27 28 29

final bool _shouldLogRenderDuration = false;
final bool _shouldTrace = false;

enum _SyncOperation { IDENTICAL, INSERTION, STATEFUL, STATELESS, REMOVAL }

/*
 * All Effen nodes derive from UINode. All nodes have a _parent, a _key and
 * can be sync'd.
 */
abstract class UINode {
  String _key;
  UINode _parent;
  UINode get parent => _parent;
30
  RenderNode root;
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
  bool _defunct = false;

  UINode({ Object key }) {
    _key = key == null ? "$runtimeType" : "$runtimeType-$key";
    assert(this is App || _inRenderDirtyComponents); // you should not build the UI tree ahead of time, build it only during build()
  }

  // Subclasses which implements Nodes that become stateful may return true
  // if the |old| node has become stateful and should be retained.
  bool _willSync(UINode old) => false;

  bool get interchangeable => false; // if true, then keys can be duplicated

  void _sync(UINode old, dynamic slot);
  // 'slot' is the identifier that the parent RenderNodeWrapper uses to know
  // where to put this descendant

  void _remove() {
    _defunct = true;
50
    root = null;
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
    handleRemoved();
  }
  void handleRemoved() { }

  UINode findAncestor(Type targetType) {
    var ancestor = _parent;
    while (ancestor != null && !reflectClass(ancestor.runtimeType).isSubtypeOf(reflectClass(targetType)))
      ancestor = ancestor._parent;
    return ancestor;
  }

  int _nodeDepth;
  void _ensureDepth() {
    if (_nodeDepth == null) {
      if (_parent != null) {
        _parent._ensureDepth();
        _nodeDepth = _parent._nodeDepth + 1;
      } else {
        _nodeDepth = 0;
      }
    }
  }

  void _trace(String message) {
    if (!_shouldTrace)
      return;

    _ensureDepth();
    print((' ' * _nodeDepth) + message);
  }

  void _traceSync(_SyncOperation op, String key) {
    if (!_shouldTrace)
      return;

    String opString = op.toString().toLowerCase();
    String outString = opString.substring(opString.indexOf('.') + 1);
    _trace('_sync($outString) $key');
  }

91
  void removeChild(UINode node) {
92 93 94 95 96
    _traceSync(_SyncOperation.REMOVAL, node._key);
    node._remove();
  }

  // Returns the child which should be retained as the child of this node.
97
  UINode syncChild(UINode node, UINode oldNode, dynamic slot) {
98
    if (node == oldNode) {
99
      _traceSync(_SyncOperation.IDENTICAL, node == null ? '*null*' : node._key);
100 101 102
      return node; // Nothing to do. Subtrees must be identical.
    }

103 104 105 106 107 108 109
    if (node == null) {
      // the child in this slot has gone away
      removeChild(oldNode);
      return null;
    }
    assert(oldNode == null || node._key == oldNode._key);

110 111 112 113
    // TODO(rafaelw): This eagerly removes the old DOM. It may be that a
    // new component was built that could re-use some of it. Consider
    // syncing the new VDOM against the old one.
    if (oldNode != null && node._key != oldNode._key) {
114
      removeChild(oldNode);
115 116 117 118 119 120
    }

    if (node._willSync(oldNode)) {
      _traceSync(_SyncOperation.STATEFUL, node._key);
      oldNode._sync(node, slot);
      node._defunct = true;
121
      assert(oldNode.root is RenderNode);
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
      return oldNode;
    }

    assert(!node._defunct);
    node._parent = this;

    if (oldNode == null) {
      _traceSync(_SyncOperation.INSERTION, node._key);
    } else {
      _traceSync(_SyncOperation.STATELESS, node._key);
    }
    node._sync(oldNode, slot);
    if (oldNode != null)
      oldNode._defunct = true;

137
    assert(node.root is RenderNode);
138 139 140 141 142 143 144 145 146 147 148
    return node;
  }
}

abstract class ContentNode extends UINode {
  UINode content;

  ContentNode(UINode content) : this.content = content, super(key: content._key);

  void _sync(UINode old, dynamic slot) {
    UINode oldContent = old == null ? null : (old as ContentNode).content;
149
    content = syncChild(content, oldContent, slot);
150 151
    assert(content.root != null);
    root = content.root;
152 153 154 155
  }

  void _remove() {
    if (content != null)
156
      removeChild(content);
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
    super._remove();
  }
}

class ParentDataNode extends ContentNode {
  final ParentData parentData;

  ParentDataNode(UINode content, this.parentData): super(content);
}

typedef GestureEventListener(sky.GestureEvent e);
typedef PointerEventListener(sky.PointerEvent e);
typedef EventListener(sky.Event e);

class EventListenerNode extends ContentNode  {
  final Map<String, sky.EventListener> listeners;

  static final Set<String> _registeredEvents = new HashSet<String>();

  static Map<String, sky.EventListener> _createListeners({
    EventListener onWheel,
    GestureEventListener onGestureFlingCancel,
    GestureEventListener onGestureFlingStart,
    GestureEventListener onGestureScrollStart,
    GestureEventListener onGestureScrollUpdate,
    GestureEventListener onGestureTap,
    GestureEventListener onGestureTapDown,
    PointerEventListener onPointerCancel,
    PointerEventListener onPointerDown,
    PointerEventListener onPointerMove,
    PointerEventListener onPointerUp,
    Map<String, sky.EventListener> custom
  }) {
    var listeners = custom != null ?
        new HashMap<String, sky.EventListener>.from(custom) :
        new HashMap<String, sky.EventListener>();

    if (onWheel != null)
      listeners['wheel'] = onWheel;
    if (onGestureFlingCancel != null)
      listeners['gestureflingcancel'] = onGestureFlingCancel;
    if (onGestureFlingStart != null)
      listeners['gestureflingstart'] = onGestureFlingStart;
    if (onGestureScrollStart != null)
      listeners['gesturescrollstart'] = onGestureScrollStart;
    if (onGestureScrollUpdate != null)
      listeners['gesturescrollupdate'] = onGestureScrollUpdate;
    if (onGestureTap != null)
      listeners['gesturetap'] = onGestureTap;
    if (onGestureTapDown != null)
      listeners['gesturetapdown'] = onGestureTapDown;
    if (onPointerCancel != null)
      listeners['pointercancel'] = onPointerCancel;
    if (onPointerDown != null)
      listeners['pointerdown'] = onPointerDown;
    if (onPointerMove != null)
      listeners['pointermove'] = onPointerMove;
    if (onPointerUp != null)
      listeners['pointerup'] = onPointerUp;

    return listeners;
  }

  EventListenerNode(UINode content, {
    EventListener onWheel,
    GestureEventListener onGestureFlingCancel,
    GestureEventListener onGestureFlingStart,
    GestureEventListener onGestureScrollStart,
    GestureEventListener onGestureScrollUpdate,
    GestureEventListener onGestureTap,
    GestureEventListener onGestureTapDown,
    PointerEventListener onPointerCancel,
    PointerEventListener onPointerDown,
    PointerEventListener onPointerMove,
    PointerEventListener onPointerUp,
    Map<String, sky.EventListener> custom
  }) : listeners = _createListeners(
         onWheel: onWheel,
         onGestureFlingCancel: onGestureFlingCancel,
         onGestureFlingStart: onGestureFlingStart,
         onGestureScrollUpdate: onGestureScrollUpdate,
         onGestureScrollStart: onGestureScrollStart,
         onGestureTap: onGestureTap,
         onGestureTapDown: onGestureTapDown,
         onPointerCancel: onPointerCancel,
         onPointerDown: onPointerDown,
         onPointerMove: onPointerMove,
         onPointerUp: onPointerUp,
         custom: custom
       ),
       super(content);

  void _handleEvent(sky.Event e) {
    sky.EventListener listener = listeners[e.type];
    if (listener != null) {
      listener(e);
    }
  }

  static void _dispatchEvent(sky.Event e) {
    UINode target = RenderNodeWrapper._getMounted(bridgeEventTargetToRenderNode(e.target));

    // TODO(rafaelw): StopPropagation?
    while (target != null) {
      if (target is EventListenerNode) {
        target._handleEvent(e);
      }

      target = target._parent;
    }
  }

  static void _ensureDocumentListener(String eventType) {
    if (_registeredEvents.add(eventType)) {
      sky.document.addEventListener(eventType, _dispatchEvent);
    }
  }

  void _sync(UINode old, dynamic slot) {
    for (var type in listeners.keys) {
      _ensureDocumentListener(type);
    }
    super._sync(old, slot);
  }
}

/*
284
 * RenderNodeWrappers correspond to a desired state of a RenderNode.
285 286 287 288 289 290 291
 * They are fully immutable, with one exception: A UINode which is a
 * Component which lives within an OneChildListRenderNodeWrapper's
 * children list, may be replaced with the "old" instance if it has
 * become stateful.
 */
abstract class RenderNodeWrapper extends UINode {

292 293
  static final Map<RenderNode, RenderNodeWrapper> _nodeMap =
      new HashMap<RenderNode, RenderNodeWrapper>();
294

295
  static RenderNodeWrapper _getMounted(RenderNode node) => _nodeMap[node];
296 297

  RenderNodeWrapper({
298
    Object key
299 300
  }) : super(key: key);

301
  RenderNode createNode();
302
  RenderNodeWrapper get emptyNode;
303 304 305 306 307

  void insert(RenderNodeWrapper child, dynamic slot);

  void _sync(UINode old, dynamic slot) {
    if (old == null) {
308 309
      root = createNode();
      assert(root != null);
310 311 312
      var ancestor = findAncestor(RenderNodeWrapper);
      if (ancestor is RenderNodeWrapper)
        ancestor.insert(this, slot);
313
      old = emptyNode;
314
    } else {
315 316
      root = old.root;
      assert(root != null);
317 318
    }

319 320
    _nodeMap[root] = this;
    syncRenderNode(old);
321 322
  }

323
  void syncRenderNode(RenderNodeWrapper old) {
324 325 326 327 328 329 330 331 332 333 334 335
    ParentData parentData = null;
    UINode parent = _parent;
    while (parent != null && parent is! RenderNodeWrapper) {
      if (parent is ParentDataNode && parent.parentData != null) {
        if (parentData != null)
          parentData.merge(parent.parentData); // this will throw if the types aren't the same
        else
          parentData = parent.parentData;
      }
      parent = parent._parent;
    }
    if (parentData != null) {
336 337
      assert(root.parentData != null);
      root.parentData.merge(parentData); // this will throw if the types aren't approriate
338
      assert(parent != null);
339 340
      assert(parent.root != null);
      parent.root.markNeedsLayout();
341 342 343
    }
  }

344 345 346
  void removeChild(UINode node) {
    root.remove(node.root);
    super.removeChild(node);
347 348 349
  }

  void _remove() {
350 351
    assert(root != null);
    _nodeMap.remove(root);
352 353 354 355 356 357 358 359
    super._remove();
  }
}

final List<UINode> _emptyList = new List<UINode>();

abstract class OneChildListRenderNodeWrapper extends RenderNodeWrapper {

360 361
  // In OneChildListRenderNodeWrapper subclasses, slots are RenderNode nodes
  // to use as the "insert before" sibling in ContainerRenderNodeMixin.add() calls
362 363 364 365 366

  final List<UINode> children;

  OneChildListRenderNodeWrapper({
    Object key,
367
    List<UINode> children
368 369
  }) : this.children = children == null ? _emptyList : children,
  super(
370
    key: key
371 372 373 374 375
  ) {
    assert(!_debugHasDuplicateIds());
  }

  void insert(RenderNodeWrapper child, dynamic slot) {
376
    assert(slot == null || slot is RenderNode);
377
    root.add(child.root, before: slot);
378 379 380 381 382 383
  }

  void _remove() {
    assert(children != null);
    for (var child in children) {
      assert(child != null);
384
      removeChild(child);
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
    }
    super._remove();
  }

  bool _debugHasDuplicateIds() {
    var idSet = new HashSet<String>();
    for (var child in children) {
      assert(child != null);
      if (child.interchangeable)
        continue; // when these nodes are reordered, we just reassign the data

      if (!idSet.add(child._key)) {
        throw '''If multiple non-interchangeable nodes of the same type exist as children
                of another node, they must have unique keys.
                Duplicate: "${child._key}"''';
      }
    }
    return false;
  }

405 406
  void syncRenderNode(OneChildListRenderNodeWrapper old) {
    super.syncRenderNode(old);
407

408
    if (root is! ContainerRenderNodeMixin)
409 410 411 412 413 414 415 416 417
      return;

    var startIndex = 0;
    var endIndex = children.length;

    var oldChildren = old.children;
    var oldStartIndex = 0;
    var oldEndIndex = oldChildren.length;

418
    RenderNode nextSibling = null;
419 420 421 422
    UINode currentNode = null;
    UINode oldNode = null;

    void sync(int atIndex) {
423
      children[atIndex] = syncChild(currentNode, oldNode, nextSibling);
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
      assert(children[atIndex] != null);
    }

    // Scan backwards from end of list while nodes can be directly synced
    // without reordering.
    while (endIndex > startIndex && oldEndIndex > oldStartIndex) {
      currentNode = children[endIndex - 1];
      oldNode = oldChildren[oldEndIndex - 1];

      if (currentNode._key != oldNode._key) {
        break;
      }

      endIndex--;
      oldEndIndex--;
      sync(endIndex);
    }

    HashMap<String, UINode> oldNodeIdMap = null;

    bool oldNodeReordered(String key) {
      return oldNodeIdMap != null &&
             oldNodeIdMap.containsKey(key) &&
             oldNodeIdMap[key] == null;
    }

    void advanceOldStartIndex() {
      oldStartIndex++;
      while (oldStartIndex < oldEndIndex &&
             oldNodeReordered(oldChildren[oldStartIndex]._key)) {
        oldStartIndex++;
      }
    }

    void ensureOldIdMap() {
      if (oldNodeIdMap != null)
        return;

      oldNodeIdMap = new HashMap<String, UINode>();
      for (int i = oldStartIndex; i < oldEndIndex; i++) {
        var node = oldChildren[i];
        if (!node.interchangeable)
          oldNodeIdMap.putIfAbsent(node._key, () => node);
      }
    }

    bool searchForOldNode() {
      if (currentNode.interchangeable)
        return false; // never re-order these nodes

      ensureOldIdMap();
      oldNode = oldNodeIdMap[currentNode._key];
      if (oldNode == null)
        return false;

      oldNodeIdMap[currentNode._key] = null; // mark it reordered
480 481
      assert(root is ContainerRenderNodeMixin);
      assert(oldNode.root is ContainerRenderNodeMixin);
482

483 484
      old.root.remove(oldNode.root);
      root.add(oldNode.root, before: nextSibling);
485 486 487 488 489

      return true;
    }

    // Scan forwards, this time we may re-order;
490
    nextSibling = root.firstChild;
491 492 493 494 495 496
    while (startIndex < endIndex && oldStartIndex < oldEndIndex) {
      currentNode = children[startIndex];
      oldNode = oldChildren[oldStartIndex];

      if (currentNode._key == oldNode._key) {
        assert(currentNode.runtimeType == oldNode.runtimeType);
497
        nextSibling = root.childAfter(nextSibling);
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
        sync(startIndex);
        startIndex++;
        advanceOldStartIndex();
        continue;
      }

      oldNode = null;
      searchForOldNode();
      sync(startIndex);
      startIndex++;
    }

    // New insertions
    oldNode = null;
    while (startIndex < endIndex) {
      currentNode = children[startIndex];
      sync(startIndex);
      startIndex++;
    }

    // Removals
    currentNode = null;
    while (oldStartIndex < oldEndIndex) {
      oldNode = oldChildren[oldStartIndex];
522
      removeChild(oldNode);
523 524 525 526 527 528 529
      advanceOldStartIndex();
    }
  }
}

class Container extends OneChildListRenderNodeWrapper {

530 531
  RenderCSSContainer root;
  RenderCSSContainer createNode() => new RenderCSSContainer(this);
532 533 534

  static final Container _emptyContainer = new Container();

535
  RenderNodeWrapper get emptyNode => _emptyContainer;
536 537 538

  Container({
    Object key,
539
    List<UINode> children
540 541
  }) : super(
    key: key,
542
    children: children
543 544 545 546 547
  );
}

class Paragraph extends OneChildListRenderNodeWrapper {

548 549
  RenderCSSParagraph root;
  RenderCSSParagraph createNode() => new RenderCSSParagraph(this);
550 551 552

  static final Paragraph _emptyContainer = new Paragraph();

553
  RenderNodeWrapper get emptyNode => _emptyContainer;
554 555 556

  Paragraph({
    Object key,
557
    List<UINode> children
558 559
  }) : super(
    key: key,
560
    children: children
561 562 563 564 565
  );
}

class FlexContainer extends OneChildListRenderNodeWrapper {

566 567
  RenderFlex root;
  RenderFlex createNode() => new RenderFlex(this, this.direction);
568 569 570 571

  static final FlexContainer _emptyContainer = new FlexContainer();
    // direction doesn't matter if it's empty

572
  RenderNodeWrapper get emptyNode => _emptyContainer;
573 574 575 576 577 578

  final FlexDirection direction;

  FlexContainer({
    Object key,
    List<UINode> children,
579
    this.direction: FlexDirection.Horizontal
580 581
  }) : super(
    key: key,
582
    children: children
583 584
  );

585 586 587
  void syncRenderNode(UINode old) {
    super.syncRenderNode(old);
    root.direction = direction;
588 589 590
  }
}

591 592 593 594
class FlexExpandingChild extends ParentDataNode {
  FlexExpandingChild(UINode content, [int flex = 1]): super(content, new FlexBoxParentData()..flex = flex);
}

595 596
class FillStackContainer extends OneChildListRenderNodeWrapper {

597 598
  RenderCSSStack root;
  RenderCSSStack createNode() => new RenderCSSStack(this);
599 600 601

  static final FillStackContainer _emptyContainer = new FillStackContainer();

602
  RenderNodeWrapper get emptyNode => _emptyContainer;
603 604 605

  FillStackContainer({
    Object key,
606
    List<UINode> children
607 608
  }) : super(
    key: key,
609
    children: _positionNodesToFill(children)
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
  );

  static StackParentData _fillParentData = new StackParentData()
                                                 ..top = 0.0
                                                 ..left = 0.0
                                                 ..right = 0.0
                                                 ..bottom = 0.0;

  static List<UINode> _positionNodesToFill(List<UINode> input) {
    if (input == null)
      return null;
    return input.map((node) {
      return new ParentDataNode(node, _fillParentData);
    }).toList();
  }
}

A
Adam Barth 已提交
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
abstract class OneChildRenderNodeWrapper extends RenderNodeWrapper {

  final UINode child;
  RenderNodeWithChildMixin root;

  OneChildRenderNodeWrapper({
    Object key,
    this.child
  }) : super(key: key);

  void insert(RenderNodeWrapper child, dynamic slot) {
    assert(slot == null);
    root.child = child.root;
  }

  void _remove() {
    assert(child != null);
    removeChild(child);
    super._remove();
  }
}

649 650
class TextFragment extends RenderNodeWrapper {

651 652
  RenderCSSInline root;
  RenderCSSInline createNode() => new RenderCSSInline(this, this.data);
653 654 655

  static final TextFragment _emptyText = new TextFragment('');

656
  RenderNodeWrapper get emptyNode => _emptyText;
657 658 659 660

  final String data;

  TextFragment(this.data, {
661
    Object key
662
  }) : super(
663
    key: key
664 665
  );

666 667 668
  void syncRenderNode(UINode old) {
    super.syncRenderNode(old);
    root.data = data;
669 670 671 672 673
  }
}

class Image extends RenderNodeWrapper {

674 675
  RenderCSSImage root;
  RenderCSSImage createNode() => new RenderCSSImage(this, this.src, this.width, this.height);
676 677 678

  static final Image _emptyImage = new Image();

679
  RenderNodeWrapper get emptyNode => _emptyImage;
680 681 682 683 684 685 686 687 688 689 690

  final String src;
  final int width;
  final int height;

  Image({
    Object key,
    this.width,
    this.height,
    this.src
  }) : super(
691
    key: key
692 693
  );

694 695 696
  void syncRenderNode(UINode old) {
    super.syncRenderNode(old);
    root.configure(this.src, this.width, this.height);
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
  }
}


Set<Component> _mountedComponents = new HashSet<Component>();
Set<Component> _unmountedComponents = new HashSet<Component>();

void _enqueueDidMount(Component c) {
  assert(!_notifingMountStatus);
  _mountedComponents.add(c);
}

void _enqueueDidUnmount(Component c) {
  assert(!_notifingMountStatus);
  _unmountedComponents.add(c);
}

bool _notifingMountStatus = false;

void _notifyMountStatusChanged() {
  try {
    _notifingMountStatus = true;
    _unmountedComponents.forEach((c) => c._didUnmount());
    _mountedComponents.forEach((c) => c._didMount());
    _mountedComponents.clear();
    _unmountedComponents.clear();
  } finally {
    _notifingMountStatus = false;
  }
}

List<Component> _dirtyComponents = new List<Component>();
bool _buildScheduled = false;
bool _inRenderDirtyComponents = false;

void _buildDirtyComponents() {
733
  //_tracing.begin('fn::_buildDirtyComponents');
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759

  Stopwatch sw;
  if (_shouldLogRenderDuration)
    sw = new Stopwatch()..start();

  try {
    _inRenderDirtyComponents = true;

    _dirtyComponents.sort((a, b) => a._order - b._order);
    for (var comp in _dirtyComponents) {
      comp._buildIfDirty();
    }

    _dirtyComponents.clear();
    _buildScheduled = false;
  } finally {
    _inRenderDirtyComponents = false;
  }

  _notifyMountStatusChanged();

  if (_shouldLogRenderDuration) {
    sw.stop();
    print('Render took ${sw.elapsedMicroseconds} microseconds');
  }

760
  //_tracing.end('fn::_buildDirtyComponents');
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
}

void _scheduleComponentForRender(Component c) {
  assert(!_inRenderDirtyComponents);
  _dirtyComponents.add(c);

  if (!_buildScheduled) {
    _buildScheduled = true;
    new Future.microtask(_buildDirtyComponents);
  }
}

abstract class Component extends UINode {
  bool get _isBuilding => _currentlyBuilding == this;
  bool _dirty = true;

  UINode _built;
  final int _order;
  static int _currentOrder = 0;
  bool _stateful;
  static Component _currentlyBuilding;
  List<Function> _mountCallbacks;
  List<Function> _unmountCallbacks;
  dynamic _slot; // cached slot from the last time we were synced

  void onDidMount(Function fn) {
    if (_mountCallbacks == null)
      _mountCallbacks = new List<Function>();

    _mountCallbacks.add(fn);
  }

  void onDidUnmount(Function fn) {
    if (_unmountCallbacks == null)
      _unmountCallbacks = new List<Function>();

    _unmountCallbacks.add(fn);
  }


  Component({ Object key, bool stateful })
      : _stateful = stateful != null ? stateful : false,
        _order = _currentOrder + 1,
        super(key: key);

  Component.fromArgs(Object key, bool stateful)
      : this(key: key, stateful: stateful);

  void _didMount() {
    if (_mountCallbacks != null)
      _mountCallbacks.forEach((fn) => fn());
  }

  void _didUnmount() {
    if (_unmountCallbacks != null)
      _unmountCallbacks.forEach((fn) => fn());
  }

  // TODO(rafaelw): It seems wrong to expose DOM at all. This is presently
  // needed to get sizing info.
821
  RenderNode getRoot() => root;
822 823 824

  void _remove() {
    assert(_built != null);
825 826
    assert(root != null);
    removeChild(_built);
827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882
    _built = null;
    _enqueueDidUnmount(this);
    super._remove();
  }

  bool _willSync(UINode old) {
    Component oldComponent = old as Component;
    if (oldComponent == null || !oldComponent._stateful)
      return false;

    // Make |this| the "old" Component
    _stateful = false;
    _built = oldComponent._built;
    assert(_built != null);

    // Make |oldComponent| the "new" component
    reflect.copyPublicFields(this, oldComponent);
    oldComponent._built = null;
    oldComponent._dirty = true;
    return true;
  }

  /* There are three cases here:
   * 1) Building for the first time:
   *      assert(_built == null && old == null)
   * 2) Re-building (because a dirty flag got set):
   *      assert(_built != null && old == null)
   * 3) Syncing against an old version
   *      assert(_built == null && old != null)
   */
  void _sync(UINode old, dynamic slot) {
    assert(!_defunct);
    assert(_built == null || old == null);

    Component oldComponent = old as Component;

    _slot = slot;

    var oldBuilt;
    if (oldComponent == null) {
      oldBuilt = _built;
    } else {
      assert(_built == null);
      oldBuilt = oldComponent._built;
    }

    if (oldBuilt == null)
      _enqueueDidMount(this);

    int lastOrder = _currentOrder;
    _currentOrder = _order;
    _currentlyBuilding = this;
    _built = build();
    _currentlyBuilding = null;
    _currentOrder = lastOrder;

883
    _built = syncChild(_built, oldBuilt, slot);
884
    _dirty = false;
885 886
    root = _built.root;
    assert(root != null);
887 888 889 890 891 892 893
  }

  void _buildIfDirty() {
    if (!_dirty || _defunct)
      return;

    _trace('$_key rebuilding...');
894
    assert(root != null);
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
    _sync(null, _slot);
  }

  void scheduleBuild() {
    setState(() {});
  }

  void setState(Function fn()) {
    _stateful = true;
    fn();
    if (_isBuilding || _dirty || _defunct)
      return;

    _dirty = true;
    _scheduleComponentForRender(this);
  }

  UINode build();
}

abstract class App extends Component {

  App() : super(stateful: true) {
918
    _appView = new AppView(null);
919 920 921
    _scheduleComponentForRender(this);
  }

922
  AppView _appView;
923

924 925 926 927
  void _buildIfDirty() {
    assert(_dirty);
    assert(!_defunct);
    _trace('$_key rebuilding app...');
928
    _sync(null, null);
929
    if (root.parent == null)
930 931
      _appView.root = root;
    assert(root.parent is RenderView);
932 933 934 935 936 937 938 939 940
  }
}

class Text extends Component {
  Text(this.data) : super(key: '*text*');
  final String data;
  bool get interchangeable => true;
  UINode build() => new Paragraph(children: [new TextFragment(data)]);
}
941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991


// for now, but only for now:

class RenderSolidColor extends RenderDecoratedBox {
  final double desiredHeight;
  final double desiredWidth;
  final int backgroundColor;

  RenderSolidColor(int backgroundColor, { this.desiredHeight: double.INFINITY,
                                          this.desiredWidth: double.INFINITY })
      : backgroundColor = backgroundColor,
        super(new BoxDecoration(backgroundColor: backgroundColor));

  BoxDimensions getIntrinsicDimensions(BoxConstraints constraints) {
    return new BoxDimensions.withConstraints(constraints,
                                             height: desiredHeight,
                                             width: desiredWidth);
  }

  void layout(BoxConstraints constraints, { RenderNode relayoutSubtreeRoot }) {
    width = constraints.constrainWidth(desiredWidth);
    height = constraints.constrainHeight(desiredHeight);
    layoutDone();
  }

  void handlePointer(sky.PointerEvent event) {
    if (event.type == 'pointerdown')
      decoration = new BoxDecoration(backgroundColor: 0xFFFF0000);
    else if (event.type == 'pointerup')
      decoration = new BoxDecoration(backgroundColor: backgroundColor);
  }
}

class Rectangle extends RenderNodeWrapper {

  Rectangle(this.color, {
    Object key
  }) : super(
    key: key
  );

  final int color;

  RenderSolidColor root;
  RenderSolidColor createNode() => new RenderSolidColor(color, desiredWidth: 40.0, desiredHeight: 130.0);

  static final Rectangle _emptyRectangle = new Rectangle(0);
  RenderNodeWrapper get emptyNode => _emptyRectangle;

}