-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
vsdownload.py
executable file
·779 lines (700 loc) · 32.7 KB
/
vsdownload.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
#!/usr/bin/python3
#
# Copyright (c) 2019 Martin Storsjo
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
import argparse
import functools
import glob
import hashlib
import os
import multiprocessing.pool
import json
import platform
import shutil
import socket
import subprocess
import sys
import tempfile
import urllib.request
import zipfile
def getArgsParser():
parser = argparse.ArgumentParser(description = "Download and install Visual Studio")
parser.add_argument("--manifest", metavar="manifest", help="A predownloaded manifest file")
parser.add_argument("--save-manifest", const=True, action="store_const", help="Store the downloaded manifest to a file")
parser.add_argument("--major", default=17, metavar="version", help="The major version to download (defaults to 17)")
parser.add_argument("--preview", dest="type", default="release", const="pre", action="store_const", help="Download the preview version instead of the release version")
parser.add_argument("--cache", metavar="dir", help="Directory to use as a persistent cache for downloaded files")
parser.add_argument("--dest", metavar="dir", help="Directory to install into")
parser.add_argument("package", metavar="package", help="Package to install. If omitted, installs the default command line tools.", nargs="*")
parser.add_argument("--ignore", metavar="component", help="Package to skip", action="append")
parser.add_argument("--accept-license", const=True, action="store_const", help="Don't prompt for accepting the license")
parser.add_argument("--print-version", const=True, action="store_const", help="Stop after fetching the manifest")
parser.add_argument("--list-workloads", const=True, action="store_const", help="List high level workloads")
parser.add_argument("--list-components", const=True, action="store_const", help="List available components")
parser.add_argument("--list-packages", const=True, action="store_const", help="List all individual packages, regardless of type")
parser.add_argument("--include-optional", const=True, action="store_const", help="Include all optional dependencies")
parser.add_argument("--skip-recommended", const=True, action="store_const", help="Don't include recommended dependencies")
parser.add_argument("--print-deps-tree", const=True, action="store_const", help="Print a tree of resolved dependencies for the given selection")
parser.add_argument("--print-reverse-deps", const=True, action="store_const", help="Print a tree of packages that depend on the given selection")
parser.add_argument("--print-selection", const=True, action="store_const", help="Print a list of the individual packages that are selected to be installed")
parser.add_argument("--only-download", const=True, action="store_const", help="Stop after downloading package files")
parser.add_argument("--only-unpack", const=True, action="store_const", help="Unpack the selected packages and keep all files, in the layout they are unpacked, don't restructure and prune files other than what's needed for MSVC CLI tools")
parser.add_argument("--keep-unpack", const=True, action="store_const", help="Keep the unpacked files that aren't otherwise selected as needed output")
parser.add_argument("--msvc-version", metavar="version", help="Install a specific MSVC toolchain version")
parser.add_argument("--sdk-version", metavar="version", help="Install a specific Windows SDK version")
parser.add_argument("--with-wdk-installers", metavar="dir", help="Install Windows Driver Kit using the provided MSI installers")
parser.add_argument("--host-arch", metavar="arch", choices=["x86", "x64", "arm64"], help="Specify the host architecture of packages to install")
parser.add_argument("--only-host", default=True, const=True, action="store_const", help="Only download packages that match host arch")
return parser
def setPackageSelectionMSVC16(args, packages, userversion, sdk, toolversion, defaultPackages):
if findPackage(packages, "Microsoft.VisualStudio.Component.VC." + toolversion + ".x86.x64", warn=False):
if sdk.startswith("10.0.") and int(sdk[5:]) >= 22000:
sdkpkg = "Win11SDK_" + sdk
else:
sdkpkg = "Win10SDK_" + sdk
extraarchs = ["ARM", "ARM64"]
args.package.extend([sdkpkg, "Microsoft.VisualStudio.Component.VC." + toolversion + ".x86.x64", "Microsoft.VisualStudio.Component.VC." + toolversion + ".ATL"])
for arch in extraarchs:
args.package.extend(["Microsoft.VisualStudio.Component.VC." + toolversion + "." + arch, "Microsoft.VisualStudio.Component.VC." + toolversion + ".ATL." + arch])
else:
# Options for toolchains for specific versions. The latest version in
# each manifest isn't available as a pinned version though, so if that
# version is requested, try the default version.
print("Didn't find exact version packages for " + userversion + ", assuming this is provided by the default/latest version")
args.package.extend(defaultPackages)
def setPackageSelectionMSVC15(args, packages, userversion, sdk, toolversion, defaultPackages):
if findPackage(packages, "Microsoft.VisualStudio.Component.VC.Tools." + toolversion, warn=False):
args.package.extend(["Win10SDK_" + sdk, "Microsoft.VisualStudio.Component.VC.Tools." + toolversion])
else:
# Options for toolchains for specific versions. The latest version in
# each manifest isn't available as a pinned version though, so if that
# version is requested, try the default version.
print("Didn't find exact version packages for " + userversion + ", assuming this is provided by the default/latest version")
args.package.extend(defaultPackages)
def setPackageSelection(args, packages):
# If no packages are selected, install these versionless packages, which
# gives the latest/recommended version for the current manifest.
extraarchs = ["ARM", "ARM64"]
defaultPackages = ["Microsoft.VisualStudio.Workload.VCTools", "Microsoft.VisualStudio.Component.VC.ATL"]
for arch in extraarchs:
defaultPackages.extend(["Microsoft.VisualStudio.Component.VC.Tools." + arch, "Microsoft.VisualStudio.Component.VC.ATL." + arch])
# Note, that in the manifest for MSVC version X.Y, only version X.Y-1
# exists with a package name like "Microsoft.VisualStudio.Component.VC."
# + toolversion + ".x86.x64".
if args.msvc_version == "16.0":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.17763", "14.20", defaultPackages)
elif args.msvc_version == "16.1":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.18362", "14.21", defaultPackages)
elif args.msvc_version == "16.2":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.18362", "14.22", defaultPackages)
elif args.msvc_version == "16.3":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.18362", "14.23", defaultPackages)
elif args.msvc_version == "16.4":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.18362", "14.24", defaultPackages)
elif args.msvc_version == "16.5":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.18362", "14.25", defaultPackages)
elif args.msvc_version == "16.6":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.18362", "14.26", defaultPackages)
elif args.msvc_version == "16.7":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.18362", "14.27", defaultPackages)
elif args.msvc_version == "16.8":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.18362", "14.28", defaultPackages)
elif args.msvc_version == "16.9":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.19041", "14.28.16.9", defaultPackages)
elif args.msvc_version == "16.10":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.19041", "14.29.16.10", defaultPackages)
elif args.msvc_version == "16.11":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.19041", "14.29.16.11", defaultPackages)
elif args.msvc_version == "17.0":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.19041", "14.30.17.0", defaultPackages)
elif args.msvc_version == "17.1":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.19041", "14.31.17.1", defaultPackages)
elif args.msvc_version == "17.2":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.19041", "14.32.17.2", defaultPackages)
elif args.msvc_version == "17.3":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.19041", "14.33.17.3", defaultPackages)
elif args.msvc_version == "17.4":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.22621", "14.34.17.4", defaultPackages)
elif args.msvc_version == "17.5":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.22621", "14.35.17.5", defaultPackages)
elif args.msvc_version == "17.6":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.22621", "14.36.17.6", defaultPackages)
elif args.msvc_version == "17.7":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.22621", "14.37.17.7", defaultPackages)
elif args.msvc_version == "17.8":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.22621", "14.38.17.8", defaultPackages)
elif args.msvc_version == "17.9":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.22621", "14.39.17.9", defaultPackages)
elif args.msvc_version == "17.10":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.22621", "14.40.17.10", defaultPackages)
elif args.msvc_version == "17.11":
setPackageSelectionMSVC16(args, packages, args.msvc_version, "10.0.22621", "14.41.17.11", defaultPackages)
elif args.msvc_version == "15.4":
setPackageSelectionMSVC15(args, packages, args.msvc_version, "10.0.16299", "14.11", defaultPackages)
elif args.msvc_version == "15.5":
setPackageSelectionMSVC15(args, packages, args.msvc_version, "10.0.16299", "14.12", defaultPackages)
elif args.msvc_version == "15.6":
setPackageSelectionMSVC15(args, packages, args.msvc_version, "10.0.16299", "14.13", defaultPackages)
elif args.msvc_version == "15.7":
setPackageSelectionMSVC15(args, packages, args.msvc_version, "10.0.17134", "14.14", defaultPackages)
elif args.msvc_version == "15.8":
setPackageSelectionMSVC15(args, packages, args.msvc_version, "10.0.17134", "14.15", defaultPackages)
elif args.msvc_version == "15.9":
setPackageSelectionMSVC15(args, packages, args.msvc_version, "10.0.17763", "14.16", defaultPackages)
elif args.msvc_version != None:
print("Unsupported MSVC toolchain version " + args.msvc_version)
sys.exit(1)
if len(args.package) == 0:
args.package = defaultPackages
if args.sdk_version != None:
for key in packages:
if key.startswith("win10sdk") or key.startswith("win11sdk"):
base = key[0:8]
sdkname = base + "_" + args.sdk_version
if key == sdkname:
args.package.append(key)
else:
args.ignore.append(key)
p = packages[key][0]
def lowercaseIgnores(args):
ignore = []
if args.ignore != None:
for i in args.ignore:
ignore.append(i.lower())
args.ignore = ignore
def getManifest(args):
if args.manifest == None:
url = "https://aka.ms/vs/%s/%s/channel" % (args.major, args.type)
print("Fetching %s" % (url))
manifest = json.loads(urllib.request.urlopen(url).read())
print("Got toplevel manifest for %s" % (manifest["info"]["productDisplayVersion"]))
for item in manifest["channelItems"]:
if "type" in item and item["type"] == "Manifest":
args.manifest = item["payloads"][0]["url"]
if args.manifest == None:
print("Unable to find an intaller manifest!")
sys.exit(1)
if not args.manifest.startswith("http"):
args.manifest = "file:" + args.manifest
manifestdata = urllib.request.urlopen(args.manifest).read()
manifest = json.loads(manifestdata)
print("Loaded installer manifest for %s" % (manifest["info"]["productDisplayVersion"]))
if args.save_manifest:
filename = "%s.manifest" % (manifest["info"]["productDisplayVersion"])
if os.path.isfile(filename):
oldfile = open(filename, "rb").read()
if oldfile != manifestdata:
print("Old saved manifest in \"%s\" differs from newly downloaded one, not overwriting!" % (filename))
else:
print("Old saved manifest in \"%s\" is still current" % (filename))
else:
f = open(filename, "wb")
f.write(manifestdata)
f.close()
print("Saved installer manifest to \"%s\"" % (filename))
return manifest
def prioritizePackage(arch, a, b):
def archOrd(k, x):
if arch is None:
return 0
c = x.get(k, "neutral").lower()
if c == "neutral":
return 0
if c == arch:
return -1
return 1
for k in ["chip", "machineArch", "productArch"]:
r = archOrd(k, a) - archOrd(k, b)
if r != 0:
return r
if "language" in a and "language" in b:
aeng = a["language"].lower().startswith("en-")
beng = b["language"].lower().startswith("en-")
if aeng and not beng:
return -1
if beng and not aeng:
return 1
return 0
def getPackages(manifest, arch):
packages = {}
for p in manifest["packages"]:
id = p["id"].lower()
if not id in packages:
packages[id] = []
packages[id].append(p)
for key in packages:
packages[key] = sorted(packages[key], key=functools.cmp_to_key(functools.partial(prioritizePackage, arch)))
return packages
def listPackageType(packages, type):
if type != None:
type = type.lower()
ids = []
for key in packages:
p = packages[key][0]
if type == None:
ids.append(p["id"])
elif "type" in p and p["type"].lower() == type:
ids.append(p["id"])
for id in sorted(ids):
print(id)
def findPackage(packages, id, constraints={}, warn=True):
origid = id
id = id.lower()
candidates = None
if not id in packages:
if warn:
print("WARNING: %s not found" % (origid))
return None
candidates = packages[id]
for a in candidates:
matched = True
for k, v in constraints.items():
if k in ["chip", "machineArch"]:
matched = a.get(k, "").lower() == v.lower()
if not matched:
break
if matched:
return a
return candidates[0]
def matchPackageHostArch(p, host):
if host is None:
return True
known_archs = ["x86", "x64", "arm64"]
# Some packages have host arch in their ids, e.g.
# - Microsoft.VisualCpp.Tools.HostARM64.TargetX64
# - Microsoft.VisualCpp.Tools.HostX64.TargetX64
id = p["id"].lower()
for a in known_archs:
if "host" + a in id:
return a == host
for k in ["chip", "machineArch", "productArch"]:
a = p.get(k, "neutral").lower()
if a == "neutral":
continue
if a != host:
return False
return True
def printDepends(packages, target, constraints, indent, args):
chipstr = ""
for k in ["chip", "machineArch"]:
v = constraints.get(k)
if v is not None:
chipstr = chipstr + " (" + k + "." + v + ")"
deptypestr = ""
deptype = constraints.get("type", "")
if deptype != "":
deptypestr = " (" + deptype + ")"
ignorestr = ""
ignore = False
if target.lower() in args.ignore:
ignorestr = " (Ignored)"
ignore = True
if deptype == "Optional" and not args.include_optional:
ignore = True
if deptype == "Recommended" and args.skip_recommended:
ignore = True
if not ignore:
p = findPackage(packages, target, constraints, warn=False)
if p == None:
ignorestr = " (NotFound)"
ignore = True
elif args.only_host and not matchPackageHostArch(p, args.host_arch):
ignorestr = " (HostArchMismatch)"
ignore = True
print(indent + target + chipstr + deptypestr + ignorestr)
if ignore:
return
for target, constraints in p.get("dependencies", {}).items():
if not isinstance(constraints, dict):
constraints = { "version": constraints }
printDepends(packages, target, constraints, indent + " ", args)
def printReverseDepends(packages, target, deptype, indent, args):
deptypestr = ""
if deptype != "":
deptypestr = " (" + deptype + ")"
print(indent + target + deptypestr)
if deptype == "Optional" and not args.include_optional:
return
if deptype == "Recommended" and args.skip_recommended:
return
target = target.lower()
for key in packages:
p = packages[key][0]
if "dependencies" in p:
deps = p["dependencies"]
for k in deps:
if k.lower() != target:
continue
dep = deps[k]
type = ""
if "type" in dep:
type = dep["type"]
printReverseDepends(packages, p["id"], type, indent + " ", args)
def getPackageKey(p):
packagekey = p["id"]
if "version" in p:
packagekey = packagekey + "-" + p["version"]
for k in ["chip", "machineArch", "productArch"]:
v = p.get(k)
if v is not None:
packagekey = packagekey + "-" + k + "." + v
return packagekey
def aggregateDepends(packages, included, target, constraints, args):
if target.lower() in args.ignore:
return []
p = findPackage(packages, target, constraints)
if p == None:
return []
if args.only_host and not matchPackageHostArch(p, args.host_arch):
return []
packagekey = getPackageKey(p)
if packagekey in included:
return []
ret = [p]
included[packagekey] = True
for target, constraints in p.get("dependencies", {}).items():
if not isinstance(constraints, dict):
constraints = { "version": constraints }
deptype = constraints.get("type")
if deptype == "Optional" and not args.include_optional:
continue
if deptype == "Recommended" and args.skip_recommended:
continue
ret.extend(aggregateDepends(packages, included, target, constraints, args))
return ret
def getSelectedPackages(packages, args):
ret = []
included = {}
for i in args.package:
ret.extend(aggregateDepends(packages, included, i, {}, args))
return ret
def sumInstalledSize(l):
sum = 0
for p in l:
if "installSizes" in p:
sizes = p["installSizes"]
for location in sizes:
sum = sum + sizes[location]
return sum
def sumDownloadSize(l):
sum = 0
for p in l:
if "payloads" in p:
for payload in p["payloads"]:
if "size" in payload:
sum = sum + payload["size"]
return sum
def formatSize(s):
if s > 900*1024*1024:
return "%.1f GB" % (s/(1024*1024*1024))
if s > 900*1024:
return "%.1f MB" % (s/(1024*1024))
if s > 1024:
return "%.1f KB" % (s/1024)
return "%d bytes" % (s)
def printPackageList(l):
for p in sorted(l, key=lambda p: p["id"]):
s = p["id"]
if "type" in p:
s = s + " (" + p["type"] + ")"
for k in ["chip", "machineArch", "productArch"]:
v = p.get(k)
if v is not None:
s = s + " (" + k + "." + v + ")"
if "language" in p:
s = s + " (" + p["language"] + ")"
s = s + " " + formatSize(sumInstalledSize([p]))
print(s)
def makedirs(dir):
try:
os.makedirs(dir)
except OSError:
pass
def sha256File(file):
sha256Hash = hashlib.sha256()
with open(file, "rb") as f:
for byteBlock in iter(lambda: f.read(4096), b""):
sha256Hash.update(byteBlock)
return sha256Hash.hexdigest()
def getPayloadName(payload):
name = payload["fileName"]
if "\\" in name:
name = name.split("\\")[-1]
if "/" in name:
name = name.split("/")[-1]
return name
def downloadPackages(selected, cache, allowHashMismatch = False):
pool = multiprocessing.Pool(5)
tasks = []
makedirs(cache)
for p in selected:
if not "payloads" in p:
continue
dir = os.path.join(cache, getPackageKey(p))
makedirs(dir)
for payload in p["payloads"]:
name = getPayloadName(payload)
destname = os.path.join(dir, name)
fileid = os.path.join(getPackageKey(p), name)
args = (payload, destname, fileid, allowHashMismatch)
tasks.append(pool.apply_async(_downloadPayload, args))
downloaded = sum(task.get() for task in tasks)
pool.close()
print("Downloaded %s in total" % (formatSize(downloaded)))
def _downloadPayload(payload, destname, fileid, allowHashMismatch):
attempts = 5
for attempt in range(attempts):
try:
if os.access(destname, os.F_OK):
if "sha256" in payload:
if sha256File(destname).lower() != payload["sha256"].lower():
print("Incorrect existing file %s, removing" % (fileid), flush=True)
os.remove(destname)
else:
print("Using existing file %s" % (fileid), flush=True)
return 0
else:
return 0
size = 0
if "size" in payload:
size = payload["size"]
print("Downloading %s (%s)" % (fileid, formatSize(size)), flush=True)
urllib.request.urlretrieve(payload["url"], destname)
if "sha256" in payload:
if sha256File(destname).lower() != payload["sha256"].lower():
if allowHashMismatch:
print("WARNING: Incorrect hash for downloaded file %s" % (fileid), flush=True)
else:
raise Exception("Incorrect hash for downloaded file %s, aborting" % fileid)
return size
except Exception as e:
if attempt == attempts - 1:
raise
print("%s: %s" % (type(e).__name__, e), flush=True)
def mergeTrees(src, dest):
if not os.path.isdir(src):
return
if not os.path.isdir(dest):
shutil.move(src, dest)
return
names = os.listdir(src)
destnames = {}
for n in os.listdir(dest):
destnames[n.lower()] = n
for n in names:
srcname = os.path.join(src, n)
destname = os.path.join(dest, n)
if os.path.isdir(srcname):
if os.path.isdir(destname):
mergeTrees(srcname, destname)
elif n.lower() in destnames:
mergeTrees(srcname, os.path.join(dest, destnames[n.lower()]))
else:
shutil.move(srcname, destname)
else:
shutil.move(srcname, destname)
def unzipFiltered(zip, dest):
tmp = os.path.join(dest, "extract")
for f in zip.infolist():
name = urllib.parse.unquote(f.filename)
if "/" in name:
sep = name.rfind("/")
dir = os.path.join(dest, name[0:sep])
makedirs(dir)
extracted = zip.extract(f, tmp)
shutil.move(extracted, os.path.join(dest, name))
shutil.rmtree(tmp)
def unpackVsix(file, dest, listing):
temp = os.path.join(dest, "vsix")
makedirs(temp)
with zipfile.ZipFile(file, "r") as zip:
unzipFiltered(zip, temp)
with open(listing, "w") as f:
for n in zip.namelist():
f.write(n + "\n")
contents = os.path.join(temp, "Contents")
if os.access(contents, os.F_OK):
mergeTrees(contents, dest)
# This archive directory structure is used in WDK.vsix.
msbuild = os.path.join(temp, "$MSBuild")
if os.access(msbuild, os.F_OK):
mergeTrees(msbuild, os.path.join(dest, "MSBuild"))
shutil.rmtree(temp)
def unpackWin10SDK(src, payloads, dest):
# We could try to unpack only the MSIs we need here.
# Note, this extracts some files into Program Files/..., and some
# files directly in the root unpack directory. The files we need
# are under Program Files/... though.
for payload in payloads:
name = getPayloadName(payload)
if name.endswith(".msi"):
print("Extracting " + name)
srcfile = os.path.join(src, name)
if sys.platform == "win32":
cmd = ["msiexec", "/a", srcfile, "/qn", "TARGETDIR=" + os.path.abspath(dest)]
else:
cmd = ["msiextract", "-C", dest, srcfile]
with open(os.path.join(dest, "WinSDK-" + getPayloadName(payload) + "-listing.txt"), "w") as log:
subprocess.check_call(cmd, stdout=log)
def unpackWin10WDK(src, dest):
print("Unpacking WDK installers from", src)
# WDK installers downloaded by wdksetup.exe include a huge pile of
# non-WDK installers, just skip these.
for srcfile in glob.glob(src + "/Windows Driver*.msi"):
name = os.path.basename(srcfile)
print("Extracting", name)
# Do not try to run msiexec here because TARGETDIR
# does not work with WDK installers.
cmd = ["msiextract", "-C", dest, srcfile]
payloadName, _ = os.path.splitext(name)
with open(os.path.join(dest, "WDK-" + payloadName + "-listing.txt"), "w") as log:
subprocess.check_call(cmd, stdout=log)
# WDK includes a VS extension, unpack it before copying the extracted files.
for vsix in glob.glob(dest + "/**/WDK.vsix", recursive=True):
name = os.path.basename(vsix)
print("Unpacking WDK VS extension", name)
payloadName, _ = os.path.splitext(name)
listing = os.path.join(dest, "WDK-VS-" + payloadName + "-listing.txt")
unpackVsix(vsix, dest, listing)
# Merge incorrectly extracted 'Build' and 'build' directory trees.
# The WDK 'build' tree must be versioned.
kitsPath = os.path.join(dest, "Program Files", "Windows Kits", "10")
brokenBuildDir = os.path.join(kitsPath, "Build")
for buildDir in glob.glob(kitsPath + "/build/10.*/"):
wdkVersion = buildDir.split("/")[-2];
print("Merging WDK 'Build' and 'build' directories into version", wdkVersion);
mergeTrees(brokenBuildDir, buildDir)
shutil.rmtree(brokenBuildDir)
# Move the WDK .props files into a versioned directory.
propsPath = os.path.join(kitsPath, "DesignTime", "CommonConfiguration", "Neutral", "WDK");
versionedPath = os.path.join(propsPath, wdkVersion)
makedirs(versionedPath)
for props in glob.glob(propsPath + "/*.props"):
filename = os.path.basename(props)
print("Moving", filename, "into version", wdkVersion);
shutil.move(props, os.path.join(versionedPath, filename))
def extractPackages(selected, cache, dest):
makedirs(dest)
for p in selected:
type = p["type"]
dir = os.path.join(cache, getPackageKey(p))
if type == "Component" or type == "Workload" or type == "Group":
continue
if type == "Vsix":
print("Unpacking " + p["id"])
for payload in p["payloads"]:
unpackVsix(os.path.join(dir, getPayloadName(payload)), dest, os.path.join(dest, getPackageKey(p) + "-listing.txt"))
elif p["id"].startswith("Win10SDK") or p["id"].startswith("Win11SDK"):
print("Unpacking " + p["id"])
unpackWin10SDK(dir, p["payloads"], dest)
else:
print("Skipping unpacking of " + p["id"] + " of type " + type)
def moveVCSDK(unpack, dest):
# Move the VC and Program Files\Windows Kits\10 directories
# out from the unpack directory, allowing the rest of unpacked
# files to be removed.
mergeTrees(os.path.join(unpack, "VC"), os.path.join(dest, "VC"))
kitsPath = unpack
# msiexec extracts to Windows Kits rather than Program Files\Windows Kits
if sys.platform != "win32":
kitsPath = os.path.join(kitsPath, "Program Files")
mergeTrees(os.path.join(kitsPath, "Windows Kits"), os.path.join(dest, "Windows Kits"))
# Move other VC components directories:
# The DIA SDK isn't necessary for normal use, but can be used when e.g.
# compiling LLVM.
# MSBuild is the standard VC build tool.
for extraDir in "DIA SDK", "MSBuild":
mergeTrees(os.path.join(unpack, extraDir), os.path.join(dest, extraDir))
if __name__ == "__main__":
parser = getArgsParser()
args = parser.parse_args()
lowercaseIgnores(args)
socket.setdefaulttimeout(15)
if args.host_arch is None:
args.host_arch = platform.machine().lower()
if platform.system() == "Darwin":
# There is no prebuilt arm64 Wine on macOS.
args.host_arch = "x64"
elif args.host_arch in ["x86", "i386", "i686"]:
args.host_arch = "x86"
elif args.host_arch in ["x64", "x86_64", "amd64"]:
args.host_arch = "x64"
elif args.host_arch in ["arm64", "aarch64"]:
args.host_arch = "arm64"
else:
args.host_arch = None
if args.host_arch is None:
print("WARNING: Unable to detect host architecture")
else:
print("Install packages for %s host architecture" % args.host_arch)
packages = getPackages(getManifest(args), args.host_arch)
if args.print_version:
sys.exit(0)
if not args.accept_license:
response = input("Do you accept the license at " + findPackage(packages, "Microsoft.VisualStudio.Product.BuildTools")["localizedResources"][0]["license"] + " (yes/no)? ")
while response != "yes" and response != "no":
response = input("Do you accept the license? Answer \"yes\" or \"no\": ")
if response == "no":
sys.exit(0)
setPackageSelection(args, packages)
if args.list_components or args.list_workloads or args.list_packages:
if args.list_components:
listPackageType(packages, "Component")
if args.list_workloads:
listPackageType(packages, "Workload")
if args.list_packages:
listPackageType(packages, None)
sys.exit(0)
if args.print_deps_tree:
for i in args.package:
printDepends(packages, i, {}, "", args)
sys.exit(0)
if args.print_reverse_deps:
for i in args.package:
printReverseDepends(packages, i, "", "", args)
sys.exit(0)
selected = getSelectedPackages(packages, args)
if args.print_selection:
printPackageList(selected)
print("Selected %d packages, for a total download size of %s, install size of %s" % (len(selected), formatSize(sumDownloadSize(selected)), formatSize(sumInstalledSize(selected))))
if args.print_selection:
sys.exit(0)
tempcache = None
if args.cache != None:
cache = os.path.abspath(args.cache)
else:
cache = tempfile.mkdtemp(prefix="vsinstall-")
tempcache = cache
if not args.only_download and args.dest == None:
print("No destination directory set!")
sys.exit(1)
try:
downloadPackages(selected, cache, allowHashMismatch=args.only_download)
if args.only_download:
sys.exit(0)
dest = os.path.abspath(args.dest)
if args.only_unpack:
unpack = dest
else:
unpack = os.path.join(dest, "unpack")
extractPackages(selected, cache, unpack)
if args.with_wdk_installers is not None:
unpackWin10WDK(args.with_wdk_installers, unpack)
if not args.only_unpack:
moveVCSDK(unpack, dest)
if not args.keep_unpack:
shutil.rmtree(unpack)
finally:
if tempcache != None:
shutil.rmtree(tempcache)