Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'mc' into mc++
[simgrid.git] / examples / msg / kademlia / generate.py
1 #!/usr/bin/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.dtd\">\n"
24 "<platform version=\"3\">\n"
25 "  <process host=\"c-0.me\" function=\"node\"><argument value=\"0000000000000000000000000000000000000000\"/><argument value=\"%d\"/></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=\"c-%d.me\" function=\"node\"><argument value=\"%s\" /><argument value=\"%s\" /><argument value=\"%d\" /></process>\n" % (i, my_id, known_id,end_date)
35         sys.stdout.write(line)
36         all_ids.append(my_id)
37
38 sys.stdout.write("</platform>")
39