Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cc0d24f403ae14405f524bacf3ce1650c7b2b88b
[simgrid.git] / examples / deprecated / msg / dht-pastry / generate.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2011-2019. 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 \"https://simgrid.org/simgrid.dtd\">\n"
31                  "<platform version=\"3\">\n"
32                  "  <process host=\"node-0.simgrid.org\" function=\"node\"><argument value=\"42\"/>"
33                  "<argument value=\"%d\"/></process>\n" % end_date)
34
35 for i in range(1, nb_nodes):
36
37     ok = False
38     while not ok:
39         my_id = random.randint(0, max_id)
40         ok = my_id not in all_ids
41
42     known_id = all_ids[random.randint(0, len(all_ids) - 1)]
43     start_date = i * 10
44     line = "  <process host=\"node-%d.simgrid.org\" function=\"node\"><argument value=\"%d\" />" \
45            "<argument value=\"%d\" /><argument value=\"%d\" /><argument value=\"%d\" /></process>\n" % (
46                i, my_id, known_id, start_date, end_date)
47     sys.stdout.write(line)
48     all_ids.append(my_id)
49
50 sys.stdout.write("</platform>")