Skip to content

Commit

Permalink
add getLogger(..., Sender) method to the factory; add an asynchronous…
Browse files Browse the repository at this point in the history
… wrapper around RawSocketSender
  • Loading branch information
Mike Kobyakov committed Sep 4, 2014
1 parent cb20c25 commit f38dafb
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 2 deletions.
20 changes: 18 additions & 2 deletions src/main/java/org/fluentd/logger/FluentLoggerFactory.java
Expand Up @@ -19,6 +19,7 @@

import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.Collections;
import java.util.Map;
import java.util.Properties;
import java.util.WeakHashMap;
Expand All @@ -33,7 +34,7 @@ public class FluentLoggerFactory {
private final Map<String, FluentLogger> loggers;

public FluentLoggerFactory() {
loggers = new WeakHashMap<String, FluentLogger>();
loggers = Collections.synchronizedMap(new WeakHashMap<String, FluentLogger>());
}

public FluentLogger getLogger(String tagPrefix) {
Expand All @@ -48,7 +49,7 @@ public FluentLogger getLogger(String tagPrefix, String host, int port, int timeo
return getLogger(tagPrefix, host, port, timeout, bufferCapacity, new ExponentialDelayReconnector());
}

public synchronized FluentLogger getLogger(String tagPrefix, String host, int port, int timeout, int bufferCapacity,
public FluentLogger getLogger(String tagPrefix, String host, int port, int timeout, int bufferCapacity,
Reconnector reconnector) {
String key = String.format("%s_%s_%d_%d_%d", new Object[] { tagPrefix, host, port, timeout, bufferCapacity });
if (loggers.containsKey(key)) {
Expand All @@ -73,6 +74,21 @@ public synchronized FluentLogger getLogger(String tagPrefix, String host, int po
}
}

public FluentLogger getLogger(String tagPrefix, String host, int port, int timeout, int bufferCapacity,
Sender sender) {
if (sender == null) {
return getLogger(tagPrefix, host, port, timeout, bufferCapacity);
}
String key = String.format("%s_%s_%d_%d_%d_%s", new Object[] { tagPrefix, host, port, timeout, bufferCapacity, sender == null ? "null" : sender .getName() });
if (loggers.containsKey(key)) {
return loggers.get(key);
} else {
FluentLogger logger = new FluentLogger(tagPrefix, sender);
loggers.put(key, logger);
return logger;
}
}

@SuppressWarnings("unchecked")
private Sender createSenderInstance(final String className, final Object[] params) throws ClassNotFoundException,
SecurityException, NoSuchMethodException, IllegalArgumentException, InstantiationException,
Expand Down
94 changes: 94 additions & 0 deletions src/main/java/org/fluentd/logger/sender/AsyncRawSocketSender.java
@@ -0,0 +1,94 @@

package org.fluentd.logger.sender;

import java.util.Map;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

import org.fluentd.logger.sender.ExponentialDelayReconnector;
import org.fluentd.logger.sender.RawSocketSender;
import org.fluentd.logger.sender.Reconnector;
import org.fluentd.logger.sender.Sender;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
*
* @author mkobyakov
*
*/
public class AsyncRawSocketSender implements Sender {

private RawSocketSender sender;
private Reconnector reconnector;

@SuppressWarnings("unused")
private static final Logger logger = LoggerFactory.getLogger(AsyncRawSocketSender.class);

private static final ExecutorService flusher = Executors.newSingleThreadExecutor();

public AsyncRawSocketSender() {
this("localhost", 24224);
}

public AsyncRawSocketSender(String host, int port) {
this(host, port, 3 * 1000, 8 * 1024 * 1024);
}

public AsyncRawSocketSender(String host, int port, int timeout,
int bufferCapacity) {
this(host, port, timeout, bufferCapacity,
new ExponentialDelayReconnector());
}

public AsyncRawSocketSender(String host, int port, int timeout,
int bufferCapacity, Reconnector reconnector) {
this.reconnector = reconnector;
this.sender = new RawSocketSender(host, port, timeout, bufferCapacity,
reconnector);
}

@Override
public synchronized void flush() {
final RawSocketSender sender = this.sender;
flusher.execute(new Runnable() {
@Override
public void run() {
sender.flush();
}
});
}

@Override
public void close() {
sender.close();
}

@Override
public boolean emit(String tag, Map<String, Object> data) {
return emit(tag, System.currentTimeMillis() / 1000, data);
}

@Override
public boolean emit(final String tag, final long timestamp, final Map<String, Object> data) {
final RawSocketSender sender = this.sender;
flusher.execute(new Runnable() {
@Override
public void run() {
sender.emit(tag, timestamp, data);
}
});

return sender.isConnected() || reconnector.enableReconnection(System.currentTimeMillis());
}

@Override
public String getName() {
return sender.getName();
}

@Override
public boolean isConnected() {
return sender.isConnected();
}
}

0 comments on commit f38dafb

Please sign in to comment.