Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill the msg-chord example: the s4u one is much better
[simgrid.git] / examples / msg / dht-pastry / generate.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2011-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 # This script generates a specific deployment file for the Chord example.
10 # It assumes that the platform will be a cluster.
11 # Usage: python generate.py nb_nodes nb_bits end_date
12 # Example: python generate.py 100000 32 1000
13
14 import sys
15 import random
16
17 if len(sys.argv) != 4:
18     print(
19         "Usage: python generate.py nb_nodes nb_bits end_date > deployment_file.xml")
20     sys.exit(1)
21
22 nb_nodes = int(sys.argv[1])
23 nb_bits = int(sys.argv[2])
24 end_date = int(sys.argv[3])
25
26 max_id = 2 ** nb_bits - 1
27 all_ids = [42]
28
29 sys.stdout.write("<?xml version='1.0'?>\n"
30                  "<!DOCTYPE platform SYSTEM \"http://simgrid.gforge.inria.fr/simgrid.dtd\">\n"
31                  "<platform version=\"3\">\n"
32                  "  <process host=\"node-0.acme.org\" function=\"node\"><argument value=\"42\"/><argument value=\"%d\"/></process>\n" % end_date)
33
34 for i in range(1, nb_nodes):
35
36     ok = False
37     while not ok:
38         my_id = random.randint(0, max_id)
39         ok = not my_id in all_ids
40
41     known_id = all_ids[random.randint(0, len(all_ids) - 1)]
42     start_date = i * 10
43     line = "  <process host=\"node-%d.acme.org\" function=\"node\"><argument value=\"%d\" /><argument value=\"%d\" /><argument value=\"%d\" /><argument value=\"%d\" /></process>\n" % (
44         i, my_id, known_id, start_date, end_date)
45     sys.stdout.write(line)
46     all_ids.append(my_id)
47
48 sys.stdout.write("</platform>")