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

com.proofpoint.event.client.JsonEventSerializer Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2010 Proofpoint, Inc.
 *
 * 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 com.proofpoint.event.client;

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.google.common.collect.ImmutableMap;
import com.proofpoint.node.NodeInfo;

import javax.annotation.Nullable;
import javax.inject.Inject;

import java.io.IOException;
import java.util.Map;
import java.util.Set;

import static com.google.common.base.Preconditions.checkNotNull;
import static com.proofpoint.event.client.EventTypeMetadata.getValidEventTypeMetaDataSet;

public class JsonEventSerializer
{
    private final NodeInfo nodeinfo;
    private final Map, EventTypeMetadata> metadataMap;

    @Inject
    public JsonEventSerializer(NodeInfo nodeInfo, Set> eventTypes)
    {
        this.nodeinfo = checkNotNull(nodeInfo, "nodeInfo is null");
        checkNotNull(eventTypes, "eventTypes is null");

        ImmutableMap.Builder, EventTypeMetadata> map = ImmutableMap.builder();
        for (EventTypeMetadata eventType : eventTypes) {
            map.put(eventType.getEventClass(), eventType);
        }
        this.metadataMap = map.build();
    }

    public JsonEventSerializer(NodeInfo nodeInfo, Class... eventClasses)
    {
        this(nodeInfo, getValidEventTypeMetaDataSet(eventClasses));
    }

    public  void serialize(T event, @Nullable String token, JsonGenerator jsonGenerator)
            throws IOException
    {
        checkNotNull(event, "event is null");
        checkNotNull(jsonGenerator, "jsonGenerator is null");

        JsonSerializer serializer = getSerializer(event, token);
        if (serializer == null) {
            throw new InvalidEventException("Event class [%s] has not been registered as an event", event.getClass().getName());
        }

        serializer.serialize(event, jsonGenerator, null);
    }

    @SuppressWarnings("unchecked")
    private  JsonSerializer getSerializer(T event, @Nullable String token)
    {
        return new EventJsonSerializer<>(nodeinfo,
                token, (EventTypeMetadata) metadataMap.get(event.getClass()));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy