Search in sources :

Example 6 with OperationFormatException

use of org.jboss.as.cli.operation.OperationFormatException in project wildfly by wildfly.

the class DeleteJMSResourceHandler method buildRequestWithoutHeaders.

@Override
public ModelNode buildRequestWithoutHeaders(CommandContext ctx) throws OperationFormatException {
    try {
        if (!ctx.getParsedCommandLine().hasProperties()) {
            throw new OperationFormatException("Arguments are missing");
        }
    } catch (CommandFormatException e) {
        throw new OperationFormatException(e.getLocalizedMessage());
    }
    // String target = null;
    String jndiName = null;
    // TODO read server name from props
    String serverName = "default";
    String[] args = ctx.getArgumentsString().split("\\s+");
    int i = 0;
    while (i < args.length) {
        String arg = args[i++];
        if (arg.equals("--target")) {
        // if(i < args.length) {
        // target = args[i++];
        // }
        } else {
            jndiName = arg;
        }
    }
    if (jndiName == null) {
        throw new OperationFormatException("name is missing.");
    }
    ModelControllerClient client = ctx.getModelControllerClient();
    final String resource;
    if (Util.isTopic(client, jndiName)) {
        resource = "jms-topic";
    } else if (Util.isQueue(client, jndiName)) {
        resource = "jms-queue";
    } else if (Util.isConnectionFactory(client, jndiName)) {
        resource = "connection-factory";
    } else {
        throw new OperationFormatException("'" + jndiName + "' wasn't found among existing JMS resources.");
    }
    DefaultOperationRequestBuilder builder = new DefaultOperationRequestBuilder();
    builder.addNode("subsystem", "messaging");
    builder.addNode("hornetq-server", serverName);
    builder.addNode(resource, jndiName);
    builder.setOperationName("remove");
    return builder.buildRequest();
}
Also used : OperationFormatException(org.jboss.as.cli.operation.OperationFormatException) ModelControllerClient(org.jboss.as.controller.client.ModelControllerClient) CommandFormatException(org.jboss.as.cli.CommandFormatException) DefaultOperationRequestBuilder(org.jboss.as.cli.operation.impl.DefaultOperationRequestBuilder)

Example 7 with OperationFormatException

use of org.jboss.as.cli.operation.OperationFormatException in project wildfly by wildfly.

the class CreateJMSResourceHandler method buildRequestWithoutHeaders.

@Override
public ModelNode buildRequestWithoutHeaders(CommandContext ctx) throws OperationFormatException {
    try {
        if (!ctx.getParsedCommandLine().hasProperties()) {
            throw new OperationFormatException("Arguments are missing");
        }
    } catch (CommandFormatException e) {
        throw new OperationFormatException(e.getLocalizedMessage());
    }
    // String target = null;
    String restype = null;
    // String description = null;
    String propsStr = null;
    // boolean enabled = false;
    String jndiName = null;
    String[] args = ctx.getArgumentsString().split("\\s+");
    int i = 0;
    while (i < args.length) {
        String arg = args[i++];
        if (arg.equals("--restype")) {
            if (i < args.length) {
                restype = args[i++];
            }
        } else if (arg.equals("--target")) {
        // if(i < args.length) {
        // target = args[i++];
        // }
        } else if (arg.equals("--description")) {
        // if(i < args.length) {
        // restype = args[i++];
        // }
        } else if (arg.equals("--property")) {
            if (i < args.length) {
                propsStr = args[i++];
            }
        } else if (arg.equals("--enabled")) {
        // if (i < args.length) {
        // enabled = Boolean.parseBoolean(args[i++]);
        // }
        } else {
            jndiName = arg;
        }
    }
    if (restype == null) {
        throw new OperationFormatException("Required parameter --restype is missing.");
    }
    if (jndiName == null) {
        throw new OperationFormatException("JNDI name is missing.");
    }
    String name = null;
    // TODO read server name from props
    String serverName = "default";
    final Map<String, String> props;
    if (propsStr != null) {
        props = new HashMap<String, String>();
        String[] propsArr = propsStr.split(":");
        for (String prop : propsArr) {
            int equalsIndex = prop.indexOf('=');
            if (equalsIndex < 0 || equalsIndex == prop.length() - 1) {
                throw new OperationFormatException("Failed to parse property '" + prop + "'");
            }
            String propName = prop.substring(0, equalsIndex).trim();
            String propValue = prop.substring(equalsIndex + 1).trim();
            if (propName.isEmpty()) {
                throw new OperationFormatException("Failed to parse property '" + prop + "'");
            }
            if (propName.equals("imqDestinationName") || propName.equalsIgnoreCase("name")) {
                name = propValue;
            } else if ("ClientId".equals(propName)) {
                props.put("client-id", propValue);
            }
        }
    } else {
        props = Collections.emptyMap();
    }
    if (name == null) {
        name = jndiName.replace('/', '_');
    }
    if (restype.equals("javax.jms.Queue")) {
        DefaultOperationRequestBuilder builder = new DefaultOperationRequestBuilder();
        builder.addNode("subsystem", "messaging-activemq");
        builder.addNode("server", serverName);
        builder.addNode("jms-queue", name);
        builder.setOperationName("add");
        builder.getModelNode().get("entries").add(jndiName);
        for (String prop : props.keySet()) {
            builder.addProperty(prop, props.get(prop));
        }
        return builder.buildRequest();
    } else if (restype.equals("javax.jms.Topic")) {
        DefaultOperationRequestBuilder builder = new DefaultOperationRequestBuilder();
        builder.addNode("subsystem", "messaging-activemq");
        builder.addNode("server", serverName);
        builder.addNode("jms-topic", name);
        builder.setOperationName("add");
        builder.getModelNode().get("entries").add(jndiName);
        for (String prop : props.keySet()) {
            builder.addProperty(prop, props.get(prop));
        }
        return builder.buildRequest();
    } else if (restype.equals("javax.jms.ConnectionFactory") || restype.equals("javax.jms.TopicConnectionFactory") || restype.equals("javax.jms.QueueConnectionFactory")) {
        DefaultOperationRequestBuilder builder = new DefaultOperationRequestBuilder();
        builder.addNode("subsystem", "messaging-activemq");
        builder.addNode("server", serverName);
        builder.addNode("connection-factory", name);
        builder.setOperationName("add");
        builder.getModelNode().get("entries").add(jndiName);
        for (String prop : props.keySet()) {
            builder.addProperty(prop, props.get(prop));
        }
        return builder.buildRequest();
    } else {
        throw new OperationFormatException("Resource type " + restype + " isn't supported.");
    }
}
Also used : OperationFormatException(org.jboss.as.cli.operation.OperationFormatException) CommandFormatException(org.jboss.as.cli.CommandFormatException) DefaultOperationRequestBuilder(org.jboss.as.cli.operation.impl.DefaultOperationRequestBuilder)

