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

org.jboss.remotingjmx.protocol.v2.ParameterConnection Maven / Gradle / Ivy

/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2023 Red Hat, Inc., and individual contributors
 * as indicated by the @author tags.
 *
 * 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 org.jboss.remotingjmx.protocol.v2;

import static org.jboss.remotingjmx.protocol.v2.Constants.BEGIN;
import static org.jboss.remotingjmx.protocol.v2.Constants.RESPONSE_MASK;
import static org.jboss.remotingjmx.protocol.v2.Constants.SET_KEY_PAIR;
import static org.jboss.remotingjmx.protocol.v2.Constants.STRING;
import static org.jboss.remotingjmx.protocol.v2.Constants.VOID;

import java.io.DataOutput;
import java.io.IOException;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.TimeUnit;

import javax.management.remote.JMXServiceURL;

import org.jboss.logging.Logger;
import org.jboss.remoting3.Channel;
import org.jboss.remotingjmx.VersionedConnection;
import org.xnio.IoFuture;

/**
 * Class responsible for the initial parameter exchange on the connection before we 'begin' and allow interoperability with the
 * target MBeanServer.
 *
 *
 * @author Darran Lofthouse
 */
public class ParameterConnection extends ClientCommon {

    private static final Logger log = Logger.getLogger(ParameterConnection.class);

    private final Channel channel;
    private final Map environment;
    private final ClientRequestManager clientRequestManager;
    private final ClientExecutorManager clientExecutorManager;
    private final JMXServiceURL serviceUrl;
    // Registry of handlers for the incoming messages.
    private final Map handlerRegistry;

    ParameterConnection(Channel channel, final Map environment, final JMXServiceURL serviceUrl) {
        super(channel, environment);
        this.channel = channel;
        this.environment = environment;
        this.clientRequestManager = new ClientRequestManager();
        this.clientExecutorManager = new ClientExecutorManager(environment);
        this.serviceUrl = serviceUrl;
        this.handlerRegistry = createHandlerRegistry();
    }

    private Map createHandlerRegistry() {
        Map registry = new HashMap();
        registry.put((byte) (SET_KEY_PAIR ^ RESPONSE_MASK), new MarshalledResponseHandler(VOID));
        registry.put((byte) (BEGIN ^ RESPONSE_MASK), new BeginResponseHandler());

        return Collections.unmodifiableMap(registry);
    }

    @Override
    Map getHandlerRegistry() {
        return handlerRegistry;
    }

    @Override
    protected ClientRequestManager getClientRequestManager() {
        return clientRequestManager;
    }

    @Override
    protected ClientExecutorManager getClientExecutorManager() {
        return clientExecutorManager;
    }

    VersionedConnection getConnection() throws IOException {
        sendVersionHeader();

        IoFuture futureWelcome = WelcomeMessageReceiver.awaitWelcomeMessage(channel);
        IoFuture.Status result = futureWelcome.await(timeoutSeconds, TimeUnit.SECONDS);
        switch (result) {
            case DONE:
                // Set this first as something will need to start handling the response messages.
                channel.receiveMessage(new MessageReceiver());
                break;
            case FAILED:
                throw futureWelcome.getException();
            default:
                throw new IOException("Unable to obtain connectionId, status=" + result.toString());
        }

        sendKeyPairs();
        String connectionId = begin();

        ClientConnection cc = new ClientConnection(channel, environment, clientRequestManager, clientExecutorManager,
                connectionId);
        cc.start();

        return cc;
    }

    private void sendKeyPairs() throws IOException {
        String path = serviceUrl.getURLPath();
        if (path.contains("?")) {
            String parameters = path.substring(path.indexOf("?") + 1);
            String[] pairs = parameters.split(",");
            for (String currentPair : pairs) {
                String[] keyValue = currentPair.split("=");
                if (keyValue.length == 2) {
                    setKeyPair(keyValue[0], keyValue[1]);
                } else {
                    throw new IOException(String.format("Unable to parse key pairs from '%s'", parameters));
                }
            }
        }
    }

    private void sendVersionHeader() throws IOException {
        write(new MessageWriter() {
            @Override
            public void write(DataOutput output) throws IOException {
                output.writeBytes("JMX");
                output.writeByte(VersionTwo.getVersionIdentifier());
            }
        });
    }

    private void setKeyPair(final String key, final String value) throws IOException {
        VersionedIoFuture> future = new VersionedIoFuture>();
        final int correlationId = clientRequestManager.reserveNextCorrelationId(future);
        try {
            write(new MessageWriter() {

                @Override
                public void write(DataOutput output) throws IOException {
                    output.writeByte(SET_KEY_PAIR);
                    output.writeInt(correlationId);

                    output.writeByte(STRING);
                    output.writeUTF(key);
                    output.writeByte(STRING);
                    output.writeUTF(value);
                }
            });

            log.tracef("[%d] unregisterMBean - Request Sent", correlationId);

            IoFuture.Status result = future.await(timeoutSeconds, TimeUnit.SECONDS);
            switch (result) {
                case FAILED:
                    throw future.getException();
                case DONE:
                    TypeExceptionHolder response = future.get();
                    if (response.e == null) {
                        return;
                    }

                    throw toIoException(response.e);
                default:
                    throw new IOException("Unable to invoke unregisterMBean, status=" + result.toString());
            }
        } finally {
            clientRequestManager.releaseCorrelationId(correlationId);
        }
    }

    private String begin() throws IOException {
        VersionedIoFuture> future = new VersionedIoFuture>();
        final int correlationId = clientRequestManager.reserveNextCorrelationId(future);
        try {
            write(new MessageWriter() {

                @Override
                public void write(DataOutput output) throws IOException {
                    output.writeByte(BEGIN);
                    output.writeInt(correlationId);
                }
            });

            log.tracef("[%d] begin - Request Sent", correlationId);

            IoFuture.Status result = future.await(timeoutSeconds, TimeUnit.SECONDS);
            switch (result) {
                case FAILED:
                    throw future.getException();
                case DONE:
                    TypeExceptionHolder response = future.get();
                    if (response.e == null) {
                        return response.value;
                    }
                    throw toIoException(response.e);
                default:
                    throw new IOException("Unable to invoke begin, status=" + result.toString());
            }
        } finally {
            clientRequestManager.releaseCorrelationId(correlationId);
        }

    }

    private class BeginResponseHandler extends StringResponseHandler implements ClientCommon.MessageHandler {

        // Whatever the response we are finished receiving until ClientConnection starts.

        @Override
        public boolean endReceiveLoop() {
            return true;
        }

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy