Projet

Général

Profil

Télécharger (4,61 ko) Statistiques
| Branche: | Tag: | Révision:
/*
* This program is a part of the IoTa project.
*
* Copyright © 2008-2012 Université de Caen Basse-Normandie, GREYC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
* <http://www.gnu.org/licenses/>
*
* See AUTHORS for a list of contributors.
*/
package fr.unicaen.iota.application.operations;

import fr.unicaen.iota.nu.ONSOperation;
import fr.unicaen.iota.tau.model.Identity;
import java.rmi.RemoteException;
import java.util.*;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.fosstrak.epcis.model.AggregationEventType;
import org.fosstrak.epcis.model.EPC;
import org.fosstrak.epcis.model.EPCISEventType;
import org.fosstrak.epcis.model.TransactionEventType;

/**
*
*/
public class TraceEPC {

private final Identity identity;
private final ONSOperation onsOperation;
private static final Log log = LogFactory.getLog(TraceEPC.class);

public TraceEPC(Identity identity) {
this.identity = identity;
this.onsOperation = new ONSOperation();
}

public List<EPCISEventType> traceEPC(String EPC) throws RemoteException {
log.trace("EPC = " + EPC);
return traceEPCAux(EPC, new HashMap<String, String>());
}

public List<EPCISEventType> filteredTrace(String EPC, Map<String, String> filters) throws RemoteException {
log.trace("Filters = " + filters);
return traceEPCAux(EPC, filters);
}

private List<EPCISEventType> traceEPCAux(String EPC, Map<String, String> filters) throws RemoteException {
log.trace("[TRACE EPC]: " + EPC);
log.trace("Get Referent ds address");
String dsAddress = onsOperation.getReferentIDedDS(EPC);
if (dsAddress == null) {
log.warn("Unable to retreive referent ds address for this epc code");
return new ArrayList<EPCISEventType>();
} else {
log.trace("referent ds address found: " + dsAddress);
}
log.trace("Start discover");
DiscoveryOperation dsOp = new DiscoveryOperation(identity, dsAddress);
return traceEPC(dsOp, EPC, filters);
}

private List<EPCISEventType> traceEPC(DiscoveryOperation dsOp, String EPC, Map<String, String> filters) throws RemoteException {
List<EPCISEventType> eventList = new ArrayList<EPCISEventType>();
for (String EPCIS_SERVICE_ADDRESS : dsOp.discover(EPC)) {
EpcisOperation epcisOperation = null;
while (epcisOperation == null) {
try {
epcisOperation = new EpcisOperation(identity, EPCIS_SERVICE_ADDRESS);
} catch (Exception ex) {
epcisOperation = null;
log.warn("Unable to create service proxy port! [RETRYING]", ex);
}
}
Collection<EPCISEventType> list = epcisOperation.getObjectEventFromEPC(EPC, filters);
eventList.addAll(list);
list = epcisOperation.getQuantityEventFromEPC(EPC, filters);
eventList.addAll(list);
log.trace("nbr epc events: " + list.size());
Collection<EPCISEventType> children = epcisOperation.getAggregationEventFromEPC(EPC, filters);
eventList.addAll(children);
log.trace("nbr child events: " + children.size());
for (EPCISEventType o : children) {
AggregationEventType event = (AggregationEventType) o;
for (EPC childEpc : event.getChildEPCs().getEpc()) {
log.trace("new traceEPC: " + childEpc.getValue());
eventList.addAll(traceEPCAux(childEpc.getValue(), filters));
}
}
Collection<EPCISEventType> trans = epcisOperation.getTransactionEventFromEPC(EPC, filters);
eventList.addAll(trans);
for (EPCISEventType o : trans) {
TransactionEventType event = (TransactionEventType) o;
for (EPC childEpc : event.getEpcList().getEpc()) {
log.trace("new traceEPC: " + childEpc.getValue());
eventList.addAll(traceEPCAux(childEpc.getValue(), filters));
}
}
}
return eventList;
}
}
(4-4/5)