Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate ShadowNodeRegistry to Kotlin #50081

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

package com.facebook.react.uimanager

import android.util.SparseArray
import android.util.SparseBooleanArray
import android.view.View
import com.facebook.react.common.SingleThreadAsserter
import com.facebook.react.common.annotations.internal.LegacyArchitecture
import com.facebook.react.common.annotations.internal.LegacyArchitectureLogLevel
import com.facebook.react.common.annotations.internal.LegacyArchitectureLogger

/**
* Simple container class to keep track of [ReactShadowNode]s associated with a particular
* UIManagerModule instance.
*/
@LegacyArchitecture
internal class ShadowNodeRegistry {
private val tagsToCSSNodes = SparseArray<ReactShadowNode<*>>()
private val rootTags = SparseBooleanArray()
private val threadAsserter = SingleThreadAsserter()

fun addRootNode(node: ReactShadowNode<*>) {
threadAsserter.assertNow()
val tag = node.reactTag
tagsToCSSNodes.put(tag, node)
rootTags.put(tag, true)
}

fun removeRootNode(tag: Int) {
threadAsserter.assertNow()
if (tag == View.NO_ID) {
// This root node has already been removed (likely due to a threading issue caused by async js
// execution). Ignore this root removal.
return
}
if (!rootTags[tag]) {
throw IllegalViewOperationException(
"View with tag $tag is not registered as a root view"
)
}

tagsToCSSNodes.remove(tag)
rootTags.delete(tag)
}

fun addNode(node: ReactShadowNode<*>) {
threadAsserter.assertNow()
tagsToCSSNodes.put(node.reactTag, node)
}

fun removeNode(tag: Int) {
threadAsserter.assertNow()
if (rootTags[tag]) {
throw IllegalViewOperationException(
"Trying to remove root node $tag without using removeRootNode!"
)
}
tagsToCSSNodes.remove(tag)
}

fun getNode(tag: Int): ReactShadowNode<*>? {
threadAsserter.assertNow()
return tagsToCSSNodes[tag]
}

fun isRootNode(tag: Int): Boolean {
threadAsserter.assertNow()
return rootTags[tag]
}

val rootNodeCount: Int
get() {
threadAsserter.assertNow()
return rootTags.size()
}

fun getRootTag(index: Int): Int {
threadAsserter.assertNow()
return rootTags.keyAt(index)
}

private companion object {
init {
LegacyArchitectureLogger.assertWhenLegacyArchitectureMinifyingEnabled(
"ShadowNodeRegistry", LegacyArchitectureLogLevel.WARNING
)
}
}
}
Loading