forked from D-Net/dnet-hadoop
changed to map also the result associated to the whole graph
This commit is contained in:
parent
082225ad61
commit
7b0569d989
|
@ -7,6 +7,7 @@ import java.util.stream.Collectors;
|
||||||
|
|
||||||
import eu.dnetlib.dhp.schema.common.ModelConstants;
|
import eu.dnetlib.dhp.schema.common.ModelConstants;
|
||||||
import eu.dnetlib.dhp.schema.dump.oaf.*;
|
import eu.dnetlib.dhp.schema.dump.oaf.*;
|
||||||
|
import eu.dnetlib.dhp.schema.dump.oaf.community.CommunityResult;
|
||||||
import eu.dnetlib.dhp.schema.oaf.DataInfo;
|
import eu.dnetlib.dhp.schema.oaf.DataInfo;
|
||||||
import eu.dnetlib.dhp.schema.oaf.Field;
|
import eu.dnetlib.dhp.schema.oaf.Field;
|
||||||
import eu.dnetlib.dhp.schema.oaf.Journal;
|
import eu.dnetlib.dhp.schema.oaf.Journal;
|
||||||
|
@ -15,10 +16,16 @@ import eu.dnetlib.dhp.schema.oaf.StructuredProperty;
|
||||||
public class ResultMapper implements Serializable {
|
public class ResultMapper implements Serializable {
|
||||||
|
|
||||||
public static <I extends eu.dnetlib.dhp.schema.oaf.OafEntity> Result map(
|
public static <I extends eu.dnetlib.dhp.schema.oaf.OafEntity> Result map(
|
||||||
I in, Map<String, String> communityMap) {
|
I in, Map<String, String> communityMap, boolean graph) {
|
||||||
|
|
||||||
final Result out = new Result();
|
Result out;
|
||||||
eu.dnetlib.dhp.schema.oaf.Result input = (eu.dnetlib.dhp.schema.oaf.Result)in;
|
if (graph) {
|
||||||
|
out = new Result();
|
||||||
|
} else {
|
||||||
|
out = new CommunityResult();
|
||||||
|
}
|
||||||
|
|
||||||
|
eu.dnetlib.dhp.schema.oaf.Result input = (eu.dnetlib.dhp.schema.oaf.Result) in;
|
||||||
Optional<eu.dnetlib.dhp.schema.oaf.Qualifier> ort = Optional.ofNullable(input.getResulttype());
|
Optional<eu.dnetlib.dhp.schema.oaf.Qualifier> ort = Optional.ofNullable(input.getResulttype());
|
||||||
if (ort.isPresent()) {
|
if (ort.isPresent()) {
|
||||||
switch (ort.get().getClassid()) {
|
switch (ort.get().getClassid()) {
|
||||||
|
@ -134,7 +141,7 @@ public class ResultMapper implements Serializable {
|
||||||
Optional<eu.dnetlib.dhp.schema.oaf.Qualifier> oar = Optional.ofNullable(input.getBestaccessright());
|
Optional<eu.dnetlib.dhp.schema.oaf.Qualifier> oar = Optional.ofNullable(input.getBestaccessright());
|
||||||
if (oar.isPresent()) {
|
if (oar.isPresent()) {
|
||||||
if (Constants.accessRightsCoarMap.containsKey(oar.get().getClassid())) {
|
if (Constants.accessRightsCoarMap.containsKey(oar.get().getClassid())) {
|
||||||
String code = Constants.accessRightsCoarMap.get(oar.get().getClassname());
|
String code = Constants.accessRightsCoarMap.get(oar.get().getClassid());
|
||||||
out
|
out
|
||||||
.setBestaccessright(
|
.setBestaccessright(
|
||||||
AccessRight
|
AccessRight
|
||||||
|
@ -145,57 +152,6 @@ public class ResultMapper implements Serializable {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
out
|
|
||||||
.setCollectedfrom(
|
|
||||||
input
|
|
||||||
.getCollectedfrom()
|
|
||||||
.stream()
|
|
||||||
.map(cf -> KeyValue.newInstance(cf.getKey(), cf.getValue()))
|
|
||||||
.collect(Collectors.toList()));
|
|
||||||
|
|
||||||
|
|
||||||
Set<String> communities = communityMap.keySet();
|
|
||||||
List<Context> contextList = Optional.ofNullable(input
|
|
||||||
.getContext())
|
|
||||||
.map(value -> value.stream()
|
|
||||||
.map(c -> {
|
|
||||||
String community_id = c.getId();
|
|
||||||
if (community_id.indexOf("::") > 0) {
|
|
||||||
community_id = community_id.substring(0, community_id.indexOf("::"));
|
|
||||||
}
|
|
||||||
if (communities.contains(community_id)) {
|
|
||||||
Context context = new Context();
|
|
||||||
context.setCode(community_id);
|
|
||||||
context.setLabel(communityMap.get(community_id));
|
|
||||||
Optional<List<DataInfo>> dataInfo = Optional.ofNullable(c.getDataInfo());
|
|
||||||
if (dataInfo.isPresent()) {
|
|
||||||
List<Provenance> provenance = new ArrayList<>();
|
|
||||||
provenance
|
|
||||||
.addAll(
|
|
||||||
dataInfo
|
|
||||||
.get()
|
|
||||||
.stream()
|
|
||||||
.map(di -> {
|
|
||||||
if (di.getInferred()) {
|
|
||||||
return Provenance.newInstance(di.getProvenanceaction().getClassname(), di.getTrust());
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
})
|
|
||||||
.filter(Objects::nonNull)
|
|
||||||
.collect(Collectors.toSet()));
|
|
||||||
context.setProvenance(provenance);
|
|
||||||
}
|
|
||||||
return context;
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
})
|
|
||||||
.filter(Objects::nonNull)
|
|
||||||
.collect(Collectors.toList()))
|
|
||||||
.orElse(new ArrayList<>());
|
|
||||||
|
|
||||||
if (contextList.size() > 0) {
|
|
||||||
out.setContext(contextList);
|
|
||||||
}
|
|
||||||
final List<String> contributorList = new ArrayList<>();
|
final List<String> contributorList = new ArrayList<>();
|
||||||
Optional
|
Optional
|
||||||
.ofNullable(input.getContributor())
|
.ofNullable(input.getContributor())
|
||||||
|
@ -218,9 +174,12 @@ public class ResultMapper implements Serializable {
|
||||||
.ifPresent(
|
.ifPresent(
|
||||||
provenance -> country
|
provenance -> country
|
||||||
.setProvenance(
|
.setProvenance(
|
||||||
Provenance.newInstance(provenance
|
Provenance
|
||||||
|
.newInstance(
|
||||||
|
provenance
|
||||||
.getProvenanceaction()
|
.getProvenanceaction()
|
||||||
.getClassname(), c.getDataInfo().getTrust())));
|
.getClassname(),
|
||||||
|
c.getDataInfo().getTrust())));
|
||||||
countryList
|
countryList
|
||||||
.add(country);
|
.add(country);
|
||||||
}));
|
}));
|
||||||
|
@ -238,7 +197,7 @@ public class ResultMapper implements Serializable {
|
||||||
final List<String> descriptionList = new ArrayList<>();
|
final List<String> descriptionList = new ArrayList<>();
|
||||||
Optional
|
Optional
|
||||||
.ofNullable(input.getDescription())
|
.ofNullable(input.getDescription())
|
||||||
.ifPresent(value -> value.stream().forEach(d -> descriptionList.add(d.getValue())));
|
.ifPresent(value -> value.forEach(d -> descriptionList.add(d.getValue())));
|
||||||
out.setDescription(descriptionList);
|
out.setDescription(descriptionList);
|
||||||
Optional<Field<String>> oStr = Optional.ofNullable(input.getEmbargoenddate());
|
Optional<Field<String>> oStr = Optional.ofNullable(input.getEmbargoenddate());
|
||||||
if (oStr.isPresent()) {
|
if (oStr.isPresent()) {
|
||||||
|
@ -361,29 +320,100 @@ public class ResultMapper implements Serializable {
|
||||||
.ifPresent(value -> value.stream().forEach(s -> sourceList.add(s.getValue())));
|
.ifPresent(value -> value.stream().forEach(s -> sourceList.add(s.getValue())));
|
||||||
// out.setSource(input.getSource().stream().map(s -> s.getValue()).collect(Collectors.toList()));
|
// out.setSource(input.getSource().stream().map(s -> s.getValue()).collect(Collectors.toList()));
|
||||||
List<Subject> subjectList = new ArrayList<>();
|
List<Subject> subjectList = new ArrayList<>();
|
||||||
Optional.ofNullable(input.getSubject())
|
Optional
|
||||||
.ifPresent(value -> value
|
.ofNullable(input.getSubject())
|
||||||
.forEach(s->subjectList.add(getSubject(s))));
|
.ifPresent(
|
||||||
|
value -> value
|
||||||
|
.forEach(s -> subjectList.add(getSubject(s))));
|
||||||
|
|
||||||
List<ExternalReference> erList = new ArrayList<>();
|
List<ExternalReference> erList = new ArrayList<>();
|
||||||
Optional.ofNullable(input.getExtraInfo())
|
Optional
|
||||||
.ifPresent(value -> value.forEach(
|
.ofNullable(input.getExtraInfo())
|
||||||
er -> erList.add(ExternalReference.newInstance(er))
|
.ifPresent(
|
||||||
));
|
value -> value
|
||||||
|
.forEach(
|
||||||
|
er -> erList.add(ExternalReference.newInstance(er))));
|
||||||
|
|
||||||
out.setSubjects(subjectList);
|
out.setSubjects(subjectList);
|
||||||
|
|
||||||
out.setType(input.getResulttype().getClassid());
|
out.setType(input.getResulttype().getClassid());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!graph) {
|
||||||
|
((CommunityResult) out)
|
||||||
|
.setCollectedfrom(
|
||||||
|
input
|
||||||
|
.getCollectedfrom()
|
||||||
|
.stream()
|
||||||
|
.map(cf -> KeyValue.newInstance(cf.getKey(), cf.getValue()))
|
||||||
|
.collect(Collectors.toList()));
|
||||||
|
|
||||||
|
Set<String> communities = communityMap.keySet();
|
||||||
|
List<Context> contextList = Optional
|
||||||
|
.ofNullable(
|
||||||
|
input
|
||||||
|
.getContext())
|
||||||
|
.map(
|
||||||
|
value -> value
|
||||||
|
.stream()
|
||||||
|
.map(c -> {
|
||||||
|
String community_id = c.getId();
|
||||||
|
if (community_id.indexOf("::") > 0) {
|
||||||
|
community_id = community_id.substring(0, community_id.indexOf("::"));
|
||||||
|
}
|
||||||
|
if (communities.contains(community_id)) {
|
||||||
|
Context context = new Context();
|
||||||
|
context.setCode(community_id);
|
||||||
|
context.setLabel(communityMap.get(community_id));
|
||||||
|
Optional<List<DataInfo>> dataInfo = Optional.ofNullable(c.getDataInfo());
|
||||||
|
if (dataInfo.isPresent()) {
|
||||||
|
List<Provenance> provenance = new ArrayList<>();
|
||||||
|
provenance
|
||||||
|
.addAll(
|
||||||
|
dataInfo
|
||||||
|
.get()
|
||||||
|
.stream()
|
||||||
|
.map(
|
||||||
|
di -> Optional
|
||||||
|
.ofNullable(di.getProvenanceaction())
|
||||||
|
.map(
|
||||||
|
provenanceaction -> Provenance
|
||||||
|
.newInstance(
|
||||||
|
provenanceaction.getClassname(), di.getTrust()))
|
||||||
|
.orElse(null))
|
||||||
|
.filter(Objects::nonNull)
|
||||||
|
.collect(Collectors.toSet()));
|
||||||
|
context.setProvenance(provenance);
|
||||||
|
}
|
||||||
|
return context;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
})
|
||||||
|
.filter(Objects::nonNull)
|
||||||
|
.collect(Collectors.toList()))
|
||||||
|
.orElse(new ArrayList<>());
|
||||||
|
|
||||||
|
if (contextList.size() > 0) {
|
||||||
|
Set<Integer> hashValue = new HashSet<>();
|
||||||
|
List<Context> remainigContext = new ArrayList<>();
|
||||||
|
contextList.forEach(c ->{
|
||||||
|
if(!hashValue.contains(c.hashCode())){
|
||||||
|
remainigContext.add(c);
|
||||||
|
hashValue.add(c.hashCode());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
((CommunityResult) out).setContext(remainigContext);
|
||||||
|
}
|
||||||
|
}
|
||||||
return out;
|
return out;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Subject getSubject(StructuredProperty s){
|
private static Subject getSubject(StructuredProperty s) {
|
||||||
Subject subject = new Subject();
|
Subject subject = new Subject();
|
||||||
subject.setSubject(ControlledField.newInstance(s.getQualifier().getClassid(), s.getValue()));
|
subject.setSubject(ControlledField.newInstance(s.getQualifier().getClassid(), s.getValue()));
|
||||||
Optional<DataInfo> di = Optional.ofNullable(s.getDataInfo());
|
Optional<DataInfo> di = Optional.ofNullable(s.getDataInfo());
|
||||||
if (di.isPresent()){
|
if (di.isPresent()) {
|
||||||
Provenance p = new Provenance();
|
Provenance p = new Provenance();
|
||||||
p.setProvenance(di.get().getProvenanceaction().getClassname());
|
p.setProvenance(di.get().getProvenanceaction().getClassname());
|
||||||
p.setTrust(di.get().getTrust());
|
p.setTrust(di.get().getTrust());
|
||||||
|
@ -392,6 +422,7 @@ public class ResultMapper implements Serializable {
|
||||||
|
|
||||||
return subject;
|
return subject;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Author getAuthor(eu.dnetlib.dhp.schema.oaf.Author oa) {
|
private static Author getAuthor(eu.dnetlib.dhp.schema.oaf.Author oa) {
|
||||||
Author a = new Author();
|
Author a = new Author();
|
||||||
Optional
|
Optional
|
||||||
|
@ -419,12 +450,12 @@ public class ResultMapper implements Serializable {
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Pid getPid(StructuredProperty p){
|
private static Pid getPid(StructuredProperty p) {
|
||||||
Pid pid = new Pid();
|
Pid pid = new Pid();
|
||||||
pid.setPid(ControlledField.newInstance(p.getQualifier().getClassid(), p.getValue()));
|
pid.setPid(ControlledField.newInstance(p.getQualifier().getClassid(), p.getValue()));
|
||||||
Optional<DataInfo> di = Optional.of(p.getDataInfo());
|
Optional<DataInfo> di = Optional.ofNullable(p.getDataInfo());
|
||||||
Provenance provenance = new Provenance();
|
Provenance provenance = new Provenance();
|
||||||
if (di.isPresent()){
|
if (di.isPresent()) {
|
||||||
provenance.setProvenance(di.get().getProvenanceaction().getClassname());
|
provenance.setProvenance(di.get().getProvenanceaction().getClassname());
|
||||||
provenance.setTrust(di.get().getTrust());
|
provenance.setTrust(di.get().getTrust());
|
||||||
pid.setProvenance(provenance);
|
pid.setProvenance(provenance);
|
||||||
|
|
Loading…
Reference in New Issue