RuleMetaData.java
Home
/
common /
data /
src /
main /
java /
org /
thingsboard /
server /
common /
data /
rule /
RuleMetaData.java
/**
* Copyright © 2016-2018 The Thingsboard Authors
*
* 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.
*/
package org.thingsboard.server.common.data.rule;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.extern.slf4j.Slf4j;
import org.thingsboard.server.common.data.HasName;
import org.thingsboard.server.common.data.SearchTextBasedWithAdditionalInfo;
import org.thingsboard.server.common.data.id.RuleId;
import org.thingsboard.server.common.data.id.TenantId;
import org.thingsboard.server.common.data.plugin.ComponentLifecycleState;
@Data
@EqualsAndHashCode(callSuper = true)
@Slf4j
public class RuleMetaData extends SearchTextBasedWithAdditionalInfo<RuleId> implements HasName {
private static final long serialVersionUID = -5656679015122935465L;
private TenantId tenantId;
private String name;
private ComponentLifecycleState state;
private int weight;
private String pluginToken;
private transient JsonNode filters;
private transient JsonNode processor;
private transient JsonNode action;
@JsonIgnore
private byte[] filtersBytes;
@JsonIgnore
private byte[] processorBytes;
@JsonIgnore
private byte[] actionBytes;
public RuleMetaData() {
super();
}
public RuleMetaData(RuleId id) {
super(id);
}
public RuleMetaData(RuleMetaData rule) {
super(rule);
this.tenantId = rule.getTenantId();
this.name = rule.getName();
this.state = rule.getState();
this.weight = rule.getWeight();
this.pluginToken = rule.getPluginToken();
this.setFilters(rule.getFilters());
this.setProcessor(rule.getProcessor());
this.setAction(rule.getAction());
}
@Override
public String getSearchText() {
return getName();
}
@Override
public String getName() {
return name;
}
public JsonNode getFilters() {
return SearchTextBasedWithAdditionalInfo.getJson(() -> filters, () -> filtersBytes);
}
public JsonNode getProcessor() {
return SearchTextBasedWithAdditionalInfo.getJson(() -> processor, () -> processorBytes);
}
public JsonNode getAction() {
return SearchTextBasedWithAdditionalInfo.getJson(() -> action, () -> actionBytes);
}
public void setFilters(JsonNode data) {
setJson(data, json -> this.filters = json, bytes -> this.filtersBytes = bytes);
}
public void setProcessor(JsonNode data) {
setJson(data, json -> this.processor = json, bytes -> this.processorBytes = bytes);
}
public void setAction(JsonNode data) {
setJson(data, json -> this.action = json, bytes -> this.actionBytes = bytes);
}
}