Search in sources :

Example 1 with RouteMapMatchCommunityListLine

use of org.batfish.representation.cisco.RouteMapMatchCommunityListLine in project batfish by batfish.

the class CiscoControlPlaneExtractor method exitMatch_community_list_rm_stanza.

@Override
public void exitMatch_community_list_rm_stanza(Match_community_list_rm_stanzaContext ctx) {
    int statementLine = ctx.getStart().getLine();
    Set<String> names = new TreeSet<>();
    for (VariableContext name : ctx.name_list) {
        names.add(name.getText());
    }
    RouteMapMatchCommunityListLine line = new RouteMapMatchCommunityListLine(names, statementLine);
    _currentRouteMapClause.addMatchLine(line);
}
Also used : TreeSet(java.util.TreeSet) RouteMapMatchCommunityListLine(org.batfish.representation.cisco.RouteMapMatchCommunityListLine) VariableContext(org.batfish.grammar.cisco.CiscoParser.VariableContext)

Aggregations

TreeSet (java.util.TreeSet)1 VariableContext (org.batfish.grammar.cisco.CiscoParser.VariableContext)1 RouteMapMatchCommunityListLine (org.batfish.representation.cisco.RouteMapMatchCommunityListLine)1