performance/scripts/channel_map.py

129 строки
4.1 KiB
Python
Исходник Обычный вид История

from argparse import ArgumentParser
class ChannelMap():
channel_map = {
'main': {
'tfm': 'net7.0',
'branch': '7.0.1xx',
'quality': 'daily'
},
'release/7.0-rc2': {
'tfm': 'net7.0',
'branch': '7.0-rc2',
'quality': 'daily'
},
'release/7.0-rc1': {
'tfm': 'net7.0',
'branch': '7.0-rc1',
'quality': 'daily'
},
'release/7.0': {
2022-02-03 22:49:31 +03:00
'tfm': 'net7.0',
'branch': '7.0',
2022-02-03 22:49:31 +03:00
'quality': 'daily'
},
'nativeaot7.0': {
'tfm': 'nativeaot7.0',
'branch': '7.0.1xx',
'quality': 'daily'
},
'master': {
'tfm': 'net6.0',
'branch': 'master'
},
'6.0': {
'tfm': 'net6.0',
'branch': '6.0.1xx',
'quality': 'daily'
},
'release/6.0': {
'tfm': 'net6.0',
'branch': '6.0.1xx',
'quality': 'daily'
},
'nativeaot6.0': {
'tfm': 'nativeaot6.0',
'branch': '6.0.1xx',
'quality': 'daily'
},
'release/3.1.3xx':{
'tfm': 'netcoreapp3.1',
'branch': 'release/3.1.3xx'
},
'release/3.1.2xx': {
'tfm': 'netcoreapp3.1',
'branch': 'release/3.1.2xx'
},
'release/3.1.1xx': {
'tfm': 'netcoreapp3.1',
'branch': 'release/3.1.1xx'
},
'3.1': {
'tfm': 'netcoreapp3.1',
'branch': '3.1.4xx',
'quality': 'daily'
},
'LTS': {
'tfm': 'net461', # For Full Framework download the LTS for dotnet cli.
'branch': 'LTS'
2021-11-18 03:48:26 +03:00
},
'net48': {
'tfm': 'net48', # For Full Framework download the LTS for dotnet cli.
'branch': 'LTS'
}
}
@staticmethod
def get_supported_channels() -> list:
'''List of supported channels.'''
return list(ChannelMap.channel_map.keys())
@staticmethod
def get_supported_frameworks() -> list:
'''List of supported frameworks'''
frameworks = [ChannelMap.channel_map[channel]['tfm'] for channel in ChannelMap.channel_map]
return set(frameworks)
@staticmethod
def get_branch(channel: str) -> str:
if channel in ChannelMap.channel_map:
return ChannelMap.channel_map[channel]['branch']
else:
raise Exception('Channel %s is not supported. Supported channels %s' % (channel, ChannelMap.get_supported_channels()))
@staticmethod
def get_target_framework_monikers(channels: list) -> list:
'''
Translates channel names to Target Framework Monikers (TFMs).
'''
monikers = [
ChannelMap.get_target_framework_moniker(channel)
for channel in channels
]
return list(set(monikers))
@staticmethod
def get_target_framework_moniker(channel: str) -> str:
'''
Translate channel name to Target Framework Moniker (TFM)
'''
if channel in ChannelMap.channel_map:
return ChannelMap.channel_map[channel]['tfm']
else:
raise Exception('Channel %s is not supported. Supported channels %s' % (channel, ChannelMap.get_supported_channels()))
@staticmethod
def get_quality_from_channel(channel: str) -> str:
'''Translate Target Framework Moniker (TFM) to channel name'''
if 'quality' in ChannelMap.channel_map[channel]:
return ChannelMap.channel_map[channel]['quality']
else:
return None
@staticmethod
def get_channel_from_target_framework_moniker(target_framework_moniker: str) -> str:
'''Translate Target Framework Moniker (TFM) to channel name'''
for channel in ChannelMap.channel_map:
if ChannelMap.channel_map[channel]['tfm'] == target_framework_moniker:
return channel
raise Exception('Framework %s is not supported. Supported frameworks: %s' % (target_framework_moniker, ChannelMap.get_supported_frameworks()))