-
Notifications
You must be signed in to change notification settings - Fork 24.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove JNI Binding usage of layoutContext (#39402)
Summary: Pull Request resolved: #39402 X-link: facebook/yoga#1377 To avoid keeping a per-node mapping on native Yoga nodes to Java nodes, a per-layout context was added, to be able to pass information from the start of the layout, to measure functions, log functions, etc. The way this was done was super invasive, and added quite a few private APIs used only by the JNI functions. This change removes the context-using functions from the JNI bindings in favor of it managing its own context. Next diff removes all the cruft. Reviewed By: javache Differential Revision: D49179243 fbshipit-source-id: 7e4944bead864e6b73fd2208a47c5725c18ff2b0
- Loading branch information
1 parent
2d3d308
commit 733c928
Showing
4 changed files
with
88 additions
and
33 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
packages/react-native/ReactAndroid/src/main/jni/first-party/yogajni/jni/LayoutContext.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
#include <stack> | ||
|
||
#include "LayoutContext.h" | ||
|
||
namespace facebook::yoga::vanillajni { | ||
|
||
namespace { | ||
std::stack<PtrJNodeMapVanilla*>& getContexts() { | ||
static thread_local std::stack<PtrJNodeMapVanilla*> contexts; | ||
return contexts; | ||
} | ||
|
||
} // namespace | ||
|
||
LayoutContext::Provider::Provider(PtrJNodeMapVanilla* data) { | ||
getContexts().push(data); | ||
} | ||
|
||
LayoutContext::Provider::~Provider() { | ||
getContexts().pop(); | ||
} | ||
|
||
/*static*/ PtrJNodeMapVanilla* LayoutContext::getNodeMap() { | ||
return getContexts().empty() ? nullptr : getContexts().top(); | ||
} | ||
|
||
} // namespace facebook::yoga::vanillajni |
29 changes: 29 additions & 0 deletions
29
packages/react-native/ReactAndroid/src/main/jni/first-party/yogajni/jni/LayoutContext.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <yoga/Yoga.h> | ||
#include "YGJTypesVanilla.h" | ||
|
||
namespace facebook::yoga::vanillajni { | ||
|
||
// TODO: This should not be exported or used outside of the JNI bindings | ||
class YG_EXPORT LayoutContext { | ||
public: | ||
// Sets a context on the current thread for the duration of the Provider's | ||
// lifetime. This context should be set during the layout process to allow | ||
// layout callbacks to access context-data specific to the layout pass. | ||
struct Provider { | ||
explicit Provider(PtrJNodeMapVanilla* data); | ||
~Provider(); | ||
}; | ||
|
||
static PtrJNodeMapVanilla* getNodeMap(); | ||
}; | ||
|
||
} // namespace facebook::yoga::vanillajni |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters