Skip to content

Commit

Permalink
Merge pull request #42 from a-ignatov-parc/another-sigabrt-fix
Browse files Browse the repository at this point in the history
Better reference preservation for dismissed nodes + fixed memory leak on document unmount
  • Loading branch information
a-ignatov-parc authored Oct 23, 2018
2 parents 5aa5513 + d2daa54 commit f53a597
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions src/react-tvml/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,20 @@ const supportedEventMapping = {

let uid = 0;

/**
* Starting from tvOS 11.3 TVMLKit has aggressive garbage collection of
* the DOM nodes, and if we try to access any nodes references after
* a document or an element is dismissed, we'll get an exception.
*
* As a workaround, we can preserve nodes in `Map` until we finishes
* all cleanups.
*
* This fixes:
* - ITMLKit (9): EXC_BAD_ACCESS
* - ITMLKit (8): signal SIGABRT
*/
const preservedNodes = new Map();

function getNodeId(node) {
if (node) {
if (node._uid == null) {
Expand Down Expand Up @@ -379,6 +393,7 @@ const TVMLRenderer = ReactFiberReconciler({
});

child._targetTextNode = target;
preservedNodes.set(child);
}

parentInstance.appendChild(child);
Expand Down Expand Up @@ -501,6 +516,7 @@ const TVMLRenderer = ReactFiberReconciler({
});

child._targetTextNode = target;
preservedNodes.set(child);
}

parentInstance.appendChild(child);
Expand Down Expand Up @@ -539,6 +555,7 @@ const TVMLRenderer = ReactFiberReconciler({
});

child._targetTextNode = beforeChild;
preservedNodes.set(child);
}

parentInstance.insertBefore(child, beforeChild);
Expand Down Expand Up @@ -585,6 +602,7 @@ const TVMLRenderer = ReactFiberReconciler({
parentInstance.removeChild(child);
}
}
preservedNodes.delete(child);
},

removeChildFromContainer(container, child) {
Expand Down Expand Up @@ -633,8 +651,6 @@ function createRoot(container) {
return new ReactRoot(container);
}

const preservedNodes = new Map();

const ReactTVML = {
render(element, container, callback) {
let root = container._reactRootContainer;
Expand Down Expand Up @@ -669,19 +685,6 @@ const ReactTVML = {

unmountComponentAtNode(container) {
if (container._reactRootContainer) {
/**
* Starting from tvOS 11.3 TVMLKit has aggressive garbage collection of
* the DOM nodes, and if we try to access any nodes references after
* a document is dismissed, we'll get an exception.
*
* To let react clean everything we're adding `container`
* to the dictionary created with `Map` this helps to preserve reference
* from GC.
*
* This fixes:
* - ITMLKit (9): EXC_BAD_ACCESS
* - ITMLKit (8): signal SIGABRT
*/
preservedNodes.set(container);

/**
Expand All @@ -692,6 +695,7 @@ const ReactTVML = {
TVMLRenderer.unbatchedUpdates(() => {
this.render(null, container, () => {
container._reactRootContainer = null;
preservedNodes.delete(container);
});
});
return true;
Expand Down

0 comments on commit f53a597

Please sign in to comment.