Search in sources :

Example 1 with ProcessInstanceMarshallerException

use of org.kie.kogito.serialization.process.ProcessInstanceMarshallerException in project kogito-runtimes by kiegroup.

the class ProtobufJsonNodeMessageMarshaller method unmarshall.

@Override
public Object unmarshall(Object marshalled) {
    try {
        Any data = (Any) marshalled;
        KogitoTypesProtobuf.JsonNode storedValue = data.unpack(KogitoTypesProtobuf.JsonNode.class);
        JsonNode node = ObjectMapperFactory.get().readTree(storedValue.getContent());
        return node;
    } catch (InvalidProtocolBufferException | JsonProcessingException e1) {
        throw new ProcessInstanceMarshallerException("Error trying to unmarshalling a Json Node value", e1);
    }
}
Also used : InvalidProtocolBufferException(com.google.protobuf.InvalidProtocolBufferException) ProcessInstanceMarshallerException(org.kie.kogito.serialization.process.ProcessInstanceMarshallerException) JsonNode(com.fasterxml.jackson.databind.JsonNode) Any(com.google.protobuf.Any) KogitoTypesProtobuf(org.kie.kogito.serialization.process.protobuf.KogitoTypesProtobuf) JsonProcessingException(com.fasterxml.jackson.core.JsonProcessingException)

Example 2 with ProcessInstanceMarshallerException

use of org.kie.kogito.serialization.process.ProcessInstanceMarshallerException in project kogito-runtimes by kiegroup.

the class ProtobufLongMarshallerStrategy method unmarshall.

@Override
public Object unmarshall(Object marshalled) {
    try {
        Any data = (Any) marshalled;
        Int64Value storedValue = data.unpack(Int64Value.class);
        return storedValue.getValue();
    } catch (InvalidProtocolBufferException e1) {
        throw new ProcessInstanceMarshallerException("Error trying to unmarshalling a long value", e1);
    }
}
Also used : Int64Value(com.google.protobuf.Int64Value) InvalidProtocolBufferException(com.google.protobuf.InvalidProtocolBufferException) ProcessInstanceMarshallerException(org.kie.kogito.serialization.process.ProcessInstanceMarshallerException) Any(com.google.protobuf.Any)

Example 3 with ProcessInstanceMarshallerException

use of org.kie.kogito.serialization.process.ProcessInstanceMarshallerException in project kogito-runtimes by kiegroup.

the class ProtobufProcessInstanceReader method buildWorkItemNodeInstance.

