Skip to content

Commit b7f39c8

Browse files
committed
cosalib: further consolidate run() functions
I then found run_verbose in cmdlib.py that is already in wide use. Let's consolidate it with runcmd from src/cosalib/utils.py and delete src/cosalib/utils.py. I also deleted bespoke `run_verbose()` function definitions and uses from other files throughout the codebase.
1 parent 3942ea4 commit b7f39c8

18 files changed

+146
-169
lines changed

src/cmd-buildextend-extensions

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def run_rpmostree(workdir, commit, treefile, extensions):
8888

8989

9090
def create_yumrepo(repodir):
91-
cmdlib.run_verbose(['createrepo_c', repodir])
91+
cmdlib.runcmd_verbose(['createrepo_c', repodir])
9292
# we could also have rpm-ostree output the pkglist for us, but meh... we
9393
# need to run createrepo_c anyway and it's nice that we're using it as the
9494
# source of truth, since that's what rpm-ostree clients will also use
@@ -116,7 +116,7 @@ def create_tarball(buildmeta, srcdir, destdir):
116116
destdir = os.path.abspath(destdir)
117117
basearch = buildmeta['coreos-assembler.basearch']
118118
tarfile = f'{destdir}/{buildmeta["name"]}-{buildmeta["buildid"]}-extensions.{basearch}.tar'
119-
cmdlib.run_verbose(['tar', '-cf', tarfile, '.'], cwd=srcdir)
119+
cmdlib.runcmd_verbose(['tar', '-cf', tarfile, '.'], cwd=srcdir)
120120
return tarfile
121121

122122

src/cmd-buildextend-live

+43-43
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import time
1818

1919
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
2020
from cosalib.builds import Builds
21-
from cosalib.cmdlib import run_verbose, sha256sum_file
21+
from cosalib.cmdlib import runcmd_verbose, sha256sum_file
2222
from cosalib.cmdlib import import_ostree_commit, get_basearch, ensure_glob
2323
from cosalib.meta import GenericBuildMeta
2424

@@ -137,18 +137,18 @@ def align_initrd_for_uncompressed_append(destf):
137137
def get_os_features():
138138
features = {}
139139

140-
f = run_verbose(['/usr/bin/ostree', 'cat', '--repo', repo,
141-
buildmeta_commit, '/usr/libexec/coreos-installer-service'],
142-
capture_output=True).stdout.decode()
140+
f = runcmd_verbose(['/usr/bin/ostree', 'cat', '--repo', repo,
141+
buildmeta_commit, '/usr/libexec/coreos-installer-service'],
142+
capture_output=True).stdout.decode()
143143
# eventually we can assume coreos-installer >= 0.12.0, delete this check,
144144
# and hardcode the feature flag
145145
if '--config-file' in f:
146146
features['installer-config'] = True
147147

148-
f = run_verbose(['/usr/bin/ostree', 'cat', '--repo', repo,
149-
buildmeta_commit,
150-
'/usr/lib/dracut/modules.d/35coreos-network/coreos-copy-firstboot-network.sh'],
151-
capture_output=True).stdout.decode()
148+
f = runcmd_verbose(['/usr/bin/ostree', 'cat', '--repo', repo,
149+
buildmeta_commit,
150+
'/usr/lib/dracut/modules.d/35coreos-network/coreos-copy-firstboot-network.sh'],
151+
capture_output=True).stdout.decode()
152152
# eventually we can assume /etc/coreos-firstboot-network support and
153153
# hardcode the feature flag
154154
if 'etc_firstboot_network_dir' in f:
@@ -239,17 +239,17 @@ def generate_iso():
239239
# Find the directory under `/usr/lib/modules/<kver>` where the
240240
# kernel/initrd live. It will be the 2nd entity output by
241241
# `ostree ls <commit> /usr/lib/modules`
242-
process = run_verbose(['/usr/bin/ostree', 'ls', '--repo', repo,
243-
'--nul-filenames-only', f"{buildmeta_commit}",
244-
'/usr/lib/modules'], capture_output=True)
242+
process = runcmd_verbose(['/usr/bin/ostree', 'ls', '--repo', repo,
243+
'--nul-filenames-only', f"{buildmeta_commit}",
244+
'/usr/lib/modules'], capture_output=True)
245245
moduledir = process.stdout.decode().split('\0')[1]
246246

