forked from dotnet/performance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
channel_map.py
229 lines (222 loc) · 6.69 KB
/
channel_map.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
from typing import List, Optional, Set
class ChannelMap():
channel_map = {
'main': {
'tfm': 'net9.0',
'branch': '9.0',
'quality': 'daily'
},
'10.0': {
'tfm': 'net10.0',
'branch': '10.0',
'quality': 'daily'
},
'release/10.0': {
'tfm': 'net10.0',
'branch': '10.0',
'quality': 'daily'
},
'nativeaot10.0': {
'tfm': 'nativeaot10.0',
'branch': '10.0',
'quality': 'daily'
},
'9.0': {
'tfm': 'net9.0',
'branch': '9.0',
'quality': 'daily'
},
'release/9.0': {
'tfm': 'net9.0',
'branch': '9.0',
'quality': 'daily'
},
'nativeaot9.0': {
'tfm': 'nativeaot9.0',
'branch': '9.0',
'quality': 'daily'
},
'8.0': {
'tfm': 'net8.0',
'branch': '8.0',
'quality': 'daily'
},
'release/8.0': {
'tfm': 'net8.0',
'branch': '8.0',
'quality': 'daily'
},
'release/8.0-rc2': {
'tfm': 'net8.0',
'branch': '8.0-rc2',
'quality': 'daily'
},
'release/8.0-rc1': {
'tfm': 'net8.0',
'branch': '8.0-rc1',
'quality': 'daily'
},
'8.0-preview': {
'tfm': 'net8.0',
'branch': '8.0',
'qualtiy': 'preview'
},
'release/8.0-preview7': {
'tfm': 'net8.0',
'branch': '8.0-preview7',
'quality': 'daily'
},
'release/8.0-preview6': {
'tfm': 'net8.0',
'branch': '8.0-preview6',
'quality': 'daily'
},
'release/8.0-preview5': {
'tfm': 'net8.0',
'branch': '8.0-preview5',
'quality': 'daily'
},
'release/8.0-preview4': {
'tfm': 'net8.0',
'branch': '8.0-preview4',
'quality': 'daily'
},
'release/8.0-preview3': {
'tfm': 'net8.0',
'branch': '8.0-preview3',
'quality': 'daily'
},
'release/8.0-preview2': {
'tfm': 'net8.0',
'branch': '8.0-preview2',
'quality': 'daily'
},
'release/8.0-preview1': {
'tfm': 'net8.0',
'branch': '8.0-preview1',
'quality': 'daily'
},
'nativeaot8.0': {
'tfm': 'nativeaot8.0',
'branch': '8.0',
'quality': 'daily'
},
'7.0': {
'tfm': 'net7.0',
'branch': '7.0',
'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'
},
'nativeaot7.0': {
'tfm': 'nativeaot7.0',
'branch': '7.0.1xx',
'quality': 'daily'
},
'release/7.0': {
'tfm': 'net7.0',
'branch': '7.0',
'quality': 'daily'
},
'6.0': {
'tfm': 'net6.0',
'branch': '6.0',
'quality': 'daily'
},
'release/6.0': {
'tfm': 'net6.0',
'branch': '6.0',
'quality': 'daily'
},
'nativeaot6.0': {
'tfm': 'nativeaot6.0',
'branch': '6.0',
'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'
},
'net462': {
'tfm': 'net462',
'branch': '9.0',
'quality': 'daily'
},
'net48': {
'tfm': 'net48', # For Full Framework download the LTS for dotnet cli.
'branch': 'LTS'
},
'master': {
'tfm': 'net6.0',
'branch': 'master'
}
}
@staticmethod
def get_supported_channels() -> List[str]:
'''List of supported channels.'''
return list(ChannelMap.channel_map.keys())
@staticmethod
def get_supported_frameworks() -> Set[str]:
'''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[str]) -> List[str]:
'''
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) -> Optional[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()))