blob: 59535b8e876252e4e63bb04cd35fd5dbc4f39cf4 [file] [log] [blame]
khenaidoo96e37a72017-06-19 17:19:21 -04001#
2# Copyright 2017 the original author or authors.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# """ ID generation utils """
17
18from uuid import uuid4
19
khenaidoo08d48d22017-06-29 19:42:49 -040020
21BROADCAST_CORE_ID=hex(0xFFFF)[2:]
22
23def get_next_core_id(current_id_in_hex_str):
24 """
25 :param current_id_in_hex_str: a hex string of the maximum core id
26 assigned without the leading 0x characters
27 :return: current_id_in_hex_str + 1 in hex string
28 """
29 if not current_id_in_hex_str or current_id_in_hex_str == '':
30 return '0001'
31 else:
32 return format(int(current_id_in_hex_str, 16) + 1, '04x')
33
34
khenaidoo96e37a72017-06-19 17:19:21 -040035def create_cluster_logical_device_ids(core_id, switch_id):
36 """
37 Creates a logical device id and an OpenFlow datapath id that is unique
38 across the Voltha cluster. Both ids represents a 64 bits integer where
39 the lower 48 bits represents the switch id and the upper 16 bits
40 represents the core id.
41 :param core_id: string
42 :return: cluster logical device id and OpenFlow datapath id
43 """
44 switch_id = format(switch_id, '012x')
45 id = '{}{}'.format(format(int(core_id), '04x'), switch_id)
khenaidoo08d48d22017-06-29 19:42:49 -040046 hex_int = int(id, 16)
khenaidoo96e37a72017-06-19 17:19:21 -040047 return id, hex_int
48
khenaidoo08d48d22017-06-29 19:42:49 -040049def is_broadcast_core_id(id):
50 assert id and len(id) == 16
51 return id[:4] == BROADCAST_CORE_ID
52
Rachit Shrivastavaa182e912017-07-28 15:18:34 -040053def create_empty_broadcast_id():
54 """
55 Returns an empty broadcast id (ffff000000000000). The id is used to
56 dispatch xPON objects across all the Voltha instances.
57 :return: An empty broadcast id
58 """
59 return '{}{}'.format(BROADCAST_CORE_ID, '0'*12)
60
khenaidoo08d48d22017-06-29 19:42:49 -040061def create_cluster_id():
62 """
63 Returns an id that is common across all voltha instances. The id
64 is a str of 64 bits. The lower 48 bits refers to an id specific to that
65 object while the upper 16 bits refers a broadcast core_id
66 :return: An common id across all Voltha instances
67 """
68 return '{}{}'.format(BROADCAST_CORE_ID, uuid4().hex[:12])
khenaidoo96e37a72017-06-19 17:19:21 -040069
70def create_cluster_device_id(core_id):
71 """
72 Creates a device id that is unique across the Voltha cluster.
73 The device id is a str of 64 bits. The lower 48 bits refers to the
74 device id while the upper 16 bits refers to the core id.
75 :param core_id: string
76 :return: cluster device id
77 """
78 return '{}{}'.format(format(int(core_id), '04x'), uuid4().hex[:12])
79
khenaidoo08d48d22017-06-29 19:42:49 -040080
khenaidoo96e37a72017-06-19 17:19:21 -040081def get_core_id_from_device_id(device_id):
82 # Device id is a string and the first 4 characters represent the core_id
khenaidoo08d48d22017-06-29 19:42:49 -040083 assert device_id and len(device_id) == 16
84 # Get the leading 4 hexs and remove leading 0's
khenaidoo96e37a72017-06-19 17:19:21 -040085 return device_id[:4]
86
87
88def get_core_id_from_logical_device_id(logical_device_id):
89 """
90 Logical Device id is a string and the first 4 characters represent the
91 core_id
92 :param logical_device_id:
93 :return: core_id string
94 """
khenaidoo08d48d22017-06-29 19:42:49 -040095 assert logical_device_id and len(logical_device_id) == 16
96 # Get the leading 4 hexs and remove leading 0's
khenaidoo96e37a72017-06-19 17:19:21 -040097 return logical_device_id[:4]
98
khenaidoo08d48d22017-06-29 19:42:49 -040099
khenaidoo96e37a72017-06-19 17:19:21 -0400100def get_core_id_from_datapath_id(datapath_id):
101 """
102 datapath id is a uint64 where:
103 - low 48 bits -> switch_id
104 - high 16 bits -> core id
105 :param datapath_id:
106 :return: core_id string
107 """
108 assert datapath_id
109 # Get the hex string and remove the '0x' prefix
khenaidoo08d48d22017-06-29 19:42:49 -0400110 id_in_hex_str = hex(datapath_id)[2:]
111 assert len(id_in_hex_str) > 12
khenaidoo96e37a72017-06-19 17:19:21 -0400112 return id_in_hex_str[:-12]