247247
# copy those files out of the ostree into the iso root dir
248248
initramfs_img = 'initramfs.img'
249249
for file in [kernel_img, initramfs_img]:
250-
run_verbose(['/usr/bin/ostree', 'checkout', '--force-copy', '--repo', repo,
251-
'--user-mode', '--subpath', os.path.join(moduledir, file),
252-
f"{buildmeta_commit}", tmpisoimagespxe])
250+
runcmd_verbose(['/usr/bin/ostree', 'checkout', '--force-copy', '--repo', repo,
251+
'--user-mode', '--subpath', os.path.join(moduledir, file),
252+
f"{buildmeta_commit}", tmpisoimagespxe])
253253
# initramfs isn't world readable by default so let's open up perms
254254
os.chmod(os.path.join(tmpisoimagespxe, file), 0o644)
255255
if file == initramfs_img:
@@ -297,23 +297,23 @@ def generate_iso():
297297
# Add osmet files
298298
tmp_osmet = os.path.join(tmpinitrd_rootfs, img_metal_obj['path'] + '.osmet')
299299
print('Generating osmet file for 512b metal image')
300-
run_verbose(['/usr/lib/coreos-assembler/osmet-pack',
301-
img_metal, '512', tmp_osmet, img_metal_checksum,
302-
'fast' if args.fast else 'normal'])
300+
runcmd_verbose(['/usr/lib/coreos-assembler/osmet-pack',
301+
img_metal, '512', tmp_osmet, img_metal_checksum,
302+
'fast' if args.fast else 'normal'])
303303
if img_metal4k_obj:
304304
tmp_osmet4k = os.path.join(tmpinitrd_rootfs, img_metal4k_obj['path'] + '.osmet')
305305
print('Generating osmet file for 4k metal image')
306-
run_verbose(['/usr/lib/coreos-assembler/osmet-pack',
307-
img_metal4k, '4096', tmp_osmet4k, img_metal4k_checksum,
308-
'fast' if args.fast else 'normal'])
306+
runcmd_verbose(['/usr/lib/coreos-assembler/osmet-pack',
307+
img_metal4k, '4096', tmp_osmet4k, img_metal4k_checksum,
308+
'fast' if args.fast else 'normal'])
309309

310310
# Generate root squashfs
311311
print(f'Compressing squashfs with {squashfs_compression}')
312312
# Name must be exactly "root.squashfs" because the 20live dracut module
313313
# makes assumptions about the length of the name in sysroot.mount
314314
tmp_squashfs = os.path.join(tmpinitrd_rootfs, 'root.squashfs')
315-
run_verbose(['/usr/lib/coreos-assembler/gf-mksquashfs',
316-
img_metal, tmp_squashfs, squashfs_compression])
315+
runcmd_verbose(['/usr/lib/coreos-assembler/gf-mksquashfs',
316+
img_metal, tmp_squashfs, squashfs_compression])
317317

318318
# Generate rootfs image
319319
iso_rootfs = os.path.join(tmpisoimagespxe, rootfs_img)
@@ -340,8 +340,8 @@ def generate_iso():
340340
cp_reflink(iso_initramfs, pxe_initramfs)
341341

342342
# Read and filter kernel arguments for substituting into ISO bootloader
343-
result = run_verbose(['/usr/lib/coreos-assembler/gf-get-kargs',
344-
img_metal], stdout=subprocess.PIPE, text=True)
343+
result = runcmd_verbose(['/usr/lib/coreos-assembler/gf-get-kargs',
344+
img_metal], stdout=subprocess.PIPE, text=True)
345345
kargs_array = [karg for karg in result.stdout.split()
346346
if karg.split('=')[0] not in live_exclude_kargs]
347347
kargs_array.append(f"coreos.liveiso={volid}")
@@ -445,7 +445,7 @@ def generate_iso():
445445

446446
# safely remove things we don't need in the final ISO tree
447447
for d in ['EFI', 'isolinux', 'zipl.prm']:
448-
run_verbose(['rm', '-rf', os.path.join(tmpisoroot, d)])
448+
runcmd_verbose(['rm', '-rf', os.path.join(tmpisoroot, d)])
449449

450450
# grub2-mkrescue is a wrapper around xorriso
451451
genisoargs = ['grub2-mkrescue', '-volid', volid]
@@ -472,11 +472,11 @@ def generate_iso():
472472
kernel_img = 'kernel.img'
473473

