Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c1c7a721a93cbe89a0dd344b693ef7080308e0ef
[simgrid.git] / examples / msg / kademlia / generate.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2012, 2014. The SimGrid Team.
4 # All rights reserved.
5
6 # This program is free software; you can redistribute it and/or modify it
7 # under the terms of the license (GNU LGPL) which comes with this package.
8
9 import sys, random
10
11 if len(sys.argv) != 4:
12         print("Usage: python generate.py nb_nodes nb_bits end_date > deployment_file.xml")
13         sys.exit(1)
14
15 nb_nodes = int(sys.argv[1])
16 nb_bits = int(sys.argv[2])
17 end_date = int(sys.argv[3])
18
19 max_id = 2 ** nb_bits - 1
20 all_ids = [0]
21
22 sys.stdout.write("<?xml version='1.0'?>\n"
23 "<!DOCTYPE platform SYSTEM \"http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd\">\n"
24 "<platform version=\"4\">\n  <process host=\"node-0.acme.org\" function=\"node\">\n"
25 "     <argument value=\"0\"/>\n     <argument value=\"%d\"/>\n  </process>\n" % end_date)
26
27 for i in range(1, nb_nodes):
28         ok = False
29         while not ok:
30                 my_id = random.randint(0, max_id)
31                 ok = not my_id in all_ids
32         known_id = all_ids[random.randint(0, len(all_ids) - 1)]
33         start_date = i * 10
34         line = "  <process host=\"node-%d.acme.org\" function=\"node\">\n    <argument value=\"%s\"/>"\
35                "\n    <argument value=\"%s\"/>\n    <argument value=\"%d\"/>\n  </process>\n" % (i, my_id, known_id,end_date)
36         sys.stdout.write(line)
37         all_ids.append(my_id)
38
39 sys.stdout.write("</platform>")
40