org.graylog2.inputs.codecs.RandomHttpMessageCodec Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog2.inputs.codecs;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.inject.assistedinject.Assisted;
import org.graylog2.inputs.random.generators.FakeHttpRawMessageGenerator;
import org.graylog2.plugin.Message;
import org.graylog2.plugin.configuration.Configuration;
import org.graylog2.plugin.configuration.ConfigurationRequest;
import org.graylog2.plugin.inputs.annotations.Codec;
import org.graylog2.plugin.inputs.annotations.ConfigClass;
import org.graylog2.plugin.inputs.annotations.FactoryClass;
import org.graylog2.plugin.inputs.codecs.AbstractCodec;
import org.graylog2.plugin.inputs.codecs.CodecAggregator;
import org.graylog2.plugin.journal.RawMessage;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.inject.Inject;
import java.io.IOException;
import static org.graylog2.inputs.random.generators.FakeHttpRawMessageGenerator.GeneratorState;
@Codec(name = "random-http-msg", displayName = "Random HTTP Message")
public class RandomHttpMessageCodec extends AbstractCodec {
private static final Logger log = LoggerFactory.getLogger(RandomHttpMessageCodec.class);
private final ObjectMapper objectMapper;
@Inject
public RandomHttpMessageCodec(@Assisted Configuration configuration, ObjectMapper objectMapper) {
super(configuration);
this.objectMapper = objectMapper;
}
@Nullable
@Override
public Message decode(@Nonnull RawMessage rawMessage) {
if (!rawMessage.getCodecName().equals(getName())) {
log.error("Cannot decode payload type {}, skipping message {}",
rawMessage.getCodecName(), rawMessage.getId());
return null;
}
try {
final GeneratorState state = objectMapper.readValue(rawMessage.getPayload(), GeneratorState.class);
final Message message = FakeHttpRawMessageGenerator.generateMessage(state);
return message;
} catch (IOException e) {
log.error("Cannot decode message to class FakeHttpRawMessageGenerator.GeneratorState", e);
}
return null;
}
@Nullable
@Override
public CodecAggregator getAggregator() {
return null;
}
@FactoryClass
public interface Factory extends AbstractCodec.Factory {
@Override
RandomHttpMessageCodec create(Configuration configuration);
@Override
Config getConfig();
@Override
Descriptor getDescriptor();
}
@ConfigClass
public static class Config extends AbstractCodec.Config {
@Override
public void overrideDefaultValues(@Nonnull ConfigurationRequest cr) {
}
}
public static class Descriptor extends AbstractCodec.Descriptor {
@Inject
public Descriptor() {
super(RandomHttpMessageCodec.class.getAnnotation(Codec.class).displayName());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy