Ejemplo n.º 1
0
 protected List<Long> findSortedSrcEdges(Collection<Rule> rules) {
   final Set<Long> srcIPs = new HashSet<Long>(rules.size() * 2 + 1, 1);
   int srcIPIndex = Util.getDimensionInfoIndex(Util.SRC_IP_INFO);
   for (Rule rule : rules) {
     RangeDimensionRange property = rule.getProperty(srcIPIndex);
     srcIPs.add(property.getStart());
     srcIPs.add(property.getEnd());
   }
   List<Long> ipsSorted = new ArrayList<Long>(srcIPs);
   for (Long srcIP : srcIPs) {
     ipsSorted.add(srcIP);
   }
   Collections.sort(ipsSorted);
   return ipsSorted;
 }
Ejemplo n.º 2
0
  public static void main(String[] args) {
    String parentFolder = "input\\nsdi";
    String ruleFileName1 = parentFolder + "\\classbenchrules\\split\\classbench_131072_2_1.txt";
    String ruleFileName2 = parentFolder + "\\classbenchrules\\split\\classbench_131072_2_2.txt";
    String topologyFile = parentFolder + "/topologylm/memory/tree_4096_1024.txt";
    String outputFolder1 = parentFolder + "\\classbenchpartition\\vmstart\\imcsplit\\1";
    String outputFolder2 = parentFolder + "\\classbenchpartition\\vmstart\\imcsplit\\2";
    File flowFile =
        new File(parentFolder + "\\classbenchflows\\imc\\-1\\flows\\classbench_131072_2.txt");
    File vmsFile =
        new File(parentFolder + "\\classbenchflows\\imc\\-1\\vms\\classbench_131072_2.txt");
    String statsOutputFolder1 = outputFolder1 + "/stat";
    String statsOutputFolder2 = outputFolder2 + "/stat";

    new File(outputFolder1).mkdirs();
    new File(outputFolder2).mkdirs();
    new File(statsOutputFolder1).mkdirs();
    new File(statsOutputFolder2).mkdirs();

    try {
      // load rules
      HashMap<String, Object> parameters = new HashMap<>();

      // load topology
      Topology topology =
          Util.loadFile(
                  new TopologyFactory(
                      new FileFactory.EndOfFileCondition(),
                      Util.DEFAULT_AGGREGATOR,
                      new HashSet<Rule>()),
                  topologyFile,
                  parameters,
                  new ArrayList<Topology>())
              .get(0);

      // partition rule1
      int nextRuleID =
          VMStartPartitions.run(
              new File(ruleFileName1),
              outputFolder1,
              parameters,
              topology,
              flowFile,
              statsOutputFolder1,
              new UnifiedPartitionWriter(),
              vmsFile);

      // save rule1 partitions

      // partition rule2 with startruleid
      VMStartPartitions.run(
          new File(ruleFileName2),
          outputFolder2,
          parameters,
          topology,
          flowFile,
          statsOutputFolder2,
          new UnifiedPartitionWriter(nextRuleID),
          vmsFile);
      // save rule2 partitions
    } catch (IOException e) {
      e.printStackTrace();
    }
  }