Plugin to start the broker, run a consumer and producer.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@410462 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Frederick G. Oconer 2006-05-31 08:28:21 +00:00
parent 4bdfd88208
commit faba216294
4 changed files with 326 additions and 0 deletions

View File

@ -0,0 +1,62 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>incubator-activemq</groupId>
<artifactId>activemq-parent</artifactId>
<version>4.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<groupId>incubator-activemq</groupId>
<artifactId>maven-perf-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>ActiveMQ :: Performance Test Plugin</name>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>incubator-activemq</groupId>
<artifactId>activemq-core</artifactId>
<version>4.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>incubator-activemq</groupId>
<artifactId>activemq-console</artifactId>
<version>4.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>incubator-activemq</groupId>
<artifactId>activemq-perftest</artifactId>
<version>4.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.1.1.0</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbynet</artifactId>
<version>10.1.1.0</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-j2ee-management_1.0_spec</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,69 @@
package org.apache.activemq.maven;
/*
* Copyright 2001-2005 The Apache Software Foundation.
*
* 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.
*/
import org.apache.activemq.tool.ConsumerTool;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
/**
* Goal which touches a timestamp file.
*
* @goal consumer
* @phase process
*/
public class ConsumerMojo
extends AbstractMojo {
/**
* @parameter expression="${url}" default-value="tcp://localhost:61616"
* @required
*/
private String url;
/**
* @parameter expression="${topic}" default-value="true"
* @required
*/
private String topic;
/**
* @parameter expression="${subject}" default-value="FOO.BAR"
* @required
*/
private String subject;
/**
* @parameter expression="${durable}" default-value="false"
* @required
*/
private String durable;
/**
* @parameter expression="${maximumMessage}" default-value="10"
* @required
*/
private String maximumMessage;
public void execute()
throws MojoExecutionException {
String[] args = {url, topic, subject, durable, maximumMessage};
ConsumerTool.main(args);
}
}

View File

@ -0,0 +1,71 @@
package org.apache.activemq.maven;
import org.apache.activemq.tool.ConsumerTool;
import org.apache.activemq.tool.ProducerTool;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
/*
* Copyright 2001-2005 The Apache Software Foundation.
*
* 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.
*/
/**
* Goal which touches a timestamp file.
*
* @goal producer
* @phase process
*/
public class ProducerMojo
extends AbstractMojo {
/**
* @parameter expression="${url}" default-value="tcp://localhost:61616"
* @required
*/
private String url;
/**
* @parameter expression="${topic}" default-value="true"
* @required
*/
private String topic;
/**
* @parameter expression="${subject}" default-value="FOO.BAR"
* @required
*/
private String subject;
/**
* @parameter expression="${durable}" default-value="false"
* @required
*/
private String durable;
/**
* @parameter expression="${messageCount}" default-value="10"
* @required
*/
private String messageCount;
/**
* @parameter expression="${messageSize}" default-value="255"
* @required
*/
private String messageSize;
public void execute()
throws MojoExecutionException {
String[] args = {url,topic,subject,durable,messageCount,messageSize};
ProducerTool.main(args);
}
}

View File

@ -0,0 +1,124 @@
package org.apache.activemq.maven;
/*
* Copyright 2001-2005 The Apache Software Foundation.
*
* 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.
*/
import org.apache.activemq.console.Main;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
/**
* Goal which starts activemq broker.
*
* @goal server
* @phase process
*/
public class ServerMojo
extends AbstractMojo {
/**
* Location of the output directory. Defaults to target.
*
* @parameter expression="${project.build.directory}"
* @required
*/
private File outputDirectory;
/**
* Location of the predefined config files.
*
* @parameter expression="${configDirectory}" default-value="${basedir}/src/main/resources/config"
* @required
*/
private String configDirectory;
/**
* Type of activemq configuration to use. This is also the filename used.
*
* @parameter expression="${configType}" default-value="activemq"
* @required
*/
private String configType;
/**
* Location of activemq config file other those found in resources/config.
*
* @parameter expression="${configFile}"
*/
private File configFile;
public void execute()
throws MojoExecutionException {
File out = outputDirectory;
// Create output directory if it doesn't exist.
if (!out.exists()) {
out.mkdirs();
}
File config;
if (configFile != null) {
config = configFile;
} else {
config = new File(configDirectory + File.separator + configType + ".xml");
}
try {
config = copy(config);
} catch (IOException e) {
throw new MojoExecutionException(e.getMessage());
}
String[] args = {"start", "xbean:" + (config.toURI()).toString()};
Main.main(args);
}
/**
* Copy activemq configuration file to output directory.
*
* @param source
* @return
* @throws IOException
*/
public File copy(File source) throws IOException {
FileChannel in = null, out = null;
File dest = new File(outputDirectory.getAbsolutePath() + File.separator + "activemq.xml");
try {
in = new FileInputStream(source).getChannel();
out = new FileOutputStream(dest).getChannel();
long size = in.size();
MappedByteBuffer buf = in.map(FileChannel.MapMode.READ_ONLY, 0, size);
out.write(buf);
} finally {
if (in != null) in.close();
if (out != null) out.close();
}
return dest;
}
}