Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | """ |
| 3 | Generate the partitions json file from the $OC* environment variables |
| 4 | |
| 5 | Usage: onos-gen-partitions output_file [num_nodes] [-e] |
| 6 | If output file is not provided, the json is written to stdout. |
| 7 | """ |
| 8 | |
| 9 | from os import environ |
| 10 | from collections import deque, OrderedDict |
| 11 | import re |
| 12 | import json |
| 13 | import sys |
| 14 | import hashlib |
| 15 | |
| 16 | convert = lambda text: int(text) if text.isdigit() else text.lower() |
| 17 | alphanum_key = lambda key: [convert(c) for c in re.split('([0-9]+)', key)] |
| 18 | |
| 19 | def get_OC_vars(): |
| 20 | vars = [] |
| 21 | for var in environ: |
| 22 | if re.match(r"OC[0-9]+", var): |
| 23 | vars.append(var) |
| 24 | return sorted(vars, key=alphanum_key) |
| 25 | |
| 26 | def get_nodes(vars, port=9876): |
| 27 | node = lambda k: { 'id': k, 'ip': k, 'port': port } |
| 28 | return [ node(environ[v]) for v in vars ] |
| 29 | |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 30 | def generate_extended_partitions_scaling(nodes, k, partitions=3, equal=False): |
| 31 | l = deque(nodes) |
| 32 | perms = [] |
| 33 | for i in range(1, partitions + 1): |
| 34 | if equal: |
| 35 | members = list(l) |
| 36 | else: |
| 37 | members = list(l)[:k] |
| 38 | |
| 39 | part = { |
| 40 | 'id': i, |
| 41 | 'members': members |
| 42 | } |
| 43 | perms.append(part) |
| 44 | l.rotate(-2) |
| 45 | return perms |
| 46 | |
| 47 | if __name__ == '__main__': |
| 48 | vars = get_OC_vars() |
| 49 | # NOTE: likely prone to errors |
| 50 | nodes = get_nodes(vars) |
| 51 | num = None |
| 52 | equal = False |
| 53 | if len(sys.argv) >= 3: |
| 54 | num = int(sys.argv[2]) |
| 55 | try: |
| 56 | equal = "-e" in sys.argv[3] |
| 57 | except: |
| 58 | equal = False |
| 59 | if num: |
| 60 | nodes = nodes[:num] |
| 61 | |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 62 | extended_partitions = generate_extended_partitions_scaling([v.get('id') for v in nodes], |
| 63 | 3, equal=equal) |
| 64 | partitions = [] |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 65 | partitions.extend(extended_partitions) |
| 66 | name = hash("HAScaling") |
| 67 | data = { |
| 68 | 'name': name, |
| 69 | 'nodes': nodes, |
| 70 | 'partitions': partitions |
| 71 | } |
| 72 | output = json.dumps(data, indent=4) |
| 73 | |
| 74 | if len(sys.argv) >= 2: |
| 75 | filename = sys.argv[1] |
| 76 | with open(filename, 'w') as f: |
| 77 | f.write(output) |
| 78 | else: |
| 79 | print output |