474474
# combine kernel, initramfs and cmdline using the mk-s390image tool
475-
run_verbose(['/usr/bin/mk-s390image',
476-
kernel_dest,
477-
os.path.join(tmpisoimages, 'cdboot.img'),
478-
'-r', iso_initramfs,
479-
'-p', os.path.join(tmpisoimages, 'cdboot.prm')])
475+
runcmd_verbose(['/usr/bin/mk-s390image',
476+
kernel_dest,
477+
os.path.join(tmpisoimages, 'cdboot.img'),
478+
'-r', iso_initramfs,
479+
'-p', os.path.join(tmpisoimages, 'cdboot.prm')])
480480
# generate .addrsize file for LPAR
481481
with open(os.path.join(tmpisoimages, 'initrd.addrsize'), 'wb') as addrsize:
482482
addrsize_data = struct.pack(">iiii", 0, int(INITRD_ADDRESS, 16), 0,
@@ -485,7 +485,7 @@ def generate_iso():
485485

486486
# safely remove things we don't need in the final ISO tree
487487
for d in ['EFI', 'isolinux', 'zipl.prm']:
488-
run_verbose(['rm', '-rf', os.path.join(tmpisoroot, d)])
488+
runcmd_verbose(['rm', '-rf', os.path.join(tmpisoroot, d)])
489489

490490
genisoargs = ['/usr/bin/xorrisofs', '-verbose',
491491
'-volid', volid,
@@ -514,10 +514,10 @@ def generate_iso():
514514
return tarinfo
515515

516516
tmpimageefidir = os.path.join(tmpdir, "efi")
517-
run_verbose(['/usr/bin/ostree', 'checkout', '--repo', repo,
518-
'--user-mode', '--subpath',
519-
"/usr/lib/bootupd/updates/EFI",
520-
buildmeta_commit, tmpimageefidir])
517+
runcmd_verbose(['/usr/bin/ostree', 'checkout', '--repo', repo,
518+
'--user-mode', '--subpath',
519+
"/usr/lib/bootupd/updates/EFI",
520+
buildmeta_commit, tmpimageefidir])
521521

522522
# Find name of vendor directory
523523
vendor_ids = [n for n in os.listdir(tmpimageefidir) if n != "BOOT"]
@@ -586,8 +586,8 @@ boot
586586
# so set EFI-SYSTEM for consistency with the metal image.
587587
# This should not be needed on Fedora or RHEL 9, but seems like
588588
# a good thing to do anyway.
589-
run_verbose(['virt-make-fs', '--type=vfat', '--label=EFI-SYSTEM',
590-
efitarfile.name, efibootfile])
589+
runcmd_verbose(['virt-make-fs', '--type=vfat', '--label=EFI-SYSTEM',
590+
efitarfile.name, efibootfile])
591591

592592
genisoargs += ['-eltorito-alt-boot',
593593
'-efi-boot', 'images/efiboot.img',
@@ -634,12 +634,12 @@ boot
634634
for f in ensure_glob(os.path.join(tmpisoisolinux, '*.msg')):
635635
os.unlink(f)
636636

637-
run_verbose(genisoargs_final)
637+
runcmd_verbose(genisoargs_final)
638638

639639
# Add MBR, and GPT with ESP, for x86_64 BIOS/UEFI boot when ISO is
640640
# copied to a USB stick
641641
if basearch == "x86_64":
642-
run_verbose(['/usr/bin/isohybrid', '--uefi', tmpisofile])
642+
runcmd_verbose(['/usr/bin/isohybrid', '--uefi', tmpisofile])
643643

644644
genisoargs_minimal = genisoargs + ['-o', f'{tmpisofile}.minimal', tmpisoroot]
645645
# The only difference with the miniso is that we drop these two files.
@@ -649,12 +649,12 @@ boot
649649
# coreos-installer takes care of removing it.
650650
os.unlink(iso_rootfs)
651651
os.unlink(miniso_data)
652-
run_verbose(genisoargs_minimal)
652+
runcmd_verbose(genisoargs_minimal)
653653
if basearch == "x86_64":
654-
run_verbose(['/usr/bin/isohybrid', '--uefi', f'{tmpisofile}.minimal'])
654+
runcmd_verbose(['/usr/bin/isohybrid', '--uefi', f'{tmpisofile}.minimal'])
655655
# this consumes the minimal image
656-
run_verbose(['coreos-installer', 'pack', 'minimal-iso',
657-
tmpisofile, f'{tmpisofile}.minimal', "--consume"])
656+
runcmd_verbose(['coreos-installer', 'pack', 'minimal-iso',
657+
tmpisofile, f'{tmpisofile}.minimal', "--consume"])
658658

659659
buildmeta['images'].update({
660660
'live-iso': {

src/cmd-compress

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ from cosalib.builds import Builds
1414
from cosalib.cmdlib import (
1515
ncpu,
1616
rm_allow_noent,
17-
run_verbose,
17+
runcmd_verbose,
1818
sha256sum_file,
1919
write_json)
2020

@@ -121,9 +121,9 @@ def compress_one_builddir(builddir):
121121
with open(tmpfile, 'wb') as f:
122122
if args.compressor == 'xz':
123123
t = ncpu()
124-
run_verbose(['xz', '-c9', f'-T{t}', filepath], stdout=f)
124+
runcmd_verbose(['xz', '-c9', f'-T{t}', filepath], stdout=f)
125125
else:
126-
run_verbose(['gzip', f'-{gzip_level}', '-c', filepath], stdout=f)
126+
runcmd_verbose(['gzip', f'-{gzip_level}', '-c', filepath], stdout=f)
127127
file_with_ext = file + ext
128128
filepath_with_ext = filepath + ext
129129
compressed_size = os.path.getsize(tmpfile)
@@ -199,9 +199,9 @@ def uncompress_one_builddir(builddir):
199199
with open(tmpfile, 'wb') as f:
200200
if file.endswith('xz'):
201201
t = ncpu()
202-
run_verbose(['xz', '-dc', f'-T{t}', filepath], stdout=f)
202+
runcmd_verbose(['xz', '-dc', f'-T{t}', filepath], stdout=f)
203203
elif file.endswith('gz'):
204-
run_verbose(['gzip', '-dc', filepath], stdout=f)
204+
runcmd_verbose(['gzip', '-dc', filepath], stdout=f)
205205
else:
206206
print(f"Unknown sufix of file {file}")
207207
file_without_ext = strip_ext(file)

src/cmd-oc-adm-release

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ sys.path.insert(0, COSA_PATH)
2323
from cosalib.meta import GenericBuildMeta as Meta
2424
from cosalib.cmdlib import (
2525
get_basearch,
26-
run_verbose
26+
runcmd_verbose
2727
)
2828

2929
os.environ["PATH"] = f"{os.getcwd()}:{COSA_PATH}:{os.environ.get('PATH')}"
@@ -62,7 +62,7 @@ def release_stream(meta, args, ocp_ver):
6262
if args.authfile != "":
6363
tag_cmd.extend(["--authfile", args.authfile])
6464
tag_cmd.extend([f"docker://{args.from_url}"])
65-
tags = json.loads(run_verbose(tag_cmd, capture_output=True).stdout)
65+
tags = json.loads(runcmd_verbose(tag_cmd, capture_output=True).stdout)
6666

6767
log.info(f"Looking for latest release tag for {ocp_ver}")
6868
ctags = []
@@ -132,5 +132,5 @@ if __name__ == '__main__':
132132

133133
log.info(f"Command: {' '.join(cmd)}")
134134
if not args.dry_run:
135-
run_verbose(cmd)
135+
runcmd_verbose(cmd)
136136
log.info(f"Payload released to: {payload_dest}")

src/cmd-remote-build-container

+7-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import logging
55
import sys
66
import tenacity
77

8-
from cosalib.utils import runcmd
8+
from cosalib.cmdlib import runcmd
99
from os import environ
1010

1111
# Set up logging
@@ -23,7 +23,7 @@ def build_container_image(labels, gitURL, gitRef, repo, tag):
2323
for label in labels:
2424
cmd.extend([f"--label={label}"])
2525
# Long running command. Send output to stdout for logging
26-
runcmd(cmd, capture_output=False)
26+
runcmd(cmd)
2727

2828
def push_container_image(repo, tag):
2929
'''
@@ -33,7 +33,7 @@ def push_container_image(repo, tag):
3333
'''
3434
cmd = ["podman", "--remote", "push", f"{repo}:{tag}"]
3535
# Long running command. Send output to stdout for logging
36-
runcmd(cmd, capture_output=False)
36+
runcmd(cmd)
3737
# Quay seems to take some time to publish images in some occasions.
3838
# After the push let's wait for it to show up in the registry
3939
# before moving on.
@@ -58,7 +58,7 @@ def is_tag_in_podman_storage(repo, tag):
5858
@param tag str image tag
5959
'''
6060
cmd = ["podman", "--remote", "image", "exists", f"{repo}:{tag}"]
61-
return runcmd(cmd, check=False).returncode == 0
61+
return runcmd(cmd, check=False, capture_output=True).returncode == 0
6262

6363
def is_tag_in_registry(repo, tag):
6464
'''
@@ -67,7 +67,8 @@ def is_tag_in_registry(repo, tag):
6767
@param tag str image tag
6868
'''
6969
# Podman remote doesn't allow push using digestfile. That's why the tag check is done
70-
tags = runcmd(["podman", "search", "--list-tags", repo]).stdout.strip().decode()
70+
cmd = ["podman", "search", "--list-tags", repo]
71+
tags = runcmd(cmd, capture_output=True).stdout.strip().decode()
7172
if (tag in str(tags)):
7273
return True
7374
return False
@@ -82,7 +83,7 @@ def main():
8283
# short commit hash
8384
if not args.tag:
8485
cmd = ["git", "ls-remote", args.git_url, args.git_ref]
85-
commit = runcmd(cmd).stdout.strip().decode()[0:7]
86+
commit = runcmd(cmd, capture_output=True).stdout.strip().decode()[0:7]
8687
args.tag = f"{args.arch}-{commit}"
8788
logging.info(f"Targetting a container image for {args.repo}:{args.tag}")
8889
# Sanity check the registry if asked to push to a registry

src/cmd-upload-oscontainer

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ with open(metapath) as f:
4646
# for backcompat, we auto-build extensions if they're missing
4747
if os.path.exists('src/config/extensions.yaml'):
4848
if 'extensions' not in meta:
49-
cmdlib.run_verbose(['coreos-assembler', 'buildextend-extensions'])
49+
cmdlib.runcmd_verbose(['coreos-assembler', 'buildextend-extensions'])
5050
with open(metapath) as f:
5151
meta = json.load(f)
5252
assert 'extensions' in meta
@@ -82,9 +82,9 @@ if not os.path.exists(tmprepo):
8282

8383
tmp_osreleasedir = 'tmp/usrlib-osrelease'
8484
subprocess.check_call(['rm', '-rf', tmp_osreleasedir])
85-
cmdlib.run_verbose(['/usr/bin/ostree', 'checkout', '--repo', tmprepo,
86-
'--user-mode', '--subpath=/usr/lib/os-release', ostree_commit,
87-
tmp_osreleasedir])
85+
cmdlib.runcmd_verbose(['/usr/bin/ostree', 'checkout', '--repo', tmprepo,
86+
'--user-mode', '--subpath=/usr/lib/os-release', ostree_commit,
87+
tmp_osreleasedir])
8888
display_name = None
8989
with open(os.path.join(tmp_osreleasedir, "os-release")) as f:
9090
display_name = subprocess.check_output(['/bin/sh', '-c', 'set -euo pipefail; . /proc/self/fd/0 && echo $NAME'], stdin=f, encoding='UTF-8').strip()

src/cmd-virt-install

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,6 @@ basevinstall_args = ['virt-install', f"--connect={args.connect}",
127127
f'--name={domname}', '--os-type=linux', '--os-variant=rhel8-unknown',
128128
f'--qemu-commandline={qemu_args}',
129129
'--noautoconsole']
130-
cmdlib.run_verbose(basevinstall_args + vinstall_args)
130+
cmdlib.runcmd_verbose(basevinstall_args + vinstall_args)
131131
if args.console:
132132
os.execlp("virsh", "virsh", "console", domname)

src/cosalib/aliyun.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import logging as log
33
import json
44
import sys
5-
from cosalib.cmdlib import run_verbose
5+
from cosalib.cmdlib import runcmd_verbose
66
from tenacity import (
77
retry,
88
stop_after_attempt
@@ -12,7 +12,7 @@
1212
def remove_aliyun_image(aliyun_id, region):
1313
print(f"aliyun: removing image {aliyun_id} in {region}")
1414
try:
15-
run_verbose([
15+
runcmd_verbose([
1616
'ore',
1717
'aliyun', '--log-level', 'debug', 'delete-image',
1818
'--id', aliyun_id,

src/cosalib/azure.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
import urllib
3-
from cosalib.cmdlib import run_verbose
3+
from cosalib.cmdlib import runcmd_verbose
44
from tenacity import (
55
retry,
66
stop_after_attempt
@@ -11,7 +11,7 @@
1111
def remove_azure_image(image, resource_group, auth, profile):
1212
print(f"Azure: removing image {image}")
1313
try:
14-
run_verbose([
14+
runcmd_verbose([
1515
'ore', 'azure',
1616
'--azure-auth', auth,
1717
'--azure-profile', profile,
@@ -51,7 +51,7 @@ def azure_run_ore(build, args):
5151
]
5252
if args.force:
5353
ore_args.append('--overwrite')
54-
run_verbose(ore_args)
54+
runcmd_verbose(ore_args)
5555

5656
url_path = urllib.parse.quote((
5757
f"{args.storage_account}.blob.core.windows.net/"

0 commit comments

Comments
 (0)