All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kie.kogito.workflows.services.JavaSerializationMarshaller Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.kie.kogito.workflows.services;

import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.Set;
import java.util.function.Function;

import org.kie.kogito.event.CloudEventMarshaller;

import io.cloudevents.CloudEvent;
import io.cloudevents.CloudEventData;

public class JavaSerializationMarshaller implements CloudEventMarshaller {

    @Override
    public byte[] marshall(CloudEvent dataEvent) throws IOException {
        ByteArrayOutputStream bytes = new ByteArrayOutputStream();
        try (DataOutputStream out = new DataOutputStream(bytes)) {
            out.writeUTF(dataEvent.getSpecVersion().toString());
            out.writeUTF(dataEvent.getId());
            out.writeUTF(dataEvent.getType());
            out.writeUTF(dataEvent.getSource().toString());
            writeOptional(out, dataEvent.getTime());
            writeOptional(out, dataEvent.getSubject());
            writeOptional(out, dataEvent.getDataSchema());
            writeOptional(out, dataEvent.getDataContentType());

            Set extensionNames = dataEvent.getExtensionNames();
            out.writeShort(extensionNames.size());
            for (String extensionName : extensionNames) {
                out.writeUTF(extensionName);
                writeOptional(out, dataEvent.getExtension(extensionName));
            }
            CloudEventData data = dataEvent.getData();
            if (data != null) {
                out.writeBoolean(true);
                byte[] dataBytes = data.toBytes();
                out.write(dataBytes, 0, dataBytes.length);
            } else {
                out.writeBoolean(false);
            }
        }
        return bytes.toByteArray();
    }

    private void writeOptional(DataOutputStream out, Object object) throws IOException {
        if (object != null) {
            out.writeBoolean(true);
            out.writeUTF(object.toString());
        } else {
            out.writeBoolean(false);
        }
    }

    @Override
    public  Function cloudEventDataFactory() {
        return new JavaSerializationCloudEventDataFactory<>();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy