org.protempa.RefDataStreamerProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protempa-framework Show documentation
Show all versions of protempa-framework Show documentation
Protempa Framework is the core of Protempa.
/*
* #%L
* Protempa Framework
* %%
* Copyright (C) 2012 - 2013 Emory University
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package org.protempa;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.protempa.proposition.*;
import org.protempa.proposition.visitor.AbstractPropositionVisitor;
/**
*
* @author Andrew Post
*/
final class RefDataStreamerProcessor
extends DataStreamerProcessor {
private static class ReferenceAdder extends AbstractPropositionVisitor {
private String referenceName;
private UniqueId reference;
@Override
public void visit(AbstractParameter abstractParameter) {
throw new AssertionError(
"Should not have been passed abstract parameter: "
+ abstractParameter);
}
@Override
public void visit(Event event) {
event.addReference(this.referenceName, this.reference);
}
@Override
public void visit(PrimitiveParameter primitiveParameter) {
primitiveParameter.addReference(this.referenceName,
this.reference);
}
@Override
public void visit(Constant constant) {
constant.addReference(this.referenceName, this.reference);
}
@Override
public void visit(Context context) {
context.addReference(this.referenceName, this.reference);
}
void setParameters(String referenceName, UniqueId reference) {
this.referenceName = referenceName;
this.reference = reference;
}
}
private final Map uniqueIdToPropositions;
private final ReferenceAdder adder = new ReferenceAdder();
RefDataStreamerProcessor() {
this.uniqueIdToPropositions = new HashMap<>();
}
void setPropositions(List extends Proposition> propositions) {
assert propositions != null : "propositions cannot be null";
for (Proposition proposition : propositions) {
assert proposition != null : "proposition cannot be null";
this.uniqueIdToPropositions.put(
proposition.getUniqueId(), proposition);
}
}
void clear() {
this.uniqueIdToPropositions.clear();
}
@Override
protected void fireKeyCompleted(String keyId, List data) throws DataSourceReadException {
assert keyId != null : "keyId cannot be null";
assert data != null : "data cannot be null";
assert getKeyId() == null || keyId.equals(getKeyId()) : "incompatible keyId: expected "
+ getKeyId() + " but got " + keyId;
for (UniqueIdPair pair : data) {
Proposition prop = getProposition(pair.getProposition());
if (prop != null) {
this.adder.setParameters(pair.getReferenceName(),
pair.getReference());
prop.accept(this.adder);
} else {
throw new DataSourceReadException("Can't find left-hand-side of reference: keyId=" + keyId
+ "; references: " + pair);
}
}
}
private Proposition getProposition(UniqueId uniqueId) {
return this.uniqueIdToPropositions.get(uniqueId);
}
}