Mercurial > hg > orthanc-stone
view Resources/CMake/LinuxStandardBaseUic.py @ 1357:0dc5b8a4b3a0 broker
hgignore
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Wed, 15 Apr 2020 15:23:07 +0200 |
parents | 95939fa925f6 |
children |
line wrap: on
line source
#!/usr/bin/env python import subprocess import sys if len(sys.argv) <= 1: sys.stderr.write('Please provide arguments for uic\n') sys.exit(-1) path = '' pos = 1 while pos < len(sys.argv): if sys.argv[pos].startswith('-'): pos += 2 else: path = sys.argv[pos] break if len(path) == 0: sys.stderr.write('Unable to find the input file in the arguments to uic\n') sys.exit(-1) with open(path, 'r') as f: lines = f.read().split('\n') if (len(lines) > 1 and lines[0].startswith('<?')): content = '\n'.join(lines[1:]) else: content = '\n'.join(lines) # Remove the source file from the arguments args = sys.argv[1:pos] + sys.argv[pos+1:] p = subprocess.Popen([ '/opt/lsb/bin/uic' ] + args, stdin = subprocess.PIPE) p.communicate(input = content)