use of com.ge.research.osate.verdict.dsl.verdict.CyberReq in project VERDICT by ge-high-assurance.
the class VerdictUtil method getAllReqs.
/**
* Get the (linked) set of all cyber requirements in the AADL AST of which obj is part.
*
* @param obj
* @return
*/
public static Set<String> getAllReqs(EObject obj) {
Set<String> reqs = new LinkedHashSet<>();
// Find public package section
EObject container = obj;
while (container != null && !(container instanceof PublicPackageSection)) {
container = container.eContainer();
}
PublicPackageSection pack = (PublicPackageSection) container;
if (pack != null && pack.getOwnedClassifiers() != null) {
// Find all systems
for (Classifier cls : pack.getOwnedClassifiers()) {
if (cls instanceof SystemType) {
SystemType system = (SystemType) cls;
// Get all verdict annexes for this system
for (AnnexSubclause annex : system.getOwnedAnnexSubclauses()) {
if ("verdict".equals(annex.getName())) {
Verdict subclause = VerdictUtil.getVerdict(annex);
// Get all cyber req IDs
for (Statement statement : subclause.getElements()) {
if (statement instanceof CyberReq) {
reqs.add(statement.getId());
} else if (statement instanceof SafetyReq) {
reqs.add(statement.getId());
}
}
}
}
}
}
}
return reqs;
}
use of com.ge.research.osate.verdict.dsl.verdict.CyberReq in project VERDICT by ge-high-assurance.
the class VerdictUtil method getAvailablePorts.
/**
* Finds all input/output ports for the system enclosing an LPort.
*
* Automatically detects if the ports should be input or output based
* on the context (if possible).
*
* Requires: port must be an LPort or inside a CyberRel/CyberReq
*
* @param port the AST object from which to search up the tree
* @param allowSkipInput used in the proposal provider because model
* is not necessarily where we expect it to be
* @return the ports info (see AvailablePortsInfo)
*/
public static AvailablePortsInfo getAvailablePorts(EObject port, boolean allowSkipInput, DirectionType specifiedDir) {
List<String> ports = new ArrayList<>();
SystemType system = null;
DirectionType dir = null;
// Determine direction
EObject container = port;
while (!(container instanceof CyberRelInputLogic || container instanceof CyberRelOutputLogic || container instanceof CyberReqConditionLogic || container instanceof CyberRel || container instanceof CyberReq || container instanceof SafetyRelInputLogic || container instanceof SafetyRelOutputLogic || container instanceof SafetyReqConditionLogic || container instanceof SafetyRel || container instanceof SafetyReq || container instanceof SystemType || container instanceof PublicPackageSection)) {
if (container == null) {
break;
}
container = container.eContainer();
}
if (container instanceof CyberRelInputLogic) {
dir = DirectionType.IN;
} else if (container instanceof CyberRelOutputLogic) {
dir = DirectionType.OUT;
} else if (container instanceof CyberReqConditionLogic) {
dir = DirectionType.OUT;
} else if (container instanceof SafetyRelInputLogic) {
dir = DirectionType.IN;
} else if (container instanceof SafetyRelOutputLogic) {
dir = DirectionType.OUT;
} else if (container instanceof SafetyReqConditionLogic) {
dir = DirectionType.OUT;
} else {
// If allowSkipInput is true, then we will simply collect both input and output
if (!allowSkipInput) {
throw new RuntimeException();
}
}
while (!(container instanceof CyberRel || container instanceof CyberReq || container instanceof SafetyReq || container instanceof SafetyRel || container instanceof Event || container instanceof SystemType || container instanceof PublicPackageSection)) {
if (container == null) {
break;
}
container = container.eContainer();
}
boolean isCyberReq;
if (container instanceof CyberReq) {
isCyberReq = true;
} else if (container instanceof CyberRel) {
isCyberReq = false;
} else if (container instanceof SafetyReq) {
isCyberReq = false;
} else if (container instanceof SafetyRel) {
isCyberReq = false;
} else if (container instanceof Event) {
isCyberReq = false;
} else {
if (specifiedDir == null) {
throw new RuntimeException();
} else {
dir = specifiedDir;
isCyberReq = false;
}
}
while (!(container instanceof SystemType || container instanceof PublicPackageSection)) {
if (container == null) {
break;
}
container = container.eContainer();
}
if (container instanceof SystemType) {
system = (SystemType) container;
while (!(container instanceof SystemType || container instanceof PublicPackageSection)) {
container = container.eContainer();
}
if (container instanceof SystemType) {
// Find all data(event data) ports
for (DataPort dataPort : ((SystemType) container).getOwnedDataPorts()) {
if ((dir != null && dataPort.getDirection().equals(dir)) || (dir == null && (dataPort.getDirection().equals(DirectionType.IN) || dataPort.getDirection().equals(DirectionType.OUT)))) {
ports.add(dataPort.getName());
}
}
for (EventDataPort eventDataPort : ((SystemType) container).getOwnedEventDataPorts()) {
if ((dir != null && eventDataPort.getDirection().equals(dir)) || (dir == null && (eventDataPort.getDirection().equals(DirectionType.IN) || eventDataPort.getDirection().equals(DirectionType.OUT)))) {
ports.add(eventDataPort.getName());
}
}
}
}
return new AvailablePortsInfo(ports, system, dir == null || dir.equals(DirectionType.IN), isCyberReq);
}
Aggregations