private NodeInstanceImpl buildWorkItemNodeInstance(WorkItemNodeInstanceContent content) {
    try {
        WorkItemNodeInstance nodeInstance = instanceWorkItem(content);
        if (nodeInstance instanceof HumanTaskNodeInstance) {
            HumanTaskNodeInstance humanTaskNodeInstance = (HumanTaskNodeInstance) nodeInstance;
            HumanTaskWorkItemImpl workItem = (HumanTaskWorkItemImpl) nodeInstance.getWorkItem();
            Any workItemDataMessage = content.getWorkItemData();
            if (workItemDataMessage.is(HumanTaskWorkItemData.class)) {
                HumanTaskWorkItemData workItemData = workItemDataMessage.unpack(HumanTaskWorkItemData.class);
                humanTaskNodeInstance.getNotCompletedDeadlineTimers().putAll(buildDeadlines(workItemData.getCompletedDeadlinesMap()));
                humanTaskNodeInstance.getNotCompletedReassigments().putAll(buildReassignments(workItemData.getCompletedReassigmentsMap()));
                humanTaskNodeInstance.getNotStartedDeadlineTimers().putAll(buildDeadlines(workItemData.getStartDeadlinesMap()));
                humanTaskNodeInstance.getNotStartedReassignments().putAll(buildReassignments(workItemData.getStartReassigmentsMap()));
                if (workItemData.hasTaskName()) {
                    workItem.setTaskName(workItemData.getTaskName());
                }
                if (workItemData.hasTaskDescription()) {
                    workItem.setTaskDescription(workItemData.getTaskDescription());
                }
                if (workItemData.hasTaskPriority()) {
                    workItem.setTaskPriority(workItemData.getTaskPriority());
                }
                if (workItemData.hasTaskReferenceName()) {
                    workItem.setReferenceName(workItemData.getTaskReferenceName());
                }
                if (workItemData.hasActualOwner()) {
                    workItem.setActualOwner(workItemData.getActualOwner());
                }
                workItem.getAdminUsers().addAll(workItemData.getAdminUsersList());
                workItem.getAdminGroups().addAll(workItemData.getAdminGroupsList());
                workItem.getPotentialUsers().addAll(workItemData.getPotUsersList());
                workItem.getPotentialGroups().addAll(workItemData.getPotGroupsList());
                workItem.getExcludedUsers().addAll(workItemData.getExcludedUsersList());
                workItem.getComments().putAll(workItemData.getCommentsList().stream().map(this::buildComment).collect(Collectors.toMap(Comment::getId, Function.identity())));
                workItem.getAttachments().putAll(workItemData.getAttachmentsList().stream().map(this::buildAttachment).collect(Collectors.toMap(Attachment::getId, Function.identity())));
            }
        }
        nodeInstance.internalSetWorkItemId(content.getWorkItemId());
        KogitoWorkItemImpl workItem = (KogitoWorkItemImpl) nodeInstance.getWorkItem();
        workItem.setId(content.getWorkItemId());
        workItem.setProcessInstanceId(ruleFlowProcessInstance.getStringId());
        workItem.setName(content.getName());
        workItem.setState(content.getState());
        workItem.setDeploymentId(ruleFlowProcessInstance.getDeploymentId());
        workItem.setProcessInstance(ruleFlowProcessInstance);
        workItem.setPhaseId(content.getPhaseId());
        workItem.setPhaseStatus(content.getPhaseStatus());
        workItem.setStartDate(new Date(content.getStartDate()));
        if (content.getCompleteDate() > 0) {
            workItem.setCompleteDate(new Date(content.getCompleteDate()));
        }
        if (content.getTimerInstanceIdCount() > 0) {
            nodeInstance.internalSetTimerInstances(new ArrayList<>(content.getTimerInstanceIdList()));
        }
        nodeInstance.internalSetProcessInstanceId(content.getErrorHandlingProcessInstanceId());
        varReader.buildVariables(content.getVariableList()).forEach(var -> nodeInstance.getWorkItem().getParameters().put(var.getName(), var.getValue()));
        varReader.buildVariables(content.getResultList()).forEach(var -> nodeInstance.getWorkItem().getResults().put(var.getName(), var.getValue()));
        return nodeInstance;
    } catch (InvalidProtocolBufferException ex) {
        throw new ProcessInstanceMarshallerException("cannot unpack node instance", ex);
    }
}
Also used : Comment(org.kie.kogito.process.workitem.Comment) HumanTaskNodeInstance(org.jbpm.workflow.instance.node.HumanTaskNodeInstance) InvalidProtocolBufferException(com.google.protobuf.InvalidProtocolBufferException) ProcessInstanceMarshallerException(org.kie.kogito.serialization.process.ProcessInstanceMarshallerException) Attachment(org.kie.kogito.process.workitem.Attachment) WorkItemNodeInstance(org.jbpm.workflow.instance.node.WorkItemNodeInstance) HumanTaskWorkItemImpl(org.jbpm.process.instance.impl.humantask.HumanTaskWorkItemImpl) HumanTaskWorkItemData(org.kie.kogito.serialization.process.protobuf.KogitoWorkItemsProtobuf.HumanTaskWorkItemData) KogitoWorkItemImpl(org.kie.kogito.process.workitems.impl.KogitoWorkItemImpl) Any(com.google.protobuf.Any) Date(java.util.Date)

Example 4 with ProcessInstanceMarshallerException

use of org.kie.kogito.serialization.process.ProcessInstanceMarshallerException in project kogito-runtimes by kiegroup.

