act.util.AdaptiveBeanBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of act Show documentation
Show all versions of act Show documentation
The ACT full stack MVC framework
package act.util;
/*-
* #%L
* ACT Framework
* %%
* Copyright (C) 2014 - 2018 ActFramework
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import act.data.annotation.Data;
import act.inject.param.NoBind;
import com.alibaba.fastjson.JSONObject;
import org.osgl.Lang;
import org.osgl.util.BeanInfo;
import java.util.Map;
import java.util.Set;
@Data
public class AdaptiveBeanBase implements SimpleBean, EnhancedAdaptiveMap {
@NoBind
private transient JSONObject kv = new JSONObject();
private transient volatile EnhancedAdaptiveMap.MetaInfo metaInfo;
@Override
public Map internalMap() {
return kv;
}
protected T me() {
return (T) this;
}
// --- implement KV
@Override
public T putValue(String key, Object val) {
Util.putValue(this, key, val);
return me();
}
@Override
public T mergeValue(String key, Object val) {
Util.mergeValue(this, key, val);
return me();
}
@Override
public T getValue(String key) {
return Util.getValue(this, key);
}
@Override
public T putValues(Map map) {
Util.putValues(this, map);
return me();
}
@Override
public T mergeValues(Map map) {
Util.mergeValues(this, map);
return me();
}
@Override
public boolean containsKey(String key) {
return Util.containsKey(this, key);
}
@Override
public Map toMap() {
return Util.toMap(this);
}
@Override
public int size() {
return Util.size(this);
}
@Override
public Set keySet() {
return Util.keySet(this);
}
@Override
public Set> entrySet() {
return entrySet(null);
}
@Override
public Set> entrySet(Lang.Function fieldFilter) {
return Util.entrySet(this, fieldFilter);
}
public Map asMap() {
return Util.asMap(this);
}
@Override
@java.beans.Transient
public EnhancedAdaptiveMap.MetaInfo metaInfo() {
if (null == metaInfo) {
synchronized (this) {
if (null == metaInfo) {
metaInfo = Util.generateMetaInfo(this);
}
}
}
return metaInfo;
}
}