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

org.jolokia.discovery.DiscoveryIncomingMessage Maven / Gradle / Ivy

There is a newer version: 1.7.2
Show newest version
package org.jolokia.discovery;

import java.io.*;
import java.net.DatagramPacket;
import java.net.InetAddress;
import java.util.*;

import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;

/**
 * @author roland
 * @since 27.01.14
 */
public class DiscoveryIncomingMessage extends AbstractDiscoveryMessage {

    private InetAddress sourceAddress;
    private int sourcePort;

    /**
     * Parse a message from a datagram packet.
     *
     * @param pPacket packet received
     * @throws IOException if reading/parsing failed.
     */
    public DiscoveryIncomingMessage(DatagramPacket pPacket) throws IOException {
        sourceAddress = pPacket.getAddress();
        sourcePort = pPacket.getPort();

        Map inData = parseData(pPacket.getData(), pPacket.getLength());
        String typeS = (String) inData.remove(Payload.TYPE);
        if (typeS == null) {
            throw new IOException("No message type given in discovery message " + inData);
        }
        try {
            MessageType type = MessageType.valueOf(typeS.toUpperCase());
            setType(type);
        } catch (IllegalArgumentException exp) {
            throw new IOException("Invalid type " + typeS + " given in discovery message",exp);
        }
        if (isResponse()) {
            setAgentDetails(new AgentDetails(inData));
        }
    }

    public InetAddress getSourceAddress() {
        return sourceAddress;
    }

    public int getSourcePort() {
        return sourcePort;
    }

    @Override
    public String toString() {
        return "JolokiaDiscoveryIncomingMessage{" +
               "source = " + getSourceAddress() + ":" + getSourcePort() + ": " + super.toString() + "}";
    }

    public static Map parseData(byte[] pData, int pLength) throws IOException {
        JSONParser parser = new JSONParser();
        ByteArrayInputStream is = new ByteArrayInputStream(pData,0,pLength);
        try {
            JSONObject inMsg = (JSONObject) parser.parse(new InputStreamReader(is, "UTF-8"));
            Map data = new HashMap();
            for (Map.Entry entry : (Set) inMsg.entrySet()) {
                try {
                    data.put(Payload.fromKey(entry.getKey().toString()), entry.getValue());
                } catch (IllegalArgumentException exp) {
                    // We simply ignore key which are unknown
                }
            }
            return data;
        } catch (ParseException e) {
            throw new IOException("Cannot parse discovery message as JSON",e);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy