Skip to content
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.

Commit

Permalink
TFJ-168 add mbean interface.
Browse files Browse the repository at this point in the history
This can be enabled with mbeanEnabled configuration parameter
  • Loading branch information
yusuke committed Mar 18, 2011
1 parent 5ffe0e4 commit 703c89e
Show file tree
Hide file tree
Showing 21 changed files with 1,400 additions and 276 deletions.
118 changes: 118 additions & 0 deletions twitter4j-core/src/main/java/twitter4j/TwitterAPIMonitor.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
/*
* Copyright 2007 Yusuke Yamamoto
*
* 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 twitter4j;

import twitter4j.conf.ConfigurationContext;
import twitter4j.internal.logging.Logger;
import twitter4j.management.APIStatistics;
import twitter4j.management.APIStatisticsMBean;
import twitter4j.management.APIStatisticsOpenMBean;

import javax.management.InstanceAlreadyExistsException;
import javax.management.MBeanRegistrationException;
import javax.management.MBeanServer;
import javax.management.MalformedObjectNameException;
import javax.management.NotCompliantMBeanException;
import javax.management.ObjectName;
import java.lang.management.ManagementFactory;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
* Singleton instance of all Twitter API monitoring. Handles URL parsing and "wire off" logic.
* We could avoid using a singleton here if Twitter objects were instantiated
* from a factory.
*
* @author Nick Dellamaggiore (nick.dellamaggiore <at> gmail.com)
* @since Twitter4J 2.2.1
*/
public class TwitterAPIMonitor {
private static final Logger logger = Logger.getLogger(TwitterAPIMonitor.class);
// https?:\/\/[^\/]+\/([a-zA-Z_\.]*).*
// finds the "method" part a Twitter REST API url, ignoring member-specific resource names
private static final Pattern pattern =
Pattern.compile("https?:\\/\\/[^\\/]+\\/([a-zA-Z_\\.]*).*");

private static final TwitterAPIMonitor SINGLETON = new TwitterAPIMonitor();

private final APIStatistics STATISTICS = new APIStatistics(100);


static {
boolean isJDK14orEarlier = false;
try {
String versionStr = System.getProperty("java.specification.version");
if (null != versionStr) {
isJDK14orEarlier = 1.5d > Double.parseDouble(versionStr);
}
if (ConfigurationContext.getInstance().isDalvik()) {
// quick and dirty workaround for TFJ-296
// it must be an Android/Dalvik/Harmony side issue!!!!
System.setProperty("http.keepAlive", "false");
}
} catch (SecurityException ignore) {
// Unsigned applets are not allowed to access System properties
isJDK14orEarlier = true;
}
try {

MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
APIStatistics statsMBean = new APIStatistics(100);
if (isJDK14orEarlier) {
ObjectName oName = new ObjectName("twitter4j.mbean:type=APIStatistics");
mbs.registerMBean(statsMBean, oName);
} else {
ObjectName oName = new ObjectName("twitter4j.mbean:type=APIStatisticsOpenMBean");
APIStatisticsOpenMBean openMBean = new APIStatisticsOpenMBean(statsMBean);
mbs.registerMBean(openMBean, oName);
}
} catch (InstanceAlreadyExistsException e) {
e.printStackTrace();
logger.error(e.getMessage());
} catch (MBeanRegistrationException e) {
e.printStackTrace();
logger.error(e.getMessage());
} catch (NotCompliantMBeanException e) {
e.printStackTrace();
logger.error(e.getMessage());
} catch (MalformedObjectNameException e) {
e.printStackTrace();
logger.error(e.getMessage());
}
}

/**
* Constructor
*/
private TwitterAPIMonitor() {
}

public static TwitterAPIMonitor getInstance() {
return SINGLETON;
}

public APIStatisticsMBean getStatistics() {
return STATISTICS;
}

void methodCalled(String twitterUrl, long elapsedTime, boolean success) {
Matcher matcher = pattern.matcher(twitterUrl);
if (matcher.matches() && matcher.groupCount() > 0) {
String method = matcher.group();
STATISTICS.methodCalled(method, elapsedTime, success);
}
}
}
Loading

0 comments on commit 703c89e

Please sign in to comment.