accounting-manager/src/main/java/org/gcube/portlets/admin/accountingmanager/server/amservice/response/SeriesResponse4Service.java

62 lines
2.1 KiB
Java

package org.gcube.portlets.admin.accountingmanager.server.amservice.response;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import org.gcube.accounting.aggregation.ServiceUsageRecord;
import org.gcube.accounting.analytics.Info;
import org.gcube.portlets.admin.accountingmanager.shared.data.response.SeriesService;
import org.gcube.portlets.admin.accountingmanager.shared.data.response.SeriesServiceData;
import org.gcube.portlets.admin.accountingmanager.shared.exception.AccountingManagerServiceException;
import org.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Series Response 4 Service
*
* @author "Giancarlo Panichi" email: <a
* href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public class SeriesResponse4Service extends SeriesResponseBuilder {
protected static Logger logger = LoggerFactory
.getLogger(SeriesResponse4Service.class);
private List<Info> infos;
public SeriesResponse4Service(List<Info> infos) {
this.infos=infos;
}
@Override
public void buildSeriesResponse() throws AccountingManagerServiceException {
try {
logger.debug("Infos: " + infos);
ArrayList<SeriesServiceData> series=new ArrayList<SeriesServiceData>();
for (Info info : infos) {
Date date = info.getDate();
JSONObject jso = info.getValue();
Long duration = jso.getLong(ServiceUsageRecord.DURATION);
Long operationCount = jso
.getLong(ServiceUsageRecord.OPERATION_COUNT);
Long maxInvocationTime = jso.getLong(ServiceUsageRecord.MAX_INVOCATION_TIME);
Long minInvocationTime = jso.getLong(ServiceUsageRecord.MIN_INVOCATION_TIME);
series.add(new SeriesServiceData(date, operationCount, duration, maxInvocationTime, minInvocationTime));
}
SeriesService seriesService = new SeriesService(series);
seriesResponseSpec.setSr(seriesService);
} catch (Throwable e) {
logger.error("Error creating series for service accounting: "+e.getLocalizedMessage());
e.printStackTrace();
throw new AccountingManagerServiceException("Error creating series for service accounting: "+e.getLocalizedMessage());
}
}
}