blob: eedf4345bbfde5279e48640230e10e2f9faccb4c [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
53def create_cluster_id():
54 """
55 Returns an id that is common across all voltha instances. The id
56 is a str of 64 bits. The lower 48 bits refers to an id specific to that
57 object while the upper 16 bits refers a broadcast core_id
58 :return: An common id across all Voltha instances
59 """
60 return '{}{}'.format(BROADCAST_CORE_ID, uuid4().hex[:12])
khenaidoo96e37a72017-06-19 17:19:21 -040061
62def create_cluster_device_id(core_id):
63 """
64 Creates a device id that is unique across the Voltha cluster.
65 The device id is a str of 64 bits. The lower 48 bits refers to the
66 device id while the upper 16 bits refers to the core id.
67 :param core_id: string
68 :return: cluster device id
69 """
70 return '{}{}'.format(format(int(core_id), '04x'), uuid4().hex[:12])
71
khenaidoo08d48d22017-06-29 19:42:49 -040072
khenaidoo96e37a72017-06-19 17:19:21 -040073def get_core_id_from_device_id(device_id):
74 # Device id is a string and the first 4 characters represent the core_id
khenaidoo08d48d22017-06-29 19:42:49 -040075 assert device_id and len(device_id) == 16
76 # Get the leading 4 hexs and remove leading 0's
khenaidoo96e37a72017-06-19 17:19:21 -040077 return device_id[:4]
78
79
80def get_core_id_from_logical_device_id(logical_device_id):
81 """
82 Logical Device id is a string and the first 4 characters represent the
83 core_id
84 :param logical_device_id:
85 :return: core_id string
86 """
khenaidoo08d48d22017-06-29 19:42:49 -040087 assert logical_device_id and len(logical_device_id) == 16
88 # Get the leading 4 hexs and remove leading 0's
khenaidoo96e37a72017-06-19 17:19:21 -040089 return logical_device_id[:4]
90
khenaidoo08d48d22017-06-29 19:42:49 -040091
khenaidoo96e37a72017-06-19 17:19:21 -040092def get_core_id_from_datapath_id(datapath_id):
93 """
94 datapath id is a uint64 where:
95 - low 48 bits -> switch_id
96 - high 16 bits -> core id
97 :param datapath_id:
98 :return: core_id string
99 """
100 assert datapath_id
101 # Get the hex string and remove the '0x' prefix
khenaidoo08d48d22017-06-29 19:42:49 -0400102 id_in_hex_str = hex(datapath_id)[2:]
103 assert len(id_in_hex_str) > 12
khenaidoo96e37a72017-06-19 17:19:21 -0400104 return id_in_hex_str[:-12]