org.fusesource.fabric.stream.log.LogStreamProducer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-log Show documentation
Show all versions of stream-log Show documentation
An executable jar that streams log data received via stdin to ActiveMQ. (powered by Camel)
/**
* Copyright (C) FuseSource, Inc.
* http://fusesource.com
*
* 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.fusesource.fabric.stream.log;
import org.apache.activemq.camel.component.ActiveMQComponent;
import org.apache.camel.CamelContext;
import org.apache.camel.Endpoint;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.impl.DefaultCamelContext;
import org.apache.camel.model.RouteDefinition;
import java.io.InputStream;
import java.util.Arrays;
import java.util.LinkedList;
/**
*
*
*
* @author Hiram Chirino
*/
public class LogStreamProducer {
private String broker;
private String destination;
private int batchSize = 1024*64;
private long batchTimeout = 1000*5;
private boolean compress = true;
private InputStream is = System.in;
public static void main(String[] args) throws Exception {
LogStreamProducer producer = new LogStreamProducer();
// Process the arguments
LinkedList argl = new LinkedList(Arrays.asList(args));
while(!argl.isEmpty()) {
try {
String arg = argl.removeFirst();
if( "--help".equals(arg) ) {
displayHelpAndExit(0);
} else if( "--broker".equals(arg) ) {
producer.broker = shift(argl);
} else if( "--destination".equals(arg) ) {
producer.destination = shift(argl);
} else if( "--batch-size".equals(arg) ) {
producer.batchSize = Integer.parseInt(shift(argl));
} else if( "--batch-timeout".equals(arg) ) {
producer.batchTimeout = Long.parseLong(shift(argl));
} else if( "--compress".equals(arg) ) {
producer.compress = Boolean.parseBoolean(shift(argl));
} else {
System.err.println("Invalid usage: unknown option: "+arg);
displayHelpAndExit(1);
}
} catch (NumberFormatException e) {
System.err.println("Invalid usage: argument not a number");
displayHelpAndExit(1);
}
}
if( producer.broker==null ) {
System.err.println("Invalid usage: --broker option not specified.");
displayHelpAndExit(1);
}
if( producer.destination==null ) {
System.err.println("Invalid usage: --destination option not specified.");
displayHelpAndExit(1);
}
producer.execute();
System.exit(0);
}
private static String shift(LinkedList argl) {
if(argl.isEmpty()) {
System.err.println("Invalid usage: Missing argument");
displayHelpAndExit(1);
}
return argl.removeFirst();
}
private static void displayHelpAndExit(int exitCode) {
System.exit(exitCode);
}
private void execute() throws Exception {
CamelContext context = new DefaultCamelContext();
configure(context);
context.start();
// block until the process is killed.
synchronized (this) {
while(true) {
this.wait();
}
}
}
public void configure(CamelContext context) throws Exception {
// no need to use JMX for this embedded CamelContext
context.disableJMX();
context.addComponent("activemq", ActiveMQComponent.activeMQComponent(broker));
final InputBatcher batcher = new InputBatcher();
batcher.setBatchSize(batchSize);
batcher.setBatchTimeout(batchTimeout);
batcher.setIs(is);
context.addComponent("batcher", batcher);
context.addRoutes(new RouteBuilder() {
public void configure() throws Exception {
Endpoint source = batcher.createEndpoint("stdin");
RouteDefinition route = from(source);
if(compress) {
route = route.process(new SnappyCompressor());
}
route.to("activemq:"+destination);
}
});
}
public int getBatchSize() {
return batchSize;
}
public void setBatchSize(int batchSize) {
this.batchSize = batchSize;
}
public long getBatchTimeout() {
return batchTimeout;
}
public void setBatchTimeout(long batchTimeout) {
this.batchTimeout = batchTimeout;
}
public String getBroker() {
return broker;
}
public void setBroker(String broker) {
this.broker = broker;
}
public boolean isCompress() {
return compress;
}
public void setCompress(boolean compress) {
this.compress = compress;
}
public String getDestination() {
return destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public InputStream getIs() {
return is;
}
public void setIs(InputStream is) {
this.is = is;
}
}