mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
8d5ac8de76
Summary: This diff migrates RN to AndroidX. As part of this diff I disabled few tests in RNAndroid OSS that will be re-enabled this week. As part of the refactor of BUCK files in OSS Reviewed By: shergin Differential Revision: D14200097 fbshipit-source-id: 932fcae251d1553e672acd67ecd0e703dcb364aa
112 lines
2.8 KiB
Java
112 lines
2.8 KiB
Java
/**
|
|
* Copyright (c) Facebook, Inc. and its 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.bridge;
|
|
|
|
import javax.annotation.Nullable;
|
|
|
|
import androidx.core.util.Pools.SimplePool;
|
|
|
|
/**
|
|
* Implementation of Dynamic wrapping a ReadableMap.
|
|
*/
|
|
public class DynamicFromMap implements Dynamic {
|
|
private static final ThreadLocal<SimplePool<DynamicFromMap>> sPool = new ThreadLocal<SimplePool<DynamicFromMap>>() {
|
|
@Override
|
|
protected SimplePool<DynamicFromMap> initialValue() {
|
|
return new SimplePool<>(10);
|
|
}
|
|
};
|
|
|
|
private @Nullable ReadableMap mMap;
|
|
private @Nullable String mName;
|
|
|
|
// This is a pools object. Hide the constructor.
|
|
private DynamicFromMap() {}
|
|
|
|
public static DynamicFromMap create(ReadableMap map, String name) {
|
|
DynamicFromMap dynamic = sPool.get().acquire();
|
|
if (dynamic == null) {
|
|
dynamic = new DynamicFromMap();
|
|
}
|
|
dynamic.mMap = map;
|
|
dynamic.mName = name;
|
|
return dynamic;
|
|
}
|
|
|
|
@Override
|
|
public void recycle() {
|
|
mMap = null;
|
|
mName = null;
|
|
sPool.get().release(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean isNull() {
|
|
if (mMap == null || mName == null) {
|
|
throw new IllegalStateException("This dynamic value has been recycled");
|
|
}
|
|
return mMap.isNull(mName);
|
|
}
|
|
|
|
@Override
|
|
public boolean asBoolean() {
|
|
if (mMap == null || mName == null) {
|
|
throw new IllegalStateException("This dynamic value has been recycled");
|
|
}
|
|
return mMap.getBoolean(mName);
|
|
}
|
|
|
|
@Override
|
|
public double asDouble() {
|
|
if (mMap == null || mName == null) {
|
|
throw new IllegalStateException("This dynamic value has been recycled");
|
|
}
|
|
return mMap.getDouble(mName);
|
|
}
|
|
|
|
@Override
|
|
public int asInt() {
|
|
if (mMap == null || mName == null) {
|
|
throw new IllegalStateException("This dynamic value has been recycled");
|
|
}
|
|
return mMap.getInt(mName);
|
|
}
|
|
|
|
@Override
|
|
public String asString() {
|
|
if (mMap == null || mName == null) {
|
|
throw new IllegalStateException("This dynamic value has been recycled");
|
|
}
|
|
return mMap.getString(mName);
|
|
}
|
|
|
|
@Override
|
|
public ReadableArray asArray() {
|
|
if (mMap == null || mName == null) {
|
|
throw new IllegalStateException("This dynamic value has been recycled");
|
|
}
|
|
return mMap.getArray(mName);
|
|
}
|
|
|
|
@Override
|
|
public ReadableMap asMap() {
|
|
if (mMap == null || mName == null) {
|
|
throw new IllegalStateException("This dynamic value has been recycled");
|
|
}
|
|
return mMap.getMap(mName);
|
|
}
|
|
|
|
@Override
|
|
public ReadableType getType() {
|
|
if (mMap == null || mName == null) {
|
|
throw new IllegalStateException("This dynamic value has been recycled");
|
|
}
|
|
return mMap.getType(mName);
|
|
}
|
|
}
|