mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3b31e69e28
Summary: Changelog: [General] [Fixed] - License header cleanup Reviewed By: yungsters Differential Revision: D17952694 fbshipit-source-id: 17c87de7ebb271fa2ac8d00af72a4d1addef8bd0
110 lines
2.8 KiB
Java
110 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 androidx.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);
|
|
}
|
|
}
|