org.jpos.util.ThroughputControl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpos Show documentation
Show all versions of jpos Show documentation
jPOS is an ISO-8583 based financial transaction
library/framework that can be customized and
extended in order to implement financial interchanges.
/*
* jPOS Project [http://jpos.org]
* Copyright (C) 2000-2017 jPOS Software SRL
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package org.jpos.util;
/**
* ThroughputControl can be used to limit the throughput
* of a system to a maximum number of transactions in
* a given period of time.
*/
public class ThroughputControl {
private int[] period;
private int[] max;
private int[] cnt;
private long[] start;
private long[] sleep;
/**
* @param maxTransactions ditto
* @param periodInMillis ditto
*/
public ThroughputControl (int maxTransactions, int periodInMillis) {
this (new int[] { maxTransactions },
new int[] { periodInMillis });
}
/**
* @param maxTransactions ditto
* @param periodInMillis ditto
*/
public ThroughputControl (int[] maxTransactions, int[] periodInMillis) {
super();
int l = maxTransactions.length;
period = new int[l];
max = new int[l];
cnt = new int[l];
start = new long[l];
sleep = new long[l];
for (int i=0; i max[i]) {
delayed = true;
try {
Thread.sleep (sleep[i]);
} catch (InterruptedException e) { }
}
synchronized (this) {
long now = System.currentTimeMillis();
if (now - start[i] > period[i]) {
long elapsed = now - start[i];
int allowed = (int) (elapsed * max[i] / period[i]);
start[i] = now;
cnt[i] = Math.max (cnt[i] - allowed, 0);
}
}
} while (cnt[i] > max[i]);
}
return delayed ? System.currentTimeMillis() - init : 0L;
}
}