the class ProtobufProcessInstanceReader method instanceWorkItem.

private WorkItemNodeInstance instanceWorkItem(WorkItemNodeInstanceContent content) {
    if (content.hasWorkItemData()) {
        Any workItemDataMessage = content.getWorkItemData();
        if (workItemDataMessage.is(HumanTaskWorkItemData.class)) {
            HumanTaskNodeInstance nodeInstance = new HumanTaskNodeInstance();
            HumanTaskWorkItemImpl workItem = new HumanTaskWorkItemImpl();
            nodeInstance.internalSetWorkItem(workItem);
            return nodeInstance;
        } else {
            throw new ProcessInstanceMarshallerException("Don't know which type of work item is");
        }
    } else {
        WorkItemNodeInstance nodeInstance = new WorkItemNodeInstance();
        KogitoWorkItemImpl workItem = new KogitoWorkItemImpl();
        nodeInstance.internalSetWorkItem(workItem);
        return nodeInstance;
    }
}
Also used : HumanTaskNodeInstance(org.jbpm.workflow.instance.node.HumanTaskNodeInstance) ProcessInstanceMarshallerException(org.kie.kogito.serialization.process.ProcessInstanceMarshallerException) HumanTaskWorkItemImpl(org.jbpm.process.instance.impl.humantask.HumanTaskWorkItemImpl) WorkItemNodeInstance(org.jbpm.workflow.instance.node.WorkItemNodeInstance) KogitoWorkItemImpl(org.kie.kogito.process.workitems.impl.KogitoWorkItemImpl) Any(com.google.protobuf.Any)

Example 5 with ProcessInstanceMarshallerException

use of org.kie.kogito.serialization.process.ProcessInstanceMarshallerException in project kogito-runtimes by kiegroup.

the class ProtobufDoubleMarshallerStrategy method unmarshall.

@Override
public Object unmarshall(Object marshalled) {
    try {
        Any data = (Any) marshalled;
        DoubleValue storedValue = data.unpack(DoubleValue.class);
        return storedValue.getValue();
    } catch (InvalidProtocolBufferException e1) {
        throw new ProcessInstanceMarshallerException("Error trying to unmarshalling a double value", e1);
    }
}
Also used : DoubleValue(com.google.protobuf.DoubleValue) InvalidProtocolBufferException(com.google.protobuf.InvalidProtocolBufferException) ProcessInstanceMarshallerException(org.kie.kogito.serialization.process.ProcessInstanceMarshallerException) Any(com.google.protobuf.Any)

Aggregations

ProcessInstanceMarshallerException (org.kie.kogito.serialization.process.ProcessInstanceMarshallerException)13 Any (com.google.protobuf.Any)12 InvalidProtocolBufferException (com.google.protobuf.InvalidProtocolBufferException)10 IOException (java.io.IOException)2 Date (java.util.Date)2 HumanTaskWorkItemImpl (org.jbpm.process.instance.impl.humantask.HumanTaskWorkItemImpl)2 HumanTaskNodeInstance (org.jbpm.workflow.instance.node.HumanTaskNodeInstance)2 WorkItemNodeInstance (org.jbpm.workflow.instance.node.WorkItemNodeInstance)2 KogitoWorkItemImpl (org.kie.kogito.process.workitems.impl.KogitoWorkItemImpl)2 JsonProcessingException (com.fasterxml.jackson.core.JsonProcessingException)1 JsonNode (com.fasterxml.jackson.databind.JsonNode)1 BoolValue (com.google.protobuf.BoolValue)1 ByteString (com.google.protobuf.ByteString)1 BytesValue (com.google.protobuf.BytesValue)1 DoubleValue (com.google.protobuf.DoubleValue)1 FloatValue (com.google.protobuf.FloatValue)1 Int32Value (com.google.protobuf.Int32Value)1 Int64Value (com.google.protobuf.Int64Value)1 StringValue (com.google.protobuf.StringValue)1 Timestamp (com.google.protobuf.Timestamp)1