use of de.janrufmonitor.framework.ICallList in project janrufmonitor by tbrandt77.
the class FritzBoxCallListImporter method doImport.
public ICallList doImport() {
m_callList = PIMRuntime.getInstance().getCallFactory().createCallList();
try {
FileInputStream fin = new FileInputStream(m_filename);
List result = this.getRawCallList(fin);
if (result.size() > 0) {
FritzBoxCallCsv call = null;
Properties conf = PIMRuntime.getInstance().getConfigManagerFactory().getConfigManager().getProperties(FritzBoxMonitor.NAMESPACE);
ICall c = null;
for (int i = 0, j = result.size(); i < j; i++) {
call = new FritzBoxCallCsv((String) result.get(i), conf);
c = call.toCall();
if (c != null) {
if (!m_callList.contains(c))
m_callList.add(c);
else {
this.m_logger.warning("Call already imported from FritzBox: " + c.toString());
c.setUUID(c.getUUID() + "-1");
ICip cip = c.getCIP();
// just a dirty hack
cip.setCIP("4");
c.setCIP(cip);
if (!m_callList.contains(c))
m_callList.add(c);
}
}
}
}
} catch (FileNotFoundException e) {
this.m_logger.severe("File not found: " + m_filename);
} catch (IOException e) {
this.m_logger.severe("IO Error on file " + m_filename + ": " + e.getMessage());
}
if (m_callList != null && m_callList.size() > 0) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Processing modifier services on call list: " + PIMRuntime.getInstance().getServiceFactory().getModifierServices());
processModifierServices(m_callList);
}
return m_callList;
}
use of de.janrufmonitor.framework.ICallList in project janrufmonitor by tbrandt77.
the class SynchronizerService method processModifierServices.
private void processModifierServices(ICallList cl, IProgressMonitor progressMonitor) {
if (cl != null && cl.size() > 0) {
List msvc = getRuntime().getServiceFactory().getModifierServices();
IModifierService s = null;
for (int k = 0, l = msvc.size(); k < l; k++) {
s = (IModifierService) msvc.get(k);
if (s != null && s.isEnabled()) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Processing modifier service <" + s.getServiceID() + ">");
ICall call = null;
for (int i = 0, j = cl.size(); i < j; i++) {
call = cl.get(i);
if (progressMonitor != null && s.getServiceID().equalsIgnoreCase("GeoCoding")) {
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "geocodeprogress2", "label", getLanguage()) + Formatter.getInstance(this.getRuntime()).parse(IJAMConst.GLOBAL_VARIABLE_CALLERNAME, call));
try {
Thread.sleep(75);
} catch (InterruptedException e1) {
m_logger.log(Level.SEVERE, e1.getMessage(), e1);
}
}
s.modifyObject(call);
}
}
}
}
}
use of de.janrufmonitor.framework.ICallList in project janrufmonitor by tbrandt77.
the class SynchronizerService method synchronize.
public void synchronize(IProgressMonitor progressMonitor) {
if (m_activeSync)
return;
this.m_activeSync = true;
long start = System.currentTimeMillis();
if (m_logger.isLoggable(Level.INFO))
m_logger.info("--> Start Synchronizing (" + (progressMonitor == null ? "w/o progress monitor" : "with progress monitor") + ")");
if (this.m_tamMap == null)
this.m_tamMap = new HashMap();
this.m_tamMap.clear();
if (progressMonitor != null) {
progressMonitor.beginTask(getI18nManager().getString(getNamespace(), "refreshprogress", "label", getLanguage()), IProgressMonitor.UNKNOWN);
progressMonitor.worked(1);
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "loginprogress", "label", getLanguage()));
}
try {
Thread.sleep((progressMonitor != null ? 500 : 100));
} catch (InterruptedException e1) {
m_logger.log(Level.SEVERE, e1.getMessage(), e1);
}
FirmwareManager fwm = FirmwareManager.getInstance();
// fwm.startup();
try {
if (!fwm.isLoggedIn())
fwm.login();
if (progressMonitor != null)
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "getprogress", "label", getLanguage()));
try {
Thread.sleep((progressMonitor != null ? 1500 : 100));
} catch (InterruptedException e1) {
m_logger.log(Level.SEVERE, e1.getMessage(), e1);
}
long synctime = Long.parseLong(SynchronizerService.this.m_configuration.getProperty(CFG_SYNCTIME, "-1"));
long oldestCallTime = -1;
// added: 2013/02/04: check sync all
boolean syncall = SynchronizerService.this.m_configuration.getProperty(CFG_SYNCALL, "false").equalsIgnoreCase("true");
if (syncall) {
synctime = -1;
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Sync all option enabled.");
}
// sub getSynctimeOffset from time
if (synctime > 0) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Sync timestamp before decrementing offset: " + synctime);
synctime -= this.getSyncTimeOffset();
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Sync timestamp after decrementing offset: " + synctime);
}
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Syncing call list from FRITZ!Box with timestamp: " + synctime);
List result = fwm.getCallList(synctime);
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Call list size from FRITZ!Box: " + result.size());
if (result.size() > 0) {
ICallList m_callList = PIMRuntime.getInstance().getCallFactory().createCallList(result.size());
List m_prefilteredList = new ArrayList(result.size());
FritzBoxCallCsv call = null;
Properties conf = PIMRuntime.getInstance().getConfigManagerFactory().getConfigManager().getProperties(FritzBoxMonitor.NAMESPACE);
ICall c = null;
FritzBoxUUIDManager.getInstance().init();
boolean skipOutgoing = !Boolean.parseBoolean(conf.getProperty(CFG_OUTGOING, "false"));
for (int i = 0, j = result.size(); i < j; i++) {
call = new FritzBoxCallCsv((String) result.get(i), conf);
// added 2016/01/11: check if outgoing call applicable
if (call != null) {
if (call.isOutgoingCall() && skipOutgoing) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Call import skipped by call state (outgoing) from FRITZ!Box.");
continue;
}
Date calltime = call.getPrecalculatedDate();
if (calltime != null && calltime.getTime() < synctime && synctime > 0) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Call import skipped by timestamp (last sync time: " + new Date(synctime).toString() + ", call time: " + calltime.toString() + ") from FRITZ!Box.");
continue;
}
if (calltime != null && synctime < 0) {
if (oldestCallTime == -1)
oldestCallTime = calltime.getTime();
if (oldestCallTime > calltime.getTime())
oldestCallTime = calltime.getTime();
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Set oldest call time to: " + new Date(oldestCallTime).toString());
}
m_prefilteredList.add(call);
}
}
if (m_prefilteredList.size() > 0) {
if (progressMonitor != null)
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "identifyprogress", "label", getLanguage()));
try {
Thread.sleep((progressMonitor != null ? 1000 : 100));
} catch (InterruptedException e1) {
m_logger.log(Level.SEVERE, e1.getMessage(), e1);
}
for (int i = 0, j = m_prefilteredList.size(); i < j; i++) {
c = ((FritzBoxCallCsv) m_prefilteredList.get(i)).toCall();
if (c != null) {
if (getRuntime().getMsnManager().isMsnMonitored(c.getMSN())) {
if (progressMonitor != null) {
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "processing", "label", getLanguage()) + Formatter.getInstance(this.getRuntime()).parse(IJAMConst.GLOBAL_VARIABLE_CALLERNUMBER, c));
try {
Thread.sleep(75);
} catch (InterruptedException e1) {
m_logger.log(Level.SEVERE, e1.getMessage(), e1);
}
}
if (!m_callList.contains(c)) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Adding call imported from FRITZ!Box: " + c.toString());
m_callList.add(c);
} else {
if (m_logger.isLoggable(Level.WARNING))
m_logger.warning("Adding duplicated call imported from FRITZ!Box: " + c.toString());
c.setUUID(c.getUUID() + "-1");
ICip cip = c.getCIP();
// just a dirty hack
cip.setCIP("4");
c.setCIP(cip);
if (!m_callList.contains(c))
m_callList.add(c);
else {
c.setUUID(c.getUUID() + "-1");
if (!m_callList.contains(c))
m_callList.add(c);
}
}
}
}
}
}
if (m_callList != null && m_callList.size() > 0) {
if (progressMonitor != null)
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "geocodeprogress", "label", getLanguage()));
try {
Thread.sleep((progressMonitor != null ? 1000 : 100));
} catch (InterruptedException e1) {
m_logger.log(Level.SEVERE, e1.getMessage(), e1);
}
boolean synctam = SynchronizerService.this.m_configuration.getProperty(CFG_SYNCTAM, "false").equalsIgnoreCase("true");
if (synctam) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Sync TAM recordings: " + Boolean.toString(synctam));
if (progressMonitor != null)
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "tamprogress", "label", getLanguage()));
this.m_tamMap.putAll(fwm.getTamMessages(synctime));
try {
Thread.sleep((progressMonitor != null ? 1000 : 100));
} catch (InterruptedException e1) {
m_logger.log(Level.SEVERE, e1.getMessage(), e1);
}
}
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Processing modifier services on call list: " + getRuntime().getServiceFactory().getModifierServices());
processModifierServices(m_callList, progressMonitor);
if (progressMonitor != null)
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "synchprogress", "label", getLanguage()));
try {
Thread.sleep((progressMonitor != null ? 1000 : 100));
} catch (InterruptedException e1) {
m_logger.log(Level.SEVERE, e1.getMessage(), e1);
}
String repository = getRuntime().getConfigManagerFactory().getConfigManager().getProperty(Journal.NAMESPACE, "repository");
ICallManager cm = getRuntime().getCallManagerFactory().getCallManager(repository);
if (cm != null && cm.isActive() && cm.isSupported(IWriteCallRepository.class)) {
ICall ca = null;
boolean syncclean = SynchronizerService.this.m_configuration.getProperty(CFG_SYNCCLEAN, "false").equalsIgnoreCase("true");
if (synctime < 0) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Set syntime to oldest call time to eliminate duplicates.");
synctime = oldestCallTime;
}
if (syncclean && synctime > 0 && cm.isSupported(IReadCallRepository.class) && cm.isSupported(IWriteCallRepository.class)) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Remove duplicated entries (sync clean) option enabled.");
if (progressMonitor != null)
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "syncclean", "label", getLanguage()));
try {
Thread.sleep((progressMonitor != null ? 500 : 100));
} catch (InterruptedException e1) {
m_logger.log(Level.SEVERE, e1.getMessage(), e1);
}
IFilter syncFilter = new DateFilter(new Date(System.currentTimeMillis()), new Date(synctime));
ICallList cl = ((IReadCallRepository) cm).getCalls(syncFilter);
if (cl.size() > 0) {
// 2009/03/18: added backup of cleaned calls
IImExporter exp = ImExportFactory.getInstance().getExporter("DatFileCallExporter");
if (exp != null & exp instanceof ICallExporter) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Creating backup of cleaned call list...");
File backupdir = new File(PathResolver.getInstance(getRuntime()).getDataDirectory(), "fritzbox-sync-clean-backup");
if (!backupdir.exists()) {
backupdir.mkdirs();
}
File backupfile = new File(backupdir, Long.toString(synctime) + ".dat");
((ICallExporter) exp).setFilename(backupfile.getAbsolutePath());
((ICallExporter) exp).setCallList(cl);
if (((ICallExporter) exp).doExport()) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Backup of cleaned call list successfully finished: " + backupfile.getAbsolutePath());
} else {
if (m_logger.isLoggable(Level.WARNING))
m_logger.warning("Backup of cleaned call list failed: " + backupdir.getAbsolutePath());
}
}
((IWriteCallRepository) cm).removeCalls(createRedundancyList(m_callList, synctime));
try {
Thread.sleep(500);
} catch (InterruptedException e) {
}
}
}
for (int i = 0, j = m_callList.size(); i < j; i++) {
ca = m_callList.get(i);
try {
((IWriteCallRepository) cm).setCall(ca);
if (progressMonitor != null) {
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "processing2", "label", getLanguage()) + Formatter.getInstance(this.getRuntime()).parse(IJAMConst.GLOBAL_VARIABLE_CALLERNAME, ca));
try {
Thread.sleep(50);
} catch (InterruptedException e1) {
m_logger.log(Level.SEVERE, e1.getMessage(), e1);
}
}
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Call imported to repository: " + ca.toString());
} catch (Exception e) {
if (m_logger.isLoggable(Level.WARNING))
m_logger.warning("Call already in repository (skipped): " + ca.toString());
}
}
// added 2009/01/08: force refresh of journal, if opened
IEventBroker evtBroker = getRuntime().getEventBroker();
evtBroker.register(this);
evtBroker.send(this, evtBroker.createEvent(IEventConst.EVENT_TYPE_CALL_MANAGER_UPDATED));
evtBroker.unregister(this);
if (m_logger.isLoggable(Level.INFO))
m_logger.info("EventBroker notification sent: EVENT_TYPE_CALL_MANAGER_UPDATED");
}
boolean syncDelete = (m_configuration.getProperty(FritzBoxConst.CFG_SYNCDELETE, "false").equalsIgnoreCase("true") ? true : false);
if (syncDelete) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Delete after sync (sync delete) option enabled.");
if (progressMonitor != null)
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "deleteprogress", "label", getLanguage()));
fwm.deleteCallList();
}
// added 2009/01/07: send mail notification after sync with fritzbox
boolean syncNotify = (SynchronizerService.this.m_configuration.getProperty(FritzBoxConst.CFG_SYNC_NOTIFICATION, "false").equalsIgnoreCase("true") ? true : false);
if (syncNotify) {
if (m_logger.isLoggable(Level.INFO))
m_logger.info("Send notification after sync (sync notification) option enabled.");
ICall ca = null;
if (progressMonitor != null)
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "sendnotificationprogress", "label", getLanguage()));
for (int i = 0, j = m_callList.size(); i < j; i++) {
ca = m_callList.get(i);
sendMailNotification(ca);
}
}
}
String text = getI18nManager().getString(getNamespace(), "finished", "label", getLanguage());
if (m_callList.size() == 0)
text = getI18nManager().getString(getNamespace(), "finished0", "label", getLanguage());
if (m_callList.size() == 1)
text = getI18nManager().getString(getNamespace(), "finished1", "label", getLanguage());
if (progressMonitor != null)
progressMonitor.setTaskName(StringUtils.replaceString(text, "{%1}", Integer.toString(m_callList.size())));
if (m_callList.size() > 0)
PropagationFactory.getInstance().fire(new Message(Message.INFO, getI18nManager().getString("monitor.FritzBoxMonitor", "title", "label", getLanguage()), new Exception(StringUtils.replaceString(text, "{%1}", Integer.toString(m_callList.size())))), "Tray");
SynchronizerService.this.m_configuration.setProperty(CFG_SYNCTIME, Long.toString(System.currentTimeMillis()));
getRuntime().getConfigManagerFactory().getConfigManager().setProperties(NAMESPACE, SynchronizerService.this.m_configuration);
getRuntime().getConfigManagerFactory().getConfigManager().saveConfiguration();
if (progressMonitor != null)
try {
Thread.sleep(1000);
} catch (InterruptedException e1) {
m_logger.log(Level.SEVERE, e1.getMessage(), e1);
}
} else {
// no results from FB list
if (progressMonitor != null)
progressMonitor.setTaskName(getI18nManager().getString(getNamespace(), "noresults", "label", getLanguage()));
try {
Thread.sleep((progressMonitor != null ? 1500 : 100));
} catch (InterruptedException e1) {
m_logger.log(Level.SEVERE, e1.getMessage(), e1);
}
}
} catch (IOException e) {
m_logger.warning(e.toString());
PropagationFactory.getInstance().fire(new Message(Message.ERROR, getNamespace(), "failedrefresh", e));
} catch (FritzBoxLoginException e) {
m_logger.warning(e.toString());
} catch (GetCallListException e) {
m_logger.warning(e.toString());
PropagationFactory.getInstance().fire(new Message(Message.ERROR, getNamespace(), "failedrefresh", e));
} catch (DeleteCallListException e) {
m_logger.warning(e.toString());
PropagationFactory.getInstance().fire(new Message(Message.ERROR, getNamespace(), "failedrefresh", e));
} catch (CloneNotSupportedException e) {
m_logger.warning(e.toString());
} finally {
if (progressMonitor != null)
progressMonitor.done();
this.m_activeSync = false;
}
if (m_logger.isLoggable(Level.INFO))
m_logger.info("--> Finished Synchronizing (" + (progressMonitor == null ? "w/o progress monitor" : "with progress monitor") + ") in " + ((System.currentTimeMillis() - start) / 1000) + " sec.");
}
use of de.janrufmonitor.framework.ICallList in project janrufmonitor by tbrandt77.
the class AbstractCallDatabaseHandler method setCallList.
/**
* Sets all calls in the submitted list to the database.
*
* @param cl
* @throws SQLException
*/
public void setCallList(ICallList cl) throws SQLException {
if (!isConnected())
try {
this.connect();
} catch (ClassNotFoundException e) {
throw new SQLException(e.getMessage());
}
this.internalDeleteCallList(cl);
List uuid_check = new ArrayList(cl.size());
PreparedStatement ps = this.getStatement("INSERT_CALL");
PreparedStatement psa = this.getStatement("INSERT_ATTRIBUTE");
ps.clearBatch();
psa.clearBatch();
ICall c = null;
IPhonenumber pn = null;
String uuid = null;
for (int i = 0, j = cl.size(); i < j; i++) {
c = cl.get(i);
if (this.m_logger.isLoggable(Level.INFO) && c != null)
this.m_logger.info("Adding to database: " + c.toString());
// check if redundant uuid could occure
uuid = c.getUUID();
if (uuid_check.contains(uuid)) {
this.m_logger.warning("Found duplicated UUID: " + c.toString());
c.setUUID(new UUID().toString());
uuid = c.getUUID();
}
uuid_check.add(uuid);
pn = c.getCaller().getPhoneNumber();
try {
this.createCall(ps, uuid, c.getCaller().getUUID(), pn.getIntAreaCode(), pn.getAreaCode(), pn.getCallNumber(), c.getMSN().getMSN(), c.getCIP().getCIP(), c.getDate().getTime(), Serializer.toByteArray(c));
this.createAttributes(psa, uuid, c.getAttributes());
this.createAttributes(psa, c.getCaller().getUUID(), c.getCaller().getAttributes());
} catch (SerializerException e) {
this.m_logger.log(Level.SEVERE, e.getMessage(), e);
}
if (i % this.commit_count == 0) {
try {
ps.executeBatch();
psa.executeBatch();
ps.clearBatch();
psa.clearBatch();
this.m_logger.info("-------------------> executed Batch");
} catch (SQLException e) {
this.m_logger.log(Level.SEVERE, e.getMessage() + c.toString(), e);
// throw new SQLException("Batch execution failed: ");
}
}
}
// execute the rest batch content
ps.executeBatch();
psa.executeBatch();
uuid_check.clear();
uuid_check = null;
}
use of de.janrufmonitor.framework.ICallList in project janrufmonitor by tbrandt77.
the class AbstractFilterCallManager method filterCalls.
protected ICallList filterCalls(IFilter filter, ICallList cl) {
if (cl == null) {
cl = this.getInitialCallList(filter);
}
long start = System.currentTimeMillis();
this.m_logger.info("Start filtering with filter: " + filter);
this.m_logger.info("CallList size before filtering: " + cl.size());
ICall c = null;
if (filter != null) {
if (filter.getType().equals(FilterType.DATE) || filter.getType().equals(FilterType.YEAR) || filter.getType().equals(FilterType.MONTH_YEAR)) {
long from = 0;
long to = 0;
if (filter instanceof DateFilter) {
DateFilter df = (DateFilter) filter;
to = (df.getDateFrom() == null ? 0 : df.getDateFrom().getTime());
from = df.getDateTo().getTime();
}
if (filter instanceof YearFilter) {
YearFilter df = (YearFilter) filter;
from = (df.getDateFrom() == null ? 0 : df.getDateFrom().getTime());
to = df.getDateTo().getTime();
}
if (filter instanceof MonthYearFilter) {
MonthYearFilter df = (MonthYearFilter) filter;
from = (df.getDateFrom() == null ? 0 : df.getDateFrom().getTime());
to = df.getDateTo().getTime();
}
long cdate = 0;
for (int i = cl.size() - 1; i >= 0; i--) {
c = cl.get(i);
cdate = c.getDate().getTime();
if (to > 0) {
if (cdate < from || cdate > to)
cl.remove(c);
} else {
if (cdate < from)
cl.remove(c);
}
}
}
if (filter.getType().equals(FilterType.CALLER)) {
ICaller cfilter = (ICaller) filter.getFilterObject();
IPhonenumber pn = cfilter.getPhoneNumber();
for (int i = cl.size() - 1; i >= 0; i--) {
c = cl.get(i);
if (!c.getCaller().getPhoneNumber().equals(pn))
cl.remove(c);
}
}
if (filter.getType().equals(FilterType.PHONENUMBER)) {
IPhonenumber pn = (IPhonenumber) filter.getFilterObject();
for (int i = cl.size() - 1; i >= 0; i--) {
c = cl.get(i);
if (!c.getCaller().getPhoneNumber().equals(pn))
cl.remove(c);
}
}
if (filter.getType().equals(FilterType.CIP)) {
ICip cip = (ICip) filter.getFilterObject();
for (int i = cl.size() - 1; i >= 0; i--) {
c = cl.get(i);
if (!c.getCIP().equals(cip))
cl.remove(c);
}
}
if (filter.getType().equals(FilterType.MSN)) {
IMsn msn = (IMsn) filter.getFilterObject();
for (int i = cl.size() - 1; i >= 0; i--) {
c = cl.get(i);
if (!c.getMSN().equals(msn))
cl.remove(c);
}
}
if (filter.getType().equals(FilterType.UUID)) {
String[] uuids = (String[]) filter.getFilterObject();
for (int i = cl.size() - 1; i >= 0; i--) {
c = cl.get(i);
boolean hasUUID = false;
for (int j = 0; j < uuids.length; j++) {
if (c.getUUID().equalsIgnoreCase(uuids[j]))
hasUUID = true;
}
if (!hasUUID)
cl.remove(c);
}
}
if (filter.getType().equals(FilterType.ATTRIBUTE)) {
IAttributeMap m = ((AttributeFilter) filter).getAttributeMap();
if (m != null && m.size() > 0) {
Iterator iter = m.iterator();
IAttribute a = null;
while (iter.hasNext()) {
a = (IAttribute) iter.next();
IAttribute ua = null;
for (int i = cl.size() - 1; i >= 0; i--) {
c = cl.get(i);
ua = c.getAttribute(a.getName());
if (ua == null || !ua.getValue().equalsIgnoreCase(a.getValue())) {
cl.remove(c);
}
}
}
}
}
if (filter.getType().equals(FilterType.ITEMCOUNT)) {
int itemcount = ((ItemCountFilter) filter).getLimit();
if (itemcount > 0) {
ICallList tmpCl = this.getRuntime().getCallFactory().createCallList(itemcount);
// added: 2006/04/20: just a work-a-round
cl.sort(0, false);
for (int i = 0, j = Math.min(cl.size(), itemcount); i < j; i++) {
tmpCl.add(cl.get(i));
}
cl.clear();
cl.add(tmpCl);
}
}
}
this.m_logger.info("CallList size after filtering: " + cl.size());
this.m_logger.info("Finished filtering with filter <" + filter + "> in " + Long.toString(System.currentTimeMillis() - start) + " msec.");
return cl;
}
Aggregations