Summary: X-link: https://github.com/facebook/react-native/pull/39402 Pull Request resolved: https://github.com/facebook/yoga/pull/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
30 lines
820 B
C++
30 lines
820 B
C++
/*
|
|
* 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
|