Example 8 with OperationFormatException

use of org.jboss.as.cli.operation.OperationFormatException in project wildfly by wildfly.

the class DeleteJMSResourceHandler method buildRequestWithoutHeaders.

@Override
public ModelNode buildRequestWithoutHeaders(CommandContext ctx) throws OperationFormatException {
    try {
        if (!ctx.getParsedCommandLine().hasProperties()) {
            throw new OperationFormatException("Arguments are missing");
        }
    } catch (CommandFormatException e) {
        throw new OperationFormatException(e.getLocalizedMessage());
    }
    // String target = null;
    String jndiName = null;
    // TODO read server name from props
    String serverName = "default";
    String[] args = ctx.getArgumentsString().split("\\s+");
    int i = 0;
    while (i < args.length) {
        String arg = args[i++];
        if (arg.equals("--target")) {
        // if(i < args.length) {
        // target = args[i++];
        // }
        } else {
            jndiName = arg;
        }
    }
    if (jndiName == null) {
        throw new OperationFormatException("name is missing.");
    }
    ModelControllerClient client = ctx.getModelControllerClient();
    final String resource;
    if (Util.isTopic(client, jndiName)) {
        resource = "jms-topic";
    } else if (Util.isQueue(client, jndiName)) {
        resource = "jms-queue";
    } else if (Util.isConnectionFactory(client, jndiName)) {
        resource = "connection-factory";
    } else {
        throw new OperationFormatException("'" + jndiName + "' wasn't found among existing JMS resources.");
    }
    DefaultOperationRequestBuilder builder = new DefaultOperationRequestBuilder();
    builder.addNode("subsystem", "messaging");
    builder.addNode("server", serverName);
    builder.addNode(resource, jndiName);
    builder.setOperationName("remove");
    return builder.buildRequest();
}
Also used : OperationFormatException(org.jboss.as.cli.operation.OperationFormatException) ModelControllerClient(org.jboss.as.controller.client.ModelControllerClient) CommandFormatException(org.jboss.as.cli.CommandFormatException) DefaultOperationRequestBuilder(org.jboss.as.cli.operation.impl.DefaultOperationRequestBuilder)

Aggregations

OperationFormatException (org.jboss.as.cli.operation.OperationFormatException)8 DefaultOperationRequestBuilder (org.jboss.as.cli.operation.impl.DefaultOperationRequestBuilder)8 IOException (java.io.IOException)4 CommandFormatException (org.jboss.as.cli.CommandFormatException)4 ModelNode (org.jboss.dmr.ModelNode)4 CommandLineException (org.jboss.as.cli.CommandLineException)3 ModelControllerClient (org.jboss.as.controller.client.ModelControllerClient)2