io.serverlessworkflow.api.deserializers.StateDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serverlessworkflow-api Show documentation
Show all versions of serverlessworkflow-api Show documentation
Java SDK for Serverless Workflow Specification
/*
* Copyright 2020-Present The Serverless Workflow Specification 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 io.serverlessworkflow.api.deserializers;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import io.serverlessworkflow.api.interfaces.State;
import io.serverlessworkflow.api.interfaces.WorkflowPropertySource;
import io.serverlessworkflow.api.states.*;
import java.io.IOException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class StateDeserializer extends StdDeserializer {
private static final long serialVersionUID = 510l;
private static Logger logger = LoggerFactory.getLogger(StateDeserializer.class);
private WorkflowPropertySource context;
public StateDeserializer() {
this(State.class);
}
public StateDeserializer(Class> vc) {
super(vc);
}
public StateDeserializer(WorkflowPropertySource context) {
this(State.class);
this.context = context;
}
@Override
public State deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException {
ObjectMapper mapper = (ObjectMapper) jp.getCodec();
JsonNode node = jp.getCodec().readTree(jp);
String typeValue = node.get("type").asText();
if (context != null) {
try {
String result = context.getPropertySource().getProperty(typeValue);
if (result != null) {
typeValue = result;
}
} catch (Exception e) {
logger.info("Exception trying to evaluate property: {}", e.getMessage());
}
}
// based on statetype return the specific state impl
DefaultState.Type type = DefaultState.Type.fromValue(typeValue);
switch (type) {
case EVENT:
return mapper.treeToValue(node, EventState.class);
case OPERATION:
return mapper.treeToValue(node, OperationState.class);
case SWITCH:
return mapper.treeToValue(node, SwitchState.class);
case SLEEP:
return mapper.treeToValue(node, SleepState.class);
case PARALLEL:
return mapper.treeToValue(node, ParallelState.class);
case INJECT:
return mapper.treeToValue(node, InjectState.class);
case FOREACH:
return mapper.treeToValue(node, ForEachState.class);
case CALLBACK:
return mapper.treeToValue(node, CallbackState.class);
default:
return mapper.treeToValue(node, DefaultState